OSDN Git Service

2007-04-06 Javier Miranda <miranda@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / a-cohama.ads
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-2006, 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 ------------------------------------------------------------------------------
35
36 with Ada.Containers.Hash_Tables;
37 with Ada.Streams;
38 with Ada.Finalization;
39
40 generic
41    type Key_Type is private;
42    type Element_Type is private;
43
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 <>;
47
48 package Ada.Containers.Hashed_Maps is
49    pragma Preelaborate;
50
51    type Map is tagged private;
52    pragma Preelaborable_Initialization (Map);
53
54    type Cursor is private;
55    pragma Preelaborable_Initialization (Cursor);
56
57    Empty_Map : constant Map;
58
59    No_Element : constant Cursor;
60
61    function "=" (Left, Right : Map) return Boolean;
62
63    function Capacity (Container : Map) return Count_Type;
64
65    procedure Reserve_Capacity (Container : in out Map;
66                                Capacity  : Count_Type);
67
68    function Length (Container : Map) return Count_Type;
69
70    function Is_Empty (Container : Map) return Boolean;
71
72    procedure Clear (Container : in out Map);
73
74    function Key (Position : Cursor) return Key_Type;
75
76    function Element (Position : Cursor) return Element_Type;
77
78    procedure Replace_Element
79      (Container : in out Map;
80       Position  : Cursor;
81       New_Item  : Element_Type);
82
83    procedure Query_Element
84      (Position : Cursor;
85       Process  : not null access
86                    procedure (Key : Key_Type; Element : Element_Type));
87
88    procedure Update_Element
89      (Container : in out Map;
90       Position  : Cursor;
91       Process   : not null access
92                    procedure (Key : Key_Type; Element : in out Element_Type));
93
94    procedure Move (Target : in out Map; Source : in out Map);
95
96    procedure Insert
97      (Container : in out Map;
98       Key       : Key_Type;
99       New_Item  : Element_Type;
100       Position  : out Cursor;
101       Inserted  : out Boolean);
102
103    procedure Insert
104      (Container : in out Map;
105       Key       : Key_Type;
106       Position  : out Cursor;
107       Inserted  : out Boolean);
108
109    procedure Insert
110      (Container : in out Map;
111       Key       : Key_Type;
112       New_Item  : Element_Type);
113
114    procedure Include
115      (Container : in out Map;
116       Key       : Key_Type;
117       New_Item  : Element_Type);
118
119    procedure Replace
120      (Container : in out Map;
121       Key       : Key_Type;
122       New_Item  : Element_Type);
123
124    procedure Exclude (Container : in out Map; Key : Key_Type);
125
126    procedure Delete (Container : in out Map; Key : Key_Type);
127
128    procedure Delete (Container : in out Map; Position : in out Cursor);
129
130    function First (Container : Map) return Cursor;
131
132    function Next (Position : Cursor) return Cursor;
133
134    procedure Next (Position : in out Cursor);
135
136    function Find (Container : Map; Key : Key_Type) return Cursor;
137
138    function Contains (Container : Map; Key : Key_Type) return Boolean;
139
140    function Element (Container : Map; Key : Key_Type) return Element_Type;
141
142    function Has_Element (Position : Cursor) return Boolean;
143
144    function Equivalent_Keys (Left, Right : Cursor) return Boolean;
145
146    function Equivalent_Keys (Left : Cursor; Right : Key_Type) return Boolean;
147
148    function Equivalent_Keys (Left : Key_Type; Right : Cursor) return Boolean;
149
150    procedure Iterate
151      (Container : Map;
152       Process   : not null access procedure (Position : Cursor));
153
154 private
155    pragma Inline ("=");
156    pragma Inline (Length);
157    pragma Inline (Is_Empty);
158    pragma Inline (Clear);
159    pragma Inline (Key);
160    pragma Inline (Element);
161    pragma Inline (Move);
162    pragma Inline (Contains);
163    pragma Inline (Capacity);
164    pragma Inline (Reserve_Capacity);
165    pragma Inline (Has_Element);
166    pragma Inline (Equivalent_Keys);
167
168    type Node_Type;
169    type Node_Access is access Node_Type;
170
171    type Node_Type is limited record
172       Key     : Key_Type;
173       Element : Element_Type;
174       Next    : Node_Access;
175    end record;
176
177    package HT_Types is new Hash_Tables.Generic_Hash_Table_Types
178      (Node_Type,
179       Node_Access);
180
181    type Map is new Ada.Finalization.Controlled with record
182       HT : HT_Types.Hash_Table_Type;
183    end record;
184
185    use HT_Types;
186    use Ada.Finalization;
187
188    procedure Adjust (Container : in out Map);
189
190    procedure Finalize (Container : in out Map);
191
192    use Ada.Streams;
193
194    procedure Write
195      (Stream    : not null access Root_Stream_Type'Class;
196       Container : Map);
197
198    for Map'Write use Write;
199
200    procedure Read
201      (Stream    : not null access Root_Stream_Type'Class;
202       Container : out Map);
203
204    for Map'Read use Read;
205
206    Empty_Map : constant Map := (Controlled with HT => (null, 0, 0, 0));
207
208    type Map_Access is access constant Map;
209    for Map_Access'Storage_Size use 0;
210
211    type Cursor is
212       record
213          Container : Map_Access;
214          Node      : Node_Access;
215       end record;
216
217    procedure Read
218      (Stream : not null access Root_Stream_Type'Class;
219       Item   : out Cursor);
220
221    for Cursor'Read use Read;
222
223    procedure Write
224      (Stream : not null access Root_Stream_Type'Class;
225       Item   : Cursor);
226
227    for Cursor'Write use Write;
228
229    No_Element : constant Cursor := (Container => null, Node => null);
230
231 end Ada.Containers.Hashed_Maps;