* gcc.c (getenv_spec_function): New function.
[official-gcc.git] / gcc / ada / a-cihase.ads
blob0d36adfe609911b7998791c6e66b2aa71f9f8abe
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT LIBRARY COMPONENTS --
4 -- --
5 -- A D A . C O N T A I N E R S . --
6 -- I N D E F I N I T E _ H A S H E D _ S E T S --
7 -- --
8 -- S p e c --
9 -- --
10 -- Copyright (C) 2004-2006, Free Software Foundation, Inc. --
11 -- --
12 -- This specification is derived from the Ada Reference Manual for use with --
13 -- GNAT. The copyright notice above, and the license provisions that follow --
14 -- apply solely to the contents of the part following the private keyword. --
15 -- --
16 -- GNAT is free software; you can redistribute it and/or modify it under --
17 -- terms of the GNU General Public License as published by the Free Soft- --
18 -- ware Foundation; either version 2, or (at your option) any later ver- --
19 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
20 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
21 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
22 -- for more details. You should have received a copy of the GNU General --
23 -- Public License distributed with GNAT; see file COPYING. If not, write --
24 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
25 -- Boston, MA 02110-1301, USA. --
26 -- --
27 -- As a special exception, if other files instantiate generics from this --
28 -- unit, or you link this unit with other files to produce an executable, --
29 -- this unit does not by itself cause the resulting executable to be --
30 -- covered by the GNU General Public License. This exception does not --
31 -- however invalidate any other reasons why the executable file might be --
32 -- covered by the GNU Public License. --
33 -- --
34 -- This unit was originally developed by Matthew J Heaney. --
35 ------------------------------------------------------------------------------
37 with Ada.Containers.Hash_Tables;
38 with Ada.Streams;
39 with Ada.Finalization;
41 generic
42 type Element_Type (<>) is private;
44 with function Hash (Element : Element_Type) return Hash_Type;
46 with function Equivalent_Elements (Left, Right : Element_Type)
47 return Boolean;
49 with function "=" (Left, Right : Element_Type) return Boolean is <>;
51 package Ada.Containers.Indefinite_Hashed_Sets is
52 pragma Preelaborate;
54 type Set is tagged private;
55 pragma Preelaborable_Initialization (Set);
57 type Cursor is private;
58 pragma Preelaborable_Initialization (Cursor);
60 Empty_Set : constant Set;
62 No_Element : constant Cursor;
64 function "=" (Left, Right : Set) return Boolean;
66 function Equivalent_Sets (Left, Right : Set) return Boolean;
68 function To_Set (New_Item : Element_Type) return Set;
70 function Capacity (Container : Set) return Count_Type;
72 procedure Reserve_Capacity
73 (Container : in out Set;
74 Capacity : Count_Type);
76 function Length (Container : Set) return Count_Type;
78 function Is_Empty (Container : Set) return Boolean;
80 procedure Clear (Container : in out Set);
82 function Element (Position : Cursor) return Element_Type;
84 procedure Replace_Element
85 (Container : in out Set;
86 Position : Cursor;
87 New_Item : Element_Type);
89 procedure Query_Element
90 (Position : Cursor;
91 Process : not null access procedure (Element : Element_Type));
93 procedure Move
94 (Target : in out Set;
95 Source : in out Set);
97 procedure Insert
98 (Container : in out Set;
99 New_Item : Element_Type;
100 Position : out Cursor;
101 Inserted : out Boolean);
103 procedure Insert (Container : in out Set; New_Item : Element_Type);
105 procedure Include (Container : in out Set; New_Item : Element_Type);
107 procedure Replace (Container : in out Set; New_Item : Element_Type);
109 procedure Exclude (Container : in out Set; Item : Element_Type);
111 procedure Delete (Container : in out Set; Item : Element_Type);
113 procedure Delete (Container : in out Set; Position : in out Cursor);
115 procedure Union (Target : in out Set; Source : Set);
117 function Union (Left, Right : Set) return Set;
119 function "or" (Left, Right : Set) return Set renames Union;
121 procedure Intersection (Target : in out Set; Source : Set);
123 function Intersection (Left, Right : Set) return Set;
125 function "and" (Left, Right : Set) return Set renames Intersection;
127 procedure Difference (Target : in out Set; Source : Set);
129 function Difference (Left, Right : Set) return Set;
131 function "-" (Left, Right : Set) return Set renames Difference;
133 procedure Symmetric_Difference (Target : in out Set; Source : Set);
135 function Symmetric_Difference (Left, Right : Set) return Set;
137 function "xor" (Left, Right : Set) return Set
138 renames Symmetric_Difference;
140 function Overlap (Left, Right : Set) return Boolean;
142 function Is_Subset (Subset : Set; Of_Set : Set) return Boolean;
144 function First (Container : Set) return Cursor;
146 function Next (Position : Cursor) return Cursor;
148 procedure Next (Position : in out Cursor);
150 function Find (Container : Set; Item : Element_Type) return Cursor;
152 function Contains (Container : Set; Item : Element_Type) return Boolean;
154 function Has_Element (Position : Cursor) return Boolean;
156 function Equivalent_Elements (Left, Right : Cursor) return Boolean;
158 function Equivalent_Elements
159 (Left : Cursor;
160 Right : Element_Type) return Boolean;
162 function Equivalent_Elements
163 (Left : Element_Type;
164 Right : Cursor) return Boolean;
166 procedure Iterate
167 (Container : Set;
168 Process : not null access procedure (Position : Cursor));
170 generic
171 type Key_Type (<>) is private;
173 with function Key (Element : Element_Type) return Key_Type;
175 with function Hash (Key : Key_Type) return Hash_Type;
177 with function Equivalent_Keys (Left, Right : Key_Type) return Boolean;
179 package Generic_Keys is
181 function Key (Position : Cursor) return Key_Type;
183 function Element (Container : Set; Key : Key_Type) return Element_Type;
185 procedure Replace
186 (Container : in out Set;
187 Key : Key_Type;
188 New_Item : Element_Type);
190 procedure Exclude (Container : in out Set; Key : Key_Type);
192 procedure Delete (Container : in out Set; Key : Key_Type);
194 function Find (Container : Set; Key : Key_Type) return Cursor;
196 function Contains (Container : Set; Key : Key_Type) return Boolean;
198 procedure Update_Element_Preserving_Key
199 (Container : in out Set;
200 Position : Cursor;
201 Process : not null access
202 procedure (Element : in out Element_Type));
204 end Generic_Keys;
206 private
207 type Node_Type;
208 type Node_Access is access Node_Type;
210 type Element_Access is access Element_Type;
212 type Node_Type is
213 limited record
214 Element : Element_Access;
215 Next : Node_Access;
216 end record;
218 package HT_Types is new Hash_Tables.Generic_Hash_Table_Types
219 (Node_Type,
220 Node_Access);
222 type Set is new Ada.Finalization.Controlled with record
223 HT : HT_Types.Hash_Table_Type;
224 end record;
226 procedure Adjust (Container : in out Set);
228 procedure Finalize (Container : in out Set);
230 use HT_Types;
231 use Ada.Finalization;
232 use Ada.Streams;
234 type Set_Access is access all Set;
235 for Set_Access'Storage_Size use 0;
237 type Cursor is
238 record
239 Container : Set_Access;
240 Node : Node_Access;
241 end record;
243 procedure Write
244 (Stream : access Root_Stream_Type'Class;
245 Item : Cursor);
247 for Cursor'Write use Write;
249 procedure Read
250 (Stream : access Root_Stream_Type'Class;
251 Item : out Cursor);
253 for Cursor'Read use Read;
255 No_Element : constant Cursor :=
256 (Container => null,
257 Node => null);
259 procedure Write
260 (Stream : access Root_Stream_Type'Class;
261 Container : Set);
263 for Set'Write use Write;
265 procedure Read
266 (Stream : access Root_Stream_Type'Class;
267 Container : out Set);
269 for Set'Read use Read;
271 Empty_Set : constant Set := (Controlled with HT => (null, 0, 0, 0));
273 end Ada.Containers.Indefinite_Hashed_Sets;