Update concepts branch to revision 131834
[official-gcc.git] / gcc / ada / a-ciorma.ads
blob3b483fcdd38deb333d8d781a2a241771e95881e3
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT LIBRARY COMPONENTS --
4 -- --
5 -- ADA.CONTAINERS.INDEFINITE_ORDERED_MAPS --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 2004-2008, 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, 51 Franklin Street, Fifth Floor, --
24 -- Boston, MA 02110-1301, 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 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.Indefinite_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;
54 pragma Preelaborable_Initialization (Map);
56 type Cursor is private;
57 pragma Preelaborable_Initialization (Cursor);
59 Empty_Map : constant Map;
61 No_Element : constant Cursor;
63 function "=" (Left, Right : Map) return Boolean;
65 function Length (Container : Map) return Count_Type;
67 function Is_Empty (Container : Map) return Boolean;
69 procedure Clear (Container : in out Map);
71 function Key (Position : Cursor) return Key_Type;
73 function Element (Position : Cursor) return Element_Type;
75 procedure Replace_Element
76 (Container : in out Map;
77 Position : Cursor;
78 New_Item : Element_Type);
80 procedure Query_Element
81 (Position : Cursor;
82 Process : not null access procedure (Key : Key_Type;
83 Element : Element_Type));
85 procedure Update_Element
86 (Container : in out Map;
87 Position : Cursor;
88 Process : not null access procedure (Key : Key_Type;
89 Element : in out Element_Type));
91 procedure Move (Target : in out Map; Source : in out Map);
93 procedure Insert
94 (Container : in out Map;
95 Key : Key_Type;
96 New_Item : Element_Type;
97 Position : out Cursor;
98 Inserted : out Boolean);
100 procedure Insert
101 (Container : in out Map;
102 Key : Key_Type;
103 New_Item : Element_Type);
105 procedure Include
106 (Container : in out Map;
107 Key : Key_Type;
108 New_Item : Element_Type);
110 procedure Replace
111 (Container : in out Map;
112 Key : Key_Type;
113 New_Item : Element_Type);
115 procedure Exclude (Container : in out Map; Key : Key_Type);
117 procedure Delete (Container : in out Map; Key : Key_Type);
119 procedure Delete (Container : in out Map; Position : in out Cursor);
121 procedure Delete_First (Container : in out Map);
123 procedure Delete_Last (Container : in out Map);
125 function First (Container : Map) return Cursor;
127 function First_Element (Container : Map) return Element_Type;
129 function First_Key (Container : Map) return Key_Type;
131 function Last (Container : Map) return Cursor;
133 function Last_Element (Container : Map) return Element_Type;
135 function Last_Key (Container : Map) return Key_Type;
137 function Next (Position : Cursor) return Cursor;
139 procedure Next (Position : in out Cursor);
141 function Previous (Position : Cursor) return Cursor;
143 procedure Previous (Position : in out Cursor);
145 function Find (Container : Map; Key : Key_Type) return Cursor;
147 function Element (Container : Map; Key : Key_Type) return Element_Type;
149 function Floor (Container : Map; Key : Key_Type) return Cursor;
151 function Ceiling (Container : Map; Key : Key_Type) return Cursor;
153 function Contains (Container : Map; Key : Key_Type) return Boolean;
155 function Has_Element (Position : Cursor) return Boolean;
157 function "<" (Left, Right : Cursor) return Boolean;
159 function ">" (Left, Right : Cursor) return Boolean;
161 function "<" (Left : Cursor; Right : Key_Type) return Boolean;
163 function ">" (Left : Cursor; Right : Key_Type) return Boolean;
165 function "<" (Left : Key_Type; Right : Cursor) return Boolean;
167 function ">" (Left : Key_Type; Right : Cursor) return Boolean;
169 procedure Iterate
170 (Container : Map;
171 Process : not null access procedure (Position : Cursor));
173 procedure Reverse_Iterate
174 (Container : Map;
175 Process : not null access procedure (Position : Cursor));
177 private
179 pragma Inline (Next);
180 pragma Inline (Previous);
182 type Node_Type;
183 type Node_Access is access Node_Type;
185 type Key_Access is access Key_Type;
186 type Element_Access is access Element_Type;
188 type Node_Type is limited record
189 Parent : Node_Access;
190 Left : Node_Access;
191 Right : Node_Access;
192 Color : Red_Black_Trees.Color_Type := Red_Black_Trees.Red;
193 Key : Key_Access;
194 Element : Element_Access;
195 end record;
197 package Tree_Types is new Red_Black_Trees.Generic_Tree_Types
198 (Node_Type,
199 Node_Access);
201 type Map is new Ada.Finalization.Controlled with record
202 Tree : Tree_Types.Tree_Type;
203 end record;
205 overriding
206 procedure Adjust (Container : in out Map);
208 overriding
209 procedure Finalize (Container : in out Map) renames Clear;
211 use Red_Black_Trees;
212 use Tree_Types;
213 use Ada.Finalization;
214 use Ada.Streams;
216 type Map_Access is access all Map;
217 for Map_Access'Storage_Size use 0;
219 type Cursor is record
220 Container : Map_Access;
221 Node : Node_Access;
222 end record;
224 procedure Write
225 (Stream : not null access Root_Stream_Type'Class;
226 Item : Cursor);
228 for Cursor'Write use Write;
230 procedure Read
231 (Stream : not null access Root_Stream_Type'Class;
232 Item : out Cursor);
234 for Cursor'Read use Read;
236 No_Element : constant Cursor := Cursor'(null, null);
238 procedure Write
239 (Stream : not null access Root_Stream_Type'Class;
240 Container : Map);
242 for Map'Write use Write;
244 procedure Read
245 (Stream : not null access Root_Stream_Type'Class;
246 Container : out Map);
248 for Map'Read use Read;
250 Empty_Map : constant Map :=
251 (Controlled with Tree => (First => null,
252 Last => null,
253 Root => null,
254 Length => 0,
255 Busy => 0,
256 Lock => 0));
258 end Ada.Containers.Indefinite_Ordered_Maps;