2015-05-22 Robert Dewar <dewar@adacore.com>
[official-gcc.git] / gcc / ada / a-coorma.ads
blob56a98fbc0e4b6cf3226c2ddc12408b8dfa917c78
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 _ M A P S --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 2004-2015, 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 3, 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. --
21 -- --
22 -- As a special exception under Section 7 of GPL version 3, you are granted --
23 -- additional permissions described in the GCC Runtime Library Exception, --
24 -- version 3.1, as published by the Free Software Foundation. --
25 -- --
26 -- You should have received a copy of the GNU General Public License and --
27 -- a copy of the GCC Runtime Library Exception along with this program; --
28 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
29 -- <http://www.gnu.org/licenses/>. --
30 -- --
31 -- This unit was originally developed by Matthew J Heaney. --
32 ------------------------------------------------------------------------------
34 with Ada.Iterator_Interfaces;
36 private with Ada.Containers.Red_Black_Trees;
37 private with Ada.Finalization;
38 private with Ada.Streams;
40 generic
41 type Key_Type is private;
42 type Element_Type is private;
44 with function "<" (Left, Right : Key_Type) return Boolean is <>;
45 with function "=" (Left, Right : Element_Type) return Boolean is <>;
47 package Ada.Containers.Ordered_Maps is
48 pragma Preelaborate;
49 pragma Remote_Types;
51 function Equivalent_Keys (Left, Right : Key_Type) return Boolean;
53 type Map is tagged private with
54 Constant_Indexing => Constant_Reference,
55 Variable_Indexing => Reference,
56 Default_Iterator => Iterate,
57 Iterator_Element => Element_Type;
59 type Cursor is private;
60 pragma Preelaborable_Initialization (Cursor);
62 Empty_Map : constant Map;
64 No_Element : constant Cursor;
66 function Has_Element (Position : Cursor) return Boolean;
68 package Map_Iterator_Interfaces is new
69 Ada.Iterator_Interfaces (Cursor, Has_Element);
71 function "=" (Left, Right : Map) return Boolean;
73 function Length (Container : Map) return Count_Type;
75 function Is_Empty (Container : Map) return Boolean;
77 procedure Clear (Container : in out Map);
79 function Key (Position : Cursor) return Key_Type;
81 function Element (Position : Cursor) return Element_Type;
83 procedure Replace_Element
84 (Container : in out Map;
85 Position : Cursor;
86 New_Item : Element_Type);
88 procedure Query_Element
89 (Position : Cursor;
90 Process : not null access
91 procedure (Key : Key_Type; Element : Element_Type));
93 procedure Update_Element
94 (Container : in out Map;
95 Position : Cursor;
96 Process : not null access
97 procedure (Key : Key_Type; Element : in out Element_Type));
99 type Constant_Reference_Type
100 (Element : not null access constant Element_Type) is private
101 with
102 Implicit_Dereference => Element;
104 type Reference_Type (Element : not null access Element_Type) is private
105 with
106 Implicit_Dereference => Element;
108 function Constant_Reference
109 (Container : aliased Map;
110 Position : Cursor) return Constant_Reference_Type;
111 pragma Inline (Constant_Reference);
113 function Reference
114 (Container : aliased in out Map;
115 Position : Cursor) return Reference_Type;
116 pragma Inline (Reference);
118 function Constant_Reference
119 (Container : aliased Map;
120 Key : Key_Type) return Constant_Reference_Type;
121 pragma Inline (Constant_Reference);
123 function Reference
124 (Container : aliased in out Map;
125 Key : Key_Type) return Reference_Type;
126 pragma Inline (Reference);
128 procedure Assign (Target : in out Map; Source : Map);
130 function Copy (Source : Map) return Map;
132 procedure Move (Target : in out Map; Source : in out Map);
134 procedure Insert
135 (Container : in out Map;
136 Key : Key_Type;
137 New_Item : Element_Type;
138 Position : out Cursor;
139 Inserted : out Boolean);
141 procedure Insert
142 (Container : in out Map;
143 Key : Key_Type;
144 Position : out Cursor;
145 Inserted : out Boolean);
147 procedure Insert
148 (Container : in out Map;
149 Key : Key_Type;
150 New_Item : Element_Type);
152 procedure Include
153 (Container : in out Map;
154 Key : Key_Type;
155 New_Item : Element_Type);
157 procedure Replace
158 (Container : in out Map;
159 Key : Key_Type;
160 New_Item : Element_Type);
162 procedure Exclude (Container : in out Map; Key : Key_Type);
164 procedure Delete (Container : in out Map; Key : Key_Type);
166 procedure Delete (Container : in out Map; Position : in out Cursor);
168 procedure Delete_First (Container : in out Map);
170 procedure Delete_Last (Container : in out Map);
172 function First (Container : Map) return Cursor;
174 function First_Element (Container : Map) return Element_Type;
176 function First_Key (Container : Map) return Key_Type;
178 function Last (Container : Map) return Cursor;
180 function Last_Element (Container : Map) return Element_Type;
182 function Last_Key (Container : Map) return Key_Type;
184 function Next (Position : Cursor) return Cursor;
186 procedure Next (Position : in out Cursor);
188 function Previous (Position : Cursor) return Cursor;
190 procedure Previous (Position : in out Cursor);
192 function Find (Container : Map; Key : Key_Type) return Cursor;
194 function Element (Container : Map; Key : Key_Type) return Element_Type;
196 function Floor (Container : Map; Key : Key_Type) return Cursor;
198 function Ceiling (Container : Map; Key : Key_Type) return Cursor;
200 function Contains (Container : Map; Key : Key_Type) return Boolean;
202 function "<" (Left, Right : Cursor) return Boolean;
204 function ">" (Left, Right : Cursor) return Boolean;
206 function "<" (Left : Cursor; Right : Key_Type) return Boolean;
208 function ">" (Left : Cursor; Right : Key_Type) return Boolean;
210 function "<" (Left : Key_Type; Right : Cursor) return Boolean;
212 function ">" (Left : Key_Type; Right : Cursor) return Boolean;
214 procedure Iterate
215 (Container : Map;
216 Process : not null access procedure (Position : Cursor));
218 procedure Reverse_Iterate
219 (Container : Map;
220 Process : not null access procedure (Position : Cursor));
222 -- The map container supports iteration in both the forward and reverse
223 -- directions, hence these constructor functions return an object that
224 -- supports the Reversible_Iterator interface.
226 function Iterate
227 (Container : Map)
228 return Map_Iterator_Interfaces.Reversible_Iterator'class;
230 function Iterate
231 (Container : Map;
232 Start : Cursor)
233 return Map_Iterator_Interfaces.Reversible_Iterator'class;
235 private
237 pragma Inline (Next);
238 pragma Inline (Previous);
240 type Node_Type;
241 type Node_Access is access Node_Type;
243 type Node_Type is limited record
244 Parent : Node_Access;
245 Left : Node_Access;
246 Right : Node_Access;
247 Color : Red_Black_Trees.Color_Type := Red_Black_Trees.Red;
248 Key : Key_Type;
249 Element : aliased Element_Type;
250 end record;
252 package Tree_Types is
253 new Red_Black_Trees.Generic_Tree_Types (Node_Type, Node_Access);
255 type Map is new Ada.Finalization.Controlled with record
256 Tree : Tree_Types.Tree_Type;
257 end record;
259 overriding procedure Adjust (Container : in out Map);
261 overriding procedure Finalize (Container : in out Map) renames Clear;
263 use Red_Black_Trees;
264 use Tree_Types;
265 use Ada.Finalization;
266 use Ada.Streams;
268 procedure Write
269 (Stream : not null access Root_Stream_Type'Class;
270 Container : Map);
272 for Map'Write use Write;
274 procedure Read
275 (Stream : not null access Root_Stream_Type'Class;
276 Container : out Map);
278 for Map'Read use Read;
280 type Map_Access is access all Map;
281 for Map_Access'Storage_Size use 0;
283 type Cursor is record
284 Container : Map_Access;
285 Node : Node_Access;
286 end record;
288 procedure Write
289 (Stream : not null access Root_Stream_Type'Class;
290 Item : Cursor);
292 for Cursor'Write use Write;
294 procedure Read
295 (Stream : not null access Root_Stream_Type'Class;
296 Item : out Cursor);
298 for Cursor'Read use Read;
300 type Reference_Control_Type is
301 new Controlled with record
302 Container : Map_Access;
303 end record;
305 overriding procedure Adjust (Control : in out Reference_Control_Type);
306 pragma Inline (Adjust);
308 overriding procedure Finalize (Control : in out Reference_Control_Type);
309 pragma Inline (Finalize);
311 type Constant_Reference_Type
312 (Element : not null access constant Element_Type) is
313 record
314 Control : Reference_Control_Type :=
315 raise Program_Error with "uninitialized reference";
316 -- The RM says, "The default initialization of an object of
317 -- type Constant_Reference_Type or Reference_Type propagates
318 -- Program_Error."
319 end record;
321 procedure Read
322 (Stream : not null access Root_Stream_Type'Class;
323 Item : out Constant_Reference_Type);
325 for Constant_Reference_Type'Read use Read;
327 procedure Write
328 (Stream : not null access Root_Stream_Type'Class;
329 Item : Constant_Reference_Type);
331 for Constant_Reference_Type'Write use Write;
333 type Reference_Type
334 (Element : not null access Element_Type) is
335 record
336 Control : Reference_Control_Type :=
337 raise Program_Error with "uninitialized reference";
338 -- The RM says, "The default initialization of an object of
339 -- type Constant_Reference_Type or Reference_Type propagates
340 -- Program_Error."
341 end record;
343 procedure Read
344 (Stream : not null access Root_Stream_Type'Class;
345 Item : out Reference_Type);
347 for Reference_Type'Read use Read;
349 procedure Write
350 (Stream : not null access Root_Stream_Type'Class;
351 Item : Reference_Type);
353 for Reference_Type'Write use Write;
355 -- Three operations are used to optimize in the expansion of "for ... of"
356 -- loops: the Next(Cursor) procedure in the visible part, and the following
357 -- Pseudo_Reference and Get_Element_Access functions. See Sem_Ch5 for
358 -- details.
360 function Pseudo_Reference
361 (Container : aliased Map'Class) return Reference_Control_Type;
362 pragma Inline (Pseudo_Reference);
363 -- Creates an object of type Reference_Control_Type pointing to the
364 -- container, and increments the Lock. Finalization of this object will
365 -- decrement the Lock.
367 type Element_Access is access all Element_Type;
369 function Get_Element_Access
370 (Position : Cursor) return not null Element_Access;
371 -- Returns a pointer to the element designated by Position.
373 Empty_Map : constant Map :=
374 (Controlled with Tree => (First => null,
375 Last => null,
376 Root => null,
377 Length => 0,
378 Busy => 0,
379 Lock => 0));
381 No_Element : constant Cursor := Cursor'(null, null);
383 type Iterator is new Limited_Controlled and
384 Map_Iterator_Interfaces.Reversible_Iterator with
385 record
386 Container : Map_Access;
387 Node : Node_Access;
388 end record;
390 overriding procedure Finalize (Object : in out Iterator);
392 overriding function First (Object : Iterator) return Cursor;
393 overriding function Last (Object : Iterator) return Cursor;
395 overriding function Next
396 (Object : Iterator;
397 Position : Cursor) return Cursor;
399 overriding function Previous
400 (Object : Iterator;
401 Position : Cursor) return Cursor;
403 end Ada.Containers.Ordered_Maps;