1 ------------------------------------------------------------------------------
3 -- GNAT LIBRARY COMPONENTS --
5 -- ADA.CONTAINERS.INDEFINITE_HASHED_MAPS --
9 -- Copyright (C) 2004-2014, 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
.Hash_Tables
.Generic_Operations
;
31 pragma Elaborate_All
(Ada
.Containers
.Hash_Tables
.Generic_Operations
);
33 with Ada
.Containers
.Hash_Tables
.Generic_Keys
;
34 pragma Elaborate_All
(Ada
.Containers
.Hash_Tables
.Generic_Keys
);
36 with Ada
.Unchecked_Deallocation
;
38 with System
; use type System
.Address
;
40 package body Ada
.Containers
.Indefinite_Hashed_Maps
is
42 pragma Annotate
(CodePeer
, Skip_Analysis
);
45 new Ada
.Unchecked_Deallocation
(Key_Type
, Key_Access
);
47 procedure Free_Element
is
48 new Ada
.Unchecked_Deallocation
(Element_Type
, Element_Access
);
50 -----------------------
51 -- Local Subprograms --
52 -----------------------
54 function Copy_Node
(Node
: Node_Access
) return Node_Access
;
55 pragma Inline
(Copy_Node
);
57 function Equivalent_Key_Node
59 Node
: Node_Access
) return Boolean;
60 pragma Inline
(Equivalent_Key_Node
);
62 function Find_Equal_Key
63 (R_HT
: Hash_Table_Type
;
64 L_Node
: Node_Access
) return Boolean;
66 procedure Free
(X
: in out Node_Access
);
67 -- pragma Inline (Free);
69 function Hash_Node
(Node
: Node_Access
) return Hash_Type
;
70 pragma Inline
(Hash_Node
);
72 function Next
(Node
: Node_Access
) return Node_Access
;
76 (Stream
: not null access Root_Stream_Type
'Class) return Node_Access
;
78 procedure Set_Next
(Node
: Node_Access
; Next
: Node_Access
);
79 pragma Inline
(Set_Next
);
81 function Vet
(Position
: Cursor
) return Boolean;
84 (Stream
: not null access Root_Stream_Type
'Class;
87 --------------------------
88 -- Local Instantiations --
89 --------------------------
91 package HT_Ops
is new Ada
.Containers
.Hash_Tables
.Generic_Operations
92 (HT_Types
=> HT_Types
,
93 Hash_Node
=> Hash_Node
,
96 Copy_Node
=> Copy_Node
,
99 package Key_Ops
is new Hash_Tables
.Generic_Keys
100 (HT_Types
=> HT_Types
,
102 Set_Next
=> Set_Next
,
103 Key_Type
=> Key_Type
,
105 Equivalent_Keys
=> Equivalent_Key_Node
);
111 function Is_Equal
is new HT_Ops
.Generic_Equal
(Find_Equal_Key
);
113 overriding
function "=" (Left
, Right
: Map
) return Boolean is
115 return Is_Equal
(Left
.HT
, Right
.HT
);
122 procedure Adjust
(Container
: in out Map
) is
124 HT_Ops
.Adjust
(Container
.HT
);
127 procedure Adjust
(Control
: in out Reference_Control_Type
) is
129 if Control
.Container
/= null then
131 M
: Map
renames Control
.Container
.all;
132 HT
: Hash_Table_Type
renames M
.HT
'Unrestricted_Access.all;
133 B
: Natural renames HT
.Busy
;
134 L
: Natural renames HT
.Lock
;
146 procedure Assign
(Target
: in out Map
; Source
: Map
) is
147 procedure Insert_Item
(Node
: Node_Access
);
148 pragma Inline
(Insert_Item
);
150 procedure Insert_Items
is new HT_Ops
.Generic_Iteration
(Insert_Item
);
156 procedure Insert_Item
(Node
: Node_Access
) is
158 Target
.Insert
(Key
=> Node
.Key
.all, New_Item
=> Node
.Element
.all);
161 -- Start of processing for Assign
164 if Target
'Address = Source
'Address then
170 if Target
.Capacity
< Source
.Length
then
171 Target
.Reserve_Capacity
(Source
.Length
);
174 Insert_Items
(Source
.HT
);
181 function Capacity
(Container
: Map
) return Count_Type
is
183 return HT_Ops
.Capacity
(Container
.HT
);
190 procedure Clear
(Container
: in out Map
) is
192 HT_Ops
.Clear
(Container
.HT
);
195 ------------------------
196 -- Constant_Reference --
197 ------------------------
199 function Constant_Reference
200 (Container
: aliased Map
;
201 Position
: Cursor
) return Constant_Reference_Type
204 if Position
.Container
= null then
205 raise Constraint_Error
with
206 "Position cursor has no element";
209 if Position
.Container
/= Container
'Unrestricted_Access then
210 raise Program_Error
with
211 "Position cursor designates wrong map";
214 if Position
.Node
.Element
= null then
215 raise Program_Error
with
216 "Position cursor has no element";
221 "Position cursor in Constant_Reference is bad");
224 M
: Map
renames Position
.Container
.all;
225 HT
: Hash_Table_Type
renames M
.HT
'Unrestricted_Access.all;
226 B
: Natural renames HT
.Busy
;
227 L
: Natural renames HT
.Lock
;
229 return R
: constant Constant_Reference_Type
:=
230 (Element
=> Position
.Node
.Element
.all'Access,
231 Control
=> (Controlled
with Container
'Unrestricted_Access))
237 end Constant_Reference
;
239 function Constant_Reference
240 (Container
: aliased Map
;
241 Key
: Key_Type
) return Constant_Reference_Type
243 HT
: Hash_Table_Type
renames Container
'Unrestricted_Access.HT
;
244 Node
: constant Node_Access
:= Key_Ops
.Find
(HT
, Key
);
248 raise Constraint_Error
with "key not in map";
251 if Node
.Element
= null then
252 raise Program_Error
with "key has no element";
256 B
: Natural renames HT
.Busy
;
257 L
: Natural renames HT
.Lock
;
259 return R
: constant Constant_Reference_Type
:=
260 (Element
=> Node
.Element
.all'Access,
261 Control
=> (Controlled
with Container
'Unrestricted_Access))
267 end Constant_Reference
;
273 function Contains
(Container
: Map
; Key
: Key_Type
) return Boolean is
275 return Find
(Container
, Key
) /= No_Element
;
284 Capacity
: Count_Type
:= 0) return Map
292 elsif Capacity
>= Source
.Length
then
297 with "Requested capacity is less than Source length";
300 return Target
: Map
do
301 Target
.Reserve_Capacity
(C
);
302 Target
.Assign
(Source
);
310 function Copy_Node
(Node
: Node_Access
) return Node_Access
is
311 K
: Key_Access
:= new Key_Type
'(Node.Key.all);
314 E := new Element_Type'(Node
.Element
.all);
315 return new Node_Type
'(K, E, null);
327 procedure Delete (Container : in out Map; Key : Key_Type) is
331 Key_Ops.Delete_Key_Sans_Free (Container.HT, Key, X);
334 raise Constraint_Error with "attempt to delete key not in map";
340 procedure Delete (Container : in out Map; Position : in out Cursor) is
342 if Position.Node = null then
343 raise Constraint_Error with
344 "Position cursor of Delete equals No_Element";
347 if Position.Container /= Container'Unrestricted_Access then
348 raise Program_Error with
349 "Position cursor of Delete designates wrong map";
352 if Container.HT.Busy > 0 then
353 raise Program_Error with
354 "Delete attempted to tamper with cursors (map is busy)";
357 pragma Assert (Vet (Position), "bad cursor in Delete");
359 HT_Ops.Delete_Node_Sans_Free (Container.HT, Position.Node);
361 Free (Position.Node);
362 Position.Container := null;
369 function Element (Container : Map; Key : Key_Type) return Element_Type is
370 HT : Hash_Table_Type renames Container'Unrestricted_Access.HT;
371 Node : constant Node_Access := Key_Ops.Find (HT, Key);
375 raise Constraint_Error with
376 "no element available because key not in map";
379 return Node.Element.all;
382 function Element (Position : Cursor) return Element_Type is
384 if Position.Node = null then
385 raise Constraint_Error with
386 "Position cursor of function Element equals No_Element";
389 if Position.Node.Element = null then
390 raise Program_Error with
391 "Position cursor of function Element is bad";
394 pragma Assert (Vet (Position), "bad cursor in function Element");
396 return Position.Node.Element.all;
399 -------------------------
400 -- Equivalent_Key_Node --
401 -------------------------
403 function Equivalent_Key_Node
405 Node : Node_Access) return Boolean
408 return Equivalent_Keys (Key, Node.Key.all);
409 end Equivalent_Key_Node;
411 ---------------------
412 -- Equivalent_Keys --
413 ---------------------
415 function Equivalent_Keys (Left, Right : Cursor) return Boolean is
417 if Left.Node = null then
418 raise Constraint_Error with
419 "Left cursor of Equivalent_Keys equals No_Element";
422 if Right.Node = null then
423 raise Constraint_Error with
424 "Right cursor of Equivalent_Keys equals No_Element";
427 if Left.Node.Key = null then
428 raise Program_Error with
429 "Left cursor of Equivalent_Keys is bad";
432 if Right.Node.Key = null then
433 raise Program_Error with
434 "Right cursor of Equivalent_Keys is bad";
437 pragma Assert (Vet (Left), "bad Left cursor in Equivalent_Keys");
438 pragma Assert (Vet (Right), "bad Right cursor in Equivalent_Keys");
440 return Equivalent_Keys (Left.Node.Key.all, Right.Node.Key.all);
443 function Equivalent_Keys
445 Right : Key_Type) return Boolean
448 if Left.Node = null then
449 raise Constraint_Error with
450 "Left cursor of Equivalent_Keys equals No_Element";
453 if Left.Node.Key = null then
454 raise Program_Error with
455 "Left cursor of Equivalent_Keys is bad";
458 pragma Assert (Vet (Left), "bad Left cursor in Equivalent_Keys");
460 return Equivalent_Keys (Left.Node.Key.all, Right);
463 function Equivalent_Keys
465 Right : Cursor) return Boolean
468 if Right.Node = null then
469 raise Constraint_Error with
470 "Right cursor of Equivalent_Keys equals No_Element";
473 if Right.Node.Key = null then
474 raise Program_Error with
475 "Right cursor of Equivalent_Keys is bad";
478 pragma Assert (Vet (Right), "bad Right cursor in Equivalent_Keys");
480 return Equivalent_Keys (Left, Right.Node.Key.all);
487 procedure Exclude (Container : in out Map; Key : Key_Type) is
490 Key_Ops.Delete_Key_Sans_Free (Container.HT, Key, X);
498 procedure Finalize (Container : in out Map) is
500 HT_Ops.Finalize (Container.HT);
503 procedure Finalize (Object : in out Iterator) is
505 if Object.Container /= null then
507 B : Natural renames Object.Container.all.HT.Busy;
514 procedure Finalize (Control : in out Reference_Control_Type) is
516 if Control.Container /= null then
518 M : Map renames Control.Container.all;
519 HT : Hash_Table_Type renames M.HT'Unrestricted_Access.all;
520 B : Natural renames HT.Busy;
521 L : Natural renames HT.Lock;
527 Control.Container := null;
535 function Find (Container : Map; Key : Key_Type) return Cursor is
536 HT : Hash_Table_Type renames Container'Unrestricted_Access.HT;
537 Node : constant Node_Access := Key_Ops.Find (HT, Key);
544 return Cursor'(Container
'Unrestricted_Access, Node
);
551 function Find_Equal_Key
552 (R_HT
: Hash_Table_Type
;
553 L_Node
: Node_Access
) return Boolean
555 R_Index
: constant Hash_Type
:= Key_Ops
.Index
(R_HT
, L_Node
.Key
.all);
556 R_Node
: Node_Access
:= R_HT
.Buckets
(R_Index
);
559 while R_Node
/= null loop
560 if Equivalent_Keys
(L_Node
.Key
.all, R_Node
.Key
.all) then
561 return L_Node
.Element
.all = R_Node
.Element
.all;
564 R_Node
:= R_Node
.Next
;
574 function First
(Container
: Map
) return Cursor
is
575 Node
: constant Node_Access
:= HT_Ops
.First
(Container
.HT
);
580 return Cursor
'(Container'Unrestricted_Access, Node);
584 function First (Object : Iterator) return Cursor is
586 return Object.Container.First;
593 procedure Free (X : in out Node_Access) is
594 procedure Deallocate is
595 new Ada.Unchecked_Deallocation (Node_Type, Node_Access);
602 X.Next := X; -- detect mischief (in Vet)
612 Free_Element (X.Element);
623 Free_Element (X.Element);
638 function Has_Element (Position : Cursor) return Boolean is
640 pragma Assert (Vet (Position), "bad cursor in Has_Element");
641 return Position.Node /= null;
648 function Hash_Node (Node : Node_Access) return Hash_Type is
650 return Hash (Node.Key.all);
658 (Container : in out Map;
660 New_Item : Element_Type)
669 Insert (Container, Key, New_Item, Position, Inserted);
672 if Container.HT.Lock > 0 then
673 raise Program_Error with
674 "Include attempted to tamper with elements (map is locked)";
677 K := Position.Node.Key;
678 E := Position.Node.Element;
680 Position.Node.Key := new Key_Type'(Key
);
683 -- The element allocator may need an accessibility check in the
684 -- case the actual type is class-wide or has access discriminants
685 -- (see RM 4.8(10.1) and AI12-0035).
687 pragma Unsuppress
(Accessibility_Check
);
690 Position
.Node
.Element
:= new Element_Type
'(New_Item);
708 (Container : in out Map;
710 New_Item : Element_Type;
711 Position : out Cursor;
712 Inserted : out Boolean)
714 function New_Node (Next : Node_Access) return Node_Access;
716 procedure Local_Insert is
717 new Key_Ops.Generic_Conditional_Insert (New_Node);
723 function New_Node (Next : Node_Access) return Node_Access is
724 K : Key_Access := new Key_Type'(Key
);
727 -- The element allocator may need an accessibility check in the case
728 -- the actual type is class-wide or has access discriminants (see
729 -- RM 4.8(10.1) and AI12-0035).
731 pragma Unsuppress
(Accessibility_Check
);
734 E
:= new Element_Type
'(New_Item);
735 return new Node_Type'(K
, E
, Next
);
744 HT
: Hash_Table_Type
renames Container
.HT
;
746 -- Start of processing for Insert
749 if HT_Ops
.Capacity
(HT
) = 0 then
750 HT_Ops
.Reserve_Capacity
(HT
, 1);
753 Local_Insert
(HT
, Key
, Position
.Node
, Inserted
);
756 and then HT
.Length
> HT_Ops
.Capacity
(HT
)
758 HT_Ops
.Reserve_Capacity
(HT
, HT
.Length
);
761 Position
.Container
:= Container
'Unchecked_Access;
765 (Container
: in out Map
;
767 New_Item
: Element_Type
)
770 pragma Unreferenced
(Position
);
775 Insert
(Container
, Key
, New_Item
, Position
, Inserted
);
778 raise Constraint_Error
with
779 "attempt to insert key already in map";
787 function Is_Empty
(Container
: Map
) return Boolean is
789 return Container
.HT
.Length
= 0;
798 Process
: not null access procedure (Position
: Cursor
))
800 procedure Process_Node
(Node
: Node_Access
);
801 pragma Inline
(Process_Node
);
803 procedure Local_Iterate
is
804 new HT_Ops
.Generic_Iteration
(Process_Node
);
810 procedure Process_Node
(Node
: Node_Access
) is
812 Process
(Cursor
'(Container'Unrestricted_Access, Node));
815 B : Natural renames Container'Unrestricted_Access.all.HT.Busy;
817 -- Start of processing Iterate
823 Local_Iterate (Container.HT);
834 (Container : Map) return Map_Iterator_Interfaces.Forward_Iterator'Class
836 B : Natural renames Container'Unrestricted_Access.all.HT.Busy;
838 return It : constant Iterator :=
839 (Limited_Controlled with Container => Container'Unrestricted_Access)
849 function Key (Position : Cursor) return Key_Type is
851 if Position.Node = null then
852 raise Constraint_Error with
853 "Position cursor of function Key equals No_Element";
856 if Position.Node.Key = null then
857 raise Program_Error with
858 "Position cursor of function Key is bad";
861 pragma Assert (Vet (Position), "bad cursor in function Key");
863 return Position.Node.Key.all;
870 function Length (Container : Map) return Count_Type is
872 return Container.HT.Length;
880 (Target : in out Map;
884 HT_Ops.Move (Target => Target.HT, Source => Source.HT);
891 function Next (Node : Node_Access) return Node_Access is
896 procedure Next (Position : in out Cursor) is
898 Position := Next (Position);
901 function Next (Position : Cursor) return Cursor is
903 if Position.Node = null then
907 if Position.Node.Key = null
908 or else Position.Node.Element = null
910 raise Program_Error with "Position cursor of Next is bad";
913 pragma Assert (Vet (Position), "Position cursor of Next is bad");
916 HT : Hash_Table_Type renames Position.Container.HT;
917 Node : constant Node_Access := HT_Ops.Next (HT, Position.Node);
922 return Cursor'(Position
.Container
, Node
);
927 function Next
(Object
: Iterator
; Position
: Cursor
) return Cursor
is
929 if Position
.Container
= null then
933 if Position
.Container
/= Object
.Container
then
934 raise Program_Error
with
935 "Position cursor of Next designates wrong map";
938 return Next
(Position
);
945 procedure Query_Element
947 Process
: not null access procedure (Key
: Key_Type
;
948 Element
: Element_Type
))
951 if Position
.Node
= null then
952 raise Constraint_Error
with
953 "Position cursor of Query_Element equals No_Element";
956 if Position
.Node
.Key
= null
957 or else Position
.Node
.Element
= null
959 raise Program_Error
with
960 "Position cursor of Query_Element is bad";
963 pragma Assert
(Vet
(Position
), "bad cursor in Query_Element");
966 M
: Map
renames Position
.Container
.all;
967 HT
: Hash_Table_Type
renames M
.HT
'Unrestricted_Access.all;
969 B
: Natural renames HT
.Busy
;
970 L
: Natural renames HT
.Lock
;
977 K
: Key_Type
renames Position
.Node
.Key
.all;
978 E
: Element_Type
renames Position
.Node
.Element
.all;
1000 procedure Read_Nodes
is new HT_Ops
.Generic_Read
(Read_Node
);
1003 (Stream
: not null access Root_Stream_Type
'Class;
1004 Container
: out Map
)
1007 Read_Nodes
(Stream
, Container
.HT
);
1011 (Stream
: not null access Root_Stream_Type
'Class;
1015 raise Program_Error
with "attempt to stream map cursor";
1019 (Stream
: not null access Root_Stream_Type
'Class;
1020 Item
: out Reference_Type
)
1023 raise Program_Error
with "attempt to stream reference";
1027 (Stream
: not null access Root_Stream_Type
'Class;
1028 Item
: out Constant_Reference_Type
)
1031 raise Program_Error
with "attempt to stream reference";
1039 (Stream
: not null access Root_Stream_Type
'Class) return Node_Access
1041 Node
: Node_Access
:= new Node_Type
;
1045 Node
.Key
:= new Key_Type
'(Key_Type'Input (Stream));
1053 Node.Element := new Element_Type'(Element_Type
'Input (Stream
));
1056 Free_Key
(Node
.Key
);
1069 (Container
: aliased in out Map
;
1070 Position
: Cursor
) return Reference_Type
1073 if Position
.Container
= null then
1074 raise Constraint_Error
with
1075 "Position cursor has no element";
1078 if Position
.Container
/= Container
'Unrestricted_Access then
1079 raise Program_Error
with
1080 "Position cursor designates wrong map";
1083 if Position
.Node
.Element
= null then
1084 raise Program_Error
with
1085 "Position cursor has no element";
1090 "Position cursor in function Reference is bad");
1093 M
: Map
renames Position
.Container
.all;
1094 HT
: Hash_Table_Type
renames M
.HT
'Unrestricted_Access.all;
1095 B
: Natural renames HT
.Busy
;
1096 L
: Natural renames HT
.Lock
;
1098 return R
: constant Reference_Type
:=
1099 (Element
=> Position
.Node
.Element
.all'Access,
1100 Control
=> (Controlled
with Position
.Container
))
1109 (Container
: aliased in out Map
;
1110 Key
: Key_Type
) return Reference_Type
1112 HT
: Hash_Table_Type
renames Container
.HT
;
1113 Node
: constant Node_Access
:= Key_Ops
.Find
(HT
, Key
);
1117 raise Constraint_Error
with "key not in map";
1120 if Node
.Element
= null then
1121 raise Program_Error
with "key has no element";
1125 B
: Natural renames HT
.Busy
;
1126 L
: Natural renames HT
.Lock
;
1128 return R
: constant Reference_Type
:=
1129 (Element
=> Node
.Element
.all'Access,
1130 Control
=> (Controlled
with Container
'Unrestricted_Access))
1143 (Container
: in out Map
;
1145 New_Item
: Element_Type
)
1147 Node
: constant Node_Access
:= Key_Ops
.Find
(Container
.HT
, Key
);
1154 raise Constraint_Error
with
1155 "attempt to replace key not in map";
1158 if Container
.HT
.Lock
> 0 then
1159 raise Program_Error
with
1160 "Replace attempted to tamper with elements (map is locked)";
1166 Node
.Key
:= new Key_Type
'(Key);
1169 -- The element allocator may need an accessibility check in the case
1170 -- the actual type is class-wide or has access discriminants (see
1171 -- RM 4.8(10.1) and AI12-0035).
1173 pragma Unsuppress (Accessibility_Check);
1176 Node.Element := new Element_Type'(New_Item
);
1188 ---------------------
1189 -- Replace_Element --
1190 ---------------------
1192 procedure Replace_Element
1193 (Container
: in out Map
;
1195 New_Item
: Element_Type
)
1198 if Position
.Node
= null then
1199 raise Constraint_Error
with
1200 "Position cursor of Replace_Element equals No_Element";
1203 if Position
.Node
.Key
= null
1204 or else Position
.Node
.Element
= null
1206 raise Program_Error
with
1207 "Position cursor of Replace_Element is bad";
1210 if Position
.Container
/= Container
'Unrestricted_Access then
1211 raise Program_Error
with
1212 "Position cursor of Replace_Element designates wrong map";
1215 if Position
.Container
.HT
.Lock
> 0 then
1216 raise Program_Error
with
1217 "Replace_Element attempted to tamper with elements (map is locked)";
1220 pragma Assert
(Vet
(Position
), "bad cursor in Replace_Element");
1223 X
: Element_Access
:= Position
.Node
.Element
;
1225 -- The element allocator may need an accessibility check in the case
1226 -- the actual type is class-wide or has access discriminants (see
1227 -- RM 4.8(10.1) and AI12-0035).
1229 pragma Unsuppress
(Accessibility_Check
);
1232 Position
.Node
.Element
:= new Element_Type
'(New_Item);
1235 end Replace_Element;
1237 ----------------------
1238 -- Reserve_Capacity --
1239 ----------------------
1241 procedure Reserve_Capacity
1242 (Container : in out Map;
1243 Capacity : Count_Type)
1246 HT_Ops.Reserve_Capacity (Container.HT, Capacity);
1247 end Reserve_Capacity;
1253 procedure Set_Next (Node : Node_Access; Next : Node_Access) is
1258 --------------------
1259 -- Update_Element --
1260 --------------------
1262 procedure Update_Element
1263 (Container : in out Map;
1265 Process : not null access procedure (Key : Key_Type;
1266 Element : in out Element_Type))
1269 if Position.Node = null then
1270 raise Constraint_Error with
1271 "Position cursor of Update_Element equals No_Element";
1274 if Position.Node.Key = null
1275 or else Position.Node.Element = null
1277 raise Program_Error with
1278 "Position cursor of Update_Element is bad";
1281 if Position.Container /= Container'Unrestricted_Access then
1282 raise Program_Error with
1283 "Position cursor of Update_Element designates wrong map";
1286 pragma Assert (Vet (Position), "bad cursor in Update_Element");
1289 HT : Hash_Table_Type renames Container.HT;
1291 B : Natural renames HT.Busy;
1292 L : Natural renames HT.Lock;
1299 K : Key_Type renames Position.Node.Key.all;
1300 E : Element_Type renames Position.Node.Element.all;
1321 function Vet (Position : Cursor) return Boolean is
1323 if Position.Node = null then
1324 return Position.Container = null;
1327 if Position.Container = null then
1331 if Position.Node.Next = Position.Node then
1335 if Position.Node.Key = null then
1339 if Position.Node.Element = null then
1344 HT : Hash_Table_Type renames Position.Container.HT;
1348 if HT.Length = 0 then
1352 if HT.Buckets = null
1353 or else HT.Buckets'Length = 0
1358 X := HT.Buckets (Key_Ops.Checked_Index (HT, Position.Node.Key.all));
1360 for J in 1 .. HT.Length loop
1361 if X = Position.Node then
1369 if X = X.Next then -- to prevent unnecessary looping
1384 procedure Write_Nodes is new HT_Ops.Generic_Write (Write_Node);
1387 (Stream : not null access Root_Stream_Type'Class;
1391 Write_Nodes (Stream, Container.HT);
1395 (Stream : not null access Root_Stream_Type'Class;
1399 raise Program_Error with "attempt to stream map cursor";
1403 (Stream : not null access Root_Stream_Type'Class;
1404 Item : Reference_Type)
1407 raise Program_Error with "attempt to stream reference";
1411 (Stream : not null access Root_Stream_Type'Class;
1412 Item : Constant_Reference_Type)
1415 raise Program_Error with "attempt to stream reference";
1422 procedure Write_Node
1423 (Stream : not null access Root_Stream_Type'Class;
1427 Key_Type'Output (Stream, Node.Key.all);
1428 Element_Type'Output (Stream, Node.Element.all);
1431 end Ada.Containers.Indefinite_Hashed_Maps;