* jump.c: Remove prototypes for delete_computation and
[official-gcc.git] / gcc / ada / a-ciorse.ads
blob3fc5f45275281e110691701520afd5a35ee23c45
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-2006, 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 ------------------------------------------------------------------------------
37 with Ada.Containers.Red_Black_Trees;
38 with Ada.Finalization;
39 with Ada.Streams;
41 generic
42 type Element_Type (<>) is private;
44 with function "<" (Left, Right : Element_Type) return Boolean is <>;
45 with function "=" (Left, Right : Element_Type) return Boolean is <>;
47 package Ada.Containers.Indefinite_Ordered_Sets is
48 pragma Preelaborate;
50 function Equivalent_Elements (Left, Right : Element_Type) return Boolean;
52 type Set is tagged private;
53 pragma Preelaborable_Initialization (Set);
55 type Cursor is private;
56 pragma Preelaborable_Initialization (Cursor);
58 Empty_Set : constant Set;
60 No_Element : constant Cursor;
62 function "=" (Left, Right : Set) return Boolean;
64 function Equivalent_Sets (Left, Right : Set) return Boolean;
66 function To_Set (New_Item : Element_Type) return Set;
68 function Length (Container : Set) return Count_Type;
70 function Is_Empty (Container : Set) return Boolean;
72 procedure Clear (Container : in out Set);
74 function Element (Position : Cursor) return Element_Type;
76 procedure Replace_Element
77 (Container : in out Set;
78 Position : Cursor;
79 New_Item : Element_Type);
81 procedure Query_Element
82 (Position : Cursor;
83 Process : not null access procedure (Element : Element_Type));
85 procedure Move (Target : in out Set; Source : in out Set);
87 procedure Insert
88 (Container : in out Set;
89 New_Item : Element_Type;
90 Position : out Cursor;
91 Inserted : out Boolean);
93 procedure Insert
94 (Container : in out Set;
95 New_Item : Element_Type);
97 procedure Include
98 (Container : in out Set;
99 New_Item : Element_Type);
101 procedure Replace
102 (Container : in out Set;
103 New_Item : Element_Type);
105 procedure Exclude
106 (Container : in out Set;
107 Item : Element_Type);
109 procedure Delete
110 (Container : in out Set;
111 Item : Element_Type);
113 procedure Delete
114 (Container : in out Set;
115 Position : in out Cursor);
117 procedure Delete_First (Container : in out Set);
119 procedure Delete_Last (Container : in out Set);
121 procedure Union (Target : in out Set; Source : Set);
123 function Union (Left, Right : Set) return Set;
125 function "or" (Left, Right : Set) return Set renames Union;
127 procedure Intersection (Target : in out Set; Source : Set);
129 function Intersection (Left, Right : Set) return Set;
131 function "and" (Left, Right : Set) return Set renames Intersection;
133 procedure Difference (Target : in out Set; Source : Set);
135 function Difference (Left, Right : Set) return Set;
137 function "-" (Left, Right : Set) return Set renames Difference;
139 procedure Symmetric_Difference (Target : in out Set; Source : Set);
141 function Symmetric_Difference (Left, Right : Set) return Set;
143 function "xor" (Left, Right : Set) return Set renames Symmetric_Difference;
145 function Overlap (Left, Right : Set) return Boolean;
147 function Is_Subset (Subset : Set; Of_Set : Set) return Boolean;
149 function First (Container : Set) return Cursor;
151 function First_Element (Container : Set) return Element_Type;
153 function Last (Container : Set) return Cursor;
155 function Last_Element (Container : Set) return Element_Type;
157 function Next (Position : Cursor) return Cursor;
159 procedure Next (Position : in out Cursor);
161 function Previous (Position : Cursor) return Cursor;
163 procedure Previous (Position : in out Cursor);
165 function Find (Container : Set; Item : Element_Type) return Cursor;
167 function Floor (Container : Set; Item : Element_Type) return Cursor;
169 function Ceiling (Container : Set; Item : Element_Type) return Cursor;
171 function Contains (Container : Set; Item : Element_Type) return Boolean;
173 function Has_Element (Position : Cursor) return Boolean;
175 function "<" (Left, Right : Cursor) return Boolean;
177 function ">" (Left, Right : Cursor) return Boolean;
179 function "<" (Left : Cursor; Right : Element_Type) return Boolean;
181 function ">" (Left : Cursor; Right : Element_Type) return Boolean;
183 function "<" (Left : Element_Type; Right : Cursor) return Boolean;
185 function ">" (Left : Element_Type; Right : Cursor) return Boolean;
187 procedure Iterate
188 (Container : Set;
189 Process : not null access procedure (Position : Cursor));
191 procedure Reverse_Iterate
192 (Container : Set;
193 Process : not null access procedure (Position : Cursor));
195 generic
196 type Key_Type (<>) is private;
198 with function Key (Element : Element_Type) return Key_Type;
200 with function "<" (Left, Right : Key_Type) return Boolean is <>;
202 package Generic_Keys is
204 function Equivalent_Keys (Left, Right : Key_Type) return Boolean;
206 function Key (Position : Cursor) return Key_Type;
208 function Element (Container : Set; Key : Key_Type) return Element_Type;
210 procedure Replace
211 (Container : in out Set;
212 Key : Key_Type;
213 New_Item : Element_Type);
215 procedure Exclude (Container : in out Set; Key : Key_Type);
217 procedure Delete (Container : in out Set; Key : Key_Type);
219 function Find
220 (Container : Set;
221 Key : Key_Type) return Cursor;
223 function Floor
224 (Container : Set;
225 Key : Key_Type) return Cursor;
227 function Ceiling
228 (Container : Set;
229 Key : Key_Type) return Cursor;
231 function Contains
232 (Container : Set;
233 Key : Key_Type) return Boolean;
235 procedure Update_Element_Preserving_Key
236 (Container : in out Set;
237 Position : Cursor;
238 Process : not null access
239 procedure (Element : in out Element_Type));
241 end Generic_Keys;
243 private
245 type Node_Type;
246 type Node_Access is access Node_Type;
248 type Element_Access is access Element_Type;
250 type Node_Type is limited record
251 Parent : Node_Access;
252 Left : Node_Access;
253 Right : Node_Access;
254 Color : Red_Black_Trees.Color_Type := Red_Black_Trees.Red;
255 Element : Element_Access;
256 end record;
258 package Tree_Types is new Red_Black_Trees.Generic_Tree_Types
259 (Node_Type,
260 Node_Access);
262 type Set is new Ada.Finalization.Controlled with record
263 Tree : Tree_Types.Tree_Type;
264 end record;
266 procedure Adjust (Container : in out Set);
268 procedure Finalize (Container : in out Set) renames Clear;
270 use Red_Black_Trees;
271 use Tree_Types;
272 use Ada.Finalization;
273 use Ada.Streams;
275 type Set_Access is access all Set;
276 for Set_Access'Storage_Size use 0;
278 type Cursor is record
279 Container : Set_Access;
280 Node : Node_Access;
281 end record;
283 procedure Write
284 (Stream : access Root_Stream_Type'Class;
285 Item : Cursor);
287 for Cursor'Write use Write;
289 procedure Read
290 (Stream : access Root_Stream_Type'Class;
291 Item : out Cursor);
293 for Cursor'Read use Read;
295 No_Element : constant Cursor := Cursor'(null, null);
297 procedure Write
298 (Stream : access Root_Stream_Type'Class;
299 Container : Set);
301 for Set'Write use Write;
303 procedure Read
304 (Stream : access Root_Stream_Type'Class;
305 Container : out Set);
307 for Set'Read use Read;
309 Empty_Set : constant Set :=
310 (Controlled with Tree => (First => null,
311 Last => null,
312 Root => null,
313 Length => 0,
314 Busy => 0,
315 Lock => 0));
317 end Ada.Containers.Indefinite_Ordered_Sets;