1 ------------------------------------------------------------------------------
3 -- GNAT LIBRARY COMPONENTS --
5 -- ADA.CONTAINERS.HASH_TABLES.GENERIC_BOUNDED_KEYS --
9 -- Copyright (C) 2004-2023, 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 -- Hash_Table_Type is used to implement hashed containers. This package
31 -- declares hash-table operations that depend on keys.
34 with package HT_Types
is
35 new Generic_Bounded_Hash_Table_Types
(<>);
37 use HT_Types
, HT_Types
.Implementation
;
39 with function Next
(Node
: Node_Type
) return Count_Type
;
41 with procedure Set_Next
42 (Node
: in out Node_Type
;
45 type Key_Type
(<>) is limited private;
47 with function Hash
(Key
: Key_Type
) return Hash_Type
;
49 with function Equivalent_Keys
51 Node
: Node_Type
) return Boolean;
53 package Ada
.Containers
.Hash_Tables
.Generic_Bounded_Keys
is
57 (HT
: Hash_Table_Type
'Class;
58 Key
: Key_Type
) return Hash_Type
;
59 pragma Inline
(Index
);
60 -- Returns the bucket number (array index value) for the given key
62 function Checked_Index
63 (HT
: aliased in out Hash_Table_Type
'Class;
64 Key
: Key_Type
) return Hash_Type
;
65 pragma Inline
(Checked_Index
);
66 -- Calls Index, but also locks and unlocks the container, per AI05-0022, in
67 -- order to detect element tampering by the generic actual Hash function.
69 function Checked_Equivalent_Keys
70 (HT
: aliased in out Hash_Table_Type
'Class;
72 Node
: Count_Type
) return Boolean;
73 -- Calls Equivalent_Keys, but locks and unlocks the container, per
74 -- AI05-0022, in order to detect element tampering by that generic actual.
76 procedure Delete_Key_Sans_Free
77 (HT
: in out Hash_Table_Type
'Class;
80 -- Removes the node (if any) with the given key from the hash table,
81 -- without deallocating it. Program_Error is raised if the hash
85 (HT
: Hash_Table_Type
'Class;
86 Key
: Key_Type
) return Count_Type
;
87 -- Returns the node (if any) corresponding to the given key
90 with function New_Node
return Count_Type
;
91 procedure Generic_Conditional_Insert
92 (HT
: in out Hash_Table_Type
'Class;
94 Node
: out Count_Type
;
95 Inserted
: out Boolean);
96 -- Attempts to insert a new node with the given key into the hash table.
97 -- If a node with that key already exists in the table, then that node
98 -- is returned and Inserted returns False. Otherwise New_Node is called
99 -- to allocate a new node, and Inserted returns True. Program_Error is
100 -- raised if the hash table is busy.
103 with function Hash
(Node
: Node_Type
) return Hash_Type
;
104 with procedure Assign
(Node
: in out Node_Type
; Key
: Key_Type
);
105 procedure Generic_Replace_Element
106 (HT
: in out Hash_Table_Type
'Class;
109 -- Assigns Key to Node, possibly changing its equivalence class. If Node
110 -- is in the same equivalence class as Key (that is, it's already in the
111 -- bucket implied by Key), then if the hash table is locked then
112 -- Program_Error is raised; otherwise Assign is called to assign Key to
113 -- Node. If Node is in a different bucket from Key, then Program_Error is
114 -- raised if the hash table is busy. Otherwise it Assigns Key to Node and
115 -- moves the Node from its current bucket to the bucket implied by Key.
116 -- Note that it is never proper to assign to Node a key value already
117 -- in the map, and so if Key is equivalent to some other node then
118 -- Program_Error is raised.
120 end Ada
.Containers
.Hash_Tables
.Generic_Bounded_Keys
;