1 ------------------------------------------------------------------------------
3 -- GNAT LIBRARY COMPONENTS --
5 -- A D A . C O N T A I N E R S . H A S H E D _ M A P S --
9 -- Copyright (C) 2004-2013, 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
.Unchecked_Deallocation
;
32 with Ada
.Containers
.Hash_Tables
.Generic_Operations
;
33 pragma Elaborate_All
(Ada
.Containers
.Hash_Tables
.Generic_Operations
);
35 with Ada
.Containers
.Hash_Tables
.Generic_Keys
;
36 pragma Elaborate_All
(Ada
.Containers
.Hash_Tables
.Generic_Keys
);
38 with System
; use type System
.Address
;
40 package body Ada
.Containers
.Hashed_Maps
is
42 -----------------------
43 -- Local Subprograms --
44 -----------------------
47 (Source
: Node_Access
) return Node_Access
;
48 pragma Inline
(Copy_Node
);
50 function Equivalent_Key_Node
52 Node
: Node_Access
) return Boolean;
53 pragma Inline
(Equivalent_Key_Node
);
55 procedure Free
(X
: in out Node_Access
);
57 function Find_Equal_Key
58 (R_HT
: Hash_Table_Type
;
59 L_Node
: Node_Access
) return Boolean;
61 function Hash_Node
(Node
: Node_Access
) return Hash_Type
;
62 pragma Inline
(Hash_Node
);
64 function Next
(Node
: Node_Access
) return Node_Access
;
68 (Stream
: not null access Root_Stream_Type
'Class) return Node_Access
;
69 pragma Inline
(Read_Node
);
71 procedure Set_Next
(Node
: Node_Access
; Next
: Node_Access
);
72 pragma Inline
(Set_Next
);
74 function Vet
(Position
: Cursor
) return Boolean;
77 (Stream
: not null access Root_Stream_Type
'Class;
79 pragma Inline
(Write_Node
);
81 --------------------------
82 -- Local Instantiations --
83 --------------------------
85 package HT_Ops
is new Hash_Tables
.Generic_Operations
86 (HT_Types
=> HT_Types
,
87 Hash_Node
=> Hash_Node
,
90 Copy_Node
=> Copy_Node
,
93 package Key_Ops
is new Hash_Tables
.Generic_Keys
94 (HT_Types
=> HT_Types
,
99 Equivalent_Keys
=> Equivalent_Key_Node
);
101 function Is_Equal
is new HT_Ops
.Generic_Equal
(Find_Equal_Key
);
103 procedure Read_Nodes
is new HT_Ops
.Generic_Read
(Read_Node
);
104 procedure Write_Nodes
is new HT_Ops
.Generic_Write
(Write_Node
);
110 function "=" (Left
, Right
: Map
) return Boolean is
112 return Is_Equal
(Left
.HT
, Right
.HT
);
119 procedure Adjust
(Container
: in out Map
) is
121 HT_Ops
.Adjust
(Container
.HT
);
124 procedure Adjust
(Control
: in out Reference_Control_Type
) is
126 if Control
.Container
/= null then
128 HT
: Hash_Table_Type
renames Control
.Container
.all.HT
;
129 B
: Natural renames HT
.Busy
;
130 L
: Natural renames HT
.Lock
;
142 procedure Assign
(Target
: in out Map
; Source
: Map
) is
143 procedure Insert_Item
(Node
: Node_Access
);
144 pragma Inline
(Insert_Item
);
146 procedure Insert_Items
is new HT_Ops
.Generic_Iteration
(Insert_Item
);
152 procedure Insert_Item
(Node
: Node_Access
) is
154 Target
.Insert
(Key
=> Node
.Key
, New_Item
=> Node
.Element
);
157 -- Start of processing for Assign
160 if Target
'Address = Source
'Address then
166 if Target
.Capacity
< Source
.Length
then
167 Target
.Reserve_Capacity
(Source
.Length
);
170 Insert_Items
(Source
.HT
);
177 function Capacity
(Container
: Map
) return Count_Type
is
179 return HT_Ops
.Capacity
(Container
.HT
);
186 procedure Clear
(Container
: in out Map
) is
188 HT_Ops
.Clear
(Container
.HT
);
191 ------------------------
192 -- Constant_Reference --
193 ------------------------
195 function Constant_Reference
196 (Container
: aliased Map
;
197 Position
: Cursor
) return Constant_Reference_Type
200 if Position
.Container
= null then
201 raise Constraint_Error
with
202 "Position cursor has no element";
205 if Position
.Container
/= Container
'Unrestricted_Access then
206 raise Program_Error
with
207 "Position cursor designates wrong map";
212 "Position cursor in Constant_Reference is bad");
215 HT
: Hash_Table_Type
renames Container
'Unrestricted_Access.all.HT
;
216 B
: Natural renames HT
.Busy
;
217 L
: Natural renames HT
.Lock
;
219 return R
: constant Constant_Reference_Type
:=
220 (Element
=> Position
.Node
.Element
'Access,
221 Control
=> (Controlled
with Position
.Container
))
227 end Constant_Reference
;
229 function Constant_Reference
230 (Container
: aliased Map
;
231 Key
: Key_Type
) return Constant_Reference_Type
233 HT
: Hash_Table_Type
renames Container
'Unrestricted_Access.HT
;
234 Node
: constant Node_Access
:= Key_Ops
.Find
(HT
, Key
);
238 raise Constraint_Error
with "key not in map";
242 B
: Natural renames HT
.Busy
;
243 L
: Natural renames HT
.Lock
;
245 return R
: constant Constant_Reference_Type
:=
246 (Element
=> Node
.Element
'Access,
247 Control
=> (Controlled
with Container
'Unrestricted_Access))
253 end Constant_Reference
;
259 function Contains
(Container
: Map
; Key
: Key_Type
) return Boolean is
261 return Find
(Container
, Key
) /= No_Element
;
270 Capacity
: Count_Type
:= 0) return Map
278 elsif Capacity
>= Source
.Length
then
283 with "Requested capacity is less than Source length";
286 return Target
: Map
do
287 Target
.Reserve_Capacity
(C
);
288 Target
.Assign
(Source
);
297 (Source
: Node_Access
) return Node_Access
299 Target
: constant Node_Access
:=
300 new Node_Type
'(Key => Source.Key,
301 Element => Source.Element,
311 procedure Delete (Container : in out Map; Key : Key_Type) is
315 Key_Ops.Delete_Key_Sans_Free (Container.HT, Key, X);
318 raise Constraint_Error with "attempt to delete key not in map";
324 procedure Delete (Container : in out Map; Position : in out Cursor) is
326 if Position.Node = null then
327 raise Constraint_Error with
328 "Position cursor of Delete equals No_Element";
331 if Position.Container /= Container'Unrestricted_Access then
332 raise Program_Error with
333 "Position cursor of Delete designates wrong map";
336 if Container.HT.Busy > 0 then
337 raise Program_Error with
338 "Delete attempted to tamper with cursors (map is busy)";
341 pragma Assert (Vet (Position), "bad cursor in Delete");
343 HT_Ops.Delete_Node_Sans_Free (Container.HT, Position.Node);
345 Free (Position.Node);
346 Position.Container := null;
353 function Element (Container : Map; Key : Key_Type) return Element_Type is
354 HT : Hash_Table_Type renames Container'Unrestricted_Access.HT;
355 Node : constant Node_Access := Key_Ops.Find (HT, Key);
359 raise Constraint_Error with
360 "no element available because key not in map";
366 function Element (Position : Cursor) return Element_Type is
368 if Position.Node = null then
369 raise Constraint_Error with
370 "Position cursor of function Element equals No_Element";
373 pragma Assert (Vet (Position), "bad cursor in function Element");
375 return Position.Node.Element;
378 -------------------------
379 -- Equivalent_Key_Node --
380 -------------------------
382 function Equivalent_Key_Node
384 Node : Node_Access) return Boolean is
386 return Equivalent_Keys (Key, Node.Key);
387 end Equivalent_Key_Node;
389 ---------------------
390 -- Equivalent_Keys --
391 ---------------------
393 function Equivalent_Keys (Left, Right : Cursor)
396 if Left.Node = null then
397 raise Constraint_Error with
398 "Left cursor of Equivalent_Keys equals No_Element";
401 if Right.Node = null then
402 raise Constraint_Error with
403 "Right cursor of Equivalent_Keys equals No_Element";
406 pragma Assert (Vet (Left), "Left cursor of Equivalent_Keys is bad");
407 pragma Assert (Vet (Right), "Right cursor of Equivalent_Keys is bad");
409 return Equivalent_Keys (Left.Node.Key, Right.Node.Key);
412 function Equivalent_Keys (Left : Cursor; Right : Key_Type) return Boolean is
414 if Left.Node = null then
415 raise Constraint_Error with
416 "Left cursor of Equivalent_Keys equals No_Element";
419 pragma Assert (Vet (Left), "Left cursor in Equivalent_Keys is bad");
421 return Equivalent_Keys (Left.Node.Key, Right);
424 function Equivalent_Keys (Left : Key_Type; Right : Cursor) return Boolean is
426 if Right.Node = null then
427 raise Constraint_Error with
428 "Right cursor of Equivalent_Keys equals No_Element";
431 pragma Assert (Vet (Right), "Right cursor of Equivalent_Keys is bad");
433 return Equivalent_Keys (Left, Right.Node.Key);
440 procedure Exclude (Container : in out Map; Key : Key_Type) is
443 Key_Ops.Delete_Key_Sans_Free (Container.HT, Key, X);
451 procedure Finalize (Container : in out Map) is
453 HT_Ops.Finalize (Container.HT);
456 procedure Finalize (Object : in out Iterator) is
458 if Object.Container /= null then
460 B : Natural renames Object.Container.all.HT.Busy;
467 procedure Finalize (Control : in out Reference_Control_Type) is
469 if Control.Container /= null then
471 HT : Hash_Table_Type renames Control.Container.all.HT;
472 B : Natural renames HT.Busy;
473 L : Natural renames HT.Lock;
479 Control.Container := null;
487 function Find (Container : Map; Key : Key_Type) return Cursor is
488 HT : Hash_Table_Type renames Container'Unrestricted_Access.HT;
489 Node : constant Node_Access := Key_Ops.Find (HT, Key);
496 return Cursor'(Container
'Unrestricted_Access, Node
);
503 function Find_Equal_Key
504 (R_HT
: Hash_Table_Type
;
505 L_Node
: Node_Access
) return Boolean
507 R_Index
: constant Hash_Type
:= Key_Ops
.Index
(R_HT
, L_Node
.Key
);
508 R_Node
: Node_Access
:= R_HT
.Buckets
(R_Index
);
511 while R_Node
/= null loop
512 if Equivalent_Keys
(L_Node
.Key
, R_Node
.Key
) then
513 return L_Node
.Element
= R_Node
.Element
;
516 R_Node
:= R_Node
.Next
;
526 function First
(Container
: Map
) return Cursor
is
527 Node
: constant Node_Access
:= HT_Ops
.First
(Container
.HT
);
534 return Cursor
'(Container'Unrestricted_Access, Node);
537 function First (Object : Iterator) return Cursor is
539 return Object.Container.First;
546 procedure Free (X : in out Node_Access) is
547 procedure Deallocate is
548 new Ada.Unchecked_Deallocation (Node_Type, Node_Access);
551 X.Next := X; -- detect mischief (in Vet)
560 function Has_Element (Position : Cursor) return Boolean is
562 pragma Assert (Vet (Position), "bad cursor in Has_Element");
563 return Position.Node /= null;
570 function Hash_Node (Node : Node_Access) return Hash_Type is
572 return Hash (Node.Key);
580 (Container : in out Map;
582 New_Item : Element_Type)
588 Insert (Container, Key, New_Item, Position, Inserted);
591 if Container.HT.Lock > 0 then
592 raise Program_Error with
593 "Include attempted to tamper with elements (map is locked)";
596 Position.Node.Key := Key;
597 Position.Node.Element := New_Item;
606 (Container : in out Map;
608 Position : out Cursor;
609 Inserted : out Boolean)
611 function New_Node (Next : Node_Access) return Node_Access;
612 pragma Inline (New_Node);
614 procedure Local_Insert is
615 new Key_Ops.Generic_Conditional_Insert (New_Node);
621 function New_Node (Next : Node_Access) return Node_Access is
623 return new Node_Type'(Key
=> Key
,
628 HT
: Hash_Table_Type
renames Container
.HT
;
630 -- Start of processing for Insert
633 if HT_Ops
.Capacity
(HT
) = 0 then
634 HT_Ops
.Reserve_Capacity
(HT
, 1);
637 Local_Insert
(HT
, Key
, Position
.Node
, Inserted
);
640 and then HT
.Length
> HT_Ops
.Capacity
(HT
)
642 HT_Ops
.Reserve_Capacity
(HT
, HT
.Length
);
645 Position
.Container
:= Container
'Unrestricted_Access;
649 (Container
: in out Map
;
651 New_Item
: Element_Type
;
652 Position
: out Cursor
;
653 Inserted
: out Boolean)
655 function New_Node
(Next
: Node_Access
) return Node_Access
;
656 pragma Inline
(New_Node
);
658 procedure Local_Insert
is
659 new Key_Ops
.Generic_Conditional_Insert
(New_Node
);
665 function New_Node
(Next
: Node_Access
) return Node_Access
is
667 return new Node_Type
'(Key, New_Item, Next);
670 HT : Hash_Table_Type renames Container.HT;
672 -- Start of processing for Insert
675 if HT_Ops.Capacity (HT) = 0 then
676 HT_Ops.Reserve_Capacity (HT, 1);
679 Local_Insert (HT, Key, Position.Node, Inserted);
682 and then HT.Length > HT_Ops.Capacity (HT)
684 HT_Ops.Reserve_Capacity (HT, HT.Length);
687 Position.Container := Container'Unrestricted_Access;
691 (Container : in out Map;
693 New_Item : Element_Type)
696 pragma Unreferenced (Position);
701 Insert (Container, Key, New_Item, Position, Inserted);
704 raise Constraint_Error with
705 "attempt to insert key already in map";
713 function Is_Empty (Container : Map) return Boolean is
715 return Container.HT.Length = 0;
724 Process : not null access procedure (Position : Cursor))
726 procedure Process_Node (Node : Node_Access);
727 pragma Inline (Process_Node);
729 procedure Local_Iterate is new HT_Ops.Generic_Iteration (Process_Node);
735 procedure Process_Node (Node : Node_Access) is
737 Process (Cursor'(Container
'Unrestricted_Access, Node
));
740 B
: Natural renames Container
'Unrestricted_Access.all.HT
.Busy
;
742 -- Start of processing for Iterate
748 Local_Iterate
(Container
.HT
);
759 (Container
: Map
) return Map_Iterator_Interfaces
.Forward_Iterator
'Class
761 B
: Natural renames Container
'Unrestricted_Access.all.HT
.Busy
;
763 return It
: constant Iterator
:=
764 (Limited_Controlled
with Container
=> Container
'Unrestricted_Access)
774 function Key
(Position
: Cursor
) return Key_Type
is
776 if Position
.Node
= null then
777 raise Constraint_Error
with
778 "Position cursor of function Key equals No_Element";
781 pragma Assert
(Vet
(Position
), "bad cursor in function Key");
783 return Position
.Node
.Key
;
790 function Length
(Container
: Map
) return Count_Type
is
792 return Container
.HT
.Length
;
800 (Target
: in out Map
;
804 HT_Ops
.Move
(Target
=> Target
.HT
, Source
=> Source
.HT
);
811 function Next
(Node
: Node_Access
) return Node_Access
is
816 function Next
(Position
: Cursor
) return Cursor
is
818 if Position
.Node
= null then
822 pragma Assert
(Vet
(Position
), "bad cursor in function Next");
825 HT
: Hash_Table_Type
renames Position
.Container
.HT
;
826 Node
: constant Node_Access
:= HT_Ops
.Next
(HT
, Position
.Node
);
833 return Cursor
'(Position.Container, Node);
837 procedure Next (Position : in out Cursor) is
839 Position := Next (Position);
844 Position : Cursor) return Cursor
847 if Position.Container = null then
851 if Position.Container /= Object.Container then
852 raise Program_Error with
853 "Position cursor of Next designates wrong map";
856 return Next (Position);
863 procedure Query_Element
865 Process : not null access
866 procedure (Key : Key_Type; Element : Element_Type))
869 if Position.Node = null then
870 raise Constraint_Error with
871 "Position cursor of Query_Element equals No_Element";
874 pragma Assert (Vet (Position), "bad cursor in Query_Element");
877 M : Map renames Position.Container.all;
878 HT : Hash_Table_Type renames M.HT'Unrestricted_Access.all;
880 B : Natural renames HT.Busy;
881 L : Natural renames HT.Lock;
888 K : Key_Type renames Position.Node.Key;
889 E : Element_Type renames Position.Node.Element;
910 (Stream : not null access Root_Stream_Type'Class;
914 Read_Nodes (Stream, Container.HT);
918 (Stream : not null access Root_Stream_Type'Class;
922 raise Program_Error with "attempt to stream map cursor";
926 (Stream : not null access Root_Stream_Type'Class;
927 Item : out Reference_Type)
930 raise Program_Error with "attempt to stream reference";
934 (Stream : not null access Root_Stream_Type'Class;
935 Item : out Constant_Reference_Type)
938 raise Program_Error with "attempt to stream reference";
946 (Container : aliased in out Map;
947 Position : Cursor) return Reference_Type
950 if Position.Container = null then
951 raise Constraint_Error with
952 "Position cursor has no element";
955 if Position.Container /= Container'Unrestricted_Access then
956 raise Program_Error with
957 "Position cursor designates wrong map";
962 "Position cursor in function Reference is bad");
965 HT : Hash_Table_Type renames Container'Unrestricted_Access.all.HT;
966 B : Natural renames HT.Busy;
967 L : Natural renames HT.Lock;
969 return R : constant Reference_Type :=
970 (Element => Position.Node.Element'Access,
971 Control => (Controlled with Position.Container))
980 (Container : aliased in out Map;
981 Key : Key_Type) return Reference_Type
983 HT : Hash_Table_Type renames Container.HT;
984 Node : constant Node_Access := Key_Ops.Find (HT, Key);
988 raise Constraint_Error with "key not in map";
992 B : Natural renames HT.Busy;
993 L : Natural renames HT.Lock;
995 return R : constant Reference_Type :=
996 (Element => Node.Element'Access,
997 Control => (Controlled with Container'Unrestricted_Access))
1010 (Stream : not null access Root_Stream_Type'Class) return Node_Access
1012 Node : Node_Access := new Node_Type;
1015 Key_Type'Read (Stream, Node.Key);
1016 Element_Type'Read (Stream, Node.Element);
1030 (Container : in out Map;
1032 New_Item : Element_Type)
1034 Node : constant Node_Access := Key_Ops.Find (Container.HT, Key);
1038 raise Constraint_Error with
1039 "attempt to replace key not in map";
1042 if Container.HT.Lock > 0 then
1043 raise Program_Error with
1044 "Replace attempted to tamper with elements (map is locked)";
1048 Node.Element := New_Item;
1051 ---------------------
1052 -- Replace_Element --
1053 ---------------------
1055 procedure Replace_Element
1056 (Container : in out Map;
1058 New_Item : Element_Type)
1061 if Position.Node = null then
1062 raise Constraint_Error with
1063 "Position cursor of Replace_Element equals No_Element";
1066 if Position.Container /= Container'Unrestricted_Access then
1067 raise Program_Error with
1068 "Position cursor of Replace_Element designates wrong map";
1071 if Position.Container.HT.Lock > 0 then
1072 raise Program_Error with
1073 "Replace_Element attempted to tamper with elements (map is locked)";
1076 pragma Assert (Vet (Position), "bad cursor in Replace_Element");
1078 Position.Node.Element := New_Item;
1079 end Replace_Element;
1081 ----------------------
1082 -- Reserve_Capacity --
1083 ----------------------
1085 procedure Reserve_Capacity
1086 (Container : in out Map;
1087 Capacity : Count_Type)
1090 HT_Ops.Reserve_Capacity (Container.HT, Capacity);
1091 end Reserve_Capacity;
1097 procedure Set_Next (Node : Node_Access; Next : Node_Access) is
1102 --------------------
1103 -- Update_Element --
1104 --------------------
1106 procedure Update_Element
1107 (Container : in out Map;
1109 Process : not null access procedure (Key : Key_Type;
1110 Element : in out Element_Type))
1113 if Position.Node = null then
1114 raise Constraint_Error with
1115 "Position cursor of Update_Element equals No_Element";
1118 if Position.Container /= Container'Unrestricted_Access then
1119 raise Program_Error with
1120 "Position cursor of Update_Element designates wrong map";
1123 pragma Assert (Vet (Position), "bad cursor in Update_Element");
1126 HT : Hash_Table_Type renames Container.HT;
1127 B : Natural renames HT.Busy;
1128 L : Natural renames HT.Lock;
1135 K : Key_Type renames Position.Node.Key;
1136 E : Element_Type renames Position.Node.Element;
1157 function Vet (Position : Cursor) return Boolean is
1159 if Position.Node = null then
1160 return Position.Container = null;
1163 if Position.Container = null then
1167 if Position.Node.Next = Position.Node then
1172 HT : Hash_Table_Type renames Position.Container.HT;
1176 if HT.Length = 0 then
1180 if HT.Buckets = null
1181 or else HT.Buckets'Length = 0
1186 X := HT.Buckets (Key_Ops.Checked_Index (HT, Position.Node.Key));
1188 for J in 1 .. HT.Length loop
1189 if X = Position.Node then
1197 if X = X.Next then -- to prevent unnecessary looping
1213 (Stream : not null access Root_Stream_Type'Class;
1217 Write_Nodes (Stream, Container.HT);
1221 (Stream : not null access Root_Stream_Type'Class;
1225 raise Program_Error with "attempt to stream map cursor";
1229 (Stream : not null access Root_Stream_Type'Class;
1230 Item : Reference_Type)
1233 raise Program_Error with "attempt to stream reference";
1237 (Stream : not null access Root_Stream_Type'Class;
1238 Item : Constant_Reference_Type)
1241 raise Program_Error with "attempt to stream reference";
1248 procedure Write_Node
1249 (Stream : not null access Root_Stream_Type'Class;
1253 Key_Type'Write (Stream, Node.Key);
1254 Element_Type'Write (Stream, Node.Element);
1257 end Ada.Containers.Hashed_Maps;