Merged with mainline at revision 128810.
[official-gcc.git] / gcc / ada / a-cohama.ads
blob487944c27990258dfac583fad6eb18f507cfaea6
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT LIBRARY COMPONENTS --
4 -- --
5 -- A D A . C O N T A I N E R S . H A S H E D _ M A P S --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 2004-2007, Free Software Foundation, Inc. --
10 -- --
11 -- This specification is derived from the Ada Reference Manual for use with --
12 -- GNAT. The copyright notice above, and the license provisions that follow --
13 -- apply solely to the contents of the part following the private keyword. --
14 -- --
15 -- GNAT is free software; you can redistribute it and/or modify it under --
16 -- terms of the GNU General Public License as published by the Free Soft- --
17 -- ware Foundation; either version 2, or (at your option) any later ver- --
18 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
19 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
20 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
21 -- for more details. You should have received a copy of the GNU General --
22 -- Public License distributed with GNAT; see file COPYING. If not, write --
23 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
24 -- Boston, MA 02110-1301, USA. --
25 -- --
26 -- As a special exception, if other files instantiate generics from this --
27 -- unit, or you link this unit with other files to produce an executable, --
28 -- this unit does not by itself cause the resulting executable to be --
29 -- covered by the GNU General Public License. This exception does not --
30 -- however invalidate any other reasons why the executable file might be --
31 -- covered by the GNU Public License. --
32 -- --
33 -- This unit was originally developed by Matthew J Heaney. --
34 ------------------------------------------------------------------------------
36 with Ada.Containers.Hash_Tables;
37 with Ada.Streams;
38 with Ada.Finalization;
40 generic
41 type Key_Type is private;
42 type Element_Type is private;
44 with function Hash (Key : Key_Type) return Hash_Type;
45 with function Equivalent_Keys (Left, Right : Key_Type) return Boolean;
46 with function "=" (Left, Right : Element_Type) return Boolean is <>;
48 package Ada.Containers.Hashed_Maps is
49 pragma Preelaborate;
50 pragma Remote_Types;
52 type Map is tagged private;
53 pragma Preelaborable_Initialization (Map);
55 type Cursor is private;
56 pragma Preelaborable_Initialization (Cursor);
58 Empty_Map : constant Map;
60 No_Element : constant Cursor;
62 function "=" (Left, Right : Map) return Boolean;
64 function Capacity (Container : Map) return Count_Type;
66 procedure Reserve_Capacity (Container : in out Map;
67 Capacity : Count_Type);
69 function Length (Container : Map) return Count_Type;
71 function Is_Empty (Container : Map) return Boolean;
73 procedure Clear (Container : in out Map);
75 function Key (Position : Cursor) return Key_Type;
77 function Element (Position : Cursor) return Element_Type;
79 procedure Replace_Element
80 (Container : in out Map;
81 Position : Cursor;
82 New_Item : Element_Type);
84 procedure Query_Element
85 (Position : Cursor;
86 Process : not null access
87 procedure (Key : Key_Type; Element : Element_Type));
89 procedure Update_Element
90 (Container : in out Map;
91 Position : Cursor;
92 Process : not null access
93 procedure (Key : Key_Type; Element : in out Element_Type));
95 procedure Move (Target : in out Map; Source : in out Map);
97 procedure Insert
98 (Container : in out Map;
99 Key : Key_Type;
100 New_Item : Element_Type;
101 Position : out Cursor;
102 Inserted : out Boolean);
104 procedure Insert
105 (Container : in out Map;
106 Key : Key_Type;
107 Position : out Cursor;
108 Inserted : out Boolean);
110 procedure Insert
111 (Container : in out Map;
112 Key : Key_Type;
113 New_Item : Element_Type);
115 procedure Include
116 (Container : in out Map;
117 Key : Key_Type;
118 New_Item : Element_Type);
120 procedure Replace
121 (Container : in out Map;
122 Key : Key_Type;
123 New_Item : Element_Type);
125 procedure Exclude (Container : in out Map; Key : Key_Type);
127 procedure Delete (Container : in out Map; Key : Key_Type);
129 procedure Delete (Container : in out Map; Position : in out Cursor);
131 function First (Container : Map) return Cursor;
133 function Next (Position : Cursor) return Cursor;
135 procedure Next (Position : in out Cursor);
137 function Find (Container : Map; Key : Key_Type) return Cursor;
139 function Contains (Container : Map; Key : Key_Type) return Boolean;
141 function Element (Container : Map; Key : Key_Type) return Element_Type;
143 function Has_Element (Position : Cursor) return Boolean;
145 function Equivalent_Keys (Left, Right : Cursor) return Boolean;
147 function Equivalent_Keys (Left : Cursor; Right : Key_Type) return Boolean;
149 function Equivalent_Keys (Left : Key_Type; Right : Cursor) return Boolean;
151 procedure Iterate
152 (Container : Map;
153 Process : not null access procedure (Position : Cursor));
155 private
156 pragma Inline ("=");
157 pragma Inline (Length);
158 pragma Inline (Is_Empty);
159 pragma Inline (Clear);
160 pragma Inline (Key);
161 pragma Inline (Element);
162 pragma Inline (Move);
163 pragma Inline (Contains);
164 pragma Inline (Capacity);
165 pragma Inline (Reserve_Capacity);
166 pragma Inline (Has_Element);
167 pragma Inline (Equivalent_Keys);
168 pragma Inline (Next);
170 type Node_Type;
171 type Node_Access is access Node_Type;
173 type Node_Type is limited record
174 Key : Key_Type;
175 Element : Element_Type;
176 Next : Node_Access;
177 end record;
179 package HT_Types is new Hash_Tables.Generic_Hash_Table_Types
180 (Node_Type,
181 Node_Access);
183 type Map is new Ada.Finalization.Controlled with record
184 HT : HT_Types.Hash_Table_Type;
185 end record;
187 use HT_Types;
188 use Ada.Finalization;
190 procedure Adjust (Container : in out Map);
192 procedure Finalize (Container : in out Map);
194 use Ada.Streams;
196 procedure Write
197 (Stream : not null access Root_Stream_Type'Class;
198 Container : Map);
200 for Map'Write use Write;
202 procedure Read
203 (Stream : not null access Root_Stream_Type'Class;
204 Container : out Map);
206 for Map'Read use Read;
208 type Map_Access is access constant Map;
209 for Map_Access'Storage_Size use 0;
211 type Cursor is
212 record
213 Container : Map_Access;
214 Node : Node_Access;
215 end record;
217 procedure Read
218 (Stream : not null access Root_Stream_Type'Class;
219 Item : out Cursor);
221 for Cursor'Read use Read;
223 procedure Write
224 (Stream : not null access Root_Stream_Type'Class;
225 Item : Cursor);
227 for Cursor'Write use Write;
229 Empty_Map : constant Map := (Controlled with HT => (null, 0, 0, 0));
231 No_Element : constant Cursor := (Container => null, Node => null);
233 end Ada.Containers.Hashed_Maps;