OSDN Git Service

PR c++/27714
[pf3gnuchains/gcc-fork.git] / gcc / ada / a-ciorse.ads
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 _ O R D E R E D _ S E T S               --
7 --                                                                          --
8 --                                 S p e c                                  --
9 --                                                                          --
10 --          Copyright (C) 2004-2005, 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 ------------------------------------------------------------------------------
36
37 with Ada.Containers.Red_Black_Trees;
38 with Ada.Finalization;
39 with Ada.Streams;
40
41 generic
42    type Element_Type (<>) is private;
43
44    with function "<" (Left, Right : Element_Type) return Boolean is <>;
45    with function "=" (Left, Right : Element_Type) return Boolean is <>;
46
47 package Ada.Containers.Indefinite_Ordered_Sets is
48    pragma Preelaborate;
49
50    function Equivalent_Elements (Left, Right : Element_Type) return Boolean;
51
52    type Set is tagged private;
53
54    type Cursor is private;
55
56    Empty_Set : constant Set;
57
58    No_Element : constant Cursor;
59
60    function "=" (Left, Right : Set) return Boolean;
61
62    function Equivalent_Sets (Left, Right : Set) return Boolean;
63
64    function To_Set (New_Item : Element_Type) return Set;
65
66    function Length (Container : Set) return Count_Type;
67
68    function Is_Empty (Container : Set) return Boolean;
69
70    procedure Clear (Container : in out Set);
71
72    function Element (Position : Cursor) return Element_Type;
73
74    procedure Replace_Element
75      (Container : in out Set;
76       Position  : Cursor;
77       New_Item  : Element_Type);
78
79    procedure Query_Element
80      (Position : Cursor;
81       Process  : not null access procedure (Element : Element_Type));
82
83    procedure Move (Target : in out Set; Source : in out Set);
84
85    procedure Insert
86      (Container : in out Set;
87       New_Item  : Element_Type;
88       Position  : out Cursor;
89       Inserted  : out Boolean);
90
91    procedure Insert
92      (Container : in out Set;
93       New_Item  : Element_Type);
94
95    procedure Include
96      (Container : in out Set;
97       New_Item  : Element_Type);
98
99    procedure Replace
100      (Container : in out Set;
101       New_Item  : Element_Type);
102
103    procedure Exclude
104      (Container : in out Set;
105       Item      : Element_Type);
106
107    procedure Delete
108      (Container : in out Set;
109       Item      : Element_Type);
110
111    procedure Delete
112      (Container : in out Set;
113       Position  : in out Cursor);
114
115    procedure Delete_First (Container : in out Set);
116
117    procedure Delete_Last (Container : in out Set);
118
119    procedure Union (Target : in out Set; Source : Set);
120
121    function Union (Left, Right : Set) return Set;
122
123    function "or" (Left, Right : Set) return Set renames Union;
124
125    procedure Intersection (Target : in out Set; Source : Set);
126
127    function Intersection (Left, Right : Set) return Set;
128
129    function "and" (Left, Right : Set) return Set renames Intersection;
130
131    procedure Difference (Target : in out Set; Source : Set);
132
133    function Difference (Left, Right : Set) return Set;
134
135    function "-" (Left, Right : Set) return Set renames Difference;
136
137    procedure Symmetric_Difference (Target : in out Set; Source : Set);
138
139    function Symmetric_Difference (Left, Right : Set) return Set;
140
141    function "xor" (Left, Right : Set) return Set renames Symmetric_Difference;
142
143    function Overlap (Left, Right : Set) return Boolean;
144
145    function Is_Subset (Subset : Set; Of_Set : Set) return Boolean;
146
147    function First (Container : Set) return Cursor;
148
149    function First_Element (Container : Set) return Element_Type;
150
151    function Last (Container : Set) return Cursor;
152
153    function Last_Element (Container : Set) return Element_Type;
154
155    function Next (Position : Cursor) return Cursor;
156
157    procedure Next (Position : in out Cursor);
158
159    function Previous (Position : Cursor) return Cursor;
160
161    procedure Previous (Position : in out Cursor);
162
163    function Find (Container : Set; Item : Element_Type) return Cursor;
164
165    function Floor (Container : Set; Item : Element_Type) return Cursor;
166
167    function Ceiling (Container : Set; Item : Element_Type) return Cursor;
168
169    function Contains (Container : Set; Item : Element_Type) return Boolean;
170
171    function Has_Element (Position : Cursor) return Boolean;
172
173    function "<" (Left, Right : Cursor) return Boolean;
174
175    function ">" (Left, Right : Cursor) return Boolean;
176
177    function "<" (Left : Cursor; Right : Element_Type) return Boolean;
178
179    function ">" (Left : Cursor; Right : Element_Type) return Boolean;
180
181    function "<" (Left : Element_Type; Right : Cursor) return Boolean;
182
183    function ">" (Left : Element_Type; Right : Cursor) return Boolean;
184
185    procedure Iterate
186      (Container : Set;
187       Process   : not null access procedure (Position : Cursor));
188
189    procedure Reverse_Iterate
190      (Container : Set;
191       Process   : not null access procedure (Position : Cursor));
192
193    generic
194       type Key_Type (<>) is private;
195
196       with function Key (Element : Element_Type) return Key_Type;
197
198       with function "<" (Left, Right : Key_Type) return Boolean is <>;
199
200    package Generic_Keys is
201
202       function Equivalent_Keys (Left, Right : Key_Type) return Boolean;
203
204       function Key (Position : Cursor) return Key_Type;
205
206       function Element (Container : Set; Key : Key_Type) return Element_Type;
207
208       procedure Replace
209         (Container : in out Set;
210          Key       : Key_Type;
211          New_Item  : Element_Type);
212
213       procedure Exclude (Container : in out Set; Key : Key_Type);
214
215       procedure Delete (Container : in out Set; Key : Key_Type);
216
217       function Find
218         (Container : Set;
219          Key       : Key_Type) return Cursor;
220
221       function Floor
222         (Container : Set;
223          Key       : Key_Type) return Cursor;
224
225       function Ceiling
226         (Container : Set;
227          Key       : Key_Type) return Cursor;
228
229       function Contains
230         (Container : Set;
231          Key       : Key_Type) return Boolean;
232
233       procedure Update_Element_Preserving_Key
234         (Container : in out Set;
235          Position  : Cursor;
236          Process   : not null access
237                        procedure (Element : in out Element_Type));
238
239    end Generic_Keys;
240
241 private
242
243    type Node_Type;
244    type Node_Access is access Node_Type;
245
246    type Element_Access is access Element_Type;
247
248    type Node_Type is limited record
249       Parent  : Node_Access;
250       Left    : Node_Access;
251       Right   : Node_Access;
252       Color   : Red_Black_Trees.Color_Type := Red_Black_Trees.Red;
253       Element : Element_Access;
254    end record;
255
256    package Tree_Types is new Red_Black_Trees.Generic_Tree_Types
257      (Node_Type,
258       Node_Access);
259
260    type Set is new Ada.Finalization.Controlled with record
261       Tree : Tree_Types.Tree_Type;
262    end record;
263
264    procedure Adjust (Container : in out Set);
265
266    procedure Finalize (Container : in out Set) renames Clear;
267
268    use Red_Black_Trees;
269    use Tree_Types;
270    use Ada.Finalization;
271    use Ada.Streams;
272
273    type Set_Access is access all Set;
274    for Set_Access'Storage_Size use 0;
275
276    type Cursor is record
277       Container : Set_Access;
278       Node      : Node_Access;
279    end record;
280
281    procedure Write
282      (Stream : access Root_Stream_Type'Class;
283       Item   : Cursor);
284
285    for Cursor'Write use Write;
286
287    procedure Read
288      (Stream : access Root_Stream_Type'Class;
289       Item   : out Cursor);
290
291    for Cursor'Read use Read;
292
293    No_Element : constant Cursor := Cursor'(null, null);
294
295    procedure Write
296      (Stream    : access Root_Stream_Type'Class;
297       Container : Set);
298
299    for Set'Write use Write;
300
301    procedure Read
302      (Stream    : access Root_Stream_Type'Class;
303       Container : out Set);
304
305    for Set'Read use Read;
306
307    Empty_Set : constant Set :=
308                  (Controlled with Tree => (First  => null,
309                                            Last   => null,
310                                            Root   => null,
311                                            Length => 0,
312                                            Busy   => 0,
313                                            Lock   => 0));
314
315 end Ada.Containers.Indefinite_Ordered_Sets;