1 ------------------------------------------------------------------------------
3 -- GNAT LIBRARY COMPONENTS --
5 -- ADA.CONTAINERS.BOUNDED_DOUBLY_LINKED_LISTS --
9 -- Copyright (C) 2004-2015, Free Software Foundation, Inc. --
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. --
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. --
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. --
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/>. --
31 -- This unit was originally developed by Matthew J Heaney. --
32 ------------------------------------------------------------------------------
34 with Ada
.Iterator_Interfaces
;
36 with Ada
.Containers
.Helpers
;
37 private with Ada
.Streams
;
38 private with Ada
.Finalization
;
41 type Element_Type
is private;
43 with function "=" (Left
, Right
: Element_Type
)
46 package Ada
.Containers
.Bounded_Doubly_Linked_Lists
is
47 pragma Annotate
(CodePeer
, Skip_Analysis
);
51 type List
(Capacity
: Count_Type
) is tagged private with
52 Constant_Indexing
=> Constant_Reference
,
53 Variable_Indexing
=> Reference
,
54 Default_Iterator
=> Iterate
,
55 Iterator_Element
=> Element_Type
;
57 pragma Preelaborable_Initialization
(List
);
59 type Cursor
is private;
60 pragma Preelaborable_Initialization
(Cursor
);
62 Empty_List
: constant List
;
64 No_Element
: constant Cursor
;
66 function Has_Element
(Position
: Cursor
) return Boolean;
68 package List_Iterator_Interfaces
is new
69 Ada
.Iterator_Interfaces
(Cursor
, Has_Element
);
71 function "=" (Left
, Right
: List
) return Boolean;
73 function Length
(Container
: List
) return Count_Type
;
75 function Is_Empty
(Container
: List
) return Boolean;
77 procedure Clear
(Container
: in out List
);
79 function Element
(Position
: Cursor
) return Element_Type
;
81 procedure Replace_Element
82 (Container
: in out List
;
84 New_Item
: Element_Type
);
86 procedure Query_Element
88 Process
: not null access procedure (Element
: Element_Type
));
90 procedure Update_Element
91 (Container
: in out List
;
93 Process
: not null access procedure (Element
: in out Element_Type
));
95 type Constant_Reference_Type
96 (Element
: not null access constant Element_Type
) is private
98 Implicit_Dereference
=> Element
;
101 (Element
: not null access Element_Type
) is private
103 Implicit_Dereference
=> Element
;
105 function Constant_Reference
106 (Container
: aliased List
;
107 Position
: Cursor
) return Constant_Reference_Type
;
110 (Container
: aliased in out List
;
111 Position
: Cursor
) return Reference_Type
;
113 procedure Assign
(Target
: in out List
; Source
: List
);
115 function Copy
(Source
: List
; Capacity
: Count_Type
:= 0) return List
;
118 (Target
: in out List
;
119 Source
: in out List
);
122 (Container
: in out List
;
124 New_Item
: Element_Type
;
125 Count
: Count_Type
:= 1);
128 (Container
: in out List
;
130 New_Item
: Element_Type
;
131 Position
: out Cursor
;
132 Count
: Count_Type
:= 1);
135 (Container
: in out List
;
137 Position
: out Cursor
;
138 Count
: Count_Type
:= 1);
141 (Container
: in out List
;
142 New_Item
: Element_Type
;
143 Count
: Count_Type
:= 1);
146 (Container
: in out List
;
147 New_Item
: Element_Type
;
148 Count
: Count_Type
:= 1);
151 (Container
: in out List
;
152 Position
: in out Cursor
;
153 Count
: Count_Type
:= 1);
155 procedure Delete_First
156 (Container
: in out List
;
157 Count
: Count_Type
:= 1);
159 procedure Delete_Last
160 (Container
: in out List
;
161 Count
: Count_Type
:= 1);
163 procedure Reverse_Elements
(Container
: in out List
);
167 return List_Iterator_Interfaces
.Reversible_Iterator
'class;
172 return List_Iterator_Interfaces
.Reversible_Iterator
'class;
175 (Container
: in out List
;
179 (Container
: in out List
;
183 (Target
: in out List
;
185 Source
: in out List
);
188 (Target
: in out List
;
190 Source
: in out List
;
191 Position
: in out Cursor
);
194 (Container
: in out List
;
198 function First
(Container
: List
) return Cursor
;
200 function First_Element
(Container
: List
) return Element_Type
;
202 function Last
(Container
: List
) return Cursor
;
204 function Last_Element
(Container
: List
) return Element_Type
;
206 function Next
(Position
: Cursor
) return Cursor
;
208 procedure Next
(Position
: in out Cursor
);
210 function Previous
(Position
: Cursor
) return Cursor
;
212 procedure Previous
(Position
: in out Cursor
);
217 Position
: Cursor
:= No_Element
) return Cursor
;
219 function Reverse_Find
222 Position
: Cursor
:= No_Element
) return Cursor
;
226 Item
: Element_Type
) return Boolean;
230 Process
: not null access procedure (Position
: Cursor
));
232 procedure Reverse_Iterate
234 Process
: not null access procedure (Position
: Cursor
));
237 with function "<" (Left
, Right
: Element_Type
) return Boolean is <>;
238 package Generic_Sorting
is
240 function Is_Sorted
(Container
: List
) return Boolean;
242 procedure Sort
(Container
: in out List
);
244 procedure Merge
(Target
, Source
: in out List
);
250 pragma Inline
(Next
);
251 pragma Inline
(Previous
);
253 use Ada
.Containers
.Helpers
;
254 package Implementation
is new Generic_Implementation
;
258 use Ada
.Finalization
;
260 type Node_Type
is record
261 Prev
: Count_Type
'Base;
263 Element
: aliased Element_Type
;
266 type Node_Array
is array (Count_Type
range <>) of Node_Type
;
268 type List
(Capacity
: Count_Type
) is tagged record
269 Nodes
: Node_Array
(1 .. Capacity
) := (others => <>);
270 Free
: Count_Type
'Base := -1;
271 First
: Count_Type
:= 0;
272 Last
: Count_Type
:= 0;
273 Length
: Count_Type
:= 0;
274 TC
: aliased Tamper_Counts
;
278 (Stream
: not null access Root_Stream_Type
'Class;
281 for List
'Read use Read
;
284 (Stream
: not null access Root_Stream_Type
'Class;
287 for List
'Write use Write
;
289 type List_Access
is access all List
;
290 for List_Access
'Storage_Size use 0;
292 type Cursor
is record
293 Container
: List_Access
;
294 Node
: Count_Type
:= 0;
298 (Stream
: not null access Root_Stream_Type
'Class;
301 for Cursor
'Read use Read
;
304 (Stream
: not null access Root_Stream_Type
'Class;
307 for Cursor
'Write use Write
;
309 subtype Reference_Control_Type
is Implementation
.Reference_Control_Type
;
310 -- It is necessary to rename this here, so that the compiler can find it
312 type Constant_Reference_Type
313 (Element
: not null access constant Element_Type
) is
315 Control
: Reference_Control_Type
:=
316 raise Program_Error
with "uninitialized reference";
317 -- The RM says, "The default initialization of an object of
318 -- type Constant_Reference_Type or Reference_Type propagates
323 (Stream
: not null access Root_Stream_Type
'Class;
324 Item
: out Constant_Reference_Type
);
326 for Constant_Reference_Type
'Read use Read
;
329 (Stream
: not null access Root_Stream_Type
'Class;
330 Item
: Constant_Reference_Type
);
332 for Constant_Reference_Type
'Write use Write
;
334 type Reference_Type
(Element
: not null access Element_Type
) is record
335 Control
: Reference_Control_Type
:=
336 raise Program_Error
with "uninitialized reference";
337 -- The RM says, "The default initialization of an object of
338 -- type Constant_Reference_Type or Reference_Type propagates
343 (Stream
: not null access Root_Stream_Type
'Class;
344 Item
: Reference_Type
);
346 for Reference_Type
'Write use Write
;
349 (Stream
: not null access Root_Stream_Type
'Class;
350 Item
: out Reference_Type
);
352 for Reference_Type
'Read use Read
;
354 -- Three operations are used to optimize in the expansion of "for ... of"
355 -- loops: the Next(Cursor) procedure in the visible part, and the following
356 -- Pseudo_Reference and Get_Element_Access functions. See Exp_Ch5 for
359 function Pseudo_Reference
360 (Container
: aliased List
'Class) return Reference_Control_Type
;
361 pragma Inline
(Pseudo_Reference
);
362 -- Creates an object of type Reference_Control_Type pointing to the
363 -- container, and increments the Lock. Finalization of this object will
364 -- decrement the Lock.
366 type Element_Access
is access all Element_Type
with
369 function Get_Element_Access
370 (Position
: Cursor
) return not null Element_Access
;
371 -- Returns a pointer to the element designated by Position.
373 Empty_List
: constant List
:= (Capacity
=> 0, others => <>);
375 No_Element
: constant Cursor
:= Cursor
'(null, 0);
377 type Iterator is new Limited_Controlled and
378 List_Iterator_Interfaces.Reversible_Iterator with
380 Container : List_Access;
383 with Disable_Controlled => not T_Check;
385 overriding procedure Finalize (Object : in out Iterator);
387 overriding function First (Object : Iterator) return Cursor;
388 overriding function Last (Object : Iterator) return Cursor;
390 overriding function Next
392 Position : Cursor) return Cursor;
394 overriding function Previous
396 Position : Cursor) return Cursor;
398 end Ada.Containers.Bounded_Doubly_Linked_Lists;