1 ------------------------------------------------------------------------------
3 -- GNAT LIBRARY COMPONENTS --
5 -- A D A . C O N T A I N E R S . V E C T O R S --
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 with Ada
.Containers
.Helpers
;
37 private with Ada
.Finalization
;
38 private with Ada
.Streams
;
41 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
.Vectors
is
47 pragma Annotate
(CodePeer
, Skip_Analysis
);
51 subtype Extended_Index
is Index_Type
'Base
52 range Index_Type
'First - 1 ..
53 Index_Type
'Min (Index_Type
'Base'Last - 1, Index_Type'Last) + 1;
55 No_Index : constant Extended_Index := Extended_Index'First;
57 type Vector is tagged private
59 Constant_Indexing => Constant_Reference,
60 Variable_Indexing => Reference,
61 Default_Iterator => Iterate,
62 Iterator_Element => Element_Type;
63 pragma Preelaborable_Initialization (Vector);
65 type Cursor is private;
66 pragma Preelaborable_Initialization (Cursor);
68 No_Element : constant Cursor;
70 function Has_Element (Position : Cursor) return Boolean;
72 package Vector_Iterator_Interfaces is new
73 Ada.Iterator_Interfaces (Cursor, Has_Element);
75 Empty_Vector : constant Vector;
77 overriding function "=" (Left, Right : Vector) return Boolean;
79 function To_Vector (Length : Count_Type) return Vector;
82 (New_Item : Element_Type;
83 Length : Count_Type) return Vector;
85 function "&" (Left, Right : Vector) return Vector;
87 function "&" (Left : Vector; Right : Element_Type) return Vector;
89 function "&" (Left : Element_Type; Right : Vector) return Vector;
91 function "&" (Left, Right : Element_Type) return Vector;
93 function Capacity (Container : Vector) return Count_Type;
95 procedure Reserve_Capacity
96 (Container : in out Vector;
97 Capacity : Count_Type);
99 function Length (Container : Vector) return Count_Type;
102 (Container : in out Vector;
103 Length : Count_Type);
105 function Is_Empty (Container : Vector) return Boolean;
107 procedure Clear (Container : in out Vector);
111 Index : Extended_Index) return Cursor;
113 function To_Index (Position : Cursor) return Extended_Index;
117 Index : Index_Type) return Element_Type;
119 function Element (Position : Cursor) return Element_Type;
121 procedure Replace_Element
122 (Container : in out Vector;
124 New_Item : Element_Type);
126 procedure Replace_Element
127 (Container : in out Vector;
129 New_Item : Element_Type);
131 procedure Query_Element
134 Process : not null access procedure (Element : Element_Type));
136 procedure Query_Element
138 Process : not null access procedure (Element : Element_Type));
140 procedure Update_Element
141 (Container : in out Vector;
143 Process : not null access procedure (Element : in out Element_Type));
145 procedure Update_Element
146 (Container : in out Vector;
148 Process : not null access procedure (Element : in out Element_Type));
150 type Constant_Reference_Type
151 (Element : not null access constant Element_Type) is
154 Implicit_Dereference => Element;
156 type Reference_Type (Element : not null access Element_Type) is private
158 Implicit_Dereference => Element;
160 function Constant_Reference
161 (Container : aliased Vector;
162 Position : Cursor) return Constant_Reference_Type;
163 pragma Inline (Constant_Reference);
166 (Container : aliased in out Vector;
167 Position : Cursor) return Reference_Type;
168 pragma Inline (Reference);
170 function Constant_Reference
171 (Container : aliased Vector;
172 Index : Index_Type) return Constant_Reference_Type;
173 pragma Inline (Constant_Reference);
176 (Container : aliased in out Vector;
177 Index : Index_Type) return Reference_Type;
178 pragma Inline (Reference);
180 procedure Assign (Target : in out Vector; Source : Vector);
182 function Copy (Source : Vector; Capacity : Count_Type := 0) return Vector;
184 procedure Move (Target : in out Vector; Source : in out Vector);
187 (Container : in out Vector;
188 Before : Extended_Index;
192 (Container : in out Vector;
197 (Container : in out Vector;
200 Position : out Cursor);
203 (Container : in out Vector;
204 Before : Extended_Index;
205 New_Item : Element_Type;
206 Count : Count_Type := 1);
209 (Container : in out Vector;
211 New_Item : Element_Type;
212 Count : Count_Type := 1);
215 (Container : in out Vector;
217 New_Item : Element_Type;
218 Position : out Cursor;
219 Count : Count_Type := 1);
222 (Container : in out Vector;
223 Before : Extended_Index;
224 Count : Count_Type := 1);
227 (Container : in out Vector;
229 Position : out Cursor;
230 Count : Count_Type := 1);
233 (Container : in out Vector;
237 (Container : in out Vector;
238 New_Item : Element_Type;
239 Count : Count_Type := 1);
242 (Container : in out Vector;
246 (Container : in out Vector;
247 New_Item : Element_Type;
248 Count : Count_Type := 1);
250 procedure Insert_Space
251 (Container : in out Vector;
252 Before : Extended_Index;
253 Count : Count_Type := 1);
255 procedure Insert_Space
256 (Container : in out Vector;
258 Position : out Cursor;
259 Count : Count_Type := 1);
262 (Container : in out Vector;
263 Index : Extended_Index;
264 Count : Count_Type := 1);
267 (Container : in out Vector;
268 Position : in out Cursor;
269 Count : Count_Type := 1);
271 procedure Delete_First
272 (Container : in out Vector;
273 Count : Count_Type := 1);
275 procedure Delete_Last
276 (Container : in out Vector;
277 Count : Count_Type := 1);
279 procedure Reverse_Elements (Container : in out Vector);
281 procedure Swap (Container : in out Vector; I, J : Index_Type);
283 procedure Swap (Container : in out Vector; I, J : Cursor);
285 function First_Index (Container : Vector) return Index_Type;
287 function First (Container : Vector) return Cursor;
289 function First_Element (Container : Vector) return Element_Type;
291 function Last_Index (Container : Vector) return Extended_Index;
293 function Last (Container : Vector) return Cursor;
295 function Last_Element (Container : Vector) return Element_Type;
297 function Next (Position : Cursor) return Cursor;
299 procedure Next (Position : in out Cursor);
301 function Previous (Position : Cursor) return Cursor;
303 procedure Previous (Position : in out Cursor);
308 Index : Index_Type := Index_Type'First) return Extended_Index;
313 Position : Cursor := No_Element) return Cursor;
315 function Reverse_Find_Index
318 Index : Index_Type := Index_Type'Last) return Extended_Index;
320 function Reverse_Find
323 Position : Cursor := No_Element) return Cursor;
327 Item : Element_Type) return Boolean;
331 Process : not null access procedure (Position : Cursor));
333 procedure Reverse_Iterate
335 Process : not null access procedure (Position : Cursor));
337 function Iterate (Container : Vector)
338 return Vector_Iterator_Interfaces.Reversible_Iterator'Class;
340 function Iterate (Container : Vector; Start : Cursor)
341 return Vector_Iterator_Interfaces.Reversible_Iterator'Class;
344 with function "<" (Left, Right : Element_Type) return Boolean is <>;
345 package Generic_Sorting is
347 function Is_Sorted (Container : Vector) return Boolean;
349 procedure Sort (Container : in out Vector);
351 procedure Merge (Target : in out Vector; Source : in out Vector);
357 pragma Inline (Append);
358 pragma Inline (First_Index);
359 pragma Inline (Last_Index);
360 pragma Inline (Element);
361 pragma Inline (First_Element);
362 pragma Inline (Last_Element);
363 pragma Inline (Query_Element);
364 pragma Inline (Update_Element);
365 pragma Inline (Replace_Element);
366 pragma Inline (Is_Empty);
367 pragma Inline (Contains);
368 pragma Inline (Next);
369 pragma Inline (Previous);
371 use Ada.Containers.Helpers;
372 package Implementation is new Generic_Implementation;
375 type Elements_Array is array (Index_Type range <>) of aliased Element_Type;
376 function "=" (L, R : Elements_Array) return Boolean is abstract;
378 type Elements_Type (Last : Extended_Index) is limited record
379 EA : Elements_Array (Index_Type'First .. Last);
382 type Elements_Access is access all Elements_Type;
387 type Vector is new Controlled with record
388 Elements : Elements_Access := null;
389 Last : Extended_Index := No_Index;
390 TC : aliased Tamper_Counts;
393 overriding procedure Adjust (Container : in out Vector);
394 overriding procedure Finalize (Container : in out Vector);
397 (Stream : not null access Root_Stream_Type'Class;
400 for Vector'Write use Write;
403 (Stream : not null access Root_Stream_Type'Class;
404 Container : out Vector);
406 for Vector'Read use Read;
408 type Vector_Access is access all Vector;
409 for Vector_Access'Storage_Size use 0;
411 type Cursor is record
412 Container : Vector_Access;
413 Index : Index_Type := Index_Type'First;
417 (Stream : not null access Root_Stream_Type'Class;
418 Position : out Cursor);
420 for Cursor'Read use Read;
423 (Stream : not null access Root_Stream_Type'Class;
426 for Cursor'Write use Write;
428 subtype Reference_Control_Type is Implementation.Reference_Control_Type;
429 -- It is necessary to rename this here, so that the compiler can find it
431 type Constant_Reference_Type
432 (Element : not null access constant Element_Type) is
434 Control : Reference_Control_Type :=
435 raise Program_Error with "uninitialized reference";
436 -- The RM says, "The default initialization of an object of
437 -- type Constant_Reference_Type or Reference_Type propagates
442 (Stream : not null access Root_Stream_Type'Class;
443 Item : Constant_Reference_Type);
445 for Constant_Reference_Type'Write use Write;
448 (Stream : not null access Root_Stream_Type'Class;
449 Item : out Constant_Reference_Type);
451 for Constant_Reference_Type'Read use Read;
454 (Element : not null access Element_Type) is
456 Control : Reference_Control_Type :=
457 raise Program_Error with "uninitialized reference";
458 -- The RM says, "The default initialization of an object of
459 -- type Constant_Reference_Type or Reference_Type propagates
464 (Stream : not null access Root_Stream_Type'Class;
465 Item : Reference_Type);
467 for Reference_Type'Write use Write;
470 (Stream : not null access Root_Stream_Type'Class;
471 Item : out Reference_Type);
473 for Reference_Type'Read use Read;
475 -- Three operations are used to optimize in the expansion of "for ... of"
476 -- loops: the Next(Cursor) procedure in the visible part, and the following
477 -- Pseudo_Reference and Get_Element_Access functions. See Exp_Ch5 for
480 function Pseudo_Reference
481 (Container : aliased Vector'Class) return Reference_Control_Type;
482 pragma Inline (Pseudo_Reference);
483 -- Creates an object of type Reference_Control_Type pointing to the
484 -- container, and increments the Lock. Finalization of this object will
485 -- decrement the Lock.
487 type Element_Access is access all Element_Type;
489 function Get_Element_Access
490 (Position : Cursor) return not null Element_Access;
491 -- Returns a pointer to the element designated by Position.
493 No_Element : constant Cursor := Cursor'(null, Index_Type
'First);
495 Empty_Vector
: constant Vector
:= (Controlled
with others => <>);
497 type Iterator
is new Limited_Controlled
and
498 Vector_Iterator_Interfaces
.Reversible_Iterator
with
500 Container
: Vector_Access
;
501 Index
: Index_Type
'Base;
503 with Disable_Controlled
=> not T_Check
;
505 overriding
procedure Finalize
(Object
: in out Iterator
);
507 overriding
function First
(Object
: Iterator
) return Cursor
;
508 overriding
function Last
(Object
: Iterator
) return Cursor
;
510 overriding
function Next
512 Position
: Cursor
) return Cursor
;
514 overriding
function Previous
516 Position
: Cursor
) return Cursor
;
518 end Ada
.Containers
.Vectors
;