2006-06-30 Andrew Pinski <pinskia@gmail.com>
[official-gcc.git] / gcc / ada / a-ciorma.ads
blob7d16b2b4c1a21ac7ee1233a8277e0cdea1cdac9e
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT LIBRARY COMPONENTS --
4 -- --
5 -- A D A . C O N T A I N E R S . --
6 -- I N D E F I N I T E _ O R D E R E D _ M A P S --
7 -- --
8 -- S p e c --
9 -- --
10 -- Copyright (C) 2004-2005, Free Software Foundation, Inc. --
11 -- --
12 -- This specification is derived from the Ada Reference Manual for use with --
13 -- GNAT. The copyright notice above, and the license provisions that follow --
14 -- apply solely to the contents of the part following the private keyword. --
15 -- --
16 -- GNAT is free software; you can redistribute it and/or modify it under --
17 -- terms of the GNU General Public License as published by the Free Soft- --
18 -- ware Foundation; either version 2, or (at your option) any later ver- --
19 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
20 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
21 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
22 -- for more details. You should have received a copy of the GNU General --
23 -- Public License distributed with GNAT; see file COPYING. If not, write --
24 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
25 -- Boston, MA 02110-1301, USA. --
26 -- --
27 -- As a special exception, if other files instantiate generics from this --
28 -- unit, or you link this unit with other files to produce an executable, --
29 -- this unit does not by itself cause the resulting executable to be --
30 -- covered by the GNU General Public License. This exception does not --
31 -- however invalidate any other reasons why the executable file might be --
32 -- covered by the GNU Public License. --
33 -- --
34 -- This unit was originally developed by Matthew J Heaney. --
35 ------------------------------------------------------------------------------
37 with Ada.Containers.Red_Black_Trees;
38 with Ada.Finalization;
39 with Ada.Streams;
41 generic
42 type Key_Type (<>) is private;
43 type Element_Type (<>) is private;
45 with function "<" (Left, Right : Key_Type) return Boolean is <>;
46 with function "=" (Left, Right : Element_Type) return Boolean is <>;
48 package Ada.Containers.Indefinite_Ordered_Maps is
49 pragma Preelaborate;
51 function Equivalent_Keys (Left, Right : Key_Type) return Boolean;
53 type Map is tagged private;
55 type Cursor is private;
57 Empty_Map : constant Map;
59 No_Element : constant Cursor;
61 function "=" (Left, Right : Map) return Boolean;
63 function Length (Container : Map) return Count_Type;
65 function Is_Empty (Container : Map) return Boolean;
67 procedure Clear (Container : in out Map);
69 function Key (Position : Cursor) return Key_Type;
71 function Element (Position : Cursor) return Element_Type;
73 procedure Replace_Element
74 (Container : in out Map;
75 Position : Cursor;
76 New_Item : Element_Type);
78 procedure Query_Element
79 (Position : Cursor;
80 Process : not null access procedure (Key : Key_Type;
81 Element : Element_Type));
83 procedure Update_Element
84 (Container : in out Map;
85 Position : Cursor;
86 Process : not null access procedure (Key : Key_Type;
87 Element : in out Element_Type));
89 procedure Move (Target : in out Map; Source : in out Map);
91 procedure Insert
92 (Container : in out Map;
93 Key : Key_Type;
94 New_Item : Element_Type;
95 Position : out Cursor;
96 Inserted : out Boolean);
98 procedure Insert
99 (Container : in out Map;
100 Key : Key_Type;
101 New_Item : Element_Type);
103 procedure Include
104 (Container : in out Map;
105 Key : Key_Type;
106 New_Item : Element_Type);
108 procedure Replace
109 (Container : in out Map;
110 Key : Key_Type;
111 New_Item : Element_Type);
113 procedure Exclude (Container : in out Map; Key : Key_Type);
115 procedure Delete (Container : in out Map; Key : Key_Type);
117 procedure Delete (Container : in out Map; Position : in out Cursor);
119 procedure Delete_First (Container : in out Map);
121 procedure Delete_Last (Container : in out Map);
123 function First (Container : Map) return Cursor;
125 function First_Element (Container : Map) return Element_Type;
127 function First_Key (Container : Map) return Key_Type;
129 function Last (Container : Map) return Cursor;
131 function Last_Element (Container : Map) return Element_Type;
133 function Last_Key (Container : Map) return Key_Type;
135 function Next (Position : Cursor) return Cursor;
137 procedure Next (Position : in out Cursor);
139 function Previous (Position : Cursor) return Cursor;
141 procedure Previous (Position : in out Cursor);
143 function Find (Container : Map; Key : Key_Type) return Cursor;
145 function Element (Container : Map; Key : Key_Type) return Element_Type;
147 function Floor (Container : Map; Key : Key_Type) return Cursor;
149 function Ceiling (Container : Map; Key : Key_Type) return Cursor;
151 function Contains (Container : Map; Key : Key_Type) return Boolean;
153 function Has_Element (Position : Cursor) return Boolean;
155 function "<" (Left, Right : Cursor) return Boolean;
157 function ">" (Left, Right : Cursor) return Boolean;
159 function "<" (Left : Cursor; Right : Key_Type) return Boolean;
161 function ">" (Left : Cursor; Right : Key_Type) return Boolean;
163 function "<" (Left : Key_Type; Right : Cursor) return Boolean;
165 function ">" (Left : Key_Type; Right : Cursor) return Boolean;
167 procedure Iterate
168 (Container : Map;
169 Process : not null access procedure (Position : Cursor));
171 procedure Reverse_Iterate
172 (Container : Map;
173 Process : not null access procedure (Position : Cursor));
175 private
177 type Node_Type;
178 type Node_Access is access Node_Type;
180 type Key_Access is access Key_Type;
181 type Element_Access is access Element_Type;
183 type Node_Type is limited record
184 Parent : Node_Access;
185 Left : Node_Access;
186 Right : Node_Access;
187 Color : Red_Black_Trees.Color_Type := Red_Black_Trees.Red;
188 Key : Key_Access;
189 Element : Element_Access;
190 end record;
192 package Tree_Types is new Red_Black_Trees.Generic_Tree_Types
193 (Node_Type,
194 Node_Access);
196 type Map is new Ada.Finalization.Controlled with record
197 Tree : Tree_Types.Tree_Type;
198 end record;
200 procedure Adjust (Container : in out Map);
202 procedure Finalize (Container : in out Map) renames Clear;
204 use Red_Black_Trees;
205 use Tree_Types;
206 use Ada.Finalization;
207 use Ada.Streams;
209 type Map_Access is access all Map;
210 for Map_Access'Storage_Size use 0;
212 type Cursor is record
213 Container : Map_Access;
214 Node : Node_Access;
215 end record;
217 procedure Write
218 (Stream : not null access Root_Stream_Type'Class;
219 Item : Cursor);
221 for Cursor'Write use Write;
223 procedure Read
224 (Stream : not null access Root_Stream_Type'Class;
225 Item : out Cursor);
227 for Cursor'Read use Read;
229 No_Element : constant Cursor := Cursor'(null, null);
231 procedure Write
232 (Stream : not null access Root_Stream_Type'Class;
233 Container : Map);
235 for Map'Write use Write;
237 procedure Read
238 (Stream : not null access Root_Stream_Type'Class;
239 Container : out Map);
241 for Map'Read use Read;
243 Empty_Map : constant Map :=
244 (Controlled with Tree => (First => null,
245 Last => null,
246 Root => null,
247 Length => 0,
248 Busy => 0,
249 Lock => 0));
251 end Ada.Containers.Indefinite_Ordered_Maps;