This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / ada / a-cihase.ads
blob53ec645be09565028a157d5793905a52b552e963
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT LIBRARY COMPONENTS --
4 -- --
5 -- ADA.CONTAINERS.INDEFINITE_HASHED_SETS --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 2004 Free Software Foundation, Inc. --
10 -- --
11 -- This specification is derived from the Ada Reference Manual for use with --
12 -- GNAT. The copyright notice above, and the license provisions that follow --
13 -- apply solely to the contents of the part following the private keyword. --
14 -- --
15 -- GNAT is free software; you can redistribute it and/or modify it under --
16 -- terms of the GNU General Public License as published by the Free Soft- --
17 -- ware Foundation; either version 2, or (at your option) any later ver- --
18 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
19 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
20 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
21 -- for more details. You should have received a copy of the GNU General --
22 -- Public License distributed with GNAT; see file COPYING. If not, write --
23 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
24 -- MA 02111-1307, USA. --
25 -- --
26 -- As a special exception, if other files instantiate generics from this --
27 -- unit, or you link this unit with other files to produce an executable, --
28 -- this unit does not by itself cause the resulting executable to be --
29 -- covered by the GNU General Public License. This exception does not --
30 -- however invalidate any other reasons why the executable file might be --
31 -- covered by the GNU Public License. --
32 -- --
33 -- This unit was originally developed by Matthew J Heaney. --
34 ------------------------------------------------------------------------------
36 with Ada.Containers.Hash_Tables;
37 with Ada.Streams;
39 generic
40 type Element_Type (<>) is private;
42 with function Hash (Element : Element_Type) return Hash_Type;
44 -- TODO: get a ruling from ARG in Atlanta re the name and
45 -- order of these declarations ???
47 with function Equivalent_Keys (Left, Right : Element_Type) return Boolean;
49 with function "=" (Left, Right : Element_Type) return Boolean is <>;
51 package Ada.Containers.Indefinite_Hashed_Sets is
53 pragma Preelaborate (Indefinite_Hashed_Sets);
55 type Set is tagged private;
57 type Cursor is private;
59 Empty_Set : constant Set;
61 No_Element : constant Cursor;
63 function "=" (Left, Right : Set) return Boolean;
65 function Length (Container : Set) return Count_Type;
67 function Is_Empty (Container : Set) return Boolean;
69 procedure Clear (Container : in out Set);
71 function Element (Position : Cursor) return Element_Type;
73 procedure Query_Element
74 (Position : Cursor;
75 Process : not null access procedure (Element : Element_Type));
77 -- TODO: resolve in atlanta ???
78 -- procedure Replace_Element (Container : in out Set;
79 -- Position : Cursor;
80 -- By : Element_Type);
82 procedure Move
83 (Target : in out Set;
84 Source : in out Set);
86 procedure Insert
87 (Container : in out Set;
88 New_Item : Element_Type;
89 Position : out Cursor;
90 Inserted : out Boolean);
92 procedure Insert (Container : in out Set; New_Item : Element_Type);
94 procedure Include (Container : in out Set; New_Item : Element_Type);
96 procedure Replace (Container : in out Set; New_Item : Element_Type);
98 procedure Delete (Container : in out Set; Item : Element_Type);
100 procedure Exclude (Container : in out Set; Item : Element_Type);
102 procedure Delete (Container : in out Set; Position : in out Cursor);
104 procedure Union (Target : in out Set; Source : Set);
106 function Union (Left, Right : Set) return Set;
108 function "or" (Left, Right : Set) return Set renames Union;
110 procedure Intersection (Target : in out Set; Source : Set);
112 function Intersection (Left, Right : Set) return Set;
114 function "and" (Left, Right : Set) return Set renames Intersection;
116 procedure Difference (Target : in out Set; Source : Set);
118 function Difference (Left, Right : Set) return Set;
120 function "-" (Left, Right : Set) return Set renames Difference;
122 procedure Symmetric_Difference (Target : in out Set; Source : Set);
124 function Symmetric_Difference (Left, Right : Set) return Set;
126 function "xor" (Left, Right : Set) return Set
127 renames Symmetric_Difference;
129 function Is_Subset (Subset : Set; Of_Set : Set) return Boolean;
131 function Overlap (Left, Right : Set) return Boolean;
133 function Contains (Container : Set; Item : Element_Type) return Boolean;
135 function Find (Container : Set; Item : Element_Type) return Cursor;
137 function Capacity (Container : Set) return Count_Type;
139 procedure Reserve_Capacity
140 (Container : in out Set;
141 Capacity : Count_Type);
143 function First (Container : Set) return Cursor;
145 function Next (Position : Cursor) return Cursor;
147 procedure Next (Position : in out Cursor);
149 function Has_Element (Position : Cursor) return Boolean;
151 function Equivalent_Keys (Left, Right : Cursor) return Boolean;
153 function Equivalent_Keys
154 (Left : Cursor;
155 Right : Element_Type) return Boolean;
157 function Equivalent_Keys
158 (Left : Element_Type;
159 Right : Cursor) return Boolean;
161 procedure Iterate
162 (Container : Set;
163 Process : not null access procedure (Position : Cursor));
165 generic
166 type Key_Type (<>) is limited private;
168 with function Key (Element : Element_Type) return Key_Type;
170 with function Hash (Key : Key_Type) return Hash_Type;
172 with function Equivalent_Keys
173 (Key : Key_Type;
174 Element : Element_Type) return Boolean;
176 package Generic_Keys is
178 function Contains (Container : Set; Key : Key_Type) return Boolean;
180 function Find (Container : Set; Key : Key_Type) return Cursor;
182 function Key (Position : Cursor) return Key_Type;
184 function Element (Container : Set; Key : Key_Type) return Element_Type;
186 -- TODO: resolve in atlanta???
187 -- procedure Replace (Container : in out Set;
188 -- Key : Key_Type;
189 -- New_Item : Element_Type);
191 procedure Delete (Container : in out Set; Key : Key_Type);
193 procedure Exclude (Container : in out Set; Key : Key_Type);
195 procedure Checked_Update_Element
196 (Container : in out Set;
197 Position : Cursor;
198 Process : not null access
199 procedure (Element : in out Element_Type));
201 function Equivalent_Keys
202 (Left : Cursor;
203 Right : Key_Type) return Boolean;
205 function Equivalent_Keys
206 (Left : Key_Type;
207 Right : Cursor) return Boolean;
208 end Generic_Keys;
210 private
211 type Node_Type;
212 type Node_Access is access Node_Type;
214 package HT_Types is
215 new Hash_Tables.Generic_Hash_Table_Types (Node_Access);
217 use HT_Types;
219 type Set is new Hash_Table_Type with null record;
221 procedure Adjust (Container : in out Set);
223 procedure Finalize (Container : in out Set);
225 type Set_Access is access constant Set;
226 for Set_Access'Storage_Size use 0;
228 type Cursor is
229 record
230 Container : Set_Access;
231 Node : Node_Access;
232 end record;
234 No_Element : constant Cursor :=
235 (Container => null,
236 Node => null);
238 use Ada.Streams;
240 procedure Write
241 (Stream : access Root_Stream_Type'Class;
242 Container : Set);
244 for Set'Write use Write;
246 procedure Read
247 (Stream : access Root_Stream_Type'Class;
248 Container : out Set);
250 for Set'Read use Read;
252 Empty_Set : constant Set := (Hash_Table_Type with null record);
254 end Ada.Containers.Indefinite_Hashed_Sets;