2015-09-28 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / ada / a-cborma.ads
blobdf1a2a2076fe5eac055baa23bd6419b7be24ab9d
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT LIBRARY COMPONENTS --
4 -- --
5 -- A D A . C O N T A I N E R S . B O U N D E D _ 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.Streams;
38 private with Ada.Finalization;
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.Bounded_Ordered_Maps is
48 pragma Pure;
49 pragma Remote_Types;
51 function Equivalent_Keys (Left, Right : Key_Type) return Boolean;
53 type Map (Capacity : Count_Type) is tagged private with
54 Constant_Indexing => Constant_Reference,
55 Variable_Indexing => Reference,
56 Default_Iterator => Iterate,
57 Iterator_Element => Element_Type;
59 pragma Preelaborable_Initialization (Map);
61 type Cursor is private;
62 pragma Preelaborable_Initialization (Cursor);
64 Empty_Map : constant Map;
66 No_Element : constant Cursor;
68 function Has_Element (Position : Cursor) return Boolean;
70 package Map_Iterator_Interfaces is new
71 Ada.Iterator_Interfaces (Cursor, Has_Element);
73 function "=" (Left, Right : Map) return Boolean;
75 function Length (Container : Map) return Count_Type;
77 function Is_Empty (Container : Map) return Boolean;
79 procedure Clear (Container : in out Map);
81 function Key (Position : Cursor) return Key_Type;
83 function Element (Position : Cursor) return Element_Type;
85 procedure Replace_Element
86 (Container : in out Map;
87 Position : Cursor;
88 New_Item : Element_Type);
90 procedure Query_Element
91 (Position : Cursor;
92 Process : not null access
93 procedure (Key : Key_Type; Element : Element_Type));
95 procedure Update_Element
96 (Container : in out Map;
97 Position : Cursor;
98 Process : not null access
99 procedure (Key : Key_Type; Element : in out Element_Type));
101 type Constant_Reference_Type
102 (Element : not null access constant Element_Type) is private
103 with
104 Implicit_Dereference => Element;
106 type Reference_Type (Element : not null access Element_Type) is private
107 with
108 Implicit_Dereference => Element;
110 function Constant_Reference
111 (Container : aliased Map;
112 Position : Cursor) return Constant_Reference_Type;
114 function Reference
115 (Container : aliased in out Map;
116 Position : Cursor) return Reference_Type;
118 function Constant_Reference
119 (Container : aliased Map;
120 Key : Key_Type) return Constant_Reference_Type;
122 function Reference
123 (Container : aliased in out Map;
124 Key : Key_Type) return Reference_Type;
126 procedure Assign (Target : in out Map; Source : Map);
128 function Copy (Source : Map; Capacity : Count_Type := 0) return Map;
130 procedure Move (Target : in out Map; Source : in out Map);
132 procedure Insert
133 (Container : in out Map;
134 Key : Key_Type;
135 New_Item : Element_Type;
136 Position : out Cursor;
137 Inserted : out Boolean);
139 procedure Insert
140 (Container : in out Map;
141 Key : Key_Type;
142 Position : out Cursor;
143 Inserted : out Boolean);
145 procedure Insert
146 (Container : in out Map;
147 Key : Key_Type;
148 New_Item : Element_Type);
150 procedure Include
151 (Container : in out Map;
152 Key : Key_Type;
153 New_Item : Element_Type);
155 procedure Replace
156 (Container : in out Map;
157 Key : Key_Type;
158 New_Item : Element_Type);
160 procedure Exclude (Container : in out Map; Key : Key_Type);
162 procedure Delete (Container : in out Map; Key : Key_Type);
164 procedure Delete (Container : in out Map; Position : in out Cursor);
166 procedure Delete_First (Container : in out Map);
168 procedure Delete_Last (Container : in out Map);
170 function First (Container : Map) return Cursor;
172 function First_Element (Container : Map) return Element_Type;
174 function First_Key (Container : Map) return Key_Type;
176 function Last (Container : Map) return Cursor;
178 function Last_Element (Container : Map) return Element_Type;
180 function Last_Key (Container : Map) return Key_Type;
182 function Next (Position : Cursor) return Cursor;
184 procedure Next (Position : in out Cursor);
186 function Previous (Position : Cursor) return Cursor;
188 procedure Previous (Position : in out Cursor);
190 function Find (Container : Map; Key : Key_Type) return Cursor;
192 function Element (Container : Map; Key : Key_Type) return Element_Type;
194 function Floor (Container : Map; Key : Key_Type) return Cursor;
196 function Ceiling (Container : Map; Key : Key_Type) return Cursor;
198 function Contains (Container : Map; Key : Key_Type) return Boolean;
200 function "<" (Left, Right : Cursor) return Boolean;
202 function ">" (Left, Right : Cursor) return Boolean;
204 function "<" (Left : Cursor; Right : Key_Type) return Boolean;
206 function ">" (Left : Cursor; Right : Key_Type) return Boolean;
208 function "<" (Left : Key_Type; Right : Cursor) return Boolean;
210 function ">" (Left : Key_Type; Right : Cursor) return Boolean;
212 procedure Iterate
213 (Container : Map;
214 Process : not null access procedure (Position : Cursor));
216 procedure Reverse_Iterate
217 (Container : Map;
218 Process : not null access procedure (Position : Cursor));
220 function Iterate
221 (Container : Map)
222 return Map_Iterator_Interfaces.Reversible_Iterator'Class;
224 function Iterate
225 (Container : Map;
226 Start : Cursor)
227 return Map_Iterator_Interfaces.Reversible_Iterator'Class;
229 private
231 use Ada.Finalization;
232 pragma Inline (Next);
233 pragma Inline (Previous);
235 type Node_Type is record
236 Parent : Count_Type;
237 Left : Count_Type;
238 Right : Count_Type;
239 Color : Red_Black_Trees.Color_Type := Red_Black_Trees.Red;
240 Key : Key_Type;
241 Element : aliased Element_Type;
242 end record;
244 package Tree_Types is
245 new Red_Black_Trees.Generic_Bounded_Tree_Types (Node_Type);
247 type Map (Capacity : Count_Type) is
248 new Tree_Types.Tree_Type (Capacity) with null record;
250 use Red_Black_Trees;
251 use Tree_Types;
252 use Ada.Streams;
254 procedure Write
255 (Stream : not null access Root_Stream_Type'Class;
256 Container : Map);
258 for Map'Write use Write;
260 procedure Read
261 (Stream : not null access Root_Stream_Type'Class;
262 Container : out Map);
264 for Map'Read use Read;
266 type Map_Access is access all Map;
267 for Map_Access'Storage_Size use 0;
269 type Cursor is record
270 Container : Map_Access;
271 Node : Count_Type := 0;
272 end record;
274 procedure Write
275 (Stream : not null access Root_Stream_Type'Class;
276 Item : Cursor);
278 for Cursor'Write use Write;
280 procedure Read
281 (Stream : not null access Root_Stream_Type'Class;
282 Item : out Cursor);
284 for Cursor'Read use Read;
286 type Reference_Control_Type is new Controlled with record
287 Container : Map_Access;
288 end record;
290 overriding procedure Adjust (Control : in out Reference_Control_Type);
291 pragma Inline (Adjust);
293 overriding procedure Finalize (Control : in out Reference_Control_Type);
294 pragma Inline (Finalize);
296 type Constant_Reference_Type
297 (Element : not null access constant Element_Type) is
298 record
299 Control : Reference_Control_Type :=
300 raise Program_Error with "uninitialized reference";
301 -- The RM says, "The default initialization of an object of
302 -- type Constant_Reference_Type or Reference_Type propagates
303 -- Program_Error."
304 end record;
306 procedure Read
307 (Stream : not null access Root_Stream_Type'Class;
308 Item : out Constant_Reference_Type);
310 for Constant_Reference_Type'Read use Read;
312 procedure Write
313 (Stream : not null access Root_Stream_Type'Class;
314 Item : Constant_Reference_Type);
316 for Constant_Reference_Type'Write use Write;
318 type Reference_Type (Element : not null access Element_Type) is record
319 Control : Reference_Control_Type :=
320 raise Program_Error with "uninitialized reference";
321 -- The RM says, "The default initialization of an object of
322 -- type Constant_Reference_Type or Reference_Type propagates
323 -- Program_Error."
324 end record;
326 procedure Read
327 (Stream : not null access Root_Stream_Type'Class;
328 Item : out Reference_Type);
330 for Reference_Type'Read use Read;
332 procedure Write
333 (Stream : not null access Root_Stream_Type'Class;
334 Item : Reference_Type);
336 for Reference_Type'Write use Write;
338 Empty_Map : constant Map := Map'(Tree_Type with Capacity => 0);
340 No_Element : constant Cursor := Cursor'(null, 0);
342 type Iterator is new Limited_Controlled and
343 Map_Iterator_Interfaces.Reversible_Iterator with
344 record
345 Container : Map_Access;
346 Node : Count_Type;
347 end record;
349 overriding procedure Finalize (Object : in out Iterator);
351 overriding function First (Object : Iterator) return Cursor;
352 overriding function Last (Object : Iterator) return Cursor;
354 overriding function Next
355 (Object : Iterator;
356 Position : Cursor) return Cursor;
358 overriding function Previous
359 (Object : Iterator;
360 Position : Cursor) return Cursor;
362 end Ada.Containers.Bounded_Ordered_Maps;