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-2013, 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------------------------------------------------------------------------------
33
34with Ada.Iterator_Interfaces;
35
36private with Ada.Finalization;
37private with Ada.Streams;
38
39generic
40   type Element_Type (<>) is private;
41
42   with function "=" (Left, Right : Element_Type)
43      return Boolean is <>;
44
45package Ada.Containers.Indefinite_Doubly_Linked_Lists is
46   pragma Preelaborate;
47   pragma Remote_Types;
48
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;
54
55   pragma Preelaborable_Initialization (List);
56
57   type Cursor is private;
58   pragma Preelaborable_Initialization (Cursor);
59
60   Empty_List : constant List;
61
62   No_Element : constant Cursor;
63
64   function Has_Element (Position : Cursor) return Boolean;
65
66   package List_Iterator_Interfaces is new
67     Ada.Iterator_Interfaces (Cursor, Has_Element);
68
69   function "=" (Left, Right : List) return Boolean;
70
71   function Length (Container : List) return Count_Type;
72
73   function Is_Empty (Container : List) return Boolean;
74
75   procedure Clear (Container : in out List);
76
77   function Element (Position : Cursor) return Element_Type;
78
79   procedure Replace_Element
80     (Container : in out List;
81      Position  : Cursor;
82      New_Item  : Element_Type);
83
84   procedure Query_Element
85     (Position : Cursor;
86      Process  : not null access procedure (Element : Element_Type));
87
88   procedure Update_Element
89     (Container : in out List;
90      Position  : Cursor;
91      Process   : not null access procedure (Element : in out Element_Type));
92
93   type Constant_Reference_Type
94      (Element : not null access constant Element_Type) is private
95   with
96      Implicit_Dereference => Element;
97
98   type Reference_Type
99     (Element : not null access Element_Type) is private
100   with
101      Implicit_Dereference => Element;
102
103   function Constant_Reference
104     (Container : aliased List;
105      Position  : Cursor) return Constant_Reference_Type;
106   pragma Inline (Constant_Reference);
107
108   function Reference
109     (Container : aliased in out List;
110      Position  : Cursor) return Reference_Type;
111   pragma Inline (Reference);
112
113   procedure Assign (Target : in out List; Source : List);
114
115   function Copy (Source : List) return List;
116
117   procedure Move
118     (Target : in out List;
119      Source : in out List);
120
121   procedure Insert
122     (Container : in out List;
123      Before    : Cursor;
124      New_Item  : Element_Type;
125      Count     : Count_Type := 1);
126
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);
133
134   procedure Prepend
135     (Container : in out List;
136      New_Item  : Element_Type;
137      Count     : Count_Type := 1);
138
139   procedure Append
140     (Container : in out List;
141      New_Item  : Element_Type;
142      Count     : Count_Type := 1);
143
144   procedure Delete
145     (Container : in out List;
146      Position  : in out Cursor;
147      Count     : Count_Type := 1);
148
149   procedure Delete_First
150     (Container : in out List;
151      Count     : Count_Type := 1);
152
153   procedure Delete_Last
154     (Container : in out List;
155      Count     : Count_Type := 1);
156
157   procedure Reverse_Elements (Container : in out List);
158
159   procedure Swap (Container : in out List; I, J : Cursor);
160
161   procedure Swap_Links (Container : in out List; I, J : Cursor);
162
163   procedure Splice
164     (Target : in out List;
165      Before : Cursor;
166      Source : in out List);
167
168   procedure Splice
169     (Target   : in out List;
170      Before   : Cursor;
171      Source   : in out List;
172      Position : in out Cursor);
173
174   procedure Splice
175     (Container : in out List;
176      Before    : Cursor;
177      Position  : Cursor);
178
179   function First (Container : List) return Cursor;
180
181   function First_Element (Container : List) return Element_Type;
182
183   function Last (Container : List) return Cursor;
184
185   function Last_Element (Container : List) return Element_Type;
186
187   function Next (Position : Cursor) return Cursor;
188
189   procedure Next (Position : in out Cursor);
190
191   function Previous (Position : Cursor) return Cursor;
192
193   procedure Previous (Position : in out Cursor);
194
195   function Find
196     (Container : List;
197      Item      : Element_Type;
198      Position  : Cursor := No_Element) return Cursor;
199
200   function Reverse_Find
201     (Container : List;
202      Item      : Element_Type;
203      Position  : Cursor := No_Element) return Cursor;
204
205   function Contains
206     (Container : List;
207      Item      : Element_Type) return Boolean;
208
209   procedure Iterate
210     (Container : List;
211      Process   : not null access procedure (Position : Cursor));
212
213   procedure Reverse_Iterate
214     (Container : List;
215      Process   : not null access procedure (Position : Cursor));
216
217   function Iterate
218     (Container : List)
219      return List_Iterator_Interfaces.Reversible_Iterator'class;
220
221   function Iterate
222     (Container : List;
223      Start     : Cursor)
224      return List_Iterator_Interfaces.Reversible_Iterator'class;
225
226   generic
227      with function "<" (Left, Right : Element_Type) return Boolean is <>;
228   package Generic_Sorting is
229
230      function Is_Sorted (Container : List) return Boolean;
231
232      procedure Sort (Container : in out List);
233
234      procedure Merge (Target, Source : in out List);
235
236   end Generic_Sorting;
237
238private
239
240   pragma Inline (Next);
241   pragma Inline (Previous);
242
243   type Node_Type;
244   type Node_Access is access Node_Type;
245
246   type Element_Access is access Element_Type;
247
248   type Node_Type is
249      limited record
250         Element : Element_Access;
251         Next    : Node_Access;
252         Prev    : Node_Access;
253      end record;
254
255   use Ada.Finalization;
256   use Ada.Streams;
257
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;
266
267   overriding procedure Adjust (Container : in out List);
268
269   overriding procedure Finalize (Container : in out List) renames Clear;
270
271   procedure Read
272     (Stream : not null access Root_Stream_Type'Class;
273      Item   : out List);
274
275   for List'Read use Read;
276
277   procedure Write
278     (Stream : not null access Root_Stream_Type'Class;
279      Item   : List);
280
281   for List'Write use Write;
282
283   type List_Access is access all List;
284   for List_Access'Storage_Size use 0;
285
286   type Cursor is
287      record
288         Container : List_Access;
289         Node      : Node_Access;
290      end record;
291
292   procedure Read
293     (Stream : not null access Root_Stream_Type'Class;
294      Item   : out Cursor);
295
296   for Cursor'Read use Read;
297
298   procedure Write
299     (Stream : not null access Root_Stream_Type'Class;
300      Item   : Cursor);
301
302   for Cursor'Write use Write;
303
304   type Reference_Control_Type is
305      new Controlled with record
306         Container : List_Access;
307      end record;
308
309   overriding procedure Adjust (Control : in out Reference_Control_Type);
310   pragma Inline (Adjust);
311
312   overriding procedure Finalize (Control : in out Reference_Control_Type);
313   pragma Inline (Finalize);
314
315   type Constant_Reference_Type
316      (Element : not null access constant Element_Type) is
317      record
318         Control : Reference_Control_Type;
319      end record;
320
321   procedure Write
322     (Stream : not null access Root_Stream_Type'Class;
323      Item   : Constant_Reference_Type);
324
325   for Constant_Reference_Type'Write use Write;
326
327   procedure Read
328     (Stream : not null access Root_Stream_Type'Class;
329      Item   : out Constant_Reference_Type);
330
331   for Constant_Reference_Type'Read use Read;
332
333   type Reference_Type
334      (Element : not null access Element_Type) is
335      record
336         Control : Reference_Control_Type;
337      end record;
338
339   procedure Write
340     (Stream : not null access Root_Stream_Type'Class;
341      Item   : Reference_Type);
342
343   for Reference_Type'Write use Write;
344
345   procedure Read
346     (Stream : not null access Root_Stream_Type'Class;
347      Item   : out Reference_Type);
348
349   for Reference_Type'Read use Read;
350
351   Empty_List : constant List := List'(Controlled with null, null, 0, 0, 0);
352
353   No_Element : constant Cursor := Cursor'(null, null);
354
355   type Iterator is new Limited_Controlled and
356     List_Iterator_Interfaces.Reversible_Iterator with
357   record
358      Container : List_Access;
359      Node      : Node_Access;
360   end record;
361
362   overriding procedure Finalize (Object : in out Iterator);
363
364   overriding function First (Object : Iterator) return Cursor;
365   overriding function Last  (Object : Iterator) return Cursor;
366
367   overriding function Next
368     (Object   : Iterator;
369      Position : Cursor) return Cursor;
370
371   overriding function Previous
372     (Object   : Iterator;
373      Position : Cursor) return Cursor;
374
375end Ada.Containers.Indefinite_Doubly_Linked_Lists;
376