OSDN Git Service

2005-03-29 Vincent Celier <celier@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / a-cdlili.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT LIBRARY COMPONENTS                          --
4 --                                                                          --
5 --                    ADA.CONTAINERS.DOUBLY_LINKED_LISTS                    --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --             Copyright (C) 2004 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,  59 Temple Place - Suite 330,  Boston, --
24 -- MA 02111-1307, 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.Finalization;
37 with Ada.Streams;
38
39 generic
40    type Element_Type is private;
41
42    with function "=" (Left, Right : Element_Type)
43       return Boolean is <>;
44
45 package Ada.Containers.Doubly_Linked_Lists is
46    pragma Preelaborate (Doubly_Linked_Lists);
47
48    type List is tagged private;
49
50    type Cursor is private;
51
52    Empty_List : constant List;
53
54    No_Element : constant Cursor;
55
56    function "=" (Left, Right : List) return Boolean;
57
58    function Length (Container : List) return Count_Type;
59
60    function Is_Empty (Container : List) return Boolean;
61
62    procedure Clear (Container : in out List);
63
64    function Element (Position : Cursor) return Element_Type;
65
66    procedure Query_Element
67      (Position : Cursor;
68       Process  : not null access procedure (Element : Element_Type));
69
70    procedure Update_Element
71      (Position : Cursor;
72       Process  : not null access procedure (Element : in out Element_Type));
73
74    procedure Replace_Element
75      (Position : Cursor;
76       By       : Element_Type);
77
78    procedure Move
79      (Target : in out List;
80       Source : in out List);
81
82    procedure Prepend
83      (Container : in out List;
84       New_Item  : Element_Type;
85       Count     : Count_Type := 1);
86
87    procedure Append
88      (Container : in out List;
89       New_Item  : Element_Type;
90       Count     : Count_Type := 1);
91
92    procedure Insert
93      (Container : in out List;
94       Before    : Cursor;
95       New_Item  : Element_Type;
96       Count     : Count_Type := 1);
97
98    procedure Insert
99      (Container : in out List;
100       Before    : Cursor;
101       New_Item  : Element_Type;
102       Position  : out Cursor;
103       Count     : Count_Type := 1);
104
105    procedure Insert
106      (Container : in out List;
107       Before    : Cursor;
108       Position  : out Cursor;
109       Count     : Count_Type := 1);
110
111    procedure Delete
112      (Container : in out List;
113       Position  : in out Cursor;
114       Count     : Count_Type := 1);
115
116    procedure Delete_First
117      (Container : in out List;
118       Count     : Count_Type := 1);
119
120    procedure Delete_Last
121      (Container : in out List;
122       Count     : Count_Type := 1);
123
124    generic
125       with function "<" (Left, Right : Element_Type)
126          return Boolean is <>;
127    procedure Generic_Sort (Container : in out List);
128
129    generic
130       with function "<" (Left, Right : Element_Type)
131          return Boolean is <>;
132    procedure Generic_Merge (Target : in out List; Source : in out List);
133
134    procedure Reverse_List (Container : in out List);
135
136    procedure Swap (I, J : in Cursor);
137
138    procedure Swap_Links
139      (Container : in out List;
140       I, J      : Cursor);
141
142    procedure Splice
143      (Target : in out List;
144       Before : Cursor;
145       Source : in out List);
146
147    procedure Splice
148      (Target   : in out List;
149       Before   : Cursor;
150       Position : Cursor);
151
152    procedure Splice
153      (Target   : in out List;
154       Before   : Cursor;
155       Source   : in out List;
156       Position : Cursor);
157
158    function First (Container : List) return Cursor;
159
160    function First_Element (Container : List) return Element_Type;
161
162    function Last (Container : List) return Cursor;
163
164    function Last_Element (Container : List) return Element_Type;
165
166    function Contains
167      (Container : List;
168       Item      : Element_Type) return Boolean;
169
170    function Find
171      (Container : List;
172       Item      : Element_Type;
173       Position  : Cursor := No_Element) return Cursor;
174
175    function Reverse_Find
176      (Container : List;
177       Item      : Element_Type;
178       Position  : Cursor := No_Element) return Cursor;
179
180    function Next (Position : Cursor) return Cursor;
181
182    function Previous (Position : Cursor) return Cursor;
183
184    procedure Next (Position : in out Cursor);
185
186    procedure Previous (Position : in out Cursor);
187
188    function Has_Element (Position : Cursor) return Boolean;
189
190    procedure Iterate
191      (Container : List;
192       Process   : not null access procedure (Position : Cursor));
193
194    procedure Reverse_Iterate
195      (Container : List;
196       Process   : not null access procedure (Position : Cursor));
197
198 private
199    type Node_Type;
200    type Node_Access is access Node_Type;
201
202    type Node_Type is
203       record
204          Element : Element_Type;
205          Next    : Node_Access;
206          Prev    : Node_Access;
207       end record;
208
209    function "=" (L, R : Node_Type) return Boolean is abstract;
210
211    use Ada.Finalization;
212
213    type List is
214      new Controlled with record
215         First  : Node_Access;
216         Last   : Node_Access;
217         Length : Count_Type := 0;
218      end record;
219
220    procedure Adjust (Container : in out List);
221
222    procedure Finalize (Container : in out List) renames Clear;
223
224    use Ada.Streams;
225
226    procedure Read
227      (Stream : access Root_Stream_Type'Class;
228       Item   : out List);
229
230    for List'Read use Read;
231
232    procedure Write
233      (Stream : access Root_Stream_Type'Class;
234       Item   : List);
235
236    for List'Write use Write;
237
238    Empty_List : constant List := List'(Controlled with null, null, 0);
239
240    type List_Access is access constant List;
241    for List_Access'Storage_Size use 0;
242
243    type Cursor is
244       record
245          Container : List_Access;
246          Node      : Node_Access;
247       end record;
248
249    No_Element : constant Cursor := Cursor'(null, null);
250
251 end Ada.Containers.Doubly_Linked_Lists;
252