OSDN Git Service

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