This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / ada / a-ciormu.ads
blob328d0dded9f3a02c34e0b82f45ea985db074ac76
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT LIBRARY COMPONENTS --
4 -- --
5 -- ADA.CONTAINERS.INDEFINITE_ORDERED_MULTISETS --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 2004 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, 59 Temple Place - Suite 330, Boston, --
24 -- MA 02111-1307, 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 ------------------------------------------------------------------------------
36 with Ada.Containers.Red_Black_Trees;
37 with Ada.Finalization;
38 with Ada.Streams;
40 generic
41 type Element_Type (<>) is private;
43 with function "<" (Left, Right : Element_Type) return Boolean is <>;
44 with function "=" (Left, Right : Element_Type) return Boolean is <>;
46 package Ada.Containers.Indefinite_Ordered_Multisets is
47 pragma Preelaborate (Indefinite_Ordered_Multisets);
49 type Set is tagged private;
51 type Cursor is private;
53 Empty_Set : constant Set;
55 No_Element : constant Cursor;
57 function "=" (Left, Right : Set) return Boolean;
59 function Length (Container : Set) return Count_Type;
61 function Is_Empty (Container : Set) return Boolean;
63 procedure Clear (Container : in out Set);
65 function Element (Position : Cursor) return Element_Type;
67 procedure Query_Element
68 (Position : Cursor;
69 Process : not null access procedure (Element : Element_Type));
71 procedure Move (Target : in out Set; Source : in out Set);
73 procedure Insert
74 (Container : in out Set;
75 New_Item : Element_Type;
76 Position : out Cursor);
78 procedure Insert (Container : in out Set; New_Item : Element_Type);
80 procedure Delete (Container : in out Set; Item : Element_Type);
82 procedure Exclude (Container : in out Set; Item : Element_Type);
84 procedure Delete (Container : in out Set; Position : in out Cursor);
86 procedure Delete_First (Container : in out Set);
88 procedure Delete_Last (Container : in out Set);
91 -- NOTE: The following operation is named Replace in the Madison API.
92 -- However, it should be named Replace_Element ???
94 -- procedure Replace
95 -- (Container : in out Set;
96 -- Position : Cursor;
97 -- By : Element_Type);
99 procedure Union (Target : in out Set;
100 Source : Set);
102 function Union (Left, Right : Set) return Set;
104 function "or" (Left, Right : Set) return Set renames Union;
106 procedure Intersection (Target : in out Set; Source : Set);
108 function Intersection (Left, Right : Set) return Set;
110 function "and" (Left, Right : Set) return Set renames Intersection;
112 procedure Difference (Target : in out Set; Source : Set);
114 function Difference (Left, Right : Set) return Set;
116 function "-" (Left, Right : Set) return Set renames Difference;
118 procedure Symmetric_Difference (Target : in out Set; Source : Set);
120 function Symmetric_Difference (Left, Right : Set) return Set;
122 function "xor" (Left, Right : Set) return Set renames Symmetric_Difference;
124 function Overlap (Left, Right : Set) return Boolean;
126 function Is_Subset (Subset : Set; Of_Set : Set) return Boolean;
128 function Contains (Container : Set; Item : Element_Type) return Boolean;
130 function Find (Container : Set; Item : Element_Type) return Cursor;
132 function Floor (Container : Set; Item : Element_Type) return Cursor;
134 function Ceiling (Container : Set; Item : Element_Type) return Cursor;
136 function First (Container : Set) return Cursor;
138 function First_Element (Container : Set) return Element_Type;
140 function Last (Container : Set) return Cursor;
142 function Last_Element (Container : Set) return Element_Type;
144 function Next (Position : Cursor) return Cursor;
146 function Previous (Position : Cursor) return Cursor;
148 procedure Next (Position : in out Cursor);
150 procedure Previous (Position : in out Cursor);
152 function Has_Element (Position : Cursor) return Boolean;
154 function "<" (Left, Right : Cursor) return Boolean;
156 function ">" (Left, Right : Cursor) return Boolean;
158 function "<" (Left : Cursor; Right : Element_Type) return Boolean;
160 function ">" (Left : Cursor; Right : Element_Type) return Boolean;
162 function "<" (Left : Element_Type; Right : Cursor) return Boolean;
164 function ">" (Left : Element_Type; Right : Cursor) return Boolean;
166 procedure Iterate
167 (Container : Set;
168 Process : not null access procedure (Position : Cursor));
170 procedure Reverse_Iterate
171 (Container : Set;
172 Process : not null access procedure (Position : Cursor));
174 procedure Iterate
175 (Container : Set;
176 Item : Element_Type;
177 Process : not null access procedure (Position : Cursor));
179 procedure Reverse_Iterate
180 (Container : Set;
181 Item : Element_Type;
182 Process : not null access procedure (Position : Cursor));
184 generic
186 type Key_Type (<>) is limited private;
188 with function Key (Element : Element_Type) return Key_Type;
190 with function "<" (Left : Key_Type; Right : Element_Type)
191 return Boolean is <>;
193 with function ">" (Left : Key_Type; Right : Element_Type)
194 return Boolean is <>;
196 package Generic_Keys is
198 function Contains (Container : Set; Key : Key_Type) return Boolean;
200 function Find (Container : Set; Key : Key_Type) return Cursor;
202 function Floor (Container : Set; Key : Key_Type) return Cursor;
204 function Ceiling (Container : Set; Key : Key_Type) return Cursor;
206 function Key (Position : Cursor) return Key_Type;
208 function Element (Container : Set; Key : Key_Type) return Element_Type;
210 -- NOTE: in post-madison api ???
211 -- procedure Replace
212 -- (Container : in out Set;
213 -- Key : Key_Type;
214 -- New_Item : Element_Type);
216 procedure Delete (Container : in out Set; Key : Key_Type);
218 procedure Exclude (Container : in out Set; Key : Key_Type);
220 function "<" (Left : Cursor; Right : Key_Type) return Boolean;
222 function ">" (Left : Cursor; Right : Key_Type) return Boolean;
224 function "<" (Left : Key_Type; Right : Cursor) return Boolean;
226 function ">" (Left : Key_Type; Right : Cursor) return Boolean;
228 procedure Checked_Update_Element
229 (Container : in out Set;
230 Position : Cursor;
231 Process : not null access
232 procedure (Element : in out Element_Type));
234 procedure Iterate
235 (Container : Set;
236 Key : Key_Type;
237 Process : not null access procedure (Position : Cursor));
239 procedure Reverse_Iterate
240 (Container : Set;
241 Key : Key_Type;
242 Process : not null access procedure (Position : Cursor));
244 end Generic_Keys;
246 private
248 type Node_Type;
249 type Node_Access is access Node_Type;
251 package Tree_Types is
252 new Red_Black_Trees.Generic_Tree_Types (Node_Access);
254 use Tree_Types;
255 use Ada.Finalization;
257 type Set is new Controlled with record
258 Tree : Tree_Type := (Length => 0, others => null);
259 end record;
261 procedure Adjust (Container : in out Set);
263 procedure Finalize (Container : in out Set) renames Clear;
265 type Set_Access is access constant Set;
266 for Set_Access'Storage_Size use 0;
268 type Cursor is record
269 Container : Set_Access;
270 Node : Node_Access;
271 end record;
273 No_Element : constant Cursor := Cursor'(null, null);
275 use Ada.Streams;
277 procedure Write (Stream : access Root_Stream_Type'Class; Container : Set);
279 for Set'Write use Write;
281 procedure Read
282 (Stream : access Root_Stream_Type'Class;
283 Container : out Set);
285 for Set'Read use Read;
287 Empty_Set : constant Set :=
288 (Controlled with Tree => (Length => 0, others => null));
290 end Ada.Containers.Indefinite_Ordered_Multisets;