1 ------------------------------------------------------------------------------
3 -- GNAT LIBRARY COMPONENTS --
5 -- ADA.CONTAINERS.INDEFINITE_ORDERED_MAPS --
9 -- Copyright (C) 2004-2015, Free Software Foundation, Inc. --
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. --
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. --
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. --
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/>. --
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
;
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
.Indefinite_Ordered_Maps
is
48 pragma Annotate
(CodePeer
, Skip_Analysis
);
52 function Equivalent_Keys
(Left
, Right
: Key_Type
) return Boolean;
54 type Map
is tagged private
55 with Constant_Indexing
=> Constant_Reference
,
56 Variable_Indexing
=> Reference
,
57 Default_Iterator
=> Iterate
,
58 Iterator_Element
=> Element_Type
;
60 pragma Preelaborable_Initialization
(Map
);
62 type Cursor
is private;
63 pragma Preelaborable_Initialization
(Cursor
);
65 Empty_Map
: constant Map
;
67 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
;
88 New_Item
: Element_Type
);
90 procedure Query_Element
92 Process
: not null access procedure (Key
: Key_Type
;
93 Element
: Element_Type
));
95 procedure Update_Element
96 (Container
: in out Map
;
98 Process
: not null access procedure (Key
: Key_Type
;
99 Element
: in out Element_Type
));
101 type Constant_Reference_Type
102 (Element
: not null access constant Element_Type
) is private
104 Implicit_Dereference
=> Element
;
106 type Reference_Type
(Element
: not null access Element_Type
) is private
108 Implicit_Dereference
=> Element
;
110 function Constant_Reference
111 (Container
: aliased Map
;
112 Position
: Cursor
) return Constant_Reference_Type
;
113 pragma Inline
(Constant_Reference
);
116 (Container
: aliased in out Map
;
117 Position
: Cursor
) return Reference_Type
;
118 pragma Inline
(Reference
);
120 function Constant_Reference
121 (Container
: aliased Map
;
122 Key
: Key_Type
) return Constant_Reference_Type
;
123 pragma Inline
(Constant_Reference
);
126 (Container
: aliased in out Map
;
127 Key
: Key_Type
) return Reference_Type
;
128 pragma Inline
(Reference
);
130 procedure Assign
(Target
: in out Map
; Source
: Map
);
132 function Copy
(Source
: Map
) return Map
;
134 procedure Move
(Target
: in out Map
; Source
: in out Map
);
137 (Container
: in out Map
;
139 New_Item
: Element_Type
;
140 Position
: out Cursor
;
141 Inserted
: out Boolean);
144 (Container
: in out Map
;
146 New_Item
: Element_Type
);
149 (Container
: in out Map
;
151 New_Item
: Element_Type
);
154 (Container
: in out Map
;
156 New_Item
: Element_Type
);
158 procedure Exclude
(Container
: in out Map
; Key
: Key_Type
);
160 procedure Delete
(Container
: in out Map
; Key
: Key_Type
);
162 procedure Delete
(Container
: in out Map
; Position
: in out Cursor
);
164 procedure Delete_First
(Container
: in out Map
);
166 procedure Delete_Last
(Container
: in out Map
);
168 function First
(Container
: Map
) return Cursor
;
170 function First_Element
(Container
: Map
) return Element_Type
;
172 function First_Key
(Container
: Map
) return Key_Type
;
174 function Last
(Container
: Map
) return Cursor
;
176 function Last_Element
(Container
: Map
) return Element_Type
;
178 function Last_Key
(Container
: Map
) return Key_Type
;
180 function Next
(Position
: Cursor
) return Cursor
;
182 procedure Next
(Position
: in out Cursor
);
184 function Previous
(Position
: Cursor
) return Cursor
;
186 procedure Previous
(Position
: in out Cursor
);
188 function Find
(Container
: Map
; Key
: Key_Type
) return Cursor
;
190 function Element
(Container
: Map
; Key
: Key_Type
) return Element_Type
;
192 function Floor
(Container
: Map
; Key
: Key_Type
) return Cursor
;
194 function Ceiling
(Container
: Map
; Key
: Key_Type
) return Cursor
;
196 function Contains
(Container
: Map
; Key
: Key_Type
) return Boolean;
198 function "<" (Left
, Right
: Cursor
) return Boolean;
200 function ">" (Left
, Right
: Cursor
) return Boolean;
202 function "<" (Left
: Cursor
; Right
: Key_Type
) return Boolean;
204 function ">" (Left
: Cursor
; Right
: Key_Type
) return Boolean;
206 function "<" (Left
: Key_Type
; Right
: Cursor
) return Boolean;
208 function ">" (Left
: Key_Type
; Right
: Cursor
) return Boolean;
212 Process
: not null access procedure (Position
: Cursor
));
214 procedure Reverse_Iterate
216 Process
: not null access procedure (Position
: Cursor
));
218 -- The map container supports iteration in both the forward and reverse
219 -- directions, hence these constructor functions return an object that
220 -- supports the Reversible_Iterator interface.
224 return Map_Iterator_Interfaces
.Reversible_Iterator
'Class;
229 return Map_Iterator_Interfaces
.Reversible_Iterator
'Class;
233 pragma Inline
(Next
);
234 pragma Inline
(Previous
);
237 type Node_Access
is access Node_Type
;
239 type Key_Access
is access Key_Type
;
240 type Element_Access
is access all Element_Type
;
242 type Node_Type
is limited record
243 Parent
: Node_Access
;
246 Color
: Red_Black_Trees
.Color_Type
:= Red_Black_Trees
.Red
;
248 Element
: Element_Access
;
251 package Tree_Types
is new Red_Black_Trees
.Generic_Tree_Types
255 type Map
is new Ada
.Finalization
.Controlled
with record
256 Tree
: Tree_Types
.Tree_Type
;
259 overriding
procedure Adjust
(Container
: in out Map
);
261 overriding
procedure Finalize
(Container
: in out Map
) renames Clear
;
264 use Tree_Types
, Tree_Types
.Implementation
;
265 use Ada
.Finalization
;
269 (Stream
: not null access Root_Stream_Type
'Class;
272 for Map
'Write use Write
;
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
;
289 (Stream
: not null access Root_Stream_Type
'Class;
292 for Cursor
'Write use Write
;
295 (Stream
: not null access Root_Stream_Type
'Class;
298 for Cursor
'Read use Read
;
300 subtype Reference_Control_Type
is Implementation
.Reference_Control_Type
;
301 -- It is necessary to rename this here, so that the compiler can find it
303 type Constant_Reference_Type
304 (Element
: not null access constant Element_Type
) is
306 Control
: Reference_Control_Type
:=
307 raise Program_Error
with "uninitialized reference";
308 -- The RM says, "The default initialization of an object of
309 -- type Constant_Reference_Type or Reference_Type propagates
314 (Stream
: not null access Root_Stream_Type
'Class;
315 Item
: out Constant_Reference_Type
);
317 for Constant_Reference_Type
'Read use Read
;
320 (Stream
: not null access Root_Stream_Type
'Class;
321 Item
: Constant_Reference_Type
);
323 for Constant_Reference_Type
'Write use Write
;
326 (Element
: not null access Element_Type
) is
328 Control
: Reference_Control_Type
:=
329 raise Program_Error
with "uninitialized reference";
330 -- The RM says, "The default initialization of an object of
331 -- type Constant_Reference_Type or Reference_Type propagates
336 (Stream
: not null access Root_Stream_Type
'Class;
337 Item
: out Reference_Type
);
339 for Reference_Type
'Read use Read
;
342 (Stream
: not null access Root_Stream_Type
'Class;
343 Item
: Reference_Type
);
345 for Reference_Type
'Write use Write
;
347 -- Three operations are used to optimize in the expansion of "for ... of"
348 -- loops: the Next(Cursor) procedure in the visible part, and the following
349 -- Pseudo_Reference and Get_Element_Access functions. See Sem_Ch5 for
352 function Pseudo_Reference
353 (Container
: aliased Map
'Class) return Reference_Control_Type
;
354 pragma Inline
(Pseudo_Reference
);
355 -- Creates an object of type Reference_Control_Type pointing to the
356 -- container, and increments the Lock. Finalization of this object will
357 -- decrement the Lock.
359 function Get_Element_Access
360 (Position
: Cursor
) return not null Element_Access
;
361 -- Returns a pointer to the element designated by Position.
363 Empty_Map
: constant Map
:= (Controlled
with others => <>);
365 No_Element
: constant Cursor
:= Cursor
'(null, null);
367 type Iterator is new Limited_Controlled and
368 Map_Iterator_Interfaces.Reversible_Iterator with
370 Container : Map_Access;
373 with Disable_Controlled => not T_Check;
375 overriding procedure Finalize (Object : in out Iterator);
377 overriding function First (Object : Iterator) return Cursor;
378 overriding function Last (Object : Iterator) return Cursor;
380 overriding function Next
382 Position : Cursor) return Cursor;
384 overriding function Previous
386 Position : Cursor) return Cursor;
388 end Ada.Containers.Indefinite_Ordered_Maps;