OSDN Git Service

2010-01-04 Tobias Burnus <burnus@net-b.de>
[pf3gnuchains/gcc-fork.git] / gcc / ada / a-chtgke.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT LIBRARY COMPONENTS                          --
4 --                                                                          --
5 --                 ADA.CONTAINERS.HASH_TABLES.GENERIC_KEYS                  --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --          Copyright (C) 2004-2009, Free Software Foundation, Inc.         --
10 --                                                                          --
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.                                     --
17 --                                                                          --
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.               --
21 --                                                                          --
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/>.                                          --
26 --                                                                          --
27 -- This unit was originally developed by Matthew J Heaney.                  --
28 ------------------------------------------------------------------------------
29
30 --  Hash_Table_Type is used to implement hashed containers. This package
31 --  declares hash-table operations that depend on keys.
32
33 generic
34    with package HT_Types is
35      new Generic_Hash_Table_Types (<>);
36
37    use HT_Types;
38
39    with function Next (Node : Node_Access) return Node_Access;
40
41    with procedure Set_Next
42      (Node : Node_Access;
43       Next : Node_Access);
44
45    type Key_Type (<>) is limited private;
46
47    with function Hash (Key : Key_Type) return Hash_Type;
48
49    with function Equivalent_Keys
50      (Key  : Key_Type;
51       Node : Node_Access) return Boolean;
52
53 package Ada.Containers.Hash_Tables.Generic_Keys is
54    pragma Preelaborate;
55
56    function Index
57      (HT  : Hash_Table_Type;
58       Key : Key_Type) return Hash_Type;
59    pragma Inline (Index);
60    --  Returns the bucket number (array index value) for the given key
61
62    procedure Delete_Key_Sans_Free
63      (HT  : in out Hash_Table_Type;
64       Key : Key_Type;
65       X   : out Node_Access);
66    --  Removes the node (if any) with the given key from the hash table,
67    --  without deallocating it. Program_Error is raised if the hash
68    --  table is busy.
69
70    function Find (HT : Hash_Table_Type; Key : Key_Type) return Node_Access;
71    --  Returns the node (if any) corresponding to the given key
72
73    generic
74       with function New_Node (Next : Node_Access) return Node_Access;
75    procedure Generic_Conditional_Insert
76      (HT       : in out Hash_Table_Type;
77       Key      : Key_Type;
78       Node     : out Node_Access;
79       Inserted : out Boolean);
80    --  Attempts to insert a new node with the given key into the hash table.
81    --  If a node with that key already exists in the table, then that node
82    --  is returned and Inserted returns False. Otherwise New_Node is called
83    --  to allocate a new node, and Inserted returns True. Program_Error is
84    --  raised if the hash table is busy.
85
86    generic
87       with function Hash (Node : Node_Access) return Hash_Type;
88       with procedure Assign (Node : Node_Access; Key : Key_Type);
89    procedure Generic_Replace_Element
90      (HT   : in out Hash_Table_Type;
91       Node : Node_Access;
92       Key  : Key_Type);
93    --  Assigns Key to Node, possibly changing its equivalence class. If Node
94    --  is in the same equivalence class as Key (that is, it's already in the
95    --  bucket implied by Key), then if the hash table is locked then
96    --  Program_Error is raised; otherwise Assign is called to assign Key to
97    --  Node. If Node is in a different bucket from Key, then Program_Error is
98    --  raised if the hash table is busy. Otherwise it Assigns Key to Node and
99    --  moves the Node from its current bucket to the bucket implied by Key.
100    --  Note that it is never proper to assign to Node a key value already
101    --  in the map, and so if Key is equivalent to some other node then
102    --  Program_Error is raised.
103
104 end Ada.Containers.Hash_Tables.Generic_Keys;