2015-09-28 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / ada / a-cidlli.ads
blob932fecbf326ddf9c98ae64dd88070d5c44509882
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT LIBRARY COMPONENTS --
4 -- --
5 -- ADA.CONTAINERS.INDEFINITE_DOUBLY_LINKED_LISTS --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 2004-2015, 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 3, 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. --
21 -- --
22 -- As a special exception under Section 7 of GPL version 3, you are granted --
23 -- additional permissions described in the GCC Runtime Library Exception, --
24 -- version 3.1, as published by the Free Software Foundation. --
25 -- --
26 -- You should have received a copy of the GNU General Public License and --
27 -- a copy of the GCC Runtime Library Exception along with this program; --
28 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
29 -- <http://www.gnu.org/licenses/>. --
30 -- --
31 -- This unit was originally developed by Matthew J Heaney. --
32 ------------------------------------------------------------------------------
34 with Ada.Iterator_Interfaces;
36 private with Ada.Finalization;
37 private with Ada.Streams;
39 generic
40 type Element_Type (<>) is private;
42 with function "=" (Left, Right : Element_Type)
43 return Boolean is <>;
45 package Ada.Containers.Indefinite_Doubly_Linked_Lists is
46 pragma Preelaborate;
47 pragma Remote_Types;
49 type List is tagged private with
50 Constant_Indexing => Constant_Reference,
51 Variable_Indexing => Reference,
52 Default_Iterator => Iterate,
53 Iterator_Element => Element_Type;
55 pragma Preelaborable_Initialization (List);
57 type Cursor is private;
58 pragma Preelaborable_Initialization (Cursor);
60 Empty_List : constant List;
62 No_Element : constant Cursor;
64 function Has_Element (Position : Cursor) return Boolean;
66 package List_Iterator_Interfaces is new
67 Ada.Iterator_Interfaces (Cursor, Has_Element);
69 function "=" (Left, Right : List) return Boolean;
71 function Length (Container : List) return Count_Type;
73 function Is_Empty (Container : List) return Boolean;
75 procedure Clear (Container : in out List);
77 function Element (Position : Cursor) return Element_Type;
79 procedure Replace_Element
80 (Container : in out List;
81 Position : Cursor;
82 New_Item : Element_Type);
84 procedure Query_Element
85 (Position : Cursor;
86 Process : not null access procedure (Element : Element_Type));
88 procedure Update_Element
89 (Container : in out List;
90 Position : Cursor;
91 Process : not null access procedure (Element : in out Element_Type));
93 type Constant_Reference_Type
94 (Element : not null access constant Element_Type) is private
95 with
96 Implicit_Dereference => Element;
98 type Reference_Type
99 (Element : not null access Element_Type) is private
100 with
101 Implicit_Dereference => Element;
103 function Constant_Reference
104 (Container : aliased List;
105 Position : Cursor) return Constant_Reference_Type;
106 pragma Inline (Constant_Reference);
108 function Reference
109 (Container : aliased in out List;
110 Position : Cursor) return Reference_Type;
111 pragma Inline (Reference);
113 procedure Assign (Target : in out List; Source : List);
115 function Copy (Source : List) return List;
117 procedure Move
118 (Target : in out List;
119 Source : in out List);
121 procedure Insert
122 (Container : in out List;
123 Before : Cursor;
124 New_Item : Element_Type;
125 Count : Count_Type := 1);
127 procedure Insert
128 (Container : in out List;
129 Before : Cursor;
130 New_Item : Element_Type;
131 Position : out Cursor;
132 Count : Count_Type := 1);
134 procedure Prepend
135 (Container : in out List;
136 New_Item : Element_Type;
137 Count : Count_Type := 1);
139 procedure Append
140 (Container : in out List;
141 New_Item : Element_Type;
142 Count : Count_Type := 1);
144 procedure Delete
145 (Container : in out List;
146 Position : in out Cursor;
147 Count : Count_Type := 1);
149 procedure Delete_First
150 (Container : in out List;
151 Count : Count_Type := 1);
153 procedure Delete_Last
154 (Container : in out List;
155 Count : Count_Type := 1);
157 procedure Reverse_Elements (Container : in out List);
159 procedure Swap (Container : in out List; I, J : Cursor);
161 procedure Swap_Links (Container : in out List; I, J : Cursor);
163 procedure Splice
164 (Target : in out List;
165 Before : Cursor;
166 Source : in out List);
168 procedure Splice
169 (Target : in out List;
170 Before : Cursor;
171 Source : in out List;
172 Position : in out Cursor);
174 procedure Splice
175 (Container : in out List;
176 Before : Cursor;
177 Position : Cursor);
179 function First (Container : List) return Cursor;
181 function First_Element (Container : List) return Element_Type;
183 function Last (Container : List) return Cursor;
185 function Last_Element (Container : List) return Element_Type;
187 function Next (Position : Cursor) return Cursor;
189 procedure Next (Position : in out Cursor);
191 function Previous (Position : Cursor) return Cursor;
193 procedure Previous (Position : in out Cursor);
195 function Find
196 (Container : List;
197 Item : Element_Type;
198 Position : Cursor := No_Element) return Cursor;
200 function Reverse_Find
201 (Container : List;
202 Item : Element_Type;
203 Position : Cursor := No_Element) return Cursor;
205 function Contains
206 (Container : List;
207 Item : Element_Type) return Boolean;
209 procedure Iterate
210 (Container : List;
211 Process : not null access procedure (Position : Cursor));
213 procedure Reverse_Iterate
214 (Container : List;
215 Process : not null access procedure (Position : Cursor));
217 function Iterate
218 (Container : List)
219 return List_Iterator_Interfaces.Reversible_Iterator'class;
221 function Iterate
222 (Container : List;
223 Start : Cursor)
224 return List_Iterator_Interfaces.Reversible_Iterator'class;
226 generic
227 with function "<" (Left, Right : Element_Type) return Boolean is <>;
228 package Generic_Sorting is
230 function Is_Sorted (Container : List) return Boolean;
232 procedure Sort (Container : in out List);
234 procedure Merge (Target, Source : in out List);
236 end Generic_Sorting;
238 private
240 pragma Inline (Next);
241 pragma Inline (Previous);
243 type Node_Type;
244 type Node_Access is access Node_Type;
246 type Element_Access is access Element_Type;
248 type Node_Type is
249 limited record
250 Element : Element_Access;
251 Next : Node_Access;
252 Prev : Node_Access;
253 end record;
255 use Ada.Finalization;
256 use Ada.Streams;
258 type List is
259 new Controlled with record
260 First : Node_Access;
261 Last : Node_Access;
262 Length : Count_Type := 0;
263 Busy : Natural := 0;
264 Lock : Natural := 0;
265 end record;
267 overriding procedure Adjust (Container : in out List);
269 overriding procedure Finalize (Container : in out List) renames Clear;
271 procedure Read
272 (Stream : not null access Root_Stream_Type'Class;
273 Item : out List);
275 for List'Read use Read;
277 procedure Write
278 (Stream : not null access Root_Stream_Type'Class;
279 Item : List);
281 for List'Write use Write;
283 type List_Access is access all List;
284 for List_Access'Storage_Size use 0;
286 type Cursor is
287 record
288 Container : List_Access;
289 Node : Node_Access;
290 end record;
292 procedure Read
293 (Stream : not null access Root_Stream_Type'Class;
294 Item : out Cursor);
296 for Cursor'Read use Read;
298 procedure Write
299 (Stream : not null access Root_Stream_Type'Class;
300 Item : Cursor);
302 for Cursor'Write use Write;
304 type Reference_Control_Type is
305 new Controlled with record
306 Container : List_Access;
307 end record;
309 overriding procedure Adjust (Control : in out Reference_Control_Type);
310 pragma Inline (Adjust);
312 overriding procedure Finalize (Control : in out Reference_Control_Type);
313 pragma Inline (Finalize);
315 type Constant_Reference_Type
316 (Element : not null access constant Element_Type) is
317 record
318 Control : Reference_Control_Type :=
319 raise Program_Error with "uninitialized reference";
320 -- The RM says, "The default initialization of an object of
321 -- type Constant_Reference_Type or Reference_Type propagates
322 -- Program_Error."
323 end record;
325 procedure Write
326 (Stream : not null access Root_Stream_Type'Class;
327 Item : Constant_Reference_Type);
329 for Constant_Reference_Type'Write use Write;
331 procedure Read
332 (Stream : not null access Root_Stream_Type'Class;
333 Item : out Constant_Reference_Type);
335 for Constant_Reference_Type'Read use Read;
337 type Reference_Type
338 (Element : not null access Element_Type) is
339 record
340 Control : Reference_Control_Type :=
341 raise Program_Error with "uninitialized reference";
342 -- The RM says, "The default initialization of an object of
343 -- type Constant_Reference_Type or Reference_Type propagates
344 -- Program_Error."
345 end record;
347 procedure Write
348 (Stream : not null access Root_Stream_Type'Class;
349 Item : Reference_Type);
351 for Reference_Type'Write use Write;
353 procedure Read
354 (Stream : not null access Root_Stream_Type'Class;
355 Item : out Reference_Type);
357 for Reference_Type'Read use Read;
359 Empty_List : constant List := List'(Controlled with null, null, 0, 0, 0);
361 No_Element : constant Cursor := Cursor'(null, null);
363 type Iterator is new Limited_Controlled and
364 List_Iterator_Interfaces.Reversible_Iterator with
365 record
366 Container : List_Access;
367 Node : Node_Access;
368 end record;
370 overriding procedure Finalize (Object : in out Iterator);
372 overriding function First (Object : Iterator) return Cursor;
373 overriding function Last (Object : Iterator) return Cursor;
375 overriding function Next
376 (Object : Iterator;
377 Position : Cursor) return Cursor;
379 overriding function Previous
380 (Object : Iterator;
381 Position : Cursor) return Cursor;
383 end Ada.Containers.Indefinite_Doubly_Linked_Lists;