OSDN Git Service

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