1 ------------------------------------------------------------------------------
3 -- GNAT LIBRARY COMPONENTS --
5 -- ADA.CONTAINERS.INDEFINITE_HASHED_MAPS --
9 -- Copyright (C) 2004-2015, 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
.Containers
.Helpers
; use Ada
.Containers
.Helpers
;
38 with Ada
.Unchecked_Deallocation
;
40 with System
; use type System
.Address
;
42 package body Ada
.Containers
.Indefinite_Hashed_Maps
is
44 pragma Warnings
(Off
, "variable ""Busy*"" is not referenced");
45 pragma Warnings
(Off
, "variable ""Lock*"" is not referenced");
46 -- See comment in Ada.Containers.Helpers
49 new Ada
.Unchecked_Deallocation
(Key_Type
, Key_Access
);
51 procedure Free_Element
is
52 new Ada
.Unchecked_Deallocation
(Element_Type
, Element_Access
);
54 -----------------------
55 -- Local Subprograms --
56 -----------------------
58 function Copy_Node
(Node
: Node_Access
) return Node_Access
;
59 pragma Inline
(Copy_Node
);
61 function Equivalent_Key_Node
63 Node
: Node_Access
) return Boolean;
64 pragma Inline
(Equivalent_Key_Node
);
66 function Find_Equal_Key
67 (R_HT
: Hash_Table_Type
;
68 L_Node
: Node_Access
) return Boolean;
70 procedure Free
(X
: in out Node_Access
);
71 -- pragma Inline (Free);
73 function Hash_Node
(Node
: Node_Access
) return Hash_Type
;
74 pragma Inline
(Hash_Node
);
76 function Next
(Node
: Node_Access
) return Node_Access
;
80 (Stream
: not null access Root_Stream_Type
'Class) return Node_Access
;
82 procedure Set_Next
(Node
: Node_Access
; Next
: Node_Access
);
83 pragma Inline
(Set_Next
);
85 function Vet
(Position
: Cursor
) return Boolean;
88 (Stream
: not null access Root_Stream_Type
'Class;
91 --------------------------
92 -- Local Instantiations --
93 --------------------------
95 package HT_Ops
is new Ada
.Containers
.Hash_Tables
.Generic_Operations
96 (HT_Types
=> HT_Types
,
97 Hash_Node
=> Hash_Node
,
100 Copy_Node
=> Copy_Node
,
103 package Key_Ops
is new Hash_Tables
.Generic_Keys
104 (HT_Types
=> HT_Types
,
106 Set_Next
=> Set_Next
,
107 Key_Type
=> Key_Type
,
109 Equivalent_Keys
=> Equivalent_Key_Node
);
115 function Is_Equal
is new HT_Ops
.Generic_Equal
(Find_Equal_Key
);
117 overriding
function "=" (Left
, Right
: Map
) return Boolean is
119 return Is_Equal
(Left
.HT
, Right
.HT
);
126 procedure Adjust
(Container
: in out Map
) is
128 HT_Ops
.Adjust
(Container
.HT
);
135 procedure Assign
(Target
: in out Map
; Source
: Map
) is
136 procedure Insert_Item
(Node
: Node_Access
);
137 pragma Inline
(Insert_Item
);
139 procedure Insert_Items
is new HT_Ops
.Generic_Iteration
(Insert_Item
);
145 procedure Insert_Item
(Node
: Node_Access
) is
147 Target
.Insert
(Key
=> Node
.Key
.all, New_Item
=> Node
.Element
.all);
150 -- Start of processing for Assign
153 if Target
'Address = Source
'Address then
159 if Target
.Capacity
< Source
.Length
then
160 Target
.Reserve_Capacity
(Source
.Length
);
163 Insert_Items
(Source
.HT
);
170 function Capacity
(Container
: Map
) return Count_Type
is
172 return HT_Ops
.Capacity
(Container
.HT
);
179 procedure Clear
(Container
: in out Map
) is
181 HT_Ops
.Clear
(Container
.HT
);
184 ------------------------
185 -- Constant_Reference --
186 ------------------------
188 function Constant_Reference
189 (Container
: aliased Map
;
190 Position
: Cursor
) return Constant_Reference_Type
193 if Checks
and then Position
.Container
= null then
194 raise Constraint_Error
with
195 "Position cursor has no element";
198 if Checks
and then Position
.Container
/= Container
'Unrestricted_Access
200 raise Program_Error
with
201 "Position cursor designates wrong map";
204 if Checks
and then Position
.Node
.Element
= null then
205 raise Program_Error
with
206 "Position cursor has no element";
211 "Position cursor in Constant_Reference is bad");
214 M
: Map
renames Position
.Container
.all;
215 HT
: Hash_Table_Type
renames M
.HT
'Unrestricted_Access.all;
216 TC
: constant Tamper_Counts_Access
:=
217 HT
.TC
'Unrestricted_Access;
219 return R
: constant Constant_Reference_Type
:=
220 (Element
=> Position
.Node
.Element
.all'Access,
221 Control
=> (Controlled
with TC
))
226 end Constant_Reference
;
228 function Constant_Reference
229 (Container
: aliased Map
;
230 Key
: Key_Type
) return Constant_Reference_Type
232 HT
: Hash_Table_Type
renames Container
'Unrestricted_Access.HT
;
233 Node
: constant Node_Access
:= Key_Ops
.Find
(HT
, Key
);
236 if Checks
and then Node
= null then
237 raise Constraint_Error
with "key not in map";
240 if Checks
and then Node
.Element
= null then
241 raise Program_Error
with "key has no element";
245 TC
: constant Tamper_Counts_Access
:=
246 HT
.TC
'Unrestricted_Access;
248 return R
: constant Constant_Reference_Type
:=
249 (Element
=> Node
.Element
.all'Access,
250 Control
=> (Controlled
with TC
))
255 end Constant_Reference
;
261 function Contains
(Container
: Map
; Key
: Key_Type
) return Boolean is
263 return Find
(Container
, Key
) /= No_Element
;
272 Capacity
: Count_Type
:= 0) return Map
277 if Capacity
< Source
.Length
then
278 if Checks
and then Capacity
/= 0 then
280 with "Requested capacity is less than Source length";
288 return Target
: Map
do
289 Target
.Reserve_Capacity
(C
);
290 Target
.Assign
(Source
);
298 function Copy_Node
(Node
: Node_Access
) return Node_Access
is
299 K
: Key_Access
:= new Key_Type
'(Node.Key.all);
302 E := new Element_Type'(Node
.Element
.all);
303 return new Node_Type
'(K, E, null);
315 procedure Delete (Container : in out Map; Key : Key_Type) is
319 Key_Ops.Delete_Key_Sans_Free (Container.HT, Key, X);
321 if Checks and then X = null then
322 raise Constraint_Error with "attempt to delete key not in map";
328 procedure Delete (Container : in out Map; Position : in out Cursor) is
330 if Checks and then Position.Node = null then
331 raise Constraint_Error with
332 "Position cursor of Delete equals No_Element";
335 if Checks and then Position.Container /= Container'Unrestricted_Access
337 raise Program_Error with
338 "Position cursor of Delete designates wrong map";
341 TC_Check (Container.HT.TC);
343 pragma Assert (Vet (Position), "bad cursor in Delete");
345 HT_Ops.Delete_Node_Sans_Free (Container.HT, Position.Node);
347 Free (Position.Node);
348 Position.Container := null;
355 function Element (Container : Map; Key : Key_Type) return Element_Type is
356 HT : Hash_Table_Type renames Container'Unrestricted_Access.HT;
357 Node : constant Node_Access := Key_Ops.Find (HT, Key);
360 if Checks and then Node = null then
361 raise Constraint_Error with
362 "no element available because key not in map";
365 return Node.Element.all;
368 function Element (Position : Cursor) return Element_Type is
370 if Checks and then Position.Node = null then
371 raise Constraint_Error with
372 "Position cursor of function Element equals No_Element";
375 if Checks and then Position.Node.Element = null then
376 raise Program_Error with
377 "Position cursor of function Element is bad";
380 pragma Assert (Vet (Position), "bad cursor in function Element");
382 return Position.Node.Element.all;
385 -------------------------
386 -- Equivalent_Key_Node --
387 -------------------------
389 function Equivalent_Key_Node
391 Node : Node_Access) return Boolean
394 return Equivalent_Keys (Key, Node.Key.all);
395 end Equivalent_Key_Node;
397 ---------------------
398 -- Equivalent_Keys --
399 ---------------------
401 function Equivalent_Keys (Left, Right : Cursor) return Boolean is
403 if Checks and then Left.Node = null then
404 raise Constraint_Error with
405 "Left cursor of Equivalent_Keys equals No_Element";
408 if Checks and then Right.Node = null then
409 raise Constraint_Error with
410 "Right cursor of Equivalent_Keys equals No_Element";
413 if Checks and then Left.Node.Key = null then
414 raise Program_Error with
415 "Left cursor of Equivalent_Keys is bad";
418 if Checks and then Right.Node.Key = null then
419 raise Program_Error with
420 "Right cursor of Equivalent_Keys is bad";
423 pragma Assert (Vet (Left), "bad Left cursor in Equivalent_Keys");
424 pragma Assert (Vet (Right), "bad Right cursor in Equivalent_Keys");
426 return Equivalent_Keys (Left.Node.Key.all, Right.Node.Key.all);
429 function Equivalent_Keys
431 Right : Key_Type) return Boolean
434 if Checks and then Left.Node = null then
435 raise Constraint_Error with
436 "Left cursor of Equivalent_Keys equals No_Element";
439 if Checks and then Left.Node.Key = null then
440 raise Program_Error with
441 "Left cursor of Equivalent_Keys is bad";
444 pragma Assert (Vet (Left), "bad Left cursor in Equivalent_Keys");
446 return Equivalent_Keys (Left.Node.Key.all, Right);
449 function Equivalent_Keys
451 Right : Cursor) return Boolean
454 if Checks and then Right.Node = null then
455 raise Constraint_Error with
456 "Right cursor of Equivalent_Keys equals No_Element";
459 if Checks and then Right.Node.Key = null then
460 raise Program_Error with
461 "Right cursor of Equivalent_Keys is bad";
464 pragma Assert (Vet (Right), "bad Right cursor in Equivalent_Keys");
466 return Equivalent_Keys (Left, Right.Node.Key.all);
473 procedure Exclude (Container : in out Map; Key : Key_Type) is
476 Key_Ops.Delete_Key_Sans_Free (Container.HT, Key, X);
484 procedure Finalize (Container : in out Map) is
486 HT_Ops.Finalize (Container.HT);
489 procedure Finalize (Object : in out Iterator) is
491 if Object.Container /= null then
492 Unbusy (Object.Container.HT.TC);
500 function Find (Container : Map; Key : Key_Type) return Cursor is
501 HT : Hash_Table_Type renames Container'Unrestricted_Access.HT;
502 Node : constant Node_Access := Key_Ops.Find (HT, Key);
509 return Cursor'(Container
'Unrestricted_Access, Node
);
516 function Find_Equal_Key
517 (R_HT
: Hash_Table_Type
;
518 L_Node
: Node_Access
) return Boolean
520 R_Index
: constant Hash_Type
:= Key_Ops
.Index
(R_HT
, L_Node
.Key
.all);
521 R_Node
: Node_Access
:= R_HT
.Buckets
(R_Index
);
524 while R_Node
/= null loop
525 if Equivalent_Keys
(L_Node
.Key
.all, R_Node
.Key
.all) then
526 return L_Node
.Element
.all = R_Node
.Element
.all;
529 R_Node
:= R_Node
.Next
;
539 function First
(Container
: Map
) return Cursor
is
540 Node
: constant Node_Access
:= HT_Ops
.First
(Container
.HT
);
545 return Cursor
'(Container'Unrestricted_Access, Node);
549 function First (Object : Iterator) return Cursor is
551 return Object.Container.First;
558 procedure Free (X : in out Node_Access) is
559 procedure Deallocate is
560 new Ada.Unchecked_Deallocation (Node_Type, Node_Access);
567 X.Next := X; -- detect mischief (in Vet)
577 Free_Element (X.Element);
588 Free_Element (X.Element);
599 ------------------------
600 -- Get_Element_Access --
601 ------------------------
603 function Get_Element_Access
604 (Position : Cursor) return not null Element_Access is
606 return Position.Node.Element;
607 end Get_Element_Access;
613 function Has_Element (Position : Cursor) return Boolean is
615 pragma Assert (Vet (Position), "bad cursor in Has_Element");
616 return Position.Node /= null;
623 function Hash_Node (Node : Node_Access) return Hash_Type is
625 return Hash (Node.Key.all);
633 (Container : in out Map;
635 New_Item : Element_Type)
644 Insert (Container, Key, New_Item, Position, Inserted);
647 TE_Check (Container.HT.TC);
649 K := Position.Node.Key;
650 E := Position.Node.Element;
652 Position.Node.Key := new Key_Type'(Key
);
655 -- The element allocator may need an accessibility check in the
656 -- case the actual type is class-wide or has access discriminants
657 -- (see RM 4.8(10.1) and AI12-0035).
659 pragma Unsuppress
(Accessibility_Check
);
662 Position
.Node
.Element
:= new Element_Type
'(New_Item);
680 (Container : in out Map;
682 New_Item : Element_Type;
683 Position : out Cursor;
684 Inserted : out Boolean)
686 function New_Node (Next : Node_Access) return Node_Access;
688 procedure Local_Insert is
689 new Key_Ops.Generic_Conditional_Insert (New_Node);
695 function New_Node (Next : Node_Access) return Node_Access is
696 K : Key_Access := new Key_Type'(Key
);
699 -- The element allocator may need an accessibility check in the case
700 -- the actual type is class-wide or has access discriminants (see
701 -- RM 4.8(10.1) and AI12-0035).
703 pragma Unsuppress
(Accessibility_Check
);
706 E
:= new Element_Type
'(New_Item);
707 return new Node_Type'(K
, E
, Next
);
716 HT
: Hash_Table_Type
renames Container
.HT
;
718 -- Start of processing for Insert
721 if HT_Ops
.Capacity
(HT
) = 0 then
722 HT_Ops
.Reserve_Capacity
(HT
, 1);
725 Local_Insert
(HT
, Key
, Position
.Node
, Inserted
);
728 and then HT
.Length
> HT_Ops
.Capacity
(HT
)
730 HT_Ops
.Reserve_Capacity
(HT
, HT
.Length
);
733 Position
.Container
:= Container
'Unchecked_Access;
737 (Container
: in out Map
;
739 New_Item
: Element_Type
)
742 pragma Unreferenced
(Position
);
747 Insert
(Container
, Key
, New_Item
, Position
, Inserted
);
749 if Checks
and then not Inserted
then
750 raise Constraint_Error
with
751 "attempt to insert key already in map";
759 function Is_Empty
(Container
: Map
) return Boolean is
761 return Container
.HT
.Length
= 0;
770 Process
: not null access procedure (Position
: Cursor
))
772 procedure Process_Node
(Node
: Node_Access
);
773 pragma Inline
(Process_Node
);
775 procedure Local_Iterate
is
776 new HT_Ops
.Generic_Iteration
(Process_Node
);
782 procedure Process_Node
(Node
: Node_Access
) is
784 Process
(Cursor
'(Container'Unrestricted_Access, Node));
787 Busy : With_Busy (Container.HT.TC'Unrestricted_Access);
789 -- Start of processing for Iterate
792 Local_Iterate (Container.HT);
796 (Container : Map) return Map_Iterator_Interfaces.Forward_Iterator'Class
799 return It : constant Iterator :=
800 (Limited_Controlled with Container => Container'Unrestricted_Access)
802 Busy (Container.HT.TC'Unrestricted_Access.all);
810 function Key (Position : Cursor) return Key_Type is
812 if Checks and then Position.Node = null then
813 raise Constraint_Error with
814 "Position cursor of function Key equals No_Element";
817 if Checks and then Position.Node.Key = null then
818 raise Program_Error with
819 "Position cursor of function Key is bad";
822 pragma Assert (Vet (Position), "bad cursor in function Key");
824 return Position.Node.Key.all;
831 function Length (Container : Map) return Count_Type is
833 return Container.HT.Length;
841 (Target : in out Map;
845 HT_Ops.Move (Target => Target.HT, Source => Source.HT);
852 function Next (Node : Node_Access) return Node_Access is
857 procedure Next (Position : in out Cursor) is
859 Position := Next (Position);
862 function Next (Position : Cursor) return Cursor is
864 if Position.Node = null then
869 (Position.Node.Key = null or else Position.Node.Element = null)
871 raise Program_Error with "Position cursor of Next is bad";
874 pragma Assert (Vet (Position), "Position cursor of Next is bad");
877 HT : Hash_Table_Type renames Position.Container.HT;
878 Node : constant Node_Access := HT_Ops.Next (HT, Position.Node);
883 return Cursor'(Position
.Container
, Node
);
888 function Next
(Object
: Iterator
; Position
: Cursor
) return Cursor
is
890 if Position
.Container
= null then
894 if Checks
and then Position
.Container
/= Object
.Container
then
895 raise Program_Error
with
896 "Position cursor of Next designates wrong map";
899 return Next
(Position
);
902 ----------------------
903 -- Pseudo_Reference --
904 ----------------------
906 function Pseudo_Reference
907 (Container
: aliased Map
'Class) return Reference_Control_Type
909 TC
: constant Tamper_Counts_Access
:=
910 Container
.HT
.TC
'Unrestricted_Access;
912 return R
: constant Reference_Control_Type
:= (Controlled
with TC
) do
915 end Pseudo_Reference
;
921 procedure Query_Element
923 Process
: not null access procedure (Key
: Key_Type
;
924 Element
: Element_Type
))
927 if Checks
and then Position
.Node
= null then
928 raise Constraint_Error
with
929 "Position cursor of Query_Element equals No_Element";
933 (Position
.Node
.Key
= null or else Position
.Node
.Element
= null)
935 raise Program_Error
with
936 "Position cursor of Query_Element is bad";
939 pragma Assert
(Vet
(Position
), "bad cursor in Query_Element");
942 M
: Map
renames Position
.Container
.all;
943 HT
: Hash_Table_Type
renames M
.HT
'Unrestricted_Access.all;
944 Lock
: With_Lock
(HT
.TC
'Unrestricted_Access);
945 K
: Key_Type
renames Position
.Node
.Key
.all;
946 E
: Element_Type
renames Position
.Node
.Element
.all;
956 procedure Read_Nodes
is new HT_Ops
.Generic_Read
(Read_Node
);
959 (Stream
: not null access Root_Stream_Type
'Class;
963 Read_Nodes
(Stream
, Container
.HT
);
967 (Stream
: not null access Root_Stream_Type
'Class;
971 raise Program_Error
with "attempt to stream map cursor";
975 (Stream
: not null access Root_Stream_Type
'Class;
976 Item
: out Reference_Type
)
979 raise Program_Error
with "attempt to stream reference";
983 (Stream
: not null access Root_Stream_Type
'Class;
984 Item
: out Constant_Reference_Type
)
987 raise Program_Error
with "attempt to stream reference";
995 (Stream
: not null access Root_Stream_Type
'Class) return Node_Access
997 Node
: Node_Access
:= new Node_Type
;
1001 Node
.Key
:= new Key_Type
'(Key_Type'Input (Stream));
1009 Node.Element := new Element_Type'(Element_Type
'Input (Stream
));
1012 Free_Key
(Node
.Key
);
1025 (Container
: aliased in out Map
;
1026 Position
: Cursor
) return Reference_Type
1029 if Checks
and then Position
.Container
= null then
1030 raise Constraint_Error
with
1031 "Position cursor has no element";
1034 if Checks
and then Position
.Container
/= Container
'Unrestricted_Access
1036 raise Program_Error
with
1037 "Position cursor designates wrong map";
1040 if Checks
and then Position
.Node
.Element
= null then
1041 raise Program_Error
with
1042 "Position cursor has no element";
1047 "Position cursor in function Reference is bad");
1050 M
: Map
renames Position
.Container
.all;
1051 HT
: Hash_Table_Type
renames M
.HT
'Unrestricted_Access.all;
1052 TC
: constant Tamper_Counts_Access
:=
1053 HT
.TC
'Unrestricted_Access;
1055 return R
: constant Reference_Type
:=
1056 (Element
=> Position
.Node
.Element
.all'Access,
1057 Control
=> (Controlled
with TC
))
1065 (Container
: aliased in out Map
;
1066 Key
: Key_Type
) return Reference_Type
1068 HT
: Hash_Table_Type
renames Container
.HT
;
1069 Node
: constant Node_Access
:= Key_Ops
.Find
(HT
, Key
);
1072 if Checks
and then Node
= null then
1073 raise Constraint_Error
with "key not in map";
1076 if Checks
and then Node
.Element
= null then
1077 raise Program_Error
with "key has no element";
1081 TC
: constant Tamper_Counts_Access
:=
1082 HT
.TC
'Unrestricted_Access;
1084 return R
: constant Reference_Type
:=
1085 (Element
=> Node
.Element
.all'Access,
1086 Control
=> (Controlled
with TC
))
1098 (Container
: in out Map
;
1100 New_Item
: Element_Type
)
1102 Node
: constant Node_Access
:= Key_Ops
.Find
(Container
.HT
, Key
);
1108 if Checks
and then Node
= null then
1109 raise Constraint_Error
with
1110 "attempt to replace key not in map";
1113 TE_Check
(Container
.HT
.TC
);
1118 Node
.Key
:= new Key_Type
'(Key);
1121 -- The element allocator may need an accessibility check in the case
1122 -- the actual type is class-wide or has access discriminants (see
1123 -- RM 4.8(10.1) and AI12-0035).
1125 pragma Unsuppress (Accessibility_Check);
1128 Node.Element := new Element_Type'(New_Item
);
1140 ---------------------
1141 -- Replace_Element --
1142 ---------------------
1144 procedure Replace_Element
1145 (Container
: in out Map
;
1147 New_Item
: Element_Type
)
1150 if Checks
and then Position
.Node
= null then
1151 raise Constraint_Error
with
1152 "Position cursor of Replace_Element equals No_Element";
1156 (Position
.Node
.Key
= null or else Position
.Node
.Element
= null)
1158 raise Program_Error
with
1159 "Position cursor of Replace_Element is bad";
1162 if Checks
and then Position
.Container
/= Container
'Unrestricted_Access
1164 raise Program_Error
with
1165 "Position cursor of Replace_Element designates wrong map";
1168 TE_Check
(Position
.Container
.HT
.TC
);
1170 pragma Assert
(Vet
(Position
), "bad cursor in Replace_Element");
1173 X
: Element_Access
:= Position
.Node
.Element
;
1175 -- The element allocator may need an accessibility check in the case
1176 -- the actual type is class-wide or has access discriminants (see
1177 -- RM 4.8(10.1) and AI12-0035).
1179 pragma Unsuppress
(Accessibility_Check
);
1182 Position
.Node
.Element
:= new Element_Type
'(New_Item);
1185 end Replace_Element;
1187 ----------------------
1188 -- Reserve_Capacity --
1189 ----------------------
1191 procedure Reserve_Capacity
1192 (Container : in out Map;
1193 Capacity : Count_Type)
1196 HT_Ops.Reserve_Capacity (Container.HT, Capacity);
1197 end Reserve_Capacity;
1203 procedure Set_Next (Node : Node_Access; Next : Node_Access) is
1208 --------------------
1209 -- Update_Element --
1210 --------------------
1212 procedure Update_Element
1213 (Container : in out Map;
1215 Process : not null access procedure (Key : Key_Type;
1216 Element : in out Element_Type))
1219 if Checks and then Position.Node = null then
1220 raise Constraint_Error with
1221 "Position cursor of Update_Element equals No_Element";
1225 (Position.Node.Key = null or else Position.Node.Element = null)
1227 raise Program_Error with
1228 "Position cursor of Update_Element is bad";
1231 if Checks and then Position.Container /= Container'Unrestricted_Access
1233 raise Program_Error with
1234 "Position cursor of Update_Element designates wrong map";
1237 pragma Assert (Vet (Position), "bad cursor in Update_Element");
1240 HT : Hash_Table_Type renames Container.HT;
1241 Lock : With_Lock (HT.TC'Unrestricted_Access);
1242 K : Key_Type renames Position.Node.Key.all;
1243 E : Element_Type renames Position.Node.Element.all;
1253 function Vet (Position : Cursor) return Boolean is
1255 if Position.Node = null then
1256 return Position.Container = null;
1259 if Position.Container = null then
1263 if Position.Node.Next = Position.Node then
1267 if Position.Node.Key = null then
1271 if Position.Node.Element = null then
1276 HT : Hash_Table_Type renames Position.Container.HT;
1280 if HT.Length = 0 then
1284 if HT.Buckets = null
1285 or else HT.Buckets'Length = 0
1290 X := HT.Buckets (Key_Ops.Checked_Index (HT, Position.Node.Key.all));
1292 for J in 1 .. HT.Length loop
1293 if X = Position.Node then
1301 if X = X.Next then -- to prevent unnecessary looping
1316 procedure Write_Nodes is new HT_Ops.Generic_Write (Write_Node);
1319 (Stream : not null access Root_Stream_Type'Class;
1323 Write_Nodes (Stream, Container.HT);
1327 (Stream : not null access Root_Stream_Type'Class;
1331 raise Program_Error with "attempt to stream map cursor";
1335 (Stream : not null access Root_Stream_Type'Class;
1336 Item : Reference_Type)
1339 raise Program_Error with "attempt to stream reference";
1343 (Stream : not null access Root_Stream_Type'Class;
1344 Item : Constant_Reference_Type)
1347 raise Program_Error with "attempt to stream reference";
1354 procedure Write_Node
1355 (Stream : not null access Root_Stream_Type'Class;
1359 Key_Type'Output (Stream, Node.Key.all);
1360 Element_Type'Output (Stream, Node.Element.all);
1363 end Ada.Containers.Indefinite_Hashed_Maps;