OSDN Git Service

ada:
[pf3gnuchains/gcc-fork.git] / gcc / ada / a-cihase.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT LIBRARY COMPONENTS                          --
4 --                                                                          --
5 --                  ADA.CONTAINERS.INDEFINITE_HASHED_SETS                   --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --          Copyright (C) 2004-2011, 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 3,  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.                                     --
21 --                                                                          --
22 -- As a special exception under Section 7 of GPL version 3, you are granted --
23 -- additional permissions described in the GCC Runtime Library Exception,   --
24 -- version 3.1, as published by the Free Software Foundation.               --
25 --                                                                          --
26 -- You should have received a copy of the GNU General Public License and    --
27 -- a copy of the GCC Runtime Library Exception along with this program;     --
28 -- see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see    --
29 -- <http://www.gnu.org/licenses/>.                                          --
30 --                                                                          --
31 -- This unit was originally developed by Matthew J Heaney.                  --
32 ------------------------------------------------------------------------------
33
34 with Ada.Iterator_Interfaces;
35 private with Ada.Containers.Hash_Tables;
36 private with Ada.Streams;
37 private with Ada.Finalization;
38
39 generic
40    type Element_Type (<>) is private;
41
42    with function Hash (Element : Element_Type) return Hash_Type;
43
44    with function Equivalent_Elements (Left, Right : Element_Type)
45                                      return Boolean;
46
47    with function "=" (Left, Right : Element_Type) return Boolean is <>;
48
49 package Ada.Containers.Indefinite_Hashed_Sets is
50    pragma Preelaborate;
51    pragma Remote_Types;
52
53    type Set is tagged private
54      with Constant_Indexing => Constant_Reference,
55           Default_Iterator  => Iterate,
56           Iterator_Element  => Element_Type;
57
58    pragma Preelaborable_Initialization (Set);
59
60    type Cursor is private;
61    pragma Preelaborable_Initialization (Cursor);
62
63    Empty_Set : constant Set;
64    --  Set objects declared without an initialization expression are
65    --  initialized to the value Empty_Set.
66
67    No_Element : constant Cursor;
68    --  Cursor objects declared without an initialization expression are
69    --  initialized to the value No_Element.
70
71    function Has_Element (Position : Cursor) return Boolean;
72    --  Equivalent to Position /= No_Element
73
74    package Set_Iterator_Interfaces is new
75      Ada.Iterator_Interfaces (Cursor, Has_Element);
76
77    function "=" (Left, Right : Set) return Boolean;
78    --  For each element in Left, set equality attempts to find the equal
79    --  element in Right; if a search fails, then set equality immediately
80    --  returns False. The search works by calling Hash to find the bucket in
81    --  the Right set that corresponds to the Left element. If the bucket is
82    --  non-empty, the search calls the generic formal element equality operator
83    --  to compare the element (in Left) to the element of each node in the
84    --  bucket (in Right); the search terminates when a matching node in the
85    --  bucket is found, or the nodes in the bucket are exhausted. (Note that
86    --  element equality is called here, not Equivalent_Elements. Set equality
87    --  is the only operation in which element equality is used. Compare set
88    --  equality to Equivalent_Sets, which does call Equivalent_Elements.)
89
90    function Equivalent_Sets (Left, Right : Set) return Boolean;
91    --  Similar to set equality, with the difference that the element in Left is
92    --  compared to the elements in Right using the generic formal
93    --  Equivalent_Elements operation instead of element equality.
94
95    function To_Set (New_Item : Element_Type) return Set;
96    --  Constructs a singleton set comprising New_Element. To_Set calls Hash to
97    --  determine the bucket for New_Item.
98
99    function Capacity (Container : Set) return Count_Type;
100    --  Returns the current capacity of the set. Capacity is the maximum length
101    --  before which rehashing in guaranteed not to occur.
102
103    procedure Reserve_Capacity (Container : in out Set; Capacity : Count_Type);
104    --  Adjusts the current capacity, by allocating a new buckets array. If the
105    --  requested capacity is less than the current capacity, then the capacity
106    --  is contracted (to a value not less than the current length). If the
107    --  requested capacity is greater than the current capacity, then the
108    --  capacity is expanded (to a value not less than what is requested). In
109    --  either case, the nodes are rehashed from the old buckets array onto the
110    --  new buckets array (Hash is called once for each existing element in
111    --  order to compute the new index), and then the old buckets array is
112    --  deallocated.
113
114    function Length (Container : Set) return Count_Type;
115    --  Returns the number of items in the set
116
117    function Is_Empty (Container : Set) return Boolean;
118    --  Equivalent to Length (Container) = 0
119
120    procedure Clear (Container : in out Set);
121    --  Removes all of the items from the set
122
123    function Element (Position : Cursor) return Element_Type;
124    --  Returns the element of the node designated by the cursor
125
126    procedure Replace_Element
127      (Container : in out Set;
128       Position  : Cursor;
129       New_Item  : Element_Type);
130    --  If New_Item is equivalent (as determined by calling Equivalent_Elements)
131    --  to the element of the node designated by Position, then New_Element is
132    --  assigned to that element. Otherwise, it calls Hash to determine the
133    --  bucket for New_Item. If the bucket is not empty, then it calls
134    --  Equivalent_Elements for each node in that bucket to determine whether
135    --  New_Item is equivalent to an element in that bucket. If
136    --  Equivalent_Elements returns True then Program_Error is raised (because
137    --  an element may appear only once in the set); otherwise, New_Item is
138    --  assigned to the node designated by Position, and the node is moved to
139    --  its new bucket.
140
141    procedure Query_Element
142      (Position : Cursor;
143       Process  : not null access procedure (Element : Element_Type));
144    --  Calls Process with the element (having only a constant view) of the node
145    --  designated by the cursor.
146
147    type Constant_Reference_Type
148      (Element : not null access constant Element_Type) is private
149         with Implicit_Dereference => Element;
150
151    function Constant_Reference
152      (Container : aliased Set;
153       Position  : Cursor)
154    return Constant_Reference_Type;
155
156    procedure Move (Target : in out Set; Source : in out Set);
157    --  Clears Target (if it's not empty), and then moves (not copies) the
158    --  buckets array and nodes from Source to Target.
159
160    procedure Insert
161      (Container : in out Set;
162       New_Item  : Element_Type;
163       Position  : out Cursor;
164       Inserted  : out Boolean);
165    --  Conditionally inserts New_Item into the set. If New_Item is already in
166    --  the set, then Inserted returns False and Position designates the node
167    --  containing the existing element (which is not modified). If New_Item is
168    --  not already in the set, then Inserted returns True and Position
169    --  designates the newly-inserted node containing New_Item. The search for
170    --  an existing element works as follows. Hash is called to determine
171    --  New_Item's bucket; if the bucket is non-empty, then Equivalent_Elements
172    --  is called to compare New_Item to the element of each node in that
173    --  bucket. If the bucket is empty, or there were no equivalent elements in
174    --  the bucket, the search "fails" and the New_Item is inserted in the set
175    --  (and Inserted returns True); otherwise, the search "succeeds" (and
176    --  Inserted returns False).
177
178    procedure Insert  (Container : in out Set; New_Item : Element_Type);
179    --  Attempts to insert New_Item into the set, performing the usual insertion
180    --  search (which involves calling both Hash and Equivalent_Elements); if
181    --  the search succeeds (New_Item is equivalent to an element already in the
182    --  set, and so was not inserted), then this operation raises
183    --  Constraint_Error. (This version of Insert is similar to Replace, but
184    --  having the opposite exception behavior. It is intended for use when you
185    --  want to assert that the item is not already in the set.)
186
187    procedure Include (Container : in out Set; New_Item : Element_Type);
188    --  Attempts to insert New_Item into the set. If an element equivalent to
189    --  New_Item is already in the set (the insertion search succeeded, and
190    --  hence New_Item was not inserted), then the value of New_Item is assigned
191    --  to the existing element. (This insertion operation only raises an
192    --  exception if cursor tampering occurs. It is intended for use when you
193    --  want to insert the item in the set, and you don't care whether an
194    --  equivalent element is already present.)
195
196    procedure Replace (Container : in out Set; New_Item : Element_Type);
197    --  Searches for New_Item in the set; if the search fails (because an
198    --  equivalent element was not in the set), then it raises
199    --  Constraint_Error. Otherwise, the existing element is assigned the value
200    --  New_Item. (This is similar to Insert, but with the opposite exception
201    --  behavior. It is intended for use when you want to assert that the item
202    --  is already in the set.)
203
204    procedure Exclude (Container : in out Set; Item : Element_Type);
205    --  Searches for Item in the set, and if found, removes its node from the
206    --  set and then deallocates it. The search works as follows. The operation
207    --  calls Hash to determine the item's bucket; if the bucket is not empty,
208    --  it calls Equivalent_Elements to compare Item to the element of each node
209    --  in the bucket. (This is the deletion analog of Include. It is intended
210    --  for use when you want to remove the item from the set, but don't care
211    --  whether the item is already in the set.)
212
213    procedure Delete  (Container : in out Set; Item : Element_Type);
214    --  Searches for Item in the set (which involves calling both Hash and
215    --  Equivalent_Elements). If the search fails, then the operation raises
216    --  Constraint_Error. Otherwise it removes the node from the set and then
217    --  deallocates it. (This is the deletion analog of non-conditional
218    --  Insert. It is intended for use when you want to assert that the item is
219    --  already in the set.)
220
221    procedure Delete (Container : in out Set; Position  : in out Cursor);
222    --  Removes the node designated by Position from the set, and then
223    --  deallocates the node. The operation calls Hash to determine the bucket,
224    --  and then compares Position to each node in the bucket until there's a
225    --  match (it does not call Equivalent_Elements).
226
227    procedure Union (Target : in out Set; Source : Set);
228    --  The operation first calls Reserve_Capacity if the current capacity is
229    --  less than the sum of the lengths of Source and Target. It then iterates
230    --  over the Source set, and conditionally inserts each element into Target.
231
232    function Union (Left, Right : Set) return Set;
233    --  The operation first copies the Left set to the result, and then iterates
234    --  over the Right set to conditionally insert each element into the result.
235
236    function "or" (Left, Right : Set) return Set renames Union;
237
238    procedure Intersection (Target : in out Set; Source : Set);
239    --  Iterates over the Target set (calling First and Next), calling Find to
240    --  determine whether the element is in Source. If an equivalent element is
241    --  not found in Source, the element is deleted from Target.
242
243    function Intersection (Left, Right : Set) return Set;
244    --  Iterates over the Left set, calling Find to determine whether the
245    --  element is in Right. If an equivalent element is found, it is inserted
246    --  into the result set.
247
248    function "and" (Left, Right : Set) return Set renames Intersection;
249
250    procedure Difference (Target : in out Set; Source : Set);
251    --  Iterates over the Source (calling First and Next), calling Find to
252    --  determine whether the element is in Target. If an equivalent element is
253    --  found, it is deleted from Target.
254
255    function Difference (Left, Right : Set) return Set;
256    --  Iterates over the Left set, calling Find to determine whether the
257    --  element is in the Right set. If an equivalent element is not found, the
258    --  element is inserted into the result set.
259
260    function "-" (Left, Right : Set) return Set renames Difference;
261
262    procedure Symmetric_Difference (Target : in out Set; Source : Set);
263    --  The operation first calls Reserve_Capacity if the current capacity is
264    --  less than the sum of the lengths of Source and Target. It then iterates
265    --  over the Source set, searching for the element in Target (calling Hash
266    --  and Equivalent_Elements). If an equivalent element is found, it is
267    --  removed from Target; otherwise it is inserted into Target.
268
269    function Symmetric_Difference (Left, Right : Set) return Set;
270    --  The operation first iterates over the Left set. It calls Find to
271    --  determine whether the element is in the Right set. If no equivalent
272    --  element is found, the element from Left is inserted into the result. The
273    --  operation then iterates over the Right set, to determine whether the
274    --  element is in the Left set. If no equivalent element is found, the Right
275    --  element is inserted into the result.
276
277    function "xor" (Left, Right : Set) return Set
278      renames Symmetric_Difference;
279
280    function Overlap (Left, Right : Set) return Boolean;
281    --  Iterates over the Left set (calling First and Next), calling Find to
282    --  determine whether the element is in the Right set. If an equivalent
283    --  element is found, the operation immediately returns True. The operation
284    --  returns False if the iteration over Left terminates without finding any
285    --  equivalent element in Right.
286
287    function Is_Subset (Subset : Set; Of_Set : Set) return Boolean;
288    --  Iterates over Subset (calling First and Next), calling Find to determine
289    --  whether the element is in Of_Set. If no equivalent element is found in
290    --  Of_Set, the operation immediately returns False. The operation returns
291    --  True if the iteration over Subset terminates without finding an element
292    --  not in Of_Set (that is, every element in Subset is equivalent to an
293    --  element in Of_Set).
294
295    function First (Container : Set) return Cursor;
296    --  Returns a cursor that designates the first non-empty bucket, by
297    --  searching from the beginning of the buckets array.
298
299    function Next (Position : Cursor) return Cursor;
300    --  Returns a cursor that designates the node that follows the current one
301    --  designated by Position. If Position designates the last node in its
302    --  bucket, the operation calls Hash to compute the index of this bucket,
303    --  and searches the buckets array for the first non-empty bucket, starting
304    --  from that index; otherwise, it simply follows the link to the next node
305    --  in the same bucket.
306
307    procedure Next (Position : in out Cursor);
308    --  Equivalent to Position := Next (Position)
309
310    function Find (Container : Set; Item : Element_Type) return Cursor;
311    --  Searches for Item in the set. Find calls Hash to determine the item's
312    --  bucket; if the bucket is not empty, it calls Equivalent_Elements to
313    --  compare Item to each element in the bucket. If the search succeeds, Find
314    --  returns a cursor designating the node containing the equivalent element;
315    --  otherwise, it returns No_Element.
316
317    function Contains (Container : Set; Item : Element_Type) return Boolean;
318    --  Equivalent to Find (Container, Item) /= No_Element
319
320    function Equivalent_Elements (Left, Right : Cursor) return Boolean;
321    --  Returns the result of calling Equivalent_Elements with the elements of
322    --  the nodes designated by cursors Left and Right.
323
324    function Equivalent_Elements
325      (Left  : Cursor;
326       Right : Element_Type) return Boolean;
327    --  Returns the result of calling Equivalent_Elements with element of the
328    --  node designated by Left and element Right.
329
330    function Equivalent_Elements
331      (Left  : Element_Type;
332       Right : Cursor) return Boolean;
333    --  Returns the result of calling Equivalent_Elements with element Left and
334    --  the element of the node designated by Right.
335
336    procedure Iterate
337      (Container : Set;
338       Process   : not null access procedure (Position : Cursor));
339    --  Calls Process for each node in the set
340
341    function Iterate (Container : Set)
342      return Set_Iterator_Interfaces.Forward_Iterator'Class;
343
344    generic
345       type Key_Type (<>) is private;
346
347       with function Key (Element : Element_Type) return Key_Type;
348
349       with function Hash (Key : Key_Type) return Hash_Type;
350
351       with function Equivalent_Keys (Left, Right : Key_Type) return Boolean;
352
353    package Generic_Keys is
354
355       function Key (Position : Cursor) return Key_Type;
356       --  Applies generic formal operation Key to the element of the node
357       --  designated by Position.
358
359       function Element (Container : Set; Key : Key_Type) return Element_Type;
360       --  Searches (as per the key-based Find) for the node containing Key, and
361       --  returns the associated element.
362
363       procedure Replace
364         (Container : in out Set;
365          Key       : Key_Type;
366          New_Item  : Element_Type);
367       --  Searches (as per the key-based Find) for the node containing Key, and
368       --  then replaces the element of that node (as per the element-based
369       --  Replace_Element).
370
371       procedure Exclude (Container : in out Set; Key : Key_Type);
372       --  Searches for Key in the set, and if found, removes its node from the
373       --  set and then deallocates it. The search works by first calling Hash
374       --  (on Key) to determine the bucket; if the bucket is not empty, it
375       --  calls Equivalent_Keys to compare parameter Key to the value of
376       --  generic formal operation Key applied to element of each node in the
377       --  bucket.
378
379       procedure Delete (Container : in out Set; Key : Key_Type);
380       --  Deletes the node containing Key as per Exclude, with the difference
381       --  that Constraint_Error is raised if Key is not found.
382
383       function Find (Container : Set; Key : Key_Type) return Cursor;
384       --  Searches for the node containing Key, and returns a cursor
385       --  designating the node. The search works by first calling Hash (on Key)
386       --  to determine the bucket. If the bucket is not empty, the search
387       --  compares Key to the element of each node in the bucket, and returns
388       --  the matching node. The comparison itself works by applying the
389       --  generic formal Key operation to the element of the node, and then
390       --  calling generic formal operation Equivalent_Keys.
391
392       function Contains (Container : Set; Key : Key_Type) return Boolean;
393       --  Equivalent to Find (Container, Key) /= No_Element
394
395       procedure Update_Element_Preserving_Key
396         (Container : in out Set;
397          Position  : Cursor;
398          Process   : not null access
399                        procedure (Element : in out Element_Type));
400       --  Calls Process with the element of the node designated by Position,
401       --  but with the restriction that the key-value of the element is not
402       --  modified. The operation first makes a copy of the value returned by
403       --  applying generic formal operation Key on the element of the node, and
404       --  then calls Process with the element. The operation verifies that the
405       --  key-part has not been modified by calling generic formal operation
406       --  Equivalent_Keys to compare the saved key-value to the value returned
407       --  by applying generic formal operation Key to the post-Process value of
408       --  element. If the key values compare equal then the operation
409       --  completes. Otherwise, the node is removed from the map and
410       --  Program_Error is raised.
411
412       type Reference_Type (Element : not null access Element_Type) is private
413         with Implicit_Dereference => Element;
414
415       function Reference_Preserving_Key
416         (Container : aliased in out Set;
417          Position  : Cursor)
418       return Reference_Type;
419
420       function Reference_Preserving_Key
421         (Container : aliased in out Set;
422          Key  : Key_Type)
423       return Reference_Type;
424
425    private
426       type Reference_Type (Element : not null access Element_Type)
427          is null record;
428    end Generic_Keys;
429
430 private
431
432    pragma Inline (Next);
433
434    type Node_Type;
435    type Node_Access is access Node_Type;
436
437    type Element_Access is access Element_Type;
438
439    type Node_Type is limited record
440       Element : Element_Access;
441       Next    : Node_Access;
442    end record;
443
444    package HT_Types is
445      new Hash_Tables.Generic_Hash_Table_Types (Node_Type, Node_Access);
446
447    type Set is new Ada.Finalization.Controlled with record
448       HT : HT_Types.Hash_Table_Type;
449    end record;
450
451    overriding procedure Adjust (Container : in out Set);
452
453    overriding procedure Finalize (Container : in out Set);
454
455    use HT_Types;
456    use Ada.Finalization;
457    use Ada.Streams;
458
459    type Set_Access is access all Set;
460    for Set_Access'Storage_Size use 0;
461
462    type Cursor is record
463       Container : Set_Access;
464       Node      : Node_Access;
465    end record;
466
467    procedure Write
468      (Stream : not null access Root_Stream_Type'Class;
469       Item   : Cursor);
470
471    for Cursor'Write use Write;
472
473    procedure Read
474      (Stream : not null access Root_Stream_Type'Class;
475       Item   : out Cursor);
476
477    for Cursor'Read use Read;
478
479    No_Element : constant Cursor := (Container => null, Node => null);
480
481    procedure Write
482      (Stream    : not null access Root_Stream_Type'Class;
483       Container : Set);
484
485    for Set'Write use Write;
486
487    procedure Read
488      (Stream    : not null access Root_Stream_Type'Class;
489       Container : out Set);
490
491    for Set'Read use Read;
492
493    type Constant_Reference_Type
494      (Element : not null access constant Element_Type) is null record;
495
496    procedure Read
497      (Stream : not null access Root_Stream_Type'Class;
498       Item   : out Constant_Reference_Type);
499
500    for Constant_Reference_Type'Read use Read;
501
502    procedure Write
503      (Stream : not null access Root_Stream_Type'Class;
504       Item   : Constant_Reference_Type);
505
506    for Constant_Reference_Type'Write use Write;
507
508    Empty_Set : constant Set := (Controlled with HT => (null, 0, 0, 0));
509
510 end Ada.Containers.Indefinite_Hashed_Sets;