1 ------------------------------------------------------------------------------
3 -- GNAT LIBRARY COMPONENTS --
5 -- A D A . C O N T A I N E R S . B O U N D E D _ 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
.Streams
;
38 private with Ada
.Finalization
;
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
.Bounded_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 (Capacity : Count_Type) is tagged private with
58 Constant_Indexing => Constant_Reference,
59 Variable_Indexing => Reference,
60 Default_Iterator => Iterate,
61 Iterator_Element => Element_Type;
63 pragma Preelaborable_Initialization (Vector);
65 type Cursor is private;
66 pragma Preelaborable_Initialization (Cursor);
68 Empty_Vector : constant Vector;
70 No_Element : constant Cursor;
72 function Has_Element (Position : Cursor) return Boolean;
74 package Vector_Iterator_Interfaces is new
75 Ada.Iterator_Interfaces (Cursor, Has_Element);
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;
165 (Container : aliased in out Vector;
166 Position : Cursor) return Reference_Type;
168 function Constant_Reference
169 (Container : aliased Vector;
170 Index : Index_Type) return Constant_Reference_Type;
173 (Container : aliased in out Vector;
174 Index : Index_Type) return Reference_Type;
176 procedure Assign (Target : in out Vector; Source : Vector);
178 function Copy (Source : Vector; Capacity : Count_Type := 0) return Vector;
180 procedure Move (Target : in out Vector; Source : in out Vector);
183 (Container : in out Vector;
184 Before : Extended_Index;
188 (Container : in out Vector;
193 (Container : in out Vector;
196 Position : out Cursor);
199 (Container : in out Vector;
200 Before : Extended_Index;
201 New_Item : Element_Type;
202 Count : Count_Type := 1);
205 (Container : in out Vector;
207 New_Item : Element_Type;
208 Count : Count_Type := 1);
211 (Container : in out Vector;
213 New_Item : Element_Type;
214 Position : out Cursor;
215 Count : Count_Type := 1);
218 (Container : in out Vector;
219 Before : Extended_Index;
220 Count : Count_Type := 1);
223 (Container : in out Vector;
225 Position : out Cursor;
226 Count : Count_Type := 1);
229 (Container : in out Vector;
233 (Container : in out Vector;
234 New_Item : Element_Type;
235 Count : Count_Type := 1);
238 (Container : in out Vector;
242 (Container : in out Vector;
243 New_Item : Element_Type;
244 Count : Count_Type := 1);
246 procedure Insert_Space
247 (Container : in out Vector;
248 Before : Extended_Index;
249 Count : Count_Type := 1);
251 procedure Insert_Space
252 (Container : in out Vector;
254 Position : out Cursor;
255 Count : Count_Type := 1);
258 (Container : in out Vector;
259 Index : Extended_Index;
260 Count : Count_Type := 1);
263 (Container : in out Vector;
264 Position : in out Cursor;
265 Count : Count_Type := 1);
267 procedure Delete_First
268 (Container : in out Vector;
269 Count : Count_Type := 1);
271 procedure Delete_Last
272 (Container : in out Vector;
273 Count : Count_Type := 1);
275 procedure Reverse_Elements (Container : in out Vector);
277 procedure Swap (Container : in out Vector; I, J : Index_Type);
279 procedure Swap (Container : in out Vector; I, J : Cursor);
281 function First_Index (Container : Vector) return Index_Type;
283 function First (Container : Vector) return Cursor;
285 function First_Element (Container : Vector) return Element_Type;
287 function Last_Index (Container : Vector) return Extended_Index;
289 function Last (Container : Vector) return Cursor;
291 function Last_Element (Container : Vector) return Element_Type;
293 function Next (Position : Cursor) return Cursor;
295 procedure Next (Position : in out Cursor);
297 function Previous (Position : Cursor) return Cursor;
299 procedure Previous (Position : in out Cursor);
304 Index : Index_Type := Index_Type'First) return Extended_Index;
309 Position : Cursor := No_Element) return Cursor;
311 function Reverse_Find_Index
314 Index : Index_Type := Index_Type'Last) return Extended_Index;
316 function Reverse_Find
319 Position : Cursor := No_Element) return Cursor;
323 Item : Element_Type) return Boolean;
327 Process : not null access procedure (Position : Cursor));
329 procedure Reverse_Iterate
331 Process : not null access procedure (Position : Cursor));
335 return Vector_Iterator_Interfaces.Reversible_Iterator'Class;
340 return Vector_Iterator_Interfaces.Reversible_Iterator'class;
343 with function "<" (Left, Right : Element_Type) return Boolean is <>;
344 package Generic_Sorting is
346 function Is_Sorted (Container : Vector) return Boolean;
348 procedure Sort (Container : in out Vector);
350 procedure Merge (Target : in out Vector; Source : in out Vector);
356 pragma Inline (First_Index);
357 pragma Inline (Last_Index);
358 pragma Inline (Element);
359 pragma Inline (First_Element);
360 pragma Inline (Last_Element);
361 pragma Inline (Query_Element);
362 pragma Inline (Update_Element);
363 pragma Inline (Replace_Element);
364 pragma Inline (Is_Empty);
365 pragma Inline (Contains);
366 pragma Inline (Next);
367 pragma Inline (Previous);
369 use Ada.Containers.Helpers;
370 package Implementation is new Generic_Implementation;
374 use Ada.Finalization;
376 type Elements_Array is array (Count_Type range <>) of aliased Element_Type;
377 function "=" (L, R : Elements_Array) return Boolean is abstract;
379 type Vector (Capacity : Count_Type) is tagged record
380 Elements : Elements_Array (1 .. Capacity) := (others => <>);
381 Last : Extended_Index := No_Index;
382 TC : aliased Tamper_Counts;
386 (Stream : not null access Root_Stream_Type'Class;
389 for Vector'Write use Write;
392 (Stream : not null access Root_Stream_Type'Class;
393 Container : out Vector);
395 for Vector'Read use Read;
397 type Vector_Access is access all Vector;
398 for Vector_Access'Storage_Size use 0;
400 type Cursor is record
401 Container : Vector_Access;
402 Index : Index_Type := Index_Type'First;
406 (Stream : not null access Root_Stream_Type'Class;
409 for Cursor'Write use Write;
412 (Stream : not null access Root_Stream_Type'Class;
413 Position : out Cursor);
415 for Cursor'Read use Read;
417 subtype Reference_Control_Type is Implementation.Reference_Control_Type;
418 -- It is necessary to rename this here, so that the compiler can find it
420 type Constant_Reference_Type
421 (Element : not null access constant Element_Type) is
423 Control : Reference_Control_Type :=
424 raise Program_Error with "uninitialized reference";
425 -- The RM says, "The default initialization of an object of
426 -- type Constant_Reference_Type or Reference_Type propagates
431 (Stream : not null access Root_Stream_Type'Class;
432 Item : out Constant_Reference_Type);
434 for Constant_Reference_Type'Read use Read;
437 (Stream : not null access Root_Stream_Type'Class;
438 Item : Constant_Reference_Type);
440 for Constant_Reference_Type'Write use Write;
442 type Reference_Type (Element : not null access Element_Type) is record
443 Control : Reference_Control_Type :=
444 raise Program_Error with "uninitialized reference";
445 -- The RM says, "The default initialization of an object of
446 -- type Constant_Reference_Type or Reference_Type propagates
451 (Stream : not null access Root_Stream_Type'Class;
452 Item : out Reference_Type);
454 for Reference_Type'Read use Read;
457 (Stream : not null access Root_Stream_Type'Class;
458 Item : Reference_Type);
460 for Reference_Type'Write use Write;
462 -- Three operations are used to optimize in the expansion of "for ... of"
463 -- loops: the Next(Cursor) procedure in the visible part, and the following
464 -- Pseudo_Reference and Get_Element_Access functions. See Exp_Ch5 for
467 function Pseudo_Reference
468 (Container : aliased Vector'Class) return Reference_Control_Type;
469 pragma Inline (Pseudo_Reference);
470 -- Creates an object of type Reference_Control_Type pointing to the
471 -- container, and increments the Lock. Finalization of this object will
472 -- decrement the Lock.
474 type Element_Access is access all Element_Type with
477 function Get_Element_Access
478 (Position : Cursor) return not null Element_Access;
479 -- Returns a pointer to the element designated by Position.
481 Empty_Vector : constant Vector := (Capacity => 0, others => <>);
483 No_Element : constant Cursor := Cursor'(null, Index_Type
'First);
485 type Iterator
is new Limited_Controlled
and
486 Vector_Iterator_Interfaces
.Reversible_Iterator
with
488 Container
: Vector_Access
;
489 Index
: Index_Type
'Base;
491 with Disable_Controlled
=> not T_Check
;
493 overriding
procedure Finalize
(Object
: in out Iterator
);
495 overriding
function First
(Object
: Iterator
) return Cursor
;
496 overriding
function Last
(Object
: Iterator
) return Cursor
;
498 overriding
function Next
500 Position
: Cursor
) return Cursor
;
502 overriding
function Previous
504 Position
: Cursor
) return Cursor
;
506 end Ada
.Containers
.Bounded_Vectors
;