OSDN Git Service

* g++.dg/cdce3.C: Skip on alpha*-dec-osf5*.
[pf3gnuchains/gcc-fork.git] / gcc / ada / g-regist.ads
index 0c7973a..52dc6aa 100644 (file)
@@ -6,28 +6,25 @@
 --                                                                          --
 --                                 S p e c                                  --
 --                                                                          --
---                                                                          --
---              Copyright (C) 2001 Free Software Foundation, Inc.           --
+--          Copyright (C) 2001-2009, Free Software Foundation, Inc.         --
 --                                                                          --
 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
 -- terms of the  GNU General Public License as published  by the Free Soft- --
--- ware  Foundation;  either version 2,  or (at your option) any later ver- --
+-- ware  Foundation;  either version 3,  or (at your option) any later ver- --
 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
--- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
--- for  more details.  You should have  received  a copy of the GNU General --
--- Public License  distributed with GNAT;  see file COPYING.  If not, write --
--- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
--- MA 02111-1307, USA.                                                      --
+-- or FITNESS FOR A PARTICULAR PURPOSE.                                     --
+--                                                                          --
+-- As a special exception under Section 7 of GPL version 3, you are granted --
+-- additional permissions described in the GCC Runtime Library Exception,   --
+-- version 3.1, as published by the Free Software Foundation.               --
 --                                                                          --
--- As a special exception,  if other files  instantiate  generics from this --
--- unit, or you link  this unit with other files  to produce an executable, --
--- this  unit  does not  by itself cause  the resulting  executable  to  be --
--- covered  by the  GNU  General  Public  License.  This exception does not --
--- however invalidate  any other reasons why  the executable file  might be --
--- covered by the  GNU Public License.                                      --
+-- You should have received a copy of the GNU General Public License and    --
+-- a copy of the GCC Runtime Library Exception along with this program;     --
+-- see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see    --
+-- <http://www.gnu.org/licenses/>.                                          --
 --                                                                          --
--- Extensive contributions were provided by Ada Core Technologies Inc.   --
+-- Extensive contributions were provided by Ada Core Technologies Inc.      --
 --                                                                          --
 ------------------------------------------------------------------------------
 
@@ -58,7 +55,7 @@ package GNAT.Registry is
    HKEY_PERFORMANCE_DATA : constant HKEY;
 
    type Key_Mode is (Read_Only, Read_Write);
-   --  Access mode for the registry key.
+   --  Access mode for the registry key
 
    Registry_Error : exception;
    --  Registry_Error is raises by all routines below if a problem occurs
@@ -67,8 +64,7 @@ package GNAT.Registry is
    function Create_Key
      (From_Key : HKEY;
       Sub_Key  : String;
-      Mode     : Key_Mode := Read_Write)
-      return     HKEY;
+      Mode     : Key_Mode := Read_Write) return HKEY;
    --  Open or create a key (named Sub_Key) in the Windows registry database.
    --  The key will be created under key From_Key. It returns the key handle.
    --  From_Key must be a valid handle to an already opened key or one of
@@ -77,30 +73,53 @@ package GNAT.Registry is
    function Open_Key
      (From_Key : HKEY;
       Sub_Key  : String;
-      Mode     : Key_Mode := Read_Only)
-      return     HKEY;
+      Mode     : Key_Mode := Read_Only) return HKEY;
    --  Return a registry key handle for key named Sub_Key opened under key
    --  From_Key. It is possible to open a key at any level in the registry
    --  tree in a single call to Open_Key.
 
    procedure Close_Key (Key : HKEY);
-   --  Close registry key handle. All resources used by Key are released.
+   --  Close registry key handle. All resources used by Key are released
 
    function Key_Exists (From_Key : HKEY; Sub_Key : String) return Boolean;
-   --  Returns True if Sub_Key is defined under From_Key in the registry.
+   --  Returns True if Sub_Key is defined under From_Key in the registry
 
-   function Query_Value (From_Key : HKEY; Sub_Key : String) return String;
+   function Query_Value
+     (From_Key : HKEY;
+      Sub_Key  : String;
+      Expand   : Boolean := False) return String;
    --  Returns the registry key's value associated with Sub_Key in From_Key
-   --  registry key.
-
-   procedure Set_Value (From_Key : HKEY; Sub_Key : String; Value : String);
+   --  registry key. If Expand is set to True and the Sub_Key is a
+   --  REG_EXPAND_SZ the returned value will have the %name% variables
+   --  replaced by the corresponding environment variable value.
+
+   procedure Set_Value
+      (From_Key : HKEY;
+       Sub_Key  : String;
+       Value    : String;
+       Expand   : Boolean := False);
    --  Add the pair (Sub_Key, Value) into From_Key registry key.
+   --  By default the value created is of type REG_SZ, unless
+   --  Expand is True in which case it is of type REG_EXPAND_SZ
 
    procedure Delete_Key (From_Key : HKEY; Sub_Key : String);
-   --  Remove Sub_Key from the registry key From_Key.
+   --  Remove Sub_Key from the registry key From_Key
 
    procedure Delete_Value (From_Key : HKEY; Sub_Key : String);
-   --  Remove the named value Sub_Key from the registry key From_Key.
+   --  Remove the named value Sub_Key from the registry key From_Key
+
+   generic
+      with procedure Action
+        (Index    : Positive;
+         Key      : HKEY;
+         Key_Name : String;
+         Quit     : in out Boolean);
+   procedure For_Every_Key (From_Key : HKEY; Recursive : Boolean := False);
+   --  Iterates over all the keys registered under From_Key, recursively if
+   --  Recursive is set to True. Index will be set to 1 for the first key and
+   --  will be incremented by one in each iteration. The current key of an
+   --  iteration is set in Key, and its name - in Key_Name. Quit can be set
+   --  to True to stop iteration; its initial value is False.
 
    generic
       with procedure Action
@@ -108,15 +127,21 @@ package GNAT.Registry is
          Sub_Key : String;
          Value   : String;
          Quit    : in out Boolean);
-   procedure For_Every_Key_Value (From_Key : HKEY);
+   procedure For_Every_Key_Value (From_Key : HKEY; Expand : Boolean := False);
    --  Iterates over all the pairs (Sub_Key, Value) registered under
    --  From_Key. Index will be set to 1 for the first key and will be
    --  incremented by one in each iteration. Quit can be set to True to
    --  stop iteration; its initial value is False.
    --
-   --  Key value that are not of type string are skipped. In this case, the
-   --  iterator behaves exactly as if the key was not present. Note that you
-   --  must use the Win32.Winreg API to deal with this case.
+   --  Key value that are not of type string (i.e. not REG_SZ / REG_EXPAND_SZ)
+   --  are skipped. In this case, the iterator behaves exactly as if the key
+   --  were not present. Note that you must use the Win32.Winreg API to deal
+   --  with this case. Furthermore, if Expand is set to True and the Sub_Key
+   --  is a REG_EXPAND_SZ the returned value will have the %name% variables
+   --  replaced by the corresponding environment variable value.
+   --
+   --  This iterator can be used in conjunction with For_Every_Key in
+   --  order to analyze all subkeys and values of a given registry key.
 
 private