1 ------------------------------------------------------------------------------
3 -- GNAT LIBRARY COMPONENTS --
5 -- A D A . C O N T A I N E R S . F O R M A L _ 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/>. --
30 ------------------------------------------------------------------------------
32 -- This spec is derived from package Ada.Containers.Bounded_Vectors in the Ada
33 -- 2012 RM. The modifications are meant to facilitate formal proofs by making
34 -- it easier to express properties, and by making the specification of this
35 -- unit compatible with SPARK 2014. Note that the API of this unit may be
36 -- subject to incompatible changes as SPARK 2014 evolves.
39 type Index_Type
is range <>;
40 type Element_Type
is private;
42 with function "=" (Left
, Right
: Element_Type
) return Boolean is <>;
44 Bounded
: Boolean := True;
45 -- If True, the containers are bounded; the initial capacity is the maximum
46 -- size, and heap allocation will be avoided. If False, the containers can
47 -- grow via heap allocation.
49 package Ada
.Containers
.Formal_Vectors
with
52 pragma Annotate
(GNATprove
, External_Axiomatization
);
53 pragma Annotate
(CodePeer
, Skip_Analysis
);
55 subtype Extended_Index
is Index_Type
'Base
56 range Index_Type
'First - 1 ..
57 Index_Type
'Min (Index_Type
'Base'Last - 1, Index_Type'Last) + 1;
59 No_Index : constant Extended_Index := Extended_Index'First;
61 subtype Capacity_Range is
62 Count_Type range 0 .. Count_Type (Index_Type'Last - Index_Type'First + 1);
64 type Vector (Capacity : Capacity_Range) is limited private with
65 Default_Initial_Condition => Is_Empty (Vector);
66 -- In the bounded case, Capacity is the capacity of the container, which
67 -- never changes. In the unbounded case, Capacity is the initial capacity
68 -- of the container, and operations such as Reserve_Capacity and Append can
69 -- increase the capacity. The capacity never shrinks, except in the case of
72 -- Note that all objects of type Vector are constrained, including in the
73 -- unbounded case; you can't assign from one object to another if the
74 -- Capacity is different.
76 function Empty_Vector return Vector;
78 function "=" (Left, Right : Vector) return Boolean with
82 (New_Item : Element_Type;
83 Length : Capacity_Range) return Vector
87 function Capacity (Container : Vector) return Capacity_Range with
89 Post => Capacity'Result >= Container.Capacity;
91 procedure Reserve_Capacity
92 (Container : in out Vector;
93 Capacity : Capacity_Range)
96 Pre => (if Bounded then Capacity <= Container.Capacity);
98 function Length (Container : Vector) return Capacity_Range with
101 function Is_Empty (Container : Vector) return Boolean with
104 procedure Clear (Container : in out Vector) with
106 -- Note that this reclaims storage in the unbounded case. You need to call
107 -- this before a container goes out of scope in order to avoid storage
108 -- leaks. In addition, "X := ..." can leak unless you Clear(X) first.
110 procedure Assign (Target : in out Vector; Source : Vector) with
112 Pre => (if Bounded then Length (Source) <= Target.Capacity);
116 Capacity : Capacity_Range := 0) return Vector
119 Pre => (if Bounded then (Capacity = 0 or Length (Source) <= Capacity));
123 Index : Index_Type) return Element_Type
126 Pre => Index in First_Index (Container) .. Last_Index (Container);
128 procedure Replace_Element
129 (Container : in out Vector;
131 New_Item : Element_Type)
134 Pre => Index in First_Index (Container) .. Last_Index (Container);
137 (Container : in out Vector;
141 Pre => (if Bounded then
142 Length (Container) + Length (New_Item) <= Container.Capacity);
145 (Container : in out Vector;
146 New_Item : Element_Type)
149 Pre => (if Bounded then
150 Length (Container) < Container.Capacity);
152 procedure Delete_Last
153 (Container : in out Vector)
157 procedure Reverse_Elements (Container : in out Vector) with
160 procedure Swap (Container : in out Vector; I, J : Index_Type) with
162 Pre => I in First_Index (Container) .. Last_Index (Container)
163 and then J in First_Index (Container) .. Last_Index (Container);
165 function First_Index (Container : Vector) return Index_Type with
168 function First_Element (Container : Vector) return Element_Type with
170 Pre => not Is_Empty (Container);
172 function Last_Index (Container : Vector) return Extended_Index with
175 function Last_Element (Container : Vector) return Element_Type with
177 Pre => not Is_Empty (Container);
182 Index : Index_Type := Index_Type'First) return Extended_Index
186 function Reverse_Find_Index
189 Index : Index_Type := Index_Type'Last) return Extended_Index
195 Item : Element_Type) return Boolean
201 Position : Extended_Index) return Boolean
206 with function "<" (Left, Right : Element_Type) return Boolean is <>;
207 package Generic_Sorting with SPARK_Mode is
209 function Is_Sorted (Container : Vector) return Boolean with
212 procedure Sort (Container : in out Vector) with
217 function First_To_Previous
219 Current : Index_Type) return Vector
223 Pre => Current in First_Index (Container) .. Last_Index (Container);
225 function Current_To_Last
227 Current : Index_Type) return Vector
231 Pre => Current in First_Index (Container) .. Last_Index (Container);
232 -- First_To_Previous returns a container containing all elements preceding
233 -- Current (excluded) in Container. Current_To_Last returns a container
234 -- containing all elements following Current (included) in Container.
235 -- These two new functions can be used to express invariant properties in
236 -- loops which iterate over containers. First_To_Previous returns the part
237 -- of the container already scanned and Current_To_Last the part not
241 pragma SPARK_Mode (Off);
243 pragma Inline (First_Index);
244 pragma Inline (Last_Index);
245 pragma Inline (Element);
246 pragma Inline (First_Element);
247 pragma Inline (Last_Element);
248 pragma Inline (Replace_Element);
249 pragma Inline (Contains);
251 subtype Array_Index is Capacity_Range range 1 .. Capacity_Range'Last;
252 type Elements_Array is array (Array_Index range <>) of Element_Type;
253 function "=" (L, R : Elements_Array) return Boolean is abstract;
255 type Elements_Array_Ptr is access all Elements_Array;
257 type Vector (Capacity : Capacity_Range) is limited record
258 -- In the bounded case, the elements are stored in Elements. In the
259 -- unbounded case, the elements are initially stored in Elements, until
260 -- we run out of room, then we switch to Elements_Ptr.
261 Last : Extended_Index := No_Index;
262 Elements_Ptr : Elements_Array_Ptr := null;
263 Elements : aliased Elements_Array (1 .. Capacity);
266 -- The primary reason Vector is limited is that in the unbounded case, once
267 -- Elements_Ptr is in use, assignment statements won't work. "X := Y;" will
268 -- cause X and Y to share state; that is, X.Elements_Ptr = Y.Elements_Ptr,
269 -- so for example "Append (X, ...);" will modify BOTH X and Y. That would
270 -- allow SPARK to "prove" things that are false. We could fix that by
271 -- making Vector a controlled type, and override Adjust to make a deep
272 -- copy, but finalization is not allowed in SPARK.
274 -- Note that (unfortunately) this means that 'Old
and 'Loop_Entry are not
275 -- allowed on Vectors.
277 function Empty_Vector return Vector is
278 ((Capacity => 0, others => <>));
280 end Ada.Containers.Formal_Vectors;