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 _ H A S H E D _ M A P S --
9 -- Copyright (C) 2004-2011, 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_Hashed_Maps in the
33 -- Ada 2012 RM. The modifications are to facilitate formal proofs by making it
34 -- easier to express properties.
36 -- The modifications are:
38 -- A parameter for the container is added to every function reading the
39 -- contents of a container: Key, Element, Next, Query_Element, Has_Element,
40 -- Iterate, Equivalent_Keys. This change is motivated by the need to have
41 -- cursors which are valid on different containers (typically a container C
42 -- and its previous version C'Old) for expressing properties, which is not
43 -- possible if cursors encapsulate an access to the underlying container.
45 -- There are four new functions:
47 -- function Strict_Equal (Left, Right : Map) return Boolean;
48 -- function Overlap (Left, Right : Map) return Boolean;
49 -- function Left (Container : Map; Position : Cursor) return Map;
50 -- function Right (Container : Map; Position : Cursor) return Map;
52 -- See detailed specifications for these subprograms
54 private with Ada
.Containers
.Hash_Tables
;
55 private with Ada
.Streams
;
58 type Key_Type
is private;
59 type Element_Type
is private;
61 with function Hash
(Key
: Key_Type
) return Hash_Type
;
62 with function Equivalent_Keys
(Left
, Right
: Key_Type
) return Boolean;
63 with function "=" (Left
, Right
: Element_Type
) return Boolean is <>;
65 package Ada
.Containers
.Formal_Hashed_Maps
is
68 type Map
(Capacity
: Count_Type
; Modulus
: Hash_Type
) is tagged private;
69 pragma Preelaborable_Initialization
(Map
);
71 type Cursor
is private;
72 pragma Preelaborable_Initialization
(Cursor
);
74 Empty_Map
: constant Map
;
76 No_Element
: constant Cursor
;
78 function "=" (Left
, Right
: Map
) return Boolean;
80 function Capacity
(Container
: Map
) return Count_Type
;
82 procedure Reserve_Capacity
83 (Container
: in out Map
;
84 Capacity
: Count_Type
);
86 function Length
(Container
: Map
) return Count_Type
;
88 function Is_Empty
(Container
: Map
) return Boolean;
90 -- ??? what does clear do to active elements?
91 procedure Clear
(Container
: in out Map
);
93 procedure Assign
(Target
: in out Map
; Source
: Map
);
96 -- capacity=0 means use container.length as cap of tgt
97 -- modulos=0 means use default_modulous(container.length)
100 Capacity
: Count_Type
:= 0) return Map
;
102 function Key
(Container
: Map
; Position
: Cursor
) return Key_Type
;
104 function Element
(Container
: Map
; Position
: Cursor
) return Element_Type
;
106 procedure Replace_Element
107 (Container
: in out Map
;
109 New_Item
: Element_Type
);
111 procedure Query_Element
112 (Container
: in out Map
;
114 Process
: not null access
115 procedure (Key
: Key_Type
; Element
: Element_Type
));
117 procedure Update_Element
118 (Container
: in out Map
;
120 Process
: not null access
121 procedure (Key
: Key_Type
; Element
: in out Element_Type
));
123 procedure Move
(Target
: in out Map
; Source
: in out Map
);
126 (Container
: in out Map
;
128 New_Item
: Element_Type
;
129 Position
: out Cursor
;
130 Inserted
: out Boolean);
133 (Container
: in out Map
;
135 Position
: out Cursor
;
136 Inserted
: out Boolean);
139 (Container
: in out Map
;
141 New_Item
: Element_Type
);
144 (Container
: in out Map
;
146 New_Item
: Element_Type
);
149 (Container
: in out Map
;
151 New_Item
: Element_Type
);
153 procedure Exclude
(Container
: in out Map
; Key
: Key_Type
);
155 procedure Delete
(Container
: in out Map
; Key
: Key_Type
);
157 procedure Delete
(Container
: in out Map
; Position
: in out Cursor
);
159 function First
(Container
: Map
) return Cursor
;
161 function Next
(Container
: Map
; Position
: Cursor
) return Cursor
;
163 procedure Next
(Container
: Map
; Position
: in out Cursor
);
165 function Find
(Container
: Map
; Key
: Key_Type
) return Cursor
;
167 function Contains
(Container
: Map
; Key
: Key_Type
) return Boolean;
169 function Element
(Container
: Map
; Key
: Key_Type
) return Element_Type
;
171 function Has_Element
(Container
: Map
; Position
: Cursor
) return Boolean;
173 function Equivalent_Keys
177 CRight
: Cursor
) return Boolean;
179 function Equivalent_Keys
182 Right
: Key_Type
) return Boolean;
184 function Equivalent_Keys
187 CRight
: Cursor
) return Boolean;
191 Process
: not null access
192 procedure (Container
: Map
; Position
: Cursor
));
194 function Default_Modulus
(Capacity
: Count_Type
) return Hash_Type
;
196 function Strict_Equal
(Left
, Right
: Map
) return Boolean;
197 -- Strict_Equal returns True if the containers are physically equal, i.e.
198 -- they are structurally equal (function "=" returns True) and that they
199 -- have the same set of cursors.
201 function Left
(Container
: Map
; Position
: Cursor
) return Map
;
202 function Right
(Container
: Map
; Position
: Cursor
) return Map
;
203 -- Left returns a container containing all elements preceding Position
204 -- (excluded) in Container. Right returns a container containing all
205 -- elements following Position (included) in Container. These two new
206 -- functions can be used to express invariant properties in loops which
207 -- iterate over containers. Left returns the part of the container already
208 -- scanned and Right the part not scanned yet.
210 function Overlap
(Left
, Right
: Map
) return Boolean;
211 -- Overlap returns True if the containers have common keys
214 pragma Inline
(Length
);
215 pragma Inline
(Is_Empty
);
216 pragma Inline
(Clear
);
218 pragma Inline
(Element
);
219 pragma Inline
(Contains
);
220 pragma Inline
(Capacity
);
221 pragma Inline
(Has_Element
);
222 pragma Inline
(Equivalent_Keys
);
223 pragma Inline
(Next
);
225 type Node_Type
is record
227 Element
: Element_Type
;
229 Has_Element
: Boolean := False;
232 package HT_Types
is new
233 Ada
.Containers
.Hash_Tables
.Generic_Bounded_Hash_Table_Types
236 type Map
(Capacity
: Count_Type
; Modulus
: Hash_Type
) is
237 new HT_Types
.Hash_Table_Type
(Capacity
, Modulus
) with null record;
243 (Stream
: not null access Root_Stream_Type
'Class;
246 for Map
'Write use Write
;
249 (Stream
: not null access Root_Stream_Type
'Class;
250 Container
: out Map
);
252 for Map
'Read use Read
;
254 type Map_Access
is access all Map
;
255 for Map_Access
'Storage_Size use 0;
257 type Cursor
is record
262 (Stream
: not null access Root_Stream_Type
'Class;
265 for Cursor
'Read use Read
;
268 (Stream
: not null access Root_Stream_Type
'Class;
271 for Cursor
'Write use Write
;
273 Empty_Map
: constant Map
:= (Capacity
=> 0, Modulus
=> 0, others => <>);
275 No_Element
: constant Cursor
:= (Node
=> 0);
277 end Ada
.Containers
.Formal_Hashed_Maps
;