2005-03-23 Daniel Berlin <dberlin@dberlin.org>
[official-gcc.git] / gcc / ada / a-cidlli.ads
blob2f4ebcb69f0f2d58ce77c25f0c81fa5c151992cb
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 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 ------------------------------------------------------------------------------
36 with Ada.Finalization;
37 with Ada.Streams;
39 generic
41 type Element_Type (<>) is private;
43 with function "=" (Left, Right : Element_Type)
44 return Boolean is <>;
46 package Ada.Containers.Indefinite_Doubly_Linked_Lists is
47 pragma Preelaborate (Indefinite_Doubly_Linked_Lists);
49 type List is tagged private;
51 type Cursor is private;
53 Empty_List : constant List;
55 No_Element : constant Cursor;
57 function "=" (Left, Right : List) return Boolean;
59 function Length (Container : List) return Count_Type;
61 function Is_Empty (Container : List) return Boolean;
63 procedure Clear (Container : in out List);
65 function Element (Position : Cursor)
66 return Element_Type;
68 procedure Query_Element
69 (Position : Cursor;
70 Process : not null access procedure (Element : Element_Type));
72 procedure Update_Element
73 (Position : Cursor;
74 Process : not null access procedure (Element : in out Element_Type));
76 procedure Replace_Element
77 (Position : Cursor;
78 By : Element_Type);
80 procedure Move
81 (Target : in out List;
82 Source : in out List);
84 procedure Prepend
85 (Container : in out List;
86 New_Item : Element_Type;
87 Count : Count_Type := 1);
89 procedure Append
90 (Container : in out List;
91 New_Item : Element_Type;
92 Count : Count_Type := 1);
94 procedure Insert
95 (Container : in out List;
96 Before : Cursor;
97 New_Item : Element_Type;
98 Count : Count_Type := 1);
100 procedure Insert
101 (Container : in out List;
102 Before : Cursor;
103 New_Item : Element_Type;
104 Position : out Cursor;
105 Count : Count_Type := 1);
107 procedure Delete
108 (Container : in out List;
109 Position : in out Cursor;
110 Count : Count_Type := 1);
112 procedure Delete_First
113 (Container : in out List;
114 Count : Count_Type := 1);
116 procedure Delete_Last
117 (Container : in out List;
118 Count : Count_Type := 1);
120 generic
121 with function "<" (Left, Right : Element_Type)
122 return Boolean is <>;
123 procedure Generic_Sort (Container : in out List);
125 generic
126 with function "<" (Left, Right : Element_Type)
127 return Boolean is <>;
128 procedure Generic_Merge
129 (Target : in out List;
130 Source : in out List);
132 procedure Reverse_List (Container : in out List);
134 procedure Swap (I, J : Cursor);
136 procedure Swap_Links (Container : in out List; I, J : Cursor);
138 procedure Splice
139 (Target : in out List;
140 Before : Cursor;
141 Source : in out List);
143 procedure Splice
144 (Target : in out List;
145 Before : Cursor;
146 Position : Cursor);
148 procedure Splice
149 (Target : in out List;
150 Before : Cursor;
151 Source : in out List;
152 Position : Cursor);
154 function First (Container : List) return Cursor;
156 function First_Element (Container : List) return Element_Type;
158 function Last (Container : List) return Cursor;
160 function Last_Element (Container : List) return Element_Type;
162 function Contains
163 (Container : List;
164 Item : Element_Type) return Boolean;
166 function Find
167 (Container : List;
168 Item : Element_Type;
169 Position : Cursor := No_Element) return Cursor;
171 function Reverse_Find
172 (Container : List;
173 Item : Element_Type;
174 Position : Cursor := No_Element) return Cursor;
176 function Next (Position : Cursor) return Cursor;
178 function Previous (Position : Cursor) return Cursor;
180 procedure Next (Position : in out Cursor);
182 procedure Previous (Position : in out Cursor);
184 function Has_Element (Position : Cursor) return Boolean;
186 procedure Iterate
187 (Container : List;
188 Process : not null access procedure (Position : Cursor));
190 procedure Reverse_Iterate
191 (Container : List;
192 Process : not null access procedure (Position : Cursor));
194 private
195 type Node_Type;
196 type Node_Access is access Node_Type;
198 type Element_Access is access Element_Type;
200 type Node_Type is
201 record
202 Element : Element_Access;
203 Next : Node_Access;
204 Prev : Node_Access;
205 end record;
207 function "=" (L, R : Node_Type) return Boolean is abstract;
209 use Ada.Finalization;
211 type List is
212 new Controlled with record
213 First : Node_Access;
214 Last : Node_Access;
215 Length : Count_Type := 0;
216 end record;
218 procedure Adjust (Container : in out List);
220 procedure Finalize (Container : in out List) renames Clear;
222 use Ada.Streams;
224 procedure Read
225 (Stream : access Root_Stream_Type'Class;
226 Item : out List);
228 for List'Read use Read;
230 procedure Write
231 (Stream : access Root_Stream_Type'Class;
232 Item : List);
234 for List'Write use Write;
236 Empty_List : constant List := List'(Controlled with null, null, 0);
238 type List_Access is access constant List;
239 for List_Access'Storage_Size use 0;
241 type Cursor is
242 record
243 Container : List_Access;
244 Node : Node_Access;
245 end record;
247 No_Element : constant Cursor := Cursor'(null, null);
249 end Ada.Containers.Indefinite_Doubly_Linked_Lists;