1 ------------------------------------------------------------------------------
3 -- GNAT LIBRARY COMPONENTS --
5 -- ADA.CONTAINERS.INDEFINITE_VECTORS --
9 -- Copyright (C) 2004 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 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, 59 Temple Place - Suite 330, Boston, --
24 -- MA 02111-1307, USA. --
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. --
33 -- This unit was originally developed by Matthew J Heaney. --
34 ------------------------------------------------------------------------------
36 with Ada
.Finalization
;
40 type Index_Type
is range <>;
42 type Element_Type
(<>) is private;
44 with function "=" (Left
, Right
: Element_Type
) return Boolean is <>;
46 package Ada
.Containers
.Indefinite_Vectors
is
47 pragma Preelaborate
(Indefinite_Vectors
);
49 subtype Extended_Index
is Index_Type
'Base
50 range Index_Type
'First - 1 ..
52 Boolean'Pos (Index_Type
'Base'Last > Index_Type'Last);
54 No_Index : constant Extended_Index := Extended_Index'First;
56 subtype Index_Subtype is Index_Type;
58 type Vector is tagged private;
60 type Cursor is private;
62 Empty_Vector : constant Vector;
64 No_Element : constant Cursor;
66 function To_Vector (Length : Count_Type) return Vector;
69 (New_Item : Element_Type;
70 Length : Count_Type) return Vector;
72 function "&" (Left, Right : Vector) return Vector;
74 function "&" (Left : Vector; Right : Element_Type) return Vector;
76 function "&" (Left : Element_Type; Right : Vector) return Vector;
78 function "&" (Left, Right : Element_Type) return Vector;
80 function "=" (Left, Right : Vector) return Boolean;
82 function Capacity (Container : Vector) return Count_Type;
84 procedure Reserve_Capacity
85 (Container : in out Vector;
86 Capacity : Count_Type);
88 function Length (Container : Vector) return Count_Type;
90 function Is_Empty (Container : Vector) return Boolean;
92 procedure Clear (Container : in out Vector);
96 Index : Extended_Index) return Cursor;
98 function To_Index (Position : Cursor) return Extended_Index;
102 Index : Index_Type) return Element_Type;
104 function Element (Position : Cursor) return Element_Type;
106 procedure Query_Element
109 Process : not null access procedure (Element : Element_Type));
111 procedure Query_Element
113 Process : not null access procedure (Element : Element_Type));
115 procedure Update_Element
118 Process : not null access procedure (Element : in out Element_Type));
120 procedure Update_Element
122 Process : not null access procedure (Element : in out Element_Type));
124 procedure Replace_Element
129 procedure Replace_Element
133 procedure Assign (Target : in out Vector; Source : Vector);
135 procedure Move (Target : in out Vector; Source : in out Vector);
138 (Container : in out Vector;
139 Before : Extended_Index;
143 (Container : in out Vector;
148 (Container : in out Vector;
151 Position : out Cursor);
154 (Container : in out Vector;
155 Before : Extended_Index;
156 New_Item : Element_Type;
157 Count : Count_Type := 1);
160 (Container : in out Vector;
162 New_Item : Element_Type;
163 Count : Count_Type := 1);
166 (Container : in out Vector;
168 New_Item : Element_Type;
169 Position : out Cursor;
170 Count : Count_Type := 1);
173 (Container : in out Vector;
177 (Container : in out Vector;
178 New_Item : Element_Type;
179 Count : Count_Type := 1);
182 (Container : in out Vector;
186 (Container : in out Vector;
187 New_Item : Element_Type;
188 Count : Count_Type := 1);
190 procedure Insert_Space
191 (Container : in out Vector;
192 Before : Extended_Index;
193 Count : Count_Type := 1);
195 procedure Insert_Space
196 (Container : in out Vector;
198 Position : out Cursor;
199 Count : Count_Type := 1);
202 (Container : in out Vector;
203 Length : Count_Type);
206 (Container : in out Vector;
207 Index : Extended_Index; -- TODO: verify
208 Count : Count_Type := 1);
211 (Container : in out Vector;
212 Position : in out Cursor;
213 Count : Count_Type := 1);
215 procedure Delete_First
216 (Container : in out Vector;
217 Count : Count_Type := 1);
219 procedure Delete_Last
220 (Container : in out Vector;
221 Count : Count_Type := 1);
223 function First_Index (Container : Vector) return Index_Type;
225 function First (Container : Vector) return Cursor;
227 function First_Element (Container : Vector) return Element_Type;
229 function Last_Index (Container : Vector) return Extended_Index;
231 function Last (Container : Vector) return Cursor;
233 function Last_Element (Container : Vector) return Element_Type;
235 procedure Swap (Container : Vector; I, J : Index_Type);
237 procedure Swap (I, J : Cursor);
240 with function "<" (Left, Right : Element_Type) return Boolean is <>;
241 procedure Generic_Sort (Container : Vector);
246 Index : Index_Type := Index_Type'First) return Extended_Index;
251 Position : Cursor := No_Element) return Cursor;
253 function Reverse_Find_Index
256 Index : Index_Type := Index_Type'Last) return Extended_Index;
258 function Reverse_Find (Container : Vector;
260 Position : Cursor := No_Element)
265 Item : Element_Type) return Boolean;
267 function Next (Position : Cursor) return Cursor;
269 function Previous (Position : Cursor) return Cursor;
271 procedure Next (Position : in out Cursor);
273 procedure Previous (Position : in out Cursor);
275 function Has_Element (Position : Cursor) return Boolean;
279 Process : not null access procedure (Position : Cursor));
281 procedure Reverse_Iterate
283 Process : not null access procedure (Position : Cursor));
287 pragma Inline (First_Index);
288 pragma Inline (Last_Index);
289 pragma Inline (Element);
290 pragma Inline (First_Element);
291 pragma Inline (Last_Element);
292 pragma Inline (Query_Element);
293 pragma Inline (Update_Element);
294 pragma Inline (Replace_Element);
295 pragma Inline (Contains);
297 type Element_Access is access Element_Type;
299 type Elements_Type is array (Index_Type range <>) of Element_Access;
301 function "=" (L, R : Elements_Type) return Boolean is abstract;
303 type Elements_Access is access Elements_Type;
305 use Ada.Finalization;
307 type Vector is new Controlled with record
308 Elements : Elements_Access;
309 Last : Extended_Index := No_Index;
312 procedure Adjust (Container : in out Vector);
314 procedure Finalize (Container : in out Vector);
319 (Stream : access Root_Stream_Type'Class;
322 for Vector'Write use Write;
325 (Stream : access Root_Stream_Type'Class;
326 Container : out Vector);
328 for Vector'Read use Read;
330 Empty_Vector : constant Vector := Vector'(Controlled
with null, No_Index
);
332 type Vector_Access
is access constant Vector
;
333 for Vector_Access
'Storage_Size use 0;
335 type Cursor
is record
336 Container
: Vector_Access
;
337 Index
: Index_Type
:= Index_Type
'First;
340 No_Element
: constant Cursor
:= Cursor
'(null, Index_Type'First);
342 end Ada.Containers.Indefinite_Vectors;