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-2016, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
27 -- This unit was originally developed by Matthew J Heaney. --
28 ------------------------------------------------------------------------------
30 with Ada
.Containers
.Generic_Array_Sort
;
31 with Ada
.Unchecked_Deallocation
;
33 with System
; use type System
.Address
;
35 package body Ada
.Containers
.Vectors
is
37 pragma Warnings
(Off
, "variable ""Busy*"" is not referenced");
38 pragma Warnings
(Off
, "variable ""Lock*"" is not referenced");
39 -- See comment in Ada.Containers.Helpers
42 new Ada
.Unchecked_Deallocation
(Elements_Type
, Elements_Access
);
44 procedure Append_Slow_Path
45 (Container
: in out Vector
;
46 New_Item
: Element_Type
;
48 -- This is the slow path for Append. This is split out to minimize the size
49 -- of Append, because we have Inline (Append).
55 -- We decide that the capacity of the result of "&" is the minimum needed
56 -- -- the sum of the lengths of the vector parameters. We could decide to
57 -- make it larger, but we have no basis for knowing how much larger, so we
58 -- just allocate the minimum amount of storage.
60 function "&" (Left
, Right
: Vector
) return Vector
is
62 return Result
: Vector
do
63 Reserve_Capacity
(Result
, Length
(Left
) + Length
(Right
));
64 Append
(Result
, Left
);
65 Append
(Result
, Right
);
69 function "&" (Left
: Vector
; Right
: Element_Type
) return Vector
is
71 return Result
: Vector
do
72 Reserve_Capacity
(Result
, Length
(Left
) + 1);
73 Append
(Result
, Left
);
74 Append
(Result
, Right
);
78 function "&" (Left
: Element_Type
; Right
: Vector
) return Vector
is
80 return Result
: Vector
do
81 Reserve_Capacity
(Result
, 1 + Length
(Right
));
82 Append
(Result
, Left
);
83 Append
(Result
, Right
);
87 function "&" (Left
, Right
: Element_Type
) return Vector
is
89 return Result
: Vector
do
90 Reserve_Capacity
(Result
, 1 + 1);
91 Append
(Result
, Left
);
92 Append
(Result
, Right
);
100 overriding
function "=" (Left
, Right
: Vector
) return Boolean is
102 if Left
.Last
/= Right
.Last
then
106 if Left
.Length
= 0 then
111 -- Per AI05-0022, the container implementation is required to detect
112 -- element tampering by a generic actual subprogram.
114 Lock_Left
: With_Lock
(Left
.TC
'Unrestricted_Access);
115 Lock_Right
: With_Lock
(Right
.TC
'Unrestricted_Access);
117 for J
in Index_Type
range Index_Type
'First .. Left
.Last
loop
118 if Left
.Elements
.EA
(J
) /= Right
.Elements
.EA
(J
) then
131 procedure Adjust
(Container
: in out Vector
) is
133 -- If the counts are nonzero, execution is technically erroneous, but
134 -- it seems friendly to allow things like concurrent "=" on shared
137 Zero_Counts
(Container
.TC
);
139 if Container
.Last
= No_Index
then
140 Container
.Elements
:= null;
145 L
: constant Index_Type
:= Container
.Last
;
146 EA
: Elements_Array
renames
147 Container
.Elements
.EA
(Index_Type
'First .. L
);
150 Container
.Elements
:= null;
152 -- Note: it may seem that the following assignment to Container.Last
153 -- is useless, since we assign it to L below. However this code is
154 -- used in case 'new Elements_Type' below raises an exception, to
155 -- keep Container in a consistent state.
157 Container
.Last
:= No_Index
;
158 Container
.Elements
:= new Elements_Type
'(L, EA);
167 procedure Append (Container : in out Vector; New_Item : Vector) is
169 if Is_Empty (New_Item) then
171 elsif Checks and then Container.Last = Index_Type'Last then
172 raise Constraint_Error with "vector is already at its maximum length";
174 Insert (Container, Container.Last + 1, New_Item);
179 (Container : in out Vector;
180 New_Item : Element_Type;
181 Count : Count_Type := 1)
184 -- In the general case, we pass the buck to Insert, but for efficiency,
185 -- we check for the usual case where Count = 1 and the vector has enough
186 -- room for at least one more element.
189 and then Container.Elements /= null
190 and then Container.Last /= Container.Elements.Last
192 TC_Check (Container.TC);
194 -- Increment Container.Last after assigning the New_Item, so we
195 -- leave the Container unmodified in case Finalize/Adjust raises
199 New_Last : constant Index_Type := Container.Last + 1;
201 Container.Elements.EA (New_Last) := New_Item;
202 Container.Last := New_Last;
206 Append_Slow_Path (Container, New_Item, Count);
210 ----------------------
211 -- Append_Slow_Path --
212 ----------------------
214 procedure Append_Slow_Path
215 (Container : in out Vector;
216 New_Item : Element_Type;
222 elsif Checks and then Container.Last = Index_Type'Last then
223 raise Constraint_Error with "vector is already at its maximum length";
225 Insert (Container, Container.Last + 1, New_Item, Count);
227 end Append_Slow_Path;
233 procedure Assign (Target : in out Vector; Source : Vector) is
235 if Target'Address = Source'Address then
239 Target.Append (Source);
247 function Capacity (Container : Vector) return Count_Type is
249 if Container.Elements = null then
252 return Container.Elements.EA'Length;
260 procedure Clear (Container : in out Vector) is
262 TC_Check (Container.TC);
263 Container.Last := No_Index;
266 ------------------------
267 -- Constant_Reference --
268 ------------------------
270 function Constant_Reference
271 (Container : aliased Vector;
272 Position : Cursor) return Constant_Reference_Type
276 if Position.Container = null then
277 raise Constraint_Error with "Position cursor has no element";
280 if Position.Container /= Container'Unrestricted_Access then
281 raise Program_Error with "Position cursor denotes wrong container";
284 if Position.Index > Position.Container.Last then
285 raise Constraint_Error with "Position cursor is out of range";
290 TC : constant Tamper_Counts_Access :=
291 Container.TC'Unrestricted_Access;
293 return R : constant Constant_Reference_Type :=
294 (Element => Container.Elements.EA (Position.Index)'Access,
295 Control => (Controlled with TC))
300 end Constant_Reference;
302 function Constant_Reference
303 (Container : aliased Vector;
304 Index : Index_Type) return Constant_Reference_Type
307 if Checks and then Index > Container.Last then
308 raise Constraint_Error with "Index is out of range";
312 TC : constant Tamper_Counts_Access :=
313 Container.TC'Unrestricted_Access;
315 return R : constant Constant_Reference_Type :=
316 (Element => Container.Elements.EA (Index)'Access,
317 Control => (Controlled with TC))
322 end Constant_Reference;
330 Item : Element_Type) return Boolean
333 return Find_Index (Container, Item) /= No_Index;
342 Capacity : Count_Type := 0) return Vector
347 if Capacity >= Source.Length then
353 if Checks and then Capacity /= 0 then
354 raise Capacity_Error with
355 "Requested capacity is less than Source length";
359 return Target : Vector do
360 Target.Reserve_Capacity (C);
361 Target.Assign (Source);
370 (Container : in out Vector;
371 Index : Extended_Index;
372 Count : Count_Type := 1)
374 Old_Last : constant Index_Type'Base := Container.Last;
375 New_Last : Index_Type'Base;
376 Count2 : Count_Type'Base; -- count of items from Index to Old_Last
377 J : Index_Type'Base; -- first index of items that slide down
380 -- Delete removes items from the vector, the number of which is the
381 -- minimum of the specified Count and the items (if any) that exist from
382 -- Index to Container.Last. There are no constraints on the specified
383 -- value of Count (it can be larger than what's available at this
384 -- position in the vector, for example), but there are constraints on
385 -- the allowed values of the Index.
387 -- As a precondition on the generic actual Index_Type, the base type
388 -- must include Index_Type'Pred (Index_Type'First); this is the value
389 -- that Container.Last assumes when the vector is empty. However, we do
390 -- not allow that as the value for Index when specifying which items
391 -- should be deleted, so we must manually check. (That the user is
392 -- allowed to specify the value at all here is a consequence of the
393 -- declaration of the Extended_Index subtype, which includes the values
394 -- in the base range that immediately precede and immediately follow the
395 -- values in the Index_Type.)
397 if Checks and then Index < Index_Type'First then
398 raise Constraint_Error with "Index is out of range (too small)";
401 -- We do allow a value greater than Container.Last to be specified as
402 -- the Index, but only if it's immediately greater. This allows the
403 -- corner case of deleting no items from the back end of the vector to
404 -- be treated as a no-op. (It is assumed that specifying an index value
405 -- greater than Last + 1 indicates some deeper flaw in the caller's
406 -- algorithm, so that case is treated as a proper error.)
408 if Index > Old_Last then
409 if Checks and then Index > Old_Last + 1 then
410 raise Constraint_Error with "Index is out of range (too large)";
416 -- Here and elsewhere we treat deleting 0 items from the container as a
417 -- no-op, even when the container is busy, so we simply return.
423 -- The tampering bits exist to prevent an item from being deleted (or
424 -- otherwise harmfully manipulated) while it is being visited. Query,
425 -- Update, and Iterate increment the busy count on entry, and decrement
426 -- the count on exit. Delete checks the count to determine whether it is
427 -- being called while the associated callback procedure is executing.
429 TC_Check (Container.TC);
431 -- We first calculate what's available for deletion starting at
432 -- Index. Here and elsewhere we use the wider of Index_Type'Base and
433 -- Count_Type'Base as the type for intermediate values. (See function
434 -- Length for more information.)
436 if Count_Type'Base'Last
>= Index_Type
'Pos (Index_Type
'Base'Last) then
437 Count2 := Count_Type'Base (Old_Last) - Count_Type'Base (Index) + 1;
439 Count2 := Count_Type'Base (Old_Last - Index + 1);
442 -- If more elements are requested (Count) for deletion than are
443 -- available (Count2) for deletion beginning at Index, then everything
444 -- from Index is deleted. There are no elements to slide down, and so
445 -- all we need to do is set the value of Container.Last.
447 if Count >= Count2 then
448 Container.Last := Index - 1;
452 -- There are some elements that aren't being deleted (the requested
453 -- count was less than the available count), so we must slide them down
454 -- to Index. We first calculate the index values of the respective array
455 -- slices, using the wider of Index_Type'Base and Count_Type'Base as the
456 -- type for intermediate calculations. For the elements that slide down,
457 -- index value New_Last is the last index value of their new home, and
458 -- index value J is the first index of their old home.
460 if Index_Type'Base'Last
>= Count_Type_Last
then
461 New_Last
:= Old_Last
- Index_Type
'Base (Count
);
462 J
:= Index
+ Index_Type
'Base (Count
);
464 New_Last
:= Index_Type
'Base (Count_Type
'Base (Old_Last
) - Count
);
465 J
:= Index_Type
'Base (Count_Type
'Base (Index
) + Count
);
468 -- The internal elements array isn't guaranteed to exist unless we have
469 -- elements, but we have that guarantee here because we know we have
470 -- elements to slide. The array index values for each slice have
471 -- already been determined, so we just slide down to Index the elements
472 -- that weren't deleted.
475 EA
: Elements_Array
renames Container
.Elements
.EA
;
477 EA
(Index
.. New_Last
) := EA
(J
.. Old_Last
);
478 Container
.Last
:= New_Last
;
483 (Container
: in out Vector
;
484 Position
: in out Cursor
;
485 Count
: Count_Type
:= 1)
489 if Position
.Container
= null then
490 raise Constraint_Error
with "Position cursor has no element";
492 elsif Position
.Container
/= Container
'Unrestricted_Access then
493 raise Program_Error
with "Position cursor denotes wrong container";
495 elsif Position
.Index
> Container
.Last
then
496 raise Program_Error
with "Position index is out of range";
500 Delete
(Container
, Position
.Index
, Count
);
501 Position
:= No_Element
;
508 procedure Delete_First
509 (Container
: in out Vector
;
510 Count
: Count_Type
:= 1)
516 elsif Count
>= Length
(Container
) then
521 Delete
(Container
, Index_Type
'First, Count
);
529 procedure Delete_Last
530 (Container
: in out Vector
;
531 Count
: Count_Type
:= 1)
534 -- It is not permitted to delete items while the container is busy (for
535 -- example, we're in the middle of a passive iteration). However, we
536 -- always treat deleting 0 items as a no-op, even when we're busy, so we
537 -- simply return without checking.
543 -- The tampering bits exist to prevent an item from being deleted (or
544 -- otherwise harmfully manipulated) while it is being visited. Query,
545 -- Update, and Iterate increment the busy count on entry, and decrement
546 -- the count on exit. Delete_Last checks the count to determine whether
547 -- it is being called while the associated callback procedure is
550 TC_Check
(Container
.TC
);
552 -- There is no restriction on how large Count can be when deleting
553 -- items. If it is equal or greater than the current length, then this
554 -- is equivalent to clearing the vector. (In particular, there's no need
555 -- for us to actually calculate the new value for Last.)
557 -- If the requested count is less than the current length, then we must
558 -- calculate the new value for Last. For the type we use the widest of
559 -- Index_Type'Base and Count_Type'Base for the intermediate values of
560 -- our calculation. (See the comments in Length for more information.)
562 if Count
>= Container
.Length
then
563 Container
.Last
:= No_Index
;
565 elsif Index_Type
'Base'Last >= Count_Type_Last then
566 Container.Last := Container.Last - Index_Type'Base (Count);
570 Index_Type'Base (Count_Type'Base (Container.Last) - Count);
580 Index : Index_Type) return Element_Type
583 if Checks and then Index > Container.Last then
584 raise Constraint_Error with "Index is out of range";
587 return Container.Elements.EA (Index);
590 function Element (Position : Cursor) return Element_Type is
593 if Position.Container = null then
594 raise Constraint_Error with "Position cursor has no element";
595 elsif Position.Index > Position.Container.Last then
596 raise Constraint_Error with "Position cursor is out of range";
600 return Position.Container.Elements.EA (Position.Index);
607 procedure Finalize (Container : in out Vector) is
608 X : Elements_Access := Container.Elements;
611 Container.Elements := null;
612 Container.Last := No_Index;
616 TC_Check (Container.TC);
619 procedure Finalize (Object : in out Iterator) is
621 Unbusy (Object.Container.TC);
631 Position : Cursor := No_Element) return Cursor
634 if Checks and then Position.Container /= null then
635 if Position.Container /= Container'Unrestricted_Access then
636 raise Program_Error with "Position cursor denotes wrong container";
639 if Position.Index > Container.Last then
640 raise Program_Error with "Position index is out of range";
644 -- Per AI05-0022, the container implementation is required to detect
645 -- element tampering by a generic actual subprogram.
648 Lock : With_Lock (Container.TC'Unrestricted_Access);
650 for J in Position.Index .. Container.Last loop
651 if Container.Elements.EA (J) = Item then
652 return Cursor'(Container
'Unrestricted_Access, J
);
667 Index
: Index_Type
:= Index_Type
'First) return Extended_Index
669 -- Per AI05-0022, the container implementation is required to detect
670 -- element tampering by a generic actual subprogram.
672 Lock
: With_Lock
(Container
.TC
'Unrestricted_Access);
674 for Indx
in Index
.. Container
.Last
loop
675 if Container
.Elements
.EA
(Indx
) = Item
then
687 function First
(Container
: Vector
) return Cursor
is
689 if Is_Empty
(Container
) then
693 return (Container
'Unrestricted_Access, Index_Type
'First);
696 function First
(Object
: Iterator
) return Cursor
is
698 -- The value of the iterator object's Index component influences the
699 -- behavior of the First (and Last) selector function.
701 -- When the Index component is No_Index, this means the iterator
702 -- object was constructed without a start expression, in which case the
703 -- (forward) iteration starts from the (logical) beginning of the entire
704 -- sequence of items (corresponding to Container.First, for a forward
707 -- Otherwise, this is iteration over a partial sequence of items.
708 -- When the Index component isn't No_Index, the iterator object was
709 -- constructed with a start expression, that specifies the position
710 -- from which the (forward) partial iteration begins.
712 if Object
.Index
= No_Index
then
713 return First
(Object
.Container
.all);
715 return Cursor
'(Object.Container, Object.Index);
723 function First_Element (Container : Vector) return Element_Type is
725 if Checks and then Container.Last = No_Index then
726 raise Constraint_Error with "Container is empty";
728 return Container.Elements.EA (Index_Type'First);
736 function First_Index (Container : Vector) return Index_Type is
737 pragma Unreferenced (Container);
739 return Index_Type'First;
742 ---------------------
743 -- Generic_Sorting --
744 ---------------------
746 package body Generic_Sorting is
752 function Is_Sorted (Container : Vector) return Boolean is
754 if Container.Last <= Index_Type'First then
758 -- Per AI05-0022, the container implementation is required to detect
759 -- element tampering by a generic actual subprogram.
762 Lock : With_Lock (Container.TC'Unrestricted_Access);
763 EA : Elements_Array renames Container.Elements.EA;
765 for J in Index_Type'First .. Container.Last - 1 loop
766 if EA (J + 1) < EA (J) then
779 procedure Merge (Target, Source : in out Vector) is
780 I : Index_Type'Base := Target.Last;
784 -- The semantics of Merge changed slightly per AI05-0021. It was
785 -- originally the case that if Target and Source denoted the same
786 -- container object, then the GNAT implementation of Merge did
787 -- nothing. However, it was argued that RM05 did not precisely
788 -- specify the semantics for this corner case. The decision of the
789 -- ARG was that if Target and Source denote the same non-empty
790 -- container object, then Program_Error is raised.
792 if Source.Last < Index_Type'First then -- Source is empty
796 if Checks and then Target'Address = Source'Address then
797 raise Program_Error with
798 "Target and Source denote same non-empty container";
801 if Target.Last < Index_Type'First then -- Target is empty
802 Move (Target => Target, Source => Source);
806 TC_Check (Source.TC);
808 Target.Set_Length (Length (Target) + Length (Source));
810 -- Per AI05-0022, the container implementation is required to detect
811 -- element tampering by a generic actual subprogram.
814 TA : Elements_Array renames Target.Elements.EA;
815 SA : Elements_Array renames Source.Elements.EA;
817 Lock_Target : With_Lock (Target.TC'Unchecked_Access);
818 Lock_Source : With_Lock (Source.TC'Unchecked_Access);
821 while Source.Last >= Index_Type'First loop
822 pragma Assert (Source.Last <= Index_Type'First
823 or else not (SA (Source.Last) <
824 SA (Source.Last - 1)));
826 if I < Index_Type'First then
827 TA (Index_Type'First .. J) :=
828 SA (Index_Type'First .. Source.Last);
830 Source.Last := No_Index;
834 pragma Assert (I <= Index_Type'First
835 or else not (TA (I) < TA (I - 1)));
837 if SA (Source.Last) < TA (I) then
842 TA (J) := SA (Source.Last);
843 Source.Last := Source.Last - 1;
855 procedure Sort (Container : in out Vector) is
857 new Generic_Array_Sort
858 (Index_Type => Index_Type,
859 Element_Type => Element_Type,
860 Array_Type => Elements_Array,
864 if Container.Last <= Index_Type'First then
868 -- The exception behavior for the vector container must match that
869 -- for the list container, so we check for cursor tampering here
870 -- (which will catch more things) instead of for element tampering
871 -- (which will catch fewer things). It's true that the elements of
872 -- this vector container could be safely moved around while (say) an
873 -- iteration is taking place (iteration only increments the busy
874 -- counter), and so technically all we would need here is a test for
875 -- element tampering (indicated by the lock counter), that's simply
876 -- an artifact of our array-based implementation. Logically Sort
877 -- requires a check for cursor tampering.
879 TC_Check (Container.TC);
881 -- Per AI05-0022, the container implementation is required to detect
882 -- element tampering by a generic actual subprogram.
885 Lock : With_Lock (Container.TC'Unchecked_Access);
887 Sort (Container.Elements.EA (Index_Type'First .. Container.Last));
893 ------------------------
894 -- Get_Element_Access --
895 ------------------------
897 function Get_Element_Access
898 (Position : Cursor) return not null Element_Access is
900 return Position.Container.Elements.EA (Position.Index)'Access;
901 end Get_Element_Access;
907 function Has_Element (Position : Cursor) return Boolean is
909 return Position /= No_Element;
917 (Container : in out Vector;
918 Before : Extended_Index;
919 New_Item : Element_Type;
920 Count : Count_Type := 1)
922 Old_Length : constant Count_Type := Container.Length;
924 Max_Length : Count_Type'Base; -- determined from range of Index_Type
925 New_Length : Count_Type'Base; -- sum of current length and Count
926 New_Last : Index_Type'Base; -- last index of vector after insertion
928 Index : Index_Type'Base; -- scratch for intermediate values
929 J : Count_Type'Base; -- scratch
931 New_Capacity : Count_Type'Base; -- length of new, expanded array
932 Dst_Last : Index_Type'Base; -- last index of new, expanded array
933 Dst : Elements_Access; -- new, expanded internal array
937 -- As a precondition on the generic actual Index_Type, the base type
938 -- must include Index_Type'Pred (Index_Type'First); this is the value
939 -- that Container.Last assumes when the vector is empty. However, we
940 -- do not allow that as the value for Index when specifying where the
941 -- new items should be inserted, so we must manually check. (That the
942 -- user is allowed to specify the value at all here is a consequence
943 -- of the declaration of the Extended_Index subtype, which includes
944 -- the values in the base range that immediately precede and
945 -- immediately follow the values in the Index_Type.)
947 if Before < Index_Type'First then
948 raise Constraint_Error with
949 "Before index is out of range (too small)";
952 -- We do allow a value greater than Container.Last to be specified as
953 -- the Index, but only if it's immediately greater. This allows for
954 -- the case of appending items to the back end of the vector. (It is
955 -- assumed that specifying an index value greater than Last + 1
956 -- indicates some deeper flaw in the caller's algorithm, so that case
957 -- is treated as a proper error.)
959 if Before > Container.Last + 1 then
960 raise Constraint_Error with
961 "Before index is out of range (too large)";
965 -- We treat inserting 0 items into the container as a no-op, even when
966 -- the container is busy, so we simply return.
972 -- There are two constraints we need to satisfy. The first constraint is
973 -- that a container cannot have more than Count_Type'Last elements, so
974 -- we must check the sum of the current length and the insertion count.
975 -- Note: we cannot simply add these values, because of the possibility
978 if Checks and then Old_Length > Count_Type'Last - Count then
979 raise Constraint_Error with "Count is out of range";
982 -- It is now safe compute the length of the new vector, without fear of
985 New_Length := Old_Length + Count;
987 -- The second constraint is that the new Last index value cannot exceed
988 -- Index_Type'Last. In each branch below, we calculate the maximum
989 -- length (computed from the range of values in Index_Type), and then
990 -- compare the new length to the maximum length. If the new length is
991 -- acceptable, then we compute the new last index from that.
993 if Index_Type'Base'Last
>= Count_Type_Last
then
995 -- We have to handle the case when there might be more values in the
996 -- range of Index_Type than in the range of Count_Type.
998 if Index_Type
'First <= 0 then
1000 -- We know that No_Index (the same as Index_Type'First - 1) is
1001 -- less than 0, so it is safe to compute the following sum without
1002 -- fear of overflow.
1004 Index
:= No_Index
+ Index_Type
'Base (Count_Type
'Last);
1006 if Index
<= Index_Type
'Last then
1008 -- We have determined that range of Index_Type has at least as
1009 -- many values as in Count_Type, so Count_Type'Last is the
1010 -- maximum number of items that are allowed.
1012 Max_Length
:= Count_Type
'Last;
1015 -- The range of Index_Type has fewer values than in Count_Type,
1016 -- so the maximum number of items is computed from the range of
1019 Max_Length
:= Count_Type
'Base (Index_Type
'Last - No_Index
);
1023 -- No_Index is equal or greater than 0, so we can safely compute
1024 -- the difference without fear of overflow (which we would have to
1025 -- worry about if No_Index were less than 0, but that case is
1028 if Index_Type
'Last - No_Index
>= Count_Type_Last
then
1029 -- We have determined that range of Index_Type has at least as
1030 -- many values as in Count_Type, so Count_Type'Last is the
1031 -- maximum number of items that are allowed.
1033 Max_Length
:= Count_Type
'Last;
1036 -- The range of Index_Type has fewer values than in Count_Type,
1037 -- so the maximum number of items is computed from the range of
1040 Max_Length
:= Count_Type
'Base (Index_Type
'Last - No_Index
);
1044 elsif Index_Type
'First <= 0 then
1046 -- We know that No_Index (the same as Index_Type'First - 1) is less
1047 -- than 0, so it is safe to compute the following sum without fear of
1050 J
:= Count_Type
'Base (No_Index
) + Count_Type
'Last;
1052 if J
<= Count_Type
'Base (Index_Type
'Last) then
1054 -- We have determined that range of Index_Type has at least as
1055 -- many values as in Count_Type, so Count_Type'Last is the maximum
1056 -- number of items that are allowed.
1058 Max_Length
:= Count_Type
'Last;
1061 -- The range of Index_Type has fewer values than Count_Type does,
1062 -- so the maximum number of items is computed from the range of
1066 Count_Type
'Base (Index_Type
'Last) - Count_Type
'Base (No_Index
);
1070 -- No_Index is equal or greater than 0, so we can safely compute the
1071 -- difference without fear of overflow (which we would have to worry
1072 -- about if No_Index were less than 0, but that case is handled
1076 Count_Type
'Base (Index_Type
'Last) - Count_Type
'Base (No_Index
);
1079 -- We have just computed the maximum length (number of items). We must
1080 -- now compare the requested length to the maximum length, as we do not
1081 -- allow a vector expand beyond the maximum (because that would create
1082 -- an internal array with a last index value greater than
1083 -- Index_Type'Last, with no way to index those elements).
1085 if Checks
and then New_Length
> Max_Length
then
1086 raise Constraint_Error
with "Count is out of range";
1089 -- New_Last is the last index value of the items in the container after
1090 -- insertion. Use the wider of Index_Type'Base and Count_Type'Base to
1091 -- compute its value from the New_Length.
1093 if Index_Type
'Base'Last >= Count_Type_Last then
1094 New_Last := No_Index + Index_Type'Base (New_Length);
1096 New_Last := Index_Type'Base (Count_Type'Base (No_Index) + New_Length);
1099 if Container.Elements = null then
1100 pragma Assert (Container.Last = No_Index);
1102 -- This is the simplest case, with which we must always begin: we're
1103 -- inserting items into an empty vector that hasn't allocated an
1104 -- internal array yet. Note that we don't need to check the busy bit
1105 -- here, because an empty container cannot be busy.
1107 -- In order to preserve container invariants, we allocate the new
1108 -- internal array first, before setting the Last index value, in case
1109 -- the allocation fails (which can happen either because there is no
1110 -- storage available, or because element initialization fails).
1112 Container.Elements := new Elements_Type'
1114 EA
=> (others => New_Item
));
1116 -- The allocation of the new, internal array succeeded, so it is now
1117 -- safe to update the Last index, restoring container invariants.
1119 Container
.Last
:= New_Last
;
1124 -- The tampering bits exist to prevent an item from being harmfully
1125 -- manipulated while it is being visited. Query, Update, and Iterate
1126 -- increment the busy count on entry, and decrement the count on
1127 -- exit. Insert checks the count to determine whether it is being called
1128 -- while the associated callback procedure is executing.
1130 TC_Check
(Container
.TC
);
1132 -- An internal array has already been allocated, so we must determine
1133 -- whether there is enough unused storage for the new items.
1135 if New_Length
<= Container
.Elements
.EA
'Length then
1137 -- In this case, we're inserting elements into a vector that has
1138 -- already allocated an internal array, and the existing array has
1139 -- enough unused storage for the new items.
1142 EA
: Elements_Array
renames Container
.Elements
.EA
;
1145 if Before
> Container
.Last
then
1147 -- The new items are being appended to the vector, so no
1148 -- sliding of existing elements is required.
1150 EA
(Before
.. New_Last
) := (others => New_Item
);
1153 -- The new items are being inserted before some existing
1154 -- elements, so we must slide the existing elements up to their
1155 -- new home. We use the wider of Index_Type'Base and
1156 -- Count_Type'Base as the type for intermediate index values.
1158 if Index_Type
'Base'Last >= Count_Type_Last then
1159 Index := Before + Index_Type'Base (Count);
1161 Index := Index_Type'Base (Count_Type'Base (Before) + Count);
1164 EA (Index .. New_Last) := EA (Before .. Container.Last);
1165 EA (Before .. Index - 1) := (others => New_Item);
1169 Container.Last := New_Last;
1173 -- In this case, we're inserting elements into a vector that has already
1174 -- allocated an internal array, but the existing array does not have
1175 -- enough storage, so we must allocate a new, longer array. In order to
1176 -- guarantee that the amortized insertion cost is O(1), we always
1177 -- allocate an array whose length is some power-of-two factor of the
1178 -- current array length. (The new array cannot have a length less than
1179 -- the New_Length of the container, but its last index value cannot be
1180 -- greater than Index_Type'Last.)
1182 New_Capacity := Count_Type'Max (1, Container.Elements.EA'Length);
1183 while New_Capacity < New_Length loop
1184 if New_Capacity > Count_Type'Last / 2 then
1185 New_Capacity := Count_Type'Last;
1188 New_Capacity := 2 * New_Capacity;
1192 if New_Capacity > Max_Length then
1194 -- We have reached the limit of capacity, so no further expansion
1195 -- will occur. (This is not a problem, as there is never a need to
1196 -- have more capacity than the maximum container length.)
1198 New_Capacity := Max_Length;
1201 -- We have computed the length of the new internal array (and this is
1202 -- what "vector capacity" means), so use that to compute its last index.
1204 if Index_Type'Base'Last
>= Count_Type_Last
then
1205 Dst_Last
:= No_Index
+ Index_Type
'Base (New_Capacity
);
1208 Index_Type
'Base (Count_Type
'Base (No_Index
) + New_Capacity
);
1211 -- Now we allocate the new, longer internal array. If the allocation
1212 -- fails, we have not changed any container state, so no side-effect
1213 -- will occur as a result of propagating the exception.
1215 Dst
:= new Elements_Type
(Dst_Last
);
1217 -- We have our new internal array. All that needs to be done now is to
1218 -- copy the existing items (if any) from the old array (the "source"
1219 -- array, object SA below) to the new array (the "destination" array,
1220 -- object DA below), and then deallocate the old array.
1223 SA
: Elements_Array
renames Container
.Elements
.EA
; -- source
1224 DA
: Elements_Array
renames Dst
.EA
; -- destination
1227 DA
(Index_Type
'First .. Before
- 1) :=
1228 SA
(Index_Type
'First .. Before
- 1);
1230 if Before
> Container
.Last
then
1231 DA
(Before
.. New_Last
) := (others => New_Item
);
1234 -- The new items are being inserted before some existing elements,
1235 -- so we must slide the existing elements up to their new home.
1237 if Index_Type
'Base'Last >= Count_Type_Last then
1238 Index := Before + Index_Type'Base (Count);
1240 Index := Index_Type'Base (Count_Type'Base (Before) + Count);
1243 DA (Before .. Index - 1) := (others => New_Item);
1244 DA (Index .. New_Last) := SA (Before .. Container.Last);
1253 -- We have successfully copied the items onto the new array, so the
1254 -- final thing to do is deallocate the old array.
1257 X : Elements_Access := Container.Elements;
1260 -- We first isolate the old internal array, removing it from the
1261 -- container and replacing it with the new internal array, before we
1262 -- deallocate the old array (which can fail if finalization of
1263 -- elements propagates an exception).
1265 Container.Elements := Dst;
1266 Container.Last := New_Last;
1268 -- The container invariants have been restored, so it is now safe to
1269 -- attempt to deallocate the old array.
1276 (Container : in out Vector;
1277 Before : Extended_Index;
1280 N : constant Count_Type := Length (New_Item);
1281 J : Index_Type'Base;
1284 -- Use Insert_Space to create the "hole" (the destination slice) into
1285 -- which we copy the source items.
1287 Insert_Space (Container, Before, Count => N);
1291 -- There's nothing else to do here (vetting of parameters was
1292 -- performed already in Insert_Space), so we simply return.
1297 -- We calculate the last index value of the destination slice using the
1298 -- wider of Index_Type'Base and count_Type'Base.
1300 if Index_Type'Base'Last
>= Count_Type_Last
then
1301 J
:= (Before
- 1) + Index_Type
'Base (N
);
1303 J
:= Index_Type
'Base (Count_Type
'Base (Before
- 1) + N
);
1306 if Container
'Address /= New_Item
'Address then
1308 -- This is the simple case. New_Item denotes an object different
1309 -- from Container, so there's nothing special we need to do to copy
1310 -- the source items to their destination, because all of the source
1311 -- items are contiguous.
1313 Container
.Elements
.EA
(Before
.. J
) :=
1314 New_Item
.Elements
.EA
(Index_Type
'First .. New_Item
.Last
);
1319 -- New_Item denotes the same object as Container, so an insertion has
1320 -- potentially split the source items. The destination is always the
1321 -- range [Before, J], but the source is [Index_Type'First, Before) and
1322 -- (J, Container.Last]. We perform the copy in two steps, using each of
1323 -- the two slices of the source items.
1326 L
: constant Index_Type
'Base := Before
- 1;
1328 subtype Src_Index_Subtype
is Index_Type
'Base range
1329 Index_Type
'First .. L
;
1331 Src
: Elements_Array
renames
1332 Container
.Elements
.EA
(Src_Index_Subtype
);
1334 K
: Index_Type
'Base;
1337 -- We first copy the source items that precede the space we
1338 -- inserted. Index value K is the last index of that portion
1339 -- destination that receives this slice of the source. (If Before
1340 -- equals Index_Type'First, then this first source slice will be
1341 -- empty, which is harmless.)
1343 if Index_Type
'Base'Last >= Count_Type_Last then
1344 K := L + Index_Type'Base (Src'Length);
1346 K := Index_Type'Base (Count_Type'Base (L) + Src'Length);
1349 Container.Elements.EA (Before .. K) := Src;
1351 if Src'Length = N then
1353 -- The new items were effectively appended to the container, so we
1354 -- have already copied all of the items that need to be copied.
1355 -- We return early here, even though the source slice below is
1356 -- empty (so the assignment would be harmless), because we want to
1357 -- avoid computing J + 1, which will overflow if J equals
1358 -- Index_Type'Base'Last
.
1365 -- Note that we want to avoid computing J + 1 here, in case J equals
1366 -- Index_Type'Base'Last. We prevent that by returning early above,
1367 -- immediately after copying the first slice of the source, and
1368 -- determining that this second slice of the source is empty.
1370 F
: constant Index_Type
'Base := J
+ 1;
1372 subtype Src_Index_Subtype
is Index_Type
'Base range
1373 F
.. Container
.Last
;
1375 Src
: Elements_Array
renames
1376 Container
.Elements
.EA
(Src_Index_Subtype
);
1378 K
: Index_Type
'Base;
1381 -- We next copy the source items that follow the space we inserted.
1382 -- Index value K is the first index of that portion of the
1383 -- destination that receives this slice of the source. (For the
1384 -- reasons given above, this slice is guaranteed to be non-empty.)
1386 if Index_Type
'Base'Last >= Count_Type_Last then
1387 K := F - Index_Type'Base (Src'Length);
1389 K := Index_Type'Base (Count_Type'Base (F) - Src'Length);
1392 Container.Elements.EA (K .. J) := Src;
1397 (Container : in out Vector;
1401 Index : Index_Type'Base;
1404 if Checks and then Before.Container /= null
1405 and then Before.Container /= Container'Unrestricted_Access
1407 raise Program_Error with "Before cursor denotes wrong container";
1410 if Is_Empty (New_Item) then
1414 if Before.Container = null or else Before.Index > Container.Last then
1415 if Checks and then Container.Last = Index_Type'Last then
1416 raise Constraint_Error with
1417 "vector is already at its maximum length";
1420 Index := Container.Last + 1;
1423 Index := Before.Index;
1426 Insert (Container, Index, New_Item);
1430 (Container : in out Vector;
1433 Position : out Cursor)
1435 Index : Index_Type'Base;
1438 if Checks and then Before.Container /= null
1439 and then Before.Container /= Container'Unrestricted_Access
1441 raise Program_Error with "Before cursor denotes wrong container";
1444 if Is_Empty (New_Item) then
1445 if Before.Container = null or else Before.Index > Container.Last then
1446 Position := No_Element;
1448 Position := (Container'Unrestricted_Access, Before.Index);
1454 if Before.Container = null or else Before.Index > Container.Last then
1455 if Checks and then Container.Last = Index_Type'Last then
1456 raise Constraint_Error with
1457 "vector is already at its maximum length";
1460 Index := Container.Last + 1;
1463 Index := Before.Index;
1466 Insert (Container, Index, New_Item);
1468 Position := (Container'Unrestricted_Access, Index);
1472 (Container : in out Vector;
1474 New_Item : Element_Type;
1475 Count : Count_Type := 1)
1477 Index : Index_Type'Base;
1480 if Checks and then Before.Container /= null
1481 and then Before.Container /= Container'Unrestricted_Access
1483 raise Program_Error with "Before cursor denotes wrong container";
1490 if Before.Container = null or else Before.Index > Container.Last then
1491 if Checks and then Container.Last = Index_Type'Last then
1492 raise Constraint_Error with
1493 "vector is already at its maximum length";
1495 Index := Container.Last + 1;
1499 Index := Before.Index;
1502 Insert (Container, Index, New_Item, Count);
1506 (Container : in out Vector;
1508 New_Item : Element_Type;
1509 Position : out Cursor;
1510 Count : Count_Type := 1)
1512 Index : Index_Type'Base;
1515 if Checks and then Before.Container /= null
1516 and then Before.Container /= Container'Unrestricted_Access
1518 raise Program_Error with "Before cursor denotes wrong container";
1522 if Before.Container = null or else Before.Index > Container.Last then
1523 Position := No_Element;
1525 Position := (Container'Unrestricted_Access, Before.Index);
1531 if Before.Container = null or else Before.Index > Container.Last then
1532 if Checks and then Container.Last = Index_Type'Last then
1533 raise Constraint_Error with
1534 "vector is already at its maximum length";
1537 Index := Container.Last + 1;
1540 Index := Before.Index;
1543 Insert (Container, Index, New_Item, Count);
1545 Position := (Container'Unrestricted_Access, Index);
1549 (Container : in out Vector;
1550 Before : Extended_Index;
1551 Count : Count_Type := 1)
1553 New_Item : Element_Type; -- Default-initialized value
1554 pragma Warnings (Off, New_Item);
1557 Insert (Container, Before, New_Item, Count);
1561 (Container : in out Vector;
1563 Position : out Cursor;
1564 Count : Count_Type := 1)
1566 New_Item : Element_Type; -- Default-initialized value
1567 pragma Warnings (Off, New_Item);
1569 Insert (Container, Before, New_Item, Position, Count);
1576 procedure Insert_Space
1577 (Container : in out Vector;
1578 Before : Extended_Index;
1579 Count : Count_Type := 1)
1581 Old_Length : constant Count_Type := Container.Length;
1583 Max_Length : Count_Type'Base; -- determined from range of Index_Type
1584 New_Length : Count_Type'Base; -- sum of current length and Count
1585 New_Last : Index_Type'Base; -- last index of vector after insertion
1587 Index : Index_Type'Base; -- scratch for intermediate values
1588 J : Count_Type'Base; -- scratch
1590 New_Capacity : Count_Type'Base; -- length of new, expanded array
1591 Dst_Last : Index_Type'Base; -- last index of new, expanded array
1592 Dst : Elements_Access; -- new, expanded internal array
1596 -- As a precondition on the generic actual Index_Type, the base type
1597 -- must include Index_Type'Pred (Index_Type'First); this is the value
1598 -- that Container.Last assumes when the vector is empty. However, we
1599 -- do not allow that as the value for Index when specifying where the
1600 -- new items should be inserted, so we must manually check. (That the
1601 -- user is allowed to specify the value at all here is a consequence
1602 -- of the declaration of the Extended_Index subtype, which includes
1603 -- the values in the base range that immediately precede and
1604 -- immediately follow the values in the Index_Type.)
1606 if Before < Index_Type'First then
1607 raise Constraint_Error with
1608 "Before index is out of range (too small)";
1611 -- We do allow a value greater than Container.Last to be specified as
1612 -- the Index, but only if it's immediately greater. This allows for
1613 -- the case of appending items to the back end of the vector. (It is
1614 -- assumed that specifying an index value greater than Last + 1
1615 -- indicates some deeper flaw in the caller's algorithm, so that case
1616 -- is treated as a proper error.)
1618 if Before > Container.Last + 1 then
1619 raise Constraint_Error with
1620 "Before index is out of range (too large)";
1624 -- We treat inserting 0 items into the container as a no-op, even when
1625 -- the container is busy, so we simply return.
1631 -- There are two constraints we need to satisfy. The first constraint is
1632 -- that a container cannot have more than Count_Type'Last elements, so
1633 -- we must check the sum of the current length and the insertion count.
1634 -- Note: we cannot simply add these values, because of the possibility
1637 if Checks and then Old_Length > Count_Type'Last - Count then
1638 raise Constraint_Error with "Count is out of range";
1641 -- It is now safe compute the length of the new vector, without fear of
1644 New_Length := Old_Length + Count;
1646 -- The second constraint is that the new Last index value cannot exceed
1647 -- Index_Type'Last. In each branch below, we calculate the maximum
1648 -- length (computed from the range of values in Index_Type), and then
1649 -- compare the new length to the maximum length. If the new length is
1650 -- acceptable, then we compute the new last index from that.
1652 if Index_Type'Base'Last
>= Count_Type_Last
then
1653 -- We have to handle the case when there might be more values in the
1654 -- range of Index_Type than in the range of Count_Type.
1656 if Index_Type
'First <= 0 then
1658 -- We know that No_Index (the same as Index_Type'First - 1) is
1659 -- less than 0, so it is safe to compute the following sum without
1660 -- fear of overflow.
1662 Index
:= No_Index
+ Index_Type
'Base (Count_Type
'Last);
1664 if Index
<= Index_Type
'Last then
1666 -- We have determined that range of Index_Type has at least as
1667 -- many values as in Count_Type, so Count_Type'Last is the
1668 -- maximum number of items that are allowed.
1670 Max_Length
:= Count_Type
'Last;
1673 -- The range of Index_Type has fewer values than in Count_Type,
1674 -- so the maximum number of items is computed from the range of
1677 Max_Length
:= Count_Type
'Base (Index_Type
'Last - No_Index
);
1681 -- No_Index is equal or greater than 0, so we can safely compute
1682 -- the difference without fear of overflow (which we would have to
1683 -- worry about if No_Index were less than 0, but that case is
1686 if Index_Type
'Last - No_Index
>= Count_Type_Last
then
1687 -- We have determined that range of Index_Type has at least as
1688 -- many values as in Count_Type, so Count_Type'Last is the
1689 -- maximum number of items that are allowed.
1691 Max_Length
:= Count_Type
'Last;
1694 -- The range of Index_Type has fewer values than in Count_Type,
1695 -- so the maximum number of items is computed from the range of
1698 Max_Length
:= Count_Type
'Base (Index_Type
'Last - No_Index
);
1702 elsif Index_Type
'First <= 0 then
1704 -- We know that No_Index (the same as Index_Type'First - 1) is less
1705 -- than 0, so it is safe to compute the following sum without fear of
1708 J
:= Count_Type
'Base (No_Index
) + Count_Type
'Last;
1710 if J
<= Count_Type
'Base (Index_Type
'Last) then
1712 -- We have determined that range of Index_Type has at least as
1713 -- many values as in Count_Type, so Count_Type'Last is the maximum
1714 -- number of items that are allowed.
1716 Max_Length
:= Count_Type
'Last;
1719 -- The range of Index_Type has fewer values than Count_Type does,
1720 -- so the maximum number of items is computed from the range of
1724 Count_Type
'Base (Index_Type
'Last) - Count_Type
'Base (No_Index
);
1728 -- No_Index is equal or greater than 0, so we can safely compute the
1729 -- difference without fear of overflow (which we would have to worry
1730 -- about if No_Index were less than 0, but that case is handled
1734 Count_Type
'Base (Index_Type
'Last) - Count_Type
'Base (No_Index
);
1737 -- We have just computed the maximum length (number of items). We must
1738 -- now compare the requested length to the maximum length, as we do not
1739 -- allow a vector expand beyond the maximum (because that would create
1740 -- an internal array with a last index value greater than
1741 -- Index_Type'Last, with no way to index those elements).
1743 if Checks
and then New_Length
> Max_Length
then
1744 raise Constraint_Error
with "Count is out of range";
1747 -- New_Last is the last index value of the items in the container after
1748 -- insertion. Use the wider of Index_Type'Base and Count_Type'Base to
1749 -- compute its value from the New_Length.
1751 if Index_Type
'Base'Last >= Count_Type_Last then
1752 New_Last := No_Index + Index_Type'Base (New_Length);
1754 New_Last := Index_Type'Base (Count_Type'Base (No_Index) + New_Length);
1757 if Container.Elements = null then
1758 pragma Assert (Container.Last = No_Index);
1760 -- This is the simplest case, with which we must always begin: we're
1761 -- inserting items into an empty vector that hasn't allocated an
1762 -- internal array yet. Note that we don't need to check the busy bit
1763 -- here, because an empty container cannot be busy.
1765 -- In order to preserve container invariants, we allocate the new
1766 -- internal array first, before setting the Last index value, in case
1767 -- the allocation fails (which can happen either because there is no
1768 -- storage available, or because default-valued element
1769 -- initialization fails).
1771 Container.Elements := new Elements_Type (New_Last);
1773 -- The allocation of the new, internal array succeeded, so it is now
1774 -- safe to update the Last index, restoring container invariants.
1776 Container.Last := New_Last;
1781 -- The tampering bits exist to prevent an item from being harmfully
1782 -- manipulated while it is being visited. Query, Update, and Iterate
1783 -- increment the busy count on entry, and decrement the count on
1784 -- exit. Insert checks the count to determine whether it is being called
1785 -- while the associated callback procedure is executing.
1787 TC_Check (Container.TC);
1789 -- An internal array has already been allocated, so we must determine
1790 -- whether there is enough unused storage for the new items.
1792 if New_Last <= Container.Elements.Last then
1794 -- In this case, we're inserting space into a vector that has already
1795 -- allocated an internal array, and the existing array has enough
1796 -- unused storage for the new items.
1799 EA : Elements_Array renames Container.Elements.EA;
1802 if Before <= Container.Last then
1804 -- The space is being inserted before some existing elements,
1805 -- so we must slide the existing elements up to their new
1806 -- home. We use the wider of Index_Type'Base and
1807 -- Count_Type'Base as the type for intermediate index values.
1809 if Index_Type'Base'Last
>= Count_Type_Last
then
1810 Index
:= Before
+ Index_Type
'Base (Count
);
1813 Index
:= Index_Type
'Base (Count_Type
'Base (Before
) + Count
);
1816 EA
(Index
.. New_Last
) := EA
(Before
.. Container
.Last
);
1820 Container
.Last
:= New_Last
;
1824 -- In this case, we're inserting space into a vector that has already
1825 -- allocated an internal array, but the existing array does not have
1826 -- enough storage, so we must allocate a new, longer array. In order to
1827 -- guarantee that the amortized insertion cost is O(1), we always
1828 -- allocate an array whose length is some power-of-two factor of the
1829 -- current array length. (The new array cannot have a length less than
1830 -- the New_Length of the container, but its last index value cannot be
1831 -- greater than Index_Type'Last.)
1833 New_Capacity
:= Count_Type
'Max (1, Container
.Elements
.EA
'Length);
1834 while New_Capacity
< New_Length
loop
1835 if New_Capacity
> Count_Type
'Last / 2 then
1836 New_Capacity
:= Count_Type
'Last;
1840 New_Capacity
:= 2 * New_Capacity
;
1843 if New_Capacity
> Max_Length
then
1845 -- We have reached the limit of capacity, so no further expansion
1846 -- will occur. (This is not a problem, as there is never a need to
1847 -- have more capacity than the maximum container length.)
1849 New_Capacity
:= Max_Length
;
1852 -- We have computed the length of the new internal array (and this is
1853 -- what "vector capacity" means), so use that to compute its last index.
1855 if Index_Type
'Base'Last >= Count_Type_Last then
1856 Dst_Last := No_Index + Index_Type'Base (New_Capacity);
1859 Index_Type'Base (Count_Type'Base (No_Index) + New_Capacity);
1862 -- Now we allocate the new, longer internal array. If the allocation
1863 -- fails, we have not changed any container state, so no side-effect
1864 -- will occur as a result of propagating the exception.
1866 Dst := new Elements_Type (Dst_Last);
1868 -- We have our new internal array. All that needs to be done now is to
1869 -- copy the existing items (if any) from the old array (the "source"
1870 -- array, object SA below) to the new array (the "destination" array,
1871 -- object DA below), and then deallocate the old array.
1874 SA : Elements_Array renames Container.Elements.EA; -- source
1875 DA : Elements_Array renames Dst.EA; -- destination
1878 DA (Index_Type'First .. Before - 1) :=
1879 SA (Index_Type'First .. Before - 1);
1881 if Before <= Container.Last then
1883 -- The space is being inserted before some existing elements, so
1884 -- we must slide the existing elements up to their new home.
1886 if Index_Type'Base'Last
>= Count_Type_Last
then
1887 Index
:= Before
+ Index_Type
'Base (Count
);
1889 Index
:= Index_Type
'Base (Count_Type
'Base (Before
) + Count
);
1892 DA
(Index
.. New_Last
) := SA
(Before
.. Container
.Last
);
1901 -- We have successfully copied the items onto the new array, so the
1902 -- final thing to do is restore invariants, and deallocate the old
1906 X
: Elements_Access
:= Container
.Elements
;
1909 -- We first isolate the old internal array, removing it from the
1910 -- container and replacing it with the new internal array, before we
1911 -- deallocate the old array (which can fail if finalization of
1912 -- elements propagates an exception).
1914 Container
.Elements
:= Dst
;
1915 Container
.Last
:= New_Last
;
1917 -- The container invariants have been restored, so it is now safe to
1918 -- attempt to deallocate the old array.
1924 procedure Insert_Space
1925 (Container
: in out Vector
;
1927 Position
: out Cursor
;
1928 Count
: Count_Type
:= 1)
1930 Index
: Index_Type
'Base;
1933 if Checks
and then Before
.Container
/= null
1934 and then Before
.Container
/= Container
'Unrestricted_Access
1936 raise Program_Error
with "Before cursor denotes wrong container";
1940 if Before
.Container
= null or else Before
.Index
> Container
.Last
then
1941 Position
:= No_Element
;
1943 Position
:= (Container
'Unrestricted_Access, Before
.Index
);
1949 if Before
.Container
= null or else Before
.Index
> Container
.Last
then
1950 if Checks
and then Container
.Last
= Index_Type
'Last then
1951 raise Constraint_Error
with
1952 "vector is already at its maximum length";
1954 Index
:= Container
.Last
+ 1;
1958 Index
:= Before
.Index
;
1961 Insert_Space
(Container
, Index
, Count
);
1963 Position
:= (Container
'Unrestricted_Access, Index
);
1970 function Is_Empty
(Container
: Vector
) return Boolean is
1972 return Container
.Last
< Index_Type
'First;
1980 (Container
: Vector
;
1981 Process
: not null access procedure (Position
: Cursor
))
1983 Busy
: With_Busy
(Container
.TC
'Unrestricted_Access);
1985 for Indx
in Index_Type
'First .. Container
.Last
loop
1986 Process
(Cursor
'(Container'Unrestricted_Access, Indx));
1991 (Container : Vector)
1992 return Vector_Iterator_Interfaces.Reversible_Iterator'Class
1994 V : constant Vector_Access := Container'Unrestricted_Access;
1996 -- The value of its Index component influences the behavior of the First
1997 -- and Last selector functions of the iterator object. When the Index
1998 -- component is No_Index (as is the case here), this means the iterator
1999 -- object was constructed without a start expression. This is a complete
2000 -- iterator, meaning that the iteration starts from the (logical)
2001 -- beginning of the sequence of items.
2003 -- Note: For a forward iterator, Container.First is the beginning, and
2004 -- for a reverse iterator, Container.Last is the beginning.
2006 return It : constant Iterator :=
2007 (Limited_Controlled with
2011 Busy (Container.TC'Unrestricted_Access.all);
2016 (Container : Vector;
2018 return Vector_Iterator_Interfaces.Reversible_Iterator'Class
2020 V : constant Vector_Access := Container'Unrestricted_Access;
2022 -- It was formerly the case that when Start = No_Element, the partial
2023 -- iterator was defined to behave the same as for a complete iterator,
2024 -- and iterate over the entire sequence of items. However, those
2025 -- semantics were unintuitive and arguably error-prone (it is too easy
2026 -- to accidentally create an endless loop), and so they were changed,
2027 -- per the ARG meeting in Denver on 2011/11. However, there was no
2028 -- consensus about what positive meaning this corner case should have,
2029 -- and so it was decided to simply raise an exception. This does imply,
2030 -- however, that it is not possible to use a partial iterator to specify
2031 -- an empty sequence of items.
2034 if Start.Container = null then
2035 raise Constraint_Error with
2036 "Start position for iterator equals No_Element";
2039 if Start.Container /= V then
2040 raise Program_Error with
2041 "Start cursor of Iterate designates wrong vector";
2044 if Start.Index > V.Last then
2045 raise Constraint_Error with
2046 "Start position for iterator equals No_Element";
2050 -- The value of its Index component influences the behavior of the First
2051 -- and Last selector functions of the iterator object. When the Index
2052 -- component is not No_Index (as is the case here), it means that this
2053 -- is a partial iteration, over a subset of the complete sequence of
2054 -- items. The iterator object was constructed with a start expression,
2055 -- indicating the position from which the iteration begins. Note that
2056 -- the start position has the same value irrespective of whether this
2057 -- is a forward or reverse iteration.
2059 return It : constant Iterator :=
2060 (Limited_Controlled with
2062 Index => Start.Index)
2064 Busy (Container.TC'Unrestricted_Access.all);
2072 function Last (Container : Vector) return Cursor is
2074 if Is_Empty (Container) then
2077 return (Container'Unrestricted_Access, Container.Last);
2081 function Last (Object : Iterator) return Cursor is
2083 -- The value of the iterator object's Index component influences the
2084 -- behavior of the Last (and First) selector function.
2086 -- When the Index component is No_Index, this means the iterator
2087 -- object was constructed without a start expression, in which case the
2088 -- (reverse) iteration starts from the (logical) beginning of the entire
2089 -- sequence (corresponding to Container.Last, for a reverse iterator).
2091 -- Otherwise, this is iteration over a partial sequence of items.
2092 -- When the Index component is not No_Index, the iterator object was
2093 -- constructed with a start expression, that specifies the position
2094 -- from which the (reverse) partial iteration begins.
2096 if Object.Index = No_Index then
2097 return Last (Object.Container.all);
2099 return Cursor'(Object
.Container
, Object
.Index
);
2107 function Last_Element
(Container
: Vector
) return Element_Type
is
2109 if Checks
and then Container
.Last
= No_Index
then
2110 raise Constraint_Error
with "Container is empty";
2112 return Container
.Elements
.EA
(Container
.Last
);
2120 function Last_Index
(Container
: Vector
) return Extended_Index
is
2122 return Container
.Last
;
2129 function Length
(Container
: Vector
) return Count_Type
is
2130 L
: constant Index_Type
'Base := Container
.Last
;
2131 F
: constant Index_Type
:= Index_Type
'First;
2134 -- The base range of the index type (Index_Type'Base) might not include
2135 -- all values for length (Count_Type). Contrariwise, the index type
2136 -- might include values outside the range of length. Hence we use
2137 -- whatever type is wider for intermediate values when calculating
2138 -- length. Note that no matter what the index type is, the maximum
2139 -- length to which a vector is allowed to grow is always the minimum
2140 -- of Count_Type'Last and (IT'Last - IT'First + 1).
2142 -- For example, an Index_Type with range -127 .. 127 is only guaranteed
2143 -- to have a base range of -128 .. 127, but the corresponding vector
2144 -- would have lengths in the range 0 .. 255. In this case we would need
2145 -- to use Count_Type'Base for intermediate values.
2147 -- Another case would be the index range -2**63 + 1 .. -2**63 + 10. The
2148 -- vector would have a maximum length of 10, but the index values lie
2149 -- outside the range of Count_Type (which is only 32 bits). In this
2150 -- case we would need to use Index_Type'Base for intermediate values.
2152 if Count_Type
'Base'Last >= Index_Type'Pos (Index_Type'Base'Last
) then
2153 return Count_Type
'Base (L
) - Count_Type
'Base (F
) + 1;
2155 return Count_Type
(L
- F
+ 1);
2164 (Target
: in out Vector
;
2165 Source
: in out Vector
)
2168 if Target
'Address = Source
'Address then
2172 TC_Check
(Target
.TC
);
2173 TC_Check
(Source
.TC
);
2176 Target_Elements
: constant Elements_Access
:= Target
.Elements
;
2178 Target
.Elements
:= Source
.Elements
;
2179 Source
.Elements
:= Target_Elements
;
2182 Target
.Last
:= Source
.Last
;
2183 Source
.Last
:= No_Index
;
2190 function Next
(Position
: Cursor
) return Cursor
is
2192 if Position
.Container
= null then
2194 elsif Position
.Index
< Position
.Container
.Last
then
2195 return (Position
.Container
, Position
.Index
+ 1);
2201 function Next
(Object
: Iterator
; Position
: Cursor
) return Cursor
is
2203 if Position
.Container
= null then
2205 elsif Checks
and then Position
.Container
/= Object
.Container
then
2206 raise Program_Error
with
2207 "Position cursor of Next designates wrong vector";
2209 return Next
(Position
);
2213 procedure Next
(Position
: in out Cursor
) is
2215 if Position
.Container
= null then
2217 elsif Position
.Index
< Position
.Container
.Last
then
2218 Position
.Index
:= Position
.Index
+ 1;
2220 Position
:= No_Element
;
2228 procedure Prepend
(Container
: in out Vector
; New_Item
: Vector
) is
2230 Insert
(Container
, Index_Type
'First, New_Item
);
2234 (Container
: in out Vector
;
2235 New_Item
: Element_Type
;
2236 Count
: Count_Type
:= 1)
2239 Insert
(Container
, Index_Type
'First, New_Item
, Count
);
2246 function Previous
(Position
: Cursor
) return Cursor
is
2248 if Position
.Container
= null then
2250 elsif Position
.Index
> Index_Type
'First then
2251 return (Position
.Container
, Position
.Index
- 1);
2257 function Previous
(Object
: Iterator
; Position
: Cursor
) return Cursor
is
2259 if Position
.Container
= null then
2261 elsif Checks
and then Position
.Container
/= Object
.Container
then
2262 raise Program_Error
with
2263 "Position cursor of Previous designates wrong vector";
2265 return Previous
(Position
);
2269 procedure Previous
(Position
: in out Cursor
) is
2271 if Position
.Container
= null then
2273 elsif Position
.Index
> Index_Type
'First then
2274 Position
.Index
:= Position
.Index
- 1;
2276 Position
:= No_Element
;
2280 ----------------------
2281 -- Pseudo_Reference --
2282 ----------------------
2284 function Pseudo_Reference
2285 (Container
: aliased Vector
'Class) return Reference_Control_Type
2287 TC
: constant Tamper_Counts_Access
:= Container
.TC
'Unrestricted_Access;
2289 return R
: constant Reference_Control_Type
:= (Controlled
with TC
) do
2292 end Pseudo_Reference
;
2298 procedure Query_Element
2299 (Container
: Vector
;
2301 Process
: not null access procedure (Element
: Element_Type
))
2303 Lock
: With_Lock
(Container
.TC
'Unrestricted_Access);
2304 V
: Vector
renames Container
'Unrestricted_Access.all;
2307 if Checks
and then Index
> Container
.Last
then
2308 raise Constraint_Error
with "Index is out of range";
2311 Process
(V
.Elements
.EA
(Index
));
2314 procedure Query_Element
2316 Process
: not null access procedure (Element
: Element_Type
))
2319 if Checks
and then Position
.Container
= null then
2320 raise Constraint_Error
with "Position cursor has no element";
2322 Query_Element
(Position
.Container
.all, Position
.Index
, Process
);
2331 (Stream
: not null access Root_Stream_Type
'Class;
2332 Container
: out Vector
)
2334 Length
: Count_Type
'Base;
2335 Last
: Index_Type
'Base := No_Index
;
2340 Count_Type
'Base'Read (Stream, Length);
2342 if Length > Capacity (Container) then
2343 Reserve_Capacity (Container, Capacity => Length);
2346 for J in Count_Type range 1 .. Length loop
2348 Element_Type'Read (Stream, Container.Elements.EA (Last));
2349 Container.Last := Last;
2354 (Stream : not null access Root_Stream_Type'Class;
2355 Position : out Cursor)
2358 raise Program_Error with "attempt to stream vector cursor";
2362 (Stream : not null access Root_Stream_Type'Class;
2363 Item : out Reference_Type)
2366 raise Program_Error with "attempt to stream reference";
2370 (Stream : not null access Root_Stream_Type'Class;
2371 Item : out Constant_Reference_Type)
2374 raise Program_Error with "attempt to stream reference";
2382 (Container : aliased in out Vector;
2383 Position : Cursor) return Reference_Type
2387 if Position.Container = null then
2388 raise Constraint_Error with "Position cursor has no element";
2391 if Position.Container /= Container'Unrestricted_Access then
2392 raise Program_Error with "Position cursor denotes wrong container";
2395 if Position.Index > Position.Container.Last then
2396 raise Constraint_Error with "Position cursor is out of range";
2401 TC : constant Tamper_Counts_Access :=
2402 Container.TC'Unrestricted_Access;
2404 return R : constant Reference_Type :=
2405 (Element => Container.Elements.EA (Position.Index)'Access,
2406 Control => (Controlled with TC))
2414 (Container : aliased in out Vector;
2415 Index : Index_Type) return Reference_Type
2418 if Checks and then Index > Container.Last then
2419 raise Constraint_Error with "Index is out of range";
2423 TC : constant Tamper_Counts_Access :=
2424 Container.TC'Unrestricted_Access;
2426 return R : constant Reference_Type :=
2427 (Element => Container.Elements.EA (Index)'Access,
2428 Control => (Controlled with TC))
2435 ---------------------
2436 -- Replace_Element --
2437 ---------------------
2439 procedure Replace_Element
2440 (Container : in out Vector;
2442 New_Item : Element_Type)
2445 if Checks and then Index > Container.Last then
2446 raise Constraint_Error with "Index is out of range";
2449 TE_Check (Container.TC);
2450 Container.Elements.EA (Index) := New_Item;
2451 end Replace_Element;
2453 procedure Replace_Element
2454 (Container : in out Vector;
2456 New_Item : Element_Type)
2460 if Position.Container = null then
2461 raise Constraint_Error with "Position cursor has no element";
2463 elsif Position.Container /= Container'Unrestricted_Access then
2464 raise Program_Error with "Position cursor denotes wrong container";
2466 elsif Position.Index > Container.Last then
2467 raise Constraint_Error with "Position cursor is out of range";
2471 TE_Check (Container.TC);
2472 Container.Elements.EA (Position.Index) := New_Item;
2473 end Replace_Element;
2475 ----------------------
2476 -- Reserve_Capacity --
2477 ----------------------
2479 procedure Reserve_Capacity
2480 (Container : in out Vector;
2481 Capacity : Count_Type)
2483 N : constant Count_Type := Length (Container);
2485 Index : Count_Type'Base;
2486 Last : Index_Type'Base;
2489 -- Reserve_Capacity can be used to either expand the storage available
2490 -- for elements (this would be its typical use, in anticipation of
2491 -- future insertion), or to trim back storage. In the latter case,
2492 -- storage can only be trimmed back to the limit of the container
2493 -- length. Note that Reserve_Capacity neither deletes (active) elements
2494 -- nor inserts elements; it only affects container capacity, never
2495 -- container length.
2497 if Capacity = 0 then
2499 -- This is a request to trim back storage, to the minimum amount
2500 -- possible given the current state of the container.
2504 -- The container is empty, so in this unique case we can
2505 -- deallocate the entire internal array. Note that an empty
2506 -- container can never be busy, so there's no need to check the
2510 X : Elements_Access := Container.Elements;
2513 -- First we remove the internal array from the container, to
2514 -- handle the case when the deallocation raises an exception.
2516 Container.Elements := null;
2518 -- Container invariants have been restored, so it is now safe
2519 -- to attempt to deallocate the internal array.
2524 elsif N < Container.Elements.EA'Length then
2526 -- The container is not empty, and the current length is less than
2527 -- the current capacity, so there's storage available to trim. In
2528 -- this case, we allocate a new internal array having a length
2529 -- that exactly matches the number of items in the
2530 -- container. (Reserve_Capacity does not delete active elements,
2531 -- so this is the best we can do with respect to minimizing
2534 TC_Check (Container.TC);
2537 subtype Src_Index_Subtype is Index_Type'Base range
2538 Index_Type'First .. Container.Last;
2540 Src : Elements_Array renames
2541 Container.Elements.EA (Src_Index_Subtype);
2543 X : Elements_Access := Container.Elements;
2546 -- Although we have isolated the old internal array that we're
2547 -- going to deallocate, we don't deallocate it until we have
2548 -- successfully allocated a new one. If there is an exception
2549 -- during allocation (either because there is not enough
2550 -- storage, or because initialization of the elements fails),
2551 -- we let it propagate without causing any side-effect.
2553 Container.Elements := new Elements_Type'(Container
.Last
, Src
);
2555 -- We have successfully allocated a new internal array (with a
2556 -- smaller length than the old one, and containing a copy of
2557 -- just the active elements in the container), so it is now
2558 -- safe to attempt to deallocate the old array. The old array
2559 -- has been isolated, and container invariants have been
2560 -- restored, so if the deallocation fails (because finalization
2561 -- of the elements fails), we simply let it propagate.
2570 -- Reserve_Capacity can be used to expand the storage available for
2571 -- elements, but we do not let the capacity grow beyond the number of
2572 -- values in Index_Type'Range. (Were it otherwise, there would be no way
2573 -- to refer to the elements with an index value greater than
2574 -- Index_Type'Last, so that storage would be wasted.) Here we compute
2575 -- the Last index value of the new internal array, in a way that avoids
2576 -- any possibility of overflow.
2578 if Index_Type
'Base'Last >= Count_Type_Last then
2580 -- We perform a two-part test. First we determine whether the
2581 -- computed Last value lies in the base range of the type, and then
2582 -- determine whether it lies in the range of the index (sub)type.
2584 -- Last must satisfy this relation:
2585 -- First + Length - 1 <= Last
2586 -- We regroup terms:
2587 -- First - 1 <= Last - Length
2588 -- Which can rewrite as:
2589 -- No_Index <= Last - Length
2592 Index_Type'Base'Last
- Index_Type
'Base (Capacity
) < No_Index
2594 raise Constraint_Error
with "Capacity is out of range";
2597 -- We now know that the computed value of Last is within the base
2598 -- range of the type, so it is safe to compute its value:
2600 Last
:= No_Index
+ Index_Type
'Base (Capacity
);
2602 -- Finally we test whether the value is within the range of the
2603 -- generic actual index subtype:
2605 if Checks
and then Last
> Index_Type
'Last then
2606 raise Constraint_Error
with "Capacity is out of range";
2609 elsif Index_Type
'First <= 0 then
2611 -- Here we can compute Last directly, in the normal way. We know that
2612 -- No_Index is less than 0, so there is no danger of overflow when
2613 -- adding the (positive) value of Capacity.
2615 Index
:= Count_Type
'Base (No_Index
) + Capacity
; -- Last
2617 if Checks
and then Index
> Count_Type
'Base (Index_Type
'Last) then
2618 raise Constraint_Error
with "Capacity is out of range";
2621 -- We know that the computed value (having type Count_Type) of Last
2622 -- is within the range of the generic actual index subtype, so it is
2623 -- safe to convert to Index_Type:
2625 Last
:= Index_Type
'Base (Index
);
2628 -- Here Index_Type'First (and Index_Type'Last) is positive, so we
2629 -- must test the length indirectly (by working backwards from the
2630 -- largest possible value of Last), in order to prevent overflow.
2632 Index
:= Count_Type
'Base (Index_Type
'Last) - Capacity
; -- No_Index
2634 if Checks
and then Index
< Count_Type
'Base (No_Index
) then
2635 raise Constraint_Error
with "Capacity is out of range";
2638 -- We have determined that the value of Capacity would not create a
2639 -- Last index value outside of the range of Index_Type, so we can now
2640 -- safely compute its value.
2642 Last
:= Index_Type
'Base (Count_Type
'Base (No_Index
) + Capacity
);
2645 -- The requested capacity is non-zero, but we don't know yet whether
2646 -- this is a request for expansion or contraction of storage.
2648 if Container
.Elements
= null then
2650 -- The container is empty (it doesn't even have an internal array),
2651 -- so this represents a request to allocate (expand) storage having
2652 -- the given capacity.
2654 Container
.Elements
:= new Elements_Type
(Last
);
2658 if Capacity
<= N
then
2660 -- This is a request to trim back storage, but only to the limit of
2661 -- what's already in the container. (Reserve_Capacity never deletes
2662 -- active elements, it only reclaims excess storage.)
2664 if N
< Container
.Elements
.EA
'Length then
2666 -- The container is not empty (because the requested capacity is
2667 -- positive, and less than or equal to the container length), and
2668 -- the current length is less than the current capacity, so
2669 -- there's storage available to trim. In this case, we allocate a
2670 -- new internal array having a length that exactly matches the
2671 -- number of items in the container.
2673 TC_Check
(Container
.TC
);
2676 subtype Src_Index_Subtype
is Index_Type
'Base range
2677 Index_Type
'First .. Container
.Last
;
2679 Src
: Elements_Array
renames
2680 Container
.Elements
.EA
(Src_Index_Subtype
);
2682 X
: Elements_Access
:= Container
.Elements
;
2685 -- Although we have isolated the old internal array that we're
2686 -- going to deallocate, we don't deallocate it until we have
2687 -- successfully allocated a new one. If there is an exception
2688 -- during allocation (either because there is not enough
2689 -- storage, or because initialization of the elements fails),
2690 -- we let it propagate without causing any side-effect.
2692 Container
.Elements
:= new Elements_Type
'(Container.Last, Src);
2694 -- We have successfully allocated a new internal array (with a
2695 -- smaller length than the old one, and containing a copy of
2696 -- just the active elements in the container), so it is now
2697 -- safe to attempt to deallocate the old array. The old array
2698 -- has been isolated, and container invariants have been
2699 -- restored, so if the deallocation fails (because finalization
2700 -- of the elements fails), we simply let it propagate.
2709 -- The requested capacity is larger than the container length (the
2710 -- number of active elements). Whether this represents a request for
2711 -- expansion or contraction of the current capacity depends on what the
2712 -- current capacity is.
2714 if Capacity = Container.Elements.EA'Length then
2716 -- The requested capacity matches the existing capacity, so there's
2717 -- nothing to do here. We treat this case as a no-op, and simply
2718 -- return without checking the busy bit.
2723 -- There is a change in the capacity of a non-empty container, so a new
2724 -- internal array will be allocated. (The length of the new internal
2725 -- array could be less or greater than the old internal array. We know
2726 -- only that the length of the new internal array is greater than the
2727 -- number of active elements in the container.) We must check whether
2728 -- the container is busy before doing anything else.
2730 TC_Check (Container.TC);
2732 -- We now allocate a new internal array, having a length different from
2733 -- its current value.
2736 E : Elements_Access := new Elements_Type (Last);
2739 -- We have successfully allocated the new internal array. We first
2740 -- attempt to copy the existing elements from the old internal array
2741 -- ("src" elements) onto the new internal array ("tgt" elements).
2744 subtype Index_Subtype is Index_Type'Base range
2745 Index_Type'First .. Container.Last;
2747 Src : Elements_Array renames
2748 Container.Elements.EA (Index_Subtype);
2750 Tgt : Elements_Array renames E.EA (Index_Subtype);
2761 -- We have successfully copied the existing elements onto the new
2762 -- internal array, so now we can attempt to deallocate the old one.
2765 X : Elements_Access := Container.Elements;
2768 -- First we isolate the old internal array, and replace it in the
2769 -- container with the new internal array.
2771 Container.Elements := E;
2773 -- Container invariants have been restored, so it is now safe to
2774 -- attempt to deallocate the old internal array.
2779 end Reserve_Capacity;
2781 ----------------------
2782 -- Reverse_Elements --
2783 ----------------------
2785 procedure Reverse_Elements (Container : in out Vector) is
2787 if Container.Length <= 1 then
2791 -- The exception behavior for the vector container must match that for
2792 -- the list container, so we check for cursor tampering here (which will
2793 -- catch more things) instead of for element tampering (which will catch
2794 -- fewer things). It's true that the elements of this vector container
2795 -- could be safely moved around while (say) an iteration is taking place
2796 -- (iteration only increments the busy counter), and so technically
2797 -- all we would need here is a test for element tampering (indicated
2798 -- by the lock counter), that's simply an artifact of our array-based
2799 -- implementation. Logically Reverse_Elements requires a check for
2800 -- cursor tampering.
2802 TC_Check (Container.TC);
2807 E : Elements_Type renames Container.Elements.all;
2810 K := Index_Type'First;
2811 J := Container.Last;
2814 EK : constant Element_Type := E.EA (K);
2816 E.EA (K) := E.EA (J);
2824 end Reverse_Elements;
2830 function Reverse_Find
2831 (Container : Vector;
2832 Item : Element_Type;
2833 Position : Cursor := No_Element) return Cursor
2835 Last : Index_Type'Base;
2838 if Checks and then Position.Container /= null
2839 and then Position.Container /= Container'Unrestricted_Access
2841 raise Program_Error with "Position cursor denotes wrong container";
2845 (if Position.Container = null or else Position.Index > Container.Last
2847 else Position.Index);
2849 -- Per AI05-0022, the container implementation is required to detect
2850 -- element tampering by a generic actual subprogram.
2853 Lock : With_Lock (Container.TC'Unrestricted_Access);
2855 for Indx in reverse Index_Type'First .. Last loop
2856 if Container.Elements.EA (Indx) = Item then
2857 return Cursor'(Container
'Unrestricted_Access, Indx
);
2865 ------------------------
2866 -- Reverse_Find_Index --
2867 ------------------------
2869 function Reverse_Find_Index
2870 (Container
: Vector
;
2871 Item
: Element_Type
;
2872 Index
: Index_Type
:= Index_Type
'Last) return Extended_Index
2874 -- Per AI05-0022, the container implementation is required to detect
2875 -- element tampering by a generic actual subprogram.
2877 Lock
: With_Lock
(Container
.TC
'Unrestricted_Access);
2879 Last
: constant Index_Type
'Base :=
2880 Index_Type
'Min (Container
.Last
, Index
);
2883 for Indx
in reverse Index_Type
'First .. Last
loop
2884 if Container
.Elements
.EA
(Indx
) = Item
then
2890 end Reverse_Find_Index
;
2892 ---------------------
2893 -- Reverse_Iterate --
2894 ---------------------
2896 procedure Reverse_Iterate
2897 (Container
: Vector
;
2898 Process
: not null access procedure (Position
: Cursor
))
2900 Busy
: With_Busy
(Container
.TC
'Unrestricted_Access);
2902 for Indx
in reverse Index_Type
'First .. Container
.Last
loop
2903 Process
(Cursor
'(Container'Unrestricted_Access, Indx));
2905 end Reverse_Iterate;
2911 procedure Set_Length (Container : in out Vector; Length : Count_Type) is
2912 Count : constant Count_Type'Base := Container.Length - Length;
2915 -- Set_Length allows the user to set the length explicitly, instead
2916 -- of implicitly as a side-effect of deletion or insertion. If the
2917 -- requested length is less than the current length, this is equivalent
2918 -- to deleting items from the back end of the vector. If the requested
2919 -- length is greater than the current length, then this is equivalent
2920 -- to inserting "space" (nonce items) at the end.
2923 Container.Delete_Last (Count);
2925 elsif Checks and then Container.Last >= Index_Type'Last then
2926 raise Constraint_Error with "vector is already at its maximum length";
2929 Container.Insert_Space (Container.Last + 1, -Count);
2937 procedure Swap (Container : in out Vector; I, J : Index_Type) is
2940 if I > Container.Last then
2941 raise Constraint_Error with "I index is out of range";
2944 if J > Container.Last then
2945 raise Constraint_Error with "J index is out of range";
2953 TE_Check (Container.TC);
2956 EI_Copy : constant Element_Type := Container.Elements.EA (I);
2958 Container.Elements.EA (I) := Container.Elements.EA (J);
2959 Container.Elements.EA (J) := EI_Copy;
2963 procedure Swap (Container : in out Vector; I, J : Cursor) is
2966 if I.Container = null then
2967 raise Constraint_Error with "I cursor has no element";
2969 elsif J.Container = null then
2970 raise Constraint_Error with "J cursor has no element";
2972 elsif I.Container /= Container'Unrestricted_Access then
2973 raise Program_Error with "I cursor denotes wrong container";
2975 elsif J.Container /= Container'Unrestricted_Access then
2976 raise Program_Error with "J cursor denotes wrong container";
2980 Swap (Container, I.Index, J.Index);
2988 (Container : Vector;
2989 Index : Extended_Index) return Cursor
2992 if Index not in Index_Type'First .. Container.Last then
2995 return (Container'Unrestricted_Access, Index);
3003 function To_Index (Position : Cursor) return Extended_Index is
3005 if Position.Container = null then
3007 elsif Position.Index <= Position.Container.Last then
3008 return Position.Index;
3018 function To_Vector (Length : Count_Type) return Vector is
3019 Index : Count_Type'Base;
3020 Last : Index_Type'Base;
3021 Elements : Elements_Access;
3025 return Empty_Vector;
3028 -- We create a vector object with a capacity that matches the specified
3029 -- Length, but we do not allow the vector capacity (the length of the
3030 -- internal array) to exceed the number of values in Index_Type'Range
3031 -- (otherwise, there would be no way to refer to those components via an
3032 -- index). We must therefore check whether the specified Length would
3033 -- create a Last index value greater than Index_Type'Last.
3035 if Index_Type'Base'Last
>= Count_Type_Last
then
3037 -- We perform a two-part test. First we determine whether the
3038 -- computed Last value lies in the base range of the type, and then
3039 -- determine whether it lies in the range of the index (sub)type.
3041 -- Last must satisfy this relation:
3042 -- First + Length - 1 <= Last
3043 -- We regroup terms:
3044 -- First - 1 <= Last - Length
3045 -- Which can rewrite as:
3046 -- No_Index <= Last - Length
3049 Index_Type
'Base'Last - Index_Type'Base (Length) < No_Index
3051 raise Constraint_Error with "Length is out of range";
3054 -- We now know that the computed value of Last is within the base
3055 -- range of the type, so it is safe to compute its value:
3057 Last := No_Index + Index_Type'Base (Length);
3059 -- Finally we test whether the value is within the range of the
3060 -- generic actual index subtype:
3062 if Checks and then Last > Index_Type'Last then
3063 raise Constraint_Error with "Length is out of range";
3066 elsif Index_Type'First <= 0 then
3068 -- Here we can compute Last directly, in the normal way. We know that
3069 -- No_Index is less than 0, so there is no danger of overflow when
3070 -- adding the (positive) value of Length.
3072 Index := Count_Type'Base (No_Index) + Length; -- Last
3074 if Checks and then Index > Count_Type'Base (Index_Type'Last) then
3075 raise Constraint_Error with "Length is out of range";
3078 -- We know that the computed value (having type Count_Type) of Last
3079 -- is within the range of the generic actual index subtype, so it is
3080 -- safe to convert to Index_Type:
3082 Last := Index_Type'Base (Index);
3085 -- Here Index_Type'First (and Index_Type'Last) is positive, so we
3086 -- must test the length indirectly (by working backwards from the
3087 -- largest possible value of Last), in order to prevent overflow.
3089 Index := Count_Type'Base (Index_Type'Last) - Length; -- No_Index
3091 if Checks and then Index < Count_Type'Base (No_Index) then
3092 raise Constraint_Error with "Length is out of range";
3095 -- We have determined that the value of Length would not create a
3096 -- Last index value outside of the range of Index_Type, so we can now
3097 -- safely compute its value.
3099 Last := Index_Type'Base (Count_Type'Base (No_Index) + Length);
3102 Elements := new Elements_Type (Last);
3104 return Vector'(Controlled
with Elements
, Last
, TC
=> <>);
3108 (New_Item
: Element_Type
;
3109 Length
: Count_Type
) return Vector
3111 Index
: Count_Type
'Base;
3112 Last
: Index_Type
'Base;
3113 Elements
: Elements_Access
;
3117 return Empty_Vector
;
3120 -- We create a vector object with a capacity that matches the specified
3121 -- Length, but we do not allow the vector capacity (the length of the
3122 -- internal array) to exceed the number of values in Index_Type'Range
3123 -- (otherwise, there would be no way to refer to those components via an
3124 -- index). We must therefore check whether the specified Length would
3125 -- create a Last index value greater than Index_Type'Last.
3127 if Index_Type
'Base'Last >= Count_Type_Last then
3129 -- We perform a two-part test. First we determine whether the
3130 -- computed Last value lies in the base range of the type, and then
3131 -- determine whether it lies in the range of the index (sub)type.
3133 -- Last must satisfy this relation:
3134 -- First + Length - 1 <= Last
3135 -- We regroup terms:
3136 -- First - 1 <= Last - Length
3137 -- Which can rewrite as:
3138 -- No_Index <= Last - Length
3141 Index_Type'Base'Last
- Index_Type
'Base (Length
) < No_Index
3143 raise Constraint_Error
with "Length is out of range";
3146 -- We now know that the computed value of Last is within the base
3147 -- range of the type, so it is safe to compute its value:
3149 Last
:= No_Index
+ Index_Type
'Base (Length
);
3151 -- Finally we test whether the value is within the range of the
3152 -- generic actual index subtype:
3154 if Checks
and then Last
> Index_Type
'Last then
3155 raise Constraint_Error
with "Length is out of range";
3158 elsif Index_Type
'First <= 0 then
3160 -- Here we can compute Last directly, in the normal way. We know that
3161 -- No_Index is less than 0, so there is no danger of overflow when
3162 -- adding the (positive) value of Length.
3164 Index
:= Count_Type
'Base (No_Index
) + Length
; -- same value as V.Last
3166 if Checks
and then Index
> Count_Type
'Base (Index_Type
'Last) then
3167 raise Constraint_Error
with "Length is out of range";
3170 -- We know that the computed value (having type Count_Type) of Last
3171 -- is within the range of the generic actual index subtype, so it is
3172 -- safe to convert to Index_Type:
3174 Last
:= Index_Type
'Base (Index
);
3177 -- Here Index_Type'First (and Index_Type'Last) is positive, so we
3178 -- must test the length indirectly (by working backwards from the
3179 -- largest possible value of Last), in order to prevent overflow.
3181 Index
:= Count_Type
'Base (Index_Type
'Last) - Length
; -- No_Index
3183 if Checks
and then Index
< Count_Type
'Base (No_Index
) then
3184 raise Constraint_Error
with "Length is out of range";
3187 -- We have determined that the value of Length would not create a
3188 -- Last index value outside of the range of Index_Type, so we can now
3189 -- safely compute its value.
3191 Last
:= Index_Type
'Base (Count_Type
'Base (No_Index
) + Length
);
3194 Elements
:= new Elements_Type
'(Last, EA => (others => New_Item));
3196 return (Controlled with Elements, Last, TC => <>);
3199 --------------------
3200 -- Update_Element --
3201 --------------------
3203 procedure Update_Element
3204 (Container : in out Vector;
3206 Process : not null access procedure (Element : in out Element_Type))
3208 Lock : With_Lock (Container.TC'Unchecked_Access);
3210 if Checks and then Index > Container.Last then
3211 raise Constraint_Error with "Index is out of range";
3214 Process (Container.Elements.EA (Index));
3217 procedure Update_Element
3218 (Container : in out Vector;
3220 Process : not null access procedure (Element : in out Element_Type))
3224 if Position.Container = null then
3225 raise Constraint_Error with "Position cursor has no element";
3226 elsif Position.Container /= Container'Unrestricted_Access then
3227 raise Program_Error with "Position cursor denotes wrong container";
3231 Update_Element (Container, Position.Index, Process);
3239 (Stream : not null access Root_Stream_Type'Class;
3243 Count_Type'Base'Write
(Stream
, Length
(Container
));
3245 for J
in Index_Type
'First .. Container
.Last
loop
3246 Element_Type
'Write (Stream
, Container
.Elements
.EA
(J
));
3251 (Stream
: not null access Root_Stream_Type
'Class;
3255 raise Program_Error
with "attempt to stream vector cursor";
3259 (Stream
: not null access Root_Stream_Type
'Class;
3260 Item
: Reference_Type
)
3263 raise Program_Error
with "attempt to stream reference";
3267 (Stream
: not null access Root_Stream_Type
'Class;
3268 Item
: Constant_Reference_Type
)
3271 raise Program_Error
with "attempt to stream reference";
3274 end Ada
.Containers
.Vectors
;