1 ------------------------------------------------------------------------------
3 -- GNAT LIBRARY COMPONENTS --
5 -- A D A . C O N T A I N E R S . M U L T I W A Y _ T R E E S --
9 -- Copyright (C) 2004-2013, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
27 -- This unit was originally developed by Matthew J Heaney. --
28 ------------------------------------------------------------------------------
30 with Ada
.Unchecked_Conversion
;
31 with Ada
.Unchecked_Deallocation
;
33 with System
; use type System
.Address
;
35 package body Ada
.Containers
.Multiway_Trees
is
41 type Root_Iterator
is abstract new Limited_Controlled
and
42 Tree_Iterator_Interfaces
.Forward_Iterator
with
44 Container
: Tree_Access
;
45 Subtree
: Tree_Node_Access
;
48 overriding
procedure Finalize
(Object
: in out Root_Iterator
);
50 -----------------------
51 -- Subtree_Iterator --
52 -----------------------
54 -- ??? these headers are a bit odd, but for sure they do not substitute
55 -- for documenting things, what *is* a Subtree_Iterator?
57 type Subtree_Iterator
is new Root_Iterator
with null record;
59 overriding
function First
(Object
: Subtree_Iterator
) return Cursor
;
61 overriding
function Next
62 (Object
: Subtree_Iterator
;
63 Position
: Cursor
) return Cursor
;
69 type Child_Iterator
is new Root_Iterator
and
70 Tree_Iterator_Interfaces
.Reversible_Iterator
with null record;
72 overriding
function First
(Object
: Child_Iterator
) return Cursor
;
74 overriding
function Next
75 (Object
: Child_Iterator
;
76 Position
: Cursor
) return Cursor
;
78 overriding
function Last
(Object
: Child_Iterator
) return Cursor
;
80 overriding
function Previous
81 (Object
: Child_Iterator
;
82 Position
: Cursor
) return Cursor
;
84 -----------------------
85 -- Local Subprograms --
86 -----------------------
88 function Root_Node
(Container
: Tree
) return Tree_Node_Access
;
90 procedure Deallocate_Node
is
91 new Ada
.Unchecked_Deallocation
(Tree_Node_Type
, Tree_Node_Access
);
93 procedure Deallocate_Children
94 (Subtree
: Tree_Node_Access
;
95 Count
: in out Count_Type
);
97 procedure Deallocate_Subtree
98 (Subtree
: in out Tree_Node_Access
;
99 Count
: in out Count_Type
);
101 function Equal_Children
102 (Left_Subtree
, Right_Subtree
: Tree_Node_Access
) return Boolean;
104 function Equal_Subtree
105 (Left_Subtree
, Right_Subtree
: Tree_Node_Access
) return Boolean;
107 procedure Iterate_Children
108 (Container
: Tree_Access
;
109 Subtree
: Tree_Node_Access
;
110 Process
: not null access procedure (Position
: Cursor
));
112 procedure Iterate_Subtree
113 (Container
: Tree_Access
;
114 Subtree
: Tree_Node_Access
;
115 Process
: not null access procedure (Position
: Cursor
));
117 procedure Copy_Children
118 (Source
: Children_Type
;
119 Parent
: Tree_Node_Access
;
120 Count
: in out Count_Type
);
122 procedure Copy_Subtree
123 (Source
: Tree_Node_Access
;
124 Parent
: Tree_Node_Access
;
125 Target
: out Tree_Node_Access
;
126 Count
: in out Count_Type
);
128 function Find_In_Children
129 (Subtree
: Tree_Node_Access
;
130 Item
: Element_Type
) return Tree_Node_Access
;
132 function Find_In_Subtree
133 (Subtree
: Tree_Node_Access
;
134 Item
: Element_Type
) return Tree_Node_Access
;
136 function Child_Count
(Children
: Children_Type
) return Count_Type
;
138 function Subtree_Node_Count
139 (Subtree
: Tree_Node_Access
) return Count_Type
;
141 function Is_Reachable
(From
, To
: Tree_Node_Access
) return Boolean;
143 procedure Remove_Subtree
(Subtree
: Tree_Node_Access
);
145 procedure Insert_Subtree_Node
146 (Subtree
: Tree_Node_Access
;
147 Parent
: Tree_Node_Access
;
148 Before
: Tree_Node_Access
);
150 procedure Insert_Subtree_List
151 (First
: Tree_Node_Access
;
152 Last
: Tree_Node_Access
;
153 Parent
: Tree_Node_Access
;
154 Before
: Tree_Node_Access
);
156 procedure Splice_Children
157 (Target_Parent
: Tree_Node_Access
;
158 Before
: Tree_Node_Access
;
159 Source_Parent
: Tree_Node_Access
);
165 function "=" (Left
, Right
: Tree
) return Boolean is
167 if Left
'Address = Right
'Address then
171 return Equal_Children
(Root_Node
(Left
), Root_Node
(Right
));
178 procedure Adjust
(Container
: in out Tree
) is
179 Source
: constant Children_Type
:= Container
.Root
.Children
;
180 Source_Count
: constant Count_Type
:= Container
.Count
;
181 Target_Count
: Count_Type
;
184 -- We first restore the target container to its default-initialized
185 -- state, before we attempt any allocation, to ensure that invariants
186 -- are preserved in the event that the allocation fails.
188 Container
.Root
.Children
:= Children_Type
'(others => null);
191 Container.Count := 0;
193 -- Copy_Children returns a count of the number of nodes that it
194 -- allocates, but it works by incrementing the value that is passed
195 -- in. We must therefore initialize the count value before calling
200 -- Now we attempt the allocation of subtrees. The invariants are
201 -- satisfied even if the allocation fails.
203 Copy_Children (Source, Root_Node (Container), Target_Count);
204 pragma Assert (Target_Count = Source_Count);
206 Container.Count := Source_Count;
209 procedure Adjust (Control : in out Reference_Control_Type) is
211 if Control.Container /= null then
213 C : Tree renames Control.Container.all;
214 B : Natural renames C.Busy;
215 L : Natural renames C.Lock;
227 function Ancestor_Find
229 Item : Element_Type) return Cursor
231 R, N : Tree_Node_Access;
234 if Position = No_Element then
235 raise Constraint_Error with "Position cursor has no element";
238 -- Commented-out pending official ruling from ARG. ???
240 -- if Position.Container /= Container'Unrestricted_Access then
241 -- raise Program_Error with "Position cursor not in container";
244 -- AI-0136 says to raise PE if Position equals the root node. This does
245 -- not seem correct, as this value is just the limiting condition of the
246 -- search. For now we omit this check, pending a ruling from the ARG.???
248 -- if Is_Root (Position) then
249 -- raise Program_Error with "Position cursor designates root";
252 R := Root_Node (Position.Container.all);
255 if N.Element = Item then
256 return Cursor'(Position
.Container
, N
);
269 procedure Append_Child
270 (Container
: in out Tree
;
272 New_Item
: Element_Type
;
273 Count
: Count_Type
:= 1)
275 First
, Last
: Tree_Node_Access
;
278 if Parent
= No_Element
then
279 raise Constraint_Error
with "Parent cursor has no element";
282 if Parent
.Container
/= Container
'Unrestricted_Access then
283 raise Program_Error
with "Parent cursor not in container";
290 if Container
.Busy
> 0 then
292 with "attempt to tamper with cursors (tree is busy)";
295 First
:= new Tree_Node_Type
'(Parent => Parent.Node,
301 for J in Count_Type'(2) .. Count
loop
303 -- Reclaim other nodes if Storage_Error. ???
305 Last
.Next
:= new Tree_Node_Type
'(Parent => Parent.Node,
316 Parent => Parent.Node,
317 Before => null); -- null means "insert at end of list"
319 -- In order for operation Node_Count to complete in O(1) time, we cache
320 -- the count value. Here we increment the total count by the number of
321 -- nodes we just inserted.
323 Container.Count := Container.Count + Count;
330 procedure Assign (Target : in out Tree; Source : Tree) is
331 Source_Count : constant Count_Type := Source.Count;
332 Target_Count : Count_Type;
335 if Target'Address = Source'Address then
339 Target.Clear; -- checks busy bit
341 -- Copy_Children returns the number of nodes that it allocates, but it
342 -- does this by incrementing the count value passed in, so we must
343 -- initialize the count before calling Copy_Children.
347 -- Note that Copy_Children inserts the newly-allocated children into
348 -- their parent list only after the allocation of all the children has
349 -- succeeded. This preserves invariants even if the allocation fails.
351 Copy_Children (Source.Root.Children, Root_Node (Target), Target_Count);
352 pragma Assert (Target_Count = Source_Count);
354 Target.Count := Source_Count;
361 function Child_Count (Parent : Cursor) return Count_Type is
363 return (if Parent = No_Element
364 then 0 else Child_Count (Parent.Node.Children));
367 function Child_Count (Children : Children_Type) return Count_Type is
369 Node : Tree_Node_Access;
373 Node := Children.First;
374 while Node /= null loop
375 Result := Result + 1;
386 function Child_Depth (Parent, Child : Cursor) return Count_Type is
388 N : Tree_Node_Access;
391 if Parent = No_Element then
392 raise Constraint_Error with "Parent cursor has no element";
395 if Child = No_Element then
396 raise Constraint_Error with "Child cursor has no element";
399 if Parent.Container /= Child.Container then
400 raise Program_Error with "Parent and Child in different containers";
405 while N /= Parent.Node loop
406 Result := Result + 1;
410 raise Program_Error with "Parent is not ancestor of Child";
421 procedure Clear (Container : in out Tree) is
422 Container_Count, Children_Count : Count_Type;
425 if Container.Busy > 0 then
427 with "attempt to tamper with cursors (tree is busy)";
430 -- We first set the container count to 0, in order to preserve
431 -- invariants in case the deallocation fails. (This works because
432 -- Deallocate_Children immediately removes the children from their
433 -- parent, and then does the actual deallocation.)
435 Container_Count := Container.Count;
436 Container.Count := 0;
438 -- Deallocate_Children returns the number of nodes that it deallocates,
439 -- but it does this by incrementing the count value that is passed in,
440 -- so we must first initialize the count return value before calling it.
444 -- See comment above. Deallocate_Children immediately removes the
445 -- children list from their parent node (here, the root of the tree),
446 -- and only after that does it attempt the actual deallocation. So even
447 -- if the deallocation fails, the representation invariants for the tree
450 Deallocate_Children (Root_Node (Container), Children_Count);
451 pragma Assert (Children_Count = Container_Count);
454 ------------------------
455 -- Constant_Reference --
456 ------------------------
458 function Constant_Reference
459 (Container : aliased Tree;
460 Position : Cursor) return Constant_Reference_Type
463 if Position.Container = null then
464 raise Constraint_Error with
465 "Position cursor has no element";
468 if Position.Container /= Container'Unrestricted_Access then
469 raise Program_Error with
470 "Position cursor designates wrong container";
473 if Position.Node = Root_Node (Container) then
474 raise Program_Error with "Position cursor designates root";
477 -- Implement Vet for multiway tree???
478 -- pragma Assert (Vet (Position),
479 -- "Position cursor in Constant_Reference is bad");
482 C : Tree renames Position.Container.all;
483 B : Natural renames C.Busy;
484 L : Natural renames C.Lock;
486 return R : constant Constant_Reference_Type :=
487 (Element => Position.Node.Element'Access,
488 Control => (Controlled with Container'Unrestricted_Access))
494 end Constant_Reference;
502 Item : Element_Type) return Boolean
505 return Find (Container, Item) /= No_Element;
512 function Copy (Source : Tree) return Tree is
514 return Target : Tree do
516 (Source => Source.Root.Children,
517 Parent => Root_Node (Target),
518 Count => Target.Count);
520 pragma Assert (Target.Count = Source.Count);
528 procedure Copy_Children
529 (Source : Children_Type;
530 Parent : Tree_Node_Access;
531 Count : in out Count_Type)
533 pragma Assert (Parent /= null);
534 pragma Assert (Parent.Children.First = null);
535 pragma Assert (Parent.Children.Last = null);
538 C : Tree_Node_Access;
541 -- We special-case the first allocation, in order to establish the
542 -- representation invariants for type Children_Type.
558 -- The representation invariants for the Children_Type list have been
559 -- established, so we can now copy the remaining children of Source.
566 Target => CC.Last.Next,
569 CC.Last.Next.Prev := CC.Last;
570 CC.Last := CC.Last.Next;
575 -- Add the newly-allocated children to their parent list only after the
576 -- allocation has succeeded, so as to preserve invariants of the parent.
578 Parent.Children := CC;
585 procedure Copy_Subtree
586 (Target : in out Tree;
591 Target_Subtree : Tree_Node_Access;
592 Target_Count : Count_Type;
595 if Parent = No_Element then
596 raise Constraint_Error with "Parent cursor has no element";
599 if Parent.Container /= Target'Unrestricted_Access then
600 raise Program_Error with "Parent cursor not in container";
603 if Before /= No_Element then
604 if Before.Container /= Target'Unrestricted_Access then
605 raise Program_Error with "Before cursor not in container";
608 if Before.Node.Parent /= Parent.Node then
609 raise Constraint_Error with "Before cursor not child of Parent";
613 if Source = No_Element then
617 if Is_Root (Source) then
618 raise Constraint_Error with "Source cursor designates root";
621 -- Copy_Subtree returns a count of the number of nodes that it
622 -- allocates, but it works by incrementing the value that is passed
623 -- in. We must therefore initialize the count value before calling
629 (Source => Source.Node,
630 Parent => Parent.Node,
631 Target => Target_Subtree,
632 Count => Target_Count);
634 pragma Assert (Target_Subtree /= null);
635 pragma Assert (Target_Subtree.Parent = Parent.Node);
636 pragma Assert (Target_Count >= 1);
639 (Subtree => Target_Subtree,
640 Parent => Parent.Node,
641 Before => Before.Node);
643 -- In order for operation Node_Count to complete in O(1) time, we cache
644 -- the count value. Here we increment the total count by the number of
645 -- nodes we just inserted.
647 Target.Count := Target.Count + Target_Count;
650 procedure Copy_Subtree
651 (Source : Tree_Node_Access;
652 Parent : Tree_Node_Access;
653 Target : out Tree_Node_Access;
654 Count : in out Count_Type)
657 Target := new Tree_Node_Type'(Element
=> Source
.Element
,
664 (Source
=> Source
.Children
,
669 -------------------------
670 -- Deallocate_Children --
671 -------------------------
673 procedure Deallocate_Children
674 (Subtree
: Tree_Node_Access
;
675 Count
: in out Count_Type
)
677 pragma Assert
(Subtree
/= null);
679 CC
: Children_Type
:= Subtree
.Children
;
680 C
: Tree_Node_Access
;
683 -- We immediately remove the children from their parent, in order to
684 -- preserve invariants in case the deallocation fails.
686 Subtree
.Children
:= Children_Type
'(others => null);
688 while CC.First /= null loop
692 Deallocate_Subtree (C, Count);
694 end Deallocate_Children;
696 ------------------------
697 -- Deallocate_Subtree --
698 ------------------------
700 procedure Deallocate_Subtree
701 (Subtree : in out Tree_Node_Access;
702 Count : in out Count_Type)
705 Deallocate_Children (Subtree, Count);
706 Deallocate_Node (Subtree);
708 end Deallocate_Subtree;
710 ---------------------
711 -- Delete_Children --
712 ---------------------
714 procedure Delete_Children
715 (Container : in out Tree;
721 if Parent = No_Element then
722 raise Constraint_Error with "Parent cursor has no element";
725 if Parent.Container /= Container'Unrestricted_Access then
726 raise Program_Error with "Parent cursor not in container";
729 if Container.Busy > 0 then
731 with "attempt to tamper with cursors (tree is busy)";
734 -- Deallocate_Children returns a count of the number of nodes that it
735 -- deallocates, but it works by incrementing the value that is passed
736 -- in. We must therefore initialize the count value before calling
737 -- Deallocate_Children.
741 Deallocate_Children (Parent.Node, Count);
742 pragma Assert (Count <= Container.Count);
744 Container.Count := Container.Count - Count;
751 procedure Delete_Leaf
752 (Container : in out Tree;
753 Position : in out Cursor)
755 X : Tree_Node_Access;
758 if Position = No_Element then
759 raise Constraint_Error with "Position cursor has no element";
762 if Position.Container /= Container'Unrestricted_Access then
763 raise Program_Error with "Position cursor not in container";
766 if Is_Root (Position) then
767 raise Program_Error with "Position cursor designates root";
770 if not Is_Leaf (Position) then
771 raise Constraint_Error with "Position cursor does not designate leaf";
774 if Container.Busy > 0 then
776 with "attempt to tamper with cursors (tree is busy)";
780 Position := No_Element;
782 -- Restore represention invariants before attempting the actual
786 Container.Count := Container.Count - 1;
788 -- It is now safe to attempt the deallocation. This leaf node has been
789 -- disassociated from the tree, so even if the deallocation fails,
790 -- representation invariants will remain satisfied.
799 procedure Delete_Subtree
800 (Container : in out Tree;
801 Position : in out Cursor)
803 X : Tree_Node_Access;
807 if Position = No_Element then
808 raise Constraint_Error with "Position cursor has no element";
811 if Position.Container /= Container'Unrestricted_Access then
812 raise Program_Error with "Position cursor not in container";
815 if Is_Root (Position) then
816 raise Program_Error with "Position cursor designates root";
819 if Container.Busy > 0 then
821 with "attempt to tamper with cursors (tree is busy)";
825 Position := No_Element;
827 -- Here is one case where a deallocation failure can result in the
828 -- violation of a representation invariant. We disassociate the subtree
829 -- from the tree now, but we only decrement the total node count after
830 -- we attempt the deallocation. However, if the deallocation fails, the
831 -- total node count will not get decremented.
833 -- One way around this dilemma is to count the nodes in the subtree
834 -- before attempt to delete the subtree, but that is an O(n) operation,
835 -- so it does not seem worth it.
837 -- Perhaps this is much ado about nothing, since the only way
838 -- deallocation can fail is if Controlled Finalization fails: this
839 -- propagates Program_Error so all bets are off anyway. ???
843 -- Deallocate_Subtree returns a count of the number of nodes that it
844 -- deallocates, but it works by incrementing the value that is passed
845 -- in. We must therefore initialize the count value before calling
846 -- Deallocate_Subtree.
850 Deallocate_Subtree (X, Count);
851 pragma Assert (Count <= Container.Count);
853 -- See comments above. We would prefer to do this sooner, but there's no
854 -- way to satisfy that goal without a potentially severe execution
857 Container.Count := Container.Count - Count;
864 function Depth (Position : Cursor) return Count_Type is
866 N : Tree_Node_Access;
873 Result := Result + 1;
883 function Element (Position : Cursor) return Element_Type is
885 if Position.Container = null then
886 raise Constraint_Error with "Position cursor has no element";
889 if Position.Node = Root_Node (Position.Container.all) then
890 raise Program_Error with "Position cursor designates root";
893 return Position.Node.Element;
900 function Equal_Children
901 (Left_Subtree : Tree_Node_Access;
902 Right_Subtree : Tree_Node_Access) return Boolean
904 Left_Children : Children_Type renames Left_Subtree.Children;
905 Right_Children : Children_Type renames Right_Subtree.Children;
907 L, R : Tree_Node_Access;
910 if Child_Count (Left_Children) /= Child_Count (Right_Children) then
914 L := Left_Children.First;
915 R := Right_Children.First;
917 if not Equal_Subtree (L, R) then
932 function Equal_Subtree
933 (Left_Position : Cursor;
934 Right_Position : Cursor) return Boolean
937 if Left_Position = No_Element then
938 raise Constraint_Error with "Left cursor has no element";
941 if Right_Position = No_Element then
942 raise Constraint_Error with "Right cursor has no element";
945 if Left_Position = Right_Position then
949 if Is_Root (Left_Position) then
950 if not Is_Root (Right_Position) then
954 return Equal_Children (Left_Position.Node, Right_Position.Node);
957 if Is_Root (Right_Position) then
961 return Equal_Subtree (Left_Position.Node, Right_Position.Node);
964 function Equal_Subtree
965 (Left_Subtree : Tree_Node_Access;
966 Right_Subtree : Tree_Node_Access) return Boolean
969 if Left_Subtree.Element /= Right_Subtree.Element then
973 return Equal_Children (Left_Subtree, Right_Subtree);
980 procedure Finalize (Object : in out Root_Iterator) is
981 B : Natural renames Object.Container.Busy;
986 procedure Finalize (Control : in out Reference_Control_Type) is
988 if Control.Container /= null then
990 C : Tree renames Control.Container.all;
991 B : Natural renames C.Busy;
992 L : Natural renames C.Lock;
998 Control.Container := null;
1008 Item : Element_Type) return Cursor
1010 N : constant Tree_Node_Access :=
1011 Find_In_Children (Root_Node (Container), Item);
1016 return Cursor'(Container
'Unrestricted_Access, N
);
1024 overriding
function First
(Object
: Subtree_Iterator
) return Cursor
is
1026 if Object
.Subtree
= Root_Node
(Object
.Container
.all) then
1027 return First_Child
(Root
(Object
.Container
.all));
1029 return Cursor
'(Object.Container, Object.Subtree);
1033 overriding function First (Object : Child_Iterator) return Cursor is
1035 return First_Child (Cursor'(Object
.Container
, Object
.Subtree
));
1042 function First_Child
(Parent
: Cursor
) return Cursor
is
1043 Node
: Tree_Node_Access
;
1046 if Parent
= No_Element
then
1047 raise Constraint_Error
with "Parent cursor has no element";
1050 Node
:= Parent
.Node
.Children
.First
;
1056 return Cursor
'(Parent.Container, Node);
1059 -------------------------
1060 -- First_Child_Element --
1061 -------------------------
1063 function First_Child_Element (Parent : Cursor) return Element_Type is
1065 return Element (First_Child (Parent));
1066 end First_Child_Element;
1068 ----------------------
1069 -- Find_In_Children --
1070 ----------------------
1072 function Find_In_Children
1073 (Subtree : Tree_Node_Access;
1074 Item : Element_Type) return Tree_Node_Access
1076 N, Result : Tree_Node_Access;
1079 N := Subtree.Children.First;
1080 while N /= null loop
1081 Result := Find_In_Subtree (N, Item);
1083 if Result /= null then
1091 end Find_In_Children;
1093 ---------------------
1094 -- Find_In_Subtree --
1095 ---------------------
1097 function Find_In_Subtree
1099 Item : Element_Type) return Cursor
1101 Result : Tree_Node_Access;
1104 if Position = No_Element then
1105 raise Constraint_Error with "Position cursor has no element";
1108 -- Commented out pending official ruling by ARG. ???
1110 -- if Position.Container /= Container'Unrestricted_Access then
1111 -- raise Program_Error with "Position cursor not in container";
1115 (if Is_Root (Position)
1116 then Find_In_Children (Position.Node, Item)
1117 else Find_In_Subtree (Position.Node, Item));
1119 if Result = null then
1123 return Cursor'(Position
.Container
, Result
);
1124 end Find_In_Subtree
;
1126 function Find_In_Subtree
1127 (Subtree
: Tree_Node_Access
;
1128 Item
: Element_Type
) return Tree_Node_Access
1131 if Subtree
.Element
= Item
then
1135 return Find_In_Children
(Subtree
, Item
);
1136 end Find_In_Subtree
;
1142 function Has_Element
(Position
: Cursor
) return Boolean is
1144 return (if Position
= No_Element
then False
1145 else Position
.Node
.Parent
/= null);
1152 procedure Insert_Child
1153 (Container
: in out Tree
;
1156 New_Item
: Element_Type
;
1157 Count
: Count_Type
:= 1)
1160 pragma Unreferenced
(Position
);
1163 Insert_Child
(Container
, Parent
, Before
, New_Item
, Position
, Count
);
1166 procedure Insert_Child
1167 (Container
: in out Tree
;
1170 New_Item
: Element_Type
;
1171 Position
: out Cursor
;
1172 Count
: Count_Type
:= 1)
1174 Last
: Tree_Node_Access
;
1177 if Parent
= No_Element
then
1178 raise Constraint_Error
with "Parent cursor has no element";
1181 if Parent
.Container
/= Container
'Unrestricted_Access then
1182 raise Program_Error
with "Parent cursor not in container";
1185 if Before
/= No_Element
then
1186 if Before
.Container
/= Container
'Unrestricted_Access then
1187 raise Program_Error
with "Before cursor not in container";
1190 if Before
.Node
.Parent
/= Parent
.Node
then
1191 raise Constraint_Error
with "Parent cursor not parent of Before";
1196 Position
:= No_Element
; -- Need ruling from ARG ???
1200 if Container
.Busy
> 0 then
1202 with "attempt to tamper with cursors (tree is busy)";
1205 Position
.Container
:= Parent
.Container
;
1206 Position
.Node
:= new Tree_Node_Type
'(Parent => Parent.Node,
1207 Element => New_Item,
1210 Last := Position.Node;
1212 for J in Count_Type'(2) .. Count
loop
1214 -- Reclaim other nodes if Storage_Error. ???
1216 Last
.Next
:= new Tree_Node_Type
'(Parent => Parent.Node,
1218 Element => New_Item,
1225 (First => Position.Node,
1227 Parent => Parent.Node,
1228 Before => Before.Node);
1230 -- In order for operation Node_Count to complete in O(1) time, we cache
1231 -- the count value. Here we increment the total count by the number of
1232 -- nodes we just inserted.
1234 Container.Count := Container.Count + Count;
1237 procedure Insert_Child
1238 (Container : in out Tree;
1241 Position : out Cursor;
1242 Count : Count_Type := 1)
1244 Last : Tree_Node_Access;
1247 if Parent = No_Element then
1248 raise Constraint_Error with "Parent cursor has no element";
1251 if Parent.Container /= Container'Unrestricted_Access then
1252 raise Program_Error with "Parent cursor not in container";
1255 if Before /= No_Element then
1256 if Before.Container /= Container'Unrestricted_Access then
1257 raise Program_Error with "Before cursor not in container";
1260 if Before.Node.Parent /= Parent.Node then
1261 raise Constraint_Error with "Parent cursor not parent of Before";
1266 Position := No_Element; -- Need ruling from ARG ???
1270 if Container.Busy > 0 then
1272 with "attempt to tamper with cursors (tree is busy)";
1275 Position.Container := Parent.Container;
1276 Position.Node := new Tree_Node_Type'(Parent
=> Parent
.Node
,
1280 Last
:= Position
.Node
;
1282 for J
in Count_Type
'(2) .. Count loop
1284 -- Reclaim other nodes if Storage_Error. ???
1286 Last.Next := new Tree_Node_Type'(Parent
=> Parent
.Node
,
1295 (First
=> Position
.Node
,
1297 Parent
=> Parent
.Node
,
1298 Before
=> Before
.Node
);
1300 -- In order for operation Node_Count to complete in O(1) time, we cache
1301 -- the count value. Here we increment the total count by the number of
1302 -- nodes we just inserted.
1304 Container
.Count
:= Container
.Count
+ Count
;
1307 -------------------------
1308 -- Insert_Subtree_List --
1309 -------------------------
1311 procedure Insert_Subtree_List
1312 (First
: Tree_Node_Access
;
1313 Last
: Tree_Node_Access
;
1314 Parent
: Tree_Node_Access
;
1315 Before
: Tree_Node_Access
)
1317 pragma Assert
(Parent
/= null);
1318 C
: Children_Type
renames Parent
.Children
;
1321 -- This is a simple utility operation to insert a list of nodes (from
1322 -- First..Last) as children of Parent. The Before node specifies where
1323 -- the new children should be inserted relative to the existing
1326 if First
= null then
1327 pragma Assert
(Last
= null);
1331 pragma Assert
(Last
/= null);
1332 pragma Assert
(Before
= null or else Before
.Parent
= Parent
);
1334 if C
.First
= null then
1336 C
.First
.Prev
:= null;
1338 C
.Last
.Next
:= null;
1340 elsif Before
= null then -- means "insert after existing nodes"
1341 C
.Last
.Next
:= First
;
1342 First
.Prev
:= C
.Last
;
1344 C
.Last
.Next
:= null;
1346 elsif Before
= C
.First
then
1347 Last
.Next
:= C
.First
;
1348 C
.First
.Prev
:= Last
;
1350 C
.First
.Prev
:= null;
1353 Before
.Prev
.Next
:= First
;
1354 First
.Prev
:= Before
.Prev
;
1355 Last
.Next
:= Before
;
1356 Before
.Prev
:= Last
;
1358 end Insert_Subtree_List
;
1360 -------------------------
1361 -- Insert_Subtree_Node --
1362 -------------------------
1364 procedure Insert_Subtree_Node
1365 (Subtree
: Tree_Node_Access
;
1366 Parent
: Tree_Node_Access
;
1367 Before
: Tree_Node_Access
)
1370 -- This is a simple wrapper operation to insert a single child into the
1371 -- Parent's children list.
1378 end Insert_Subtree_Node
;
1384 function Is_Empty
(Container
: Tree
) return Boolean is
1386 return Container
.Root
.Children
.First
= null;
1393 function Is_Leaf
(Position
: Cursor
) return Boolean is
1395 return (if Position
= No_Element
then False
1396 else Position
.Node
.Children
.First
= null);
1403 function Is_Reachable
(From
, To
: Tree_Node_Access
) return Boolean is
1404 pragma Assert
(From
/= null);
1405 pragma Assert
(To
/= null);
1407 N
: Tree_Node_Access
;
1411 while N
/= null loop
1426 function Is_Root
(Position
: Cursor
) return Boolean is
1428 return (if Position
.Container
= null then False
1429 else Position
= Root
(Position
.Container
.all));
1438 Process
: not null access procedure (Position
: Cursor
))
1440 B
: Natural renames Container
'Unrestricted_Access.all.Busy
;
1446 (Container
=> Container
'Unrestricted_Access,
1447 Subtree
=> Root_Node
(Container
),
1448 Process
=> Process
);
1458 function Iterate
(Container
: Tree
)
1459 return Tree_Iterator_Interfaces
.Forward_Iterator
'Class
1462 return Iterate_Subtree
(Root
(Container
));
1465 ----------------------
1466 -- Iterate_Children --
1467 ----------------------
1469 procedure Iterate_Children
1471 Process
: not null access procedure (Position
: Cursor
))
1474 if Parent
= No_Element
then
1475 raise Constraint_Error
with "Parent cursor has no element";
1479 B
: Natural renames Parent
.Container
.Busy
;
1480 C
: Tree_Node_Access
;
1485 C
:= Parent
.Node
.Children
.First
;
1486 while C
/= null loop
1487 Process
(Position
=> Cursor
'(Parent.Container, Node => C));
1498 end Iterate_Children;
1500 procedure Iterate_Children
1501 (Container : Tree_Access;
1502 Subtree : Tree_Node_Access;
1503 Process : not null access procedure (Position : Cursor))
1505 Node : Tree_Node_Access;
1508 -- This is a helper function to recursively iterate over all the nodes
1509 -- in a subtree, in depth-first fashion. This particular helper just
1510 -- visits the children of this subtree, not the root of the subtree node
1511 -- itself. This is useful when starting from the ultimate root of the
1512 -- entire tree (see Iterate), as that root does not have an element.
1514 Node := Subtree.Children.First;
1515 while Node /= null loop
1516 Iterate_Subtree (Container, Node, Process);
1519 end Iterate_Children;
1521 function Iterate_Children
1524 return Tree_Iterator_Interfaces.Reversible_Iterator'Class
1526 C : constant Tree_Access := Container'Unrestricted_Access;
1527 B : Natural renames C.Busy;
1530 if Parent = No_Element then
1531 raise Constraint_Error with "Parent cursor has no element";
1534 if Parent.Container /= C then
1535 raise Program_Error with "Parent cursor not in container";
1538 return It : constant Child_Iterator :=
1539 (Limited_Controlled with
1541 Subtree => Parent.Node)
1545 end Iterate_Children;
1547 ---------------------
1548 -- Iterate_Subtree --
1549 ---------------------
1551 function Iterate_Subtree
1553 return Tree_Iterator_Interfaces.Forward_Iterator'Class
1556 if Position = No_Element then
1557 raise Constraint_Error with "Position cursor has no element";
1560 -- Implement Vet for multiway trees???
1561 -- pragma Assert (Vet (Position), "bad subtree cursor");
1564 B : Natural renames Position.Container.Busy;
1566 return It : constant Subtree_Iterator :=
1567 (Limited_Controlled with
1568 Container => Position.Container,
1569 Subtree => Position.Node)
1574 end Iterate_Subtree;
1576 procedure Iterate_Subtree
1578 Process : not null access procedure (Position : Cursor))
1581 if Position = No_Element then
1582 raise Constraint_Error with "Position cursor has no element";
1586 B : Natural renames Position.Container.Busy;
1591 if Is_Root (Position) then
1592 Iterate_Children (Position.Container, Position.Node, Process);
1594 Iterate_Subtree (Position.Container, Position.Node, Process);
1604 end Iterate_Subtree;
1606 procedure Iterate_Subtree
1607 (Container : Tree_Access;
1608 Subtree : Tree_Node_Access;
1609 Process : not null access procedure (Position : Cursor))
1612 -- This is a helper function to recursively iterate over all the nodes
1613 -- in a subtree, in depth-first fashion. It first visits the root of the
1614 -- subtree, then visits its children.
1616 Process (Cursor'(Container
, Subtree
));
1617 Iterate_Children
(Container
, Subtree
, Process
);
1618 end Iterate_Subtree
;
1624 overriding
function Last
(Object
: Child_Iterator
) return Cursor
is
1626 return Last_Child
(Cursor
'(Object.Container, Object.Subtree));
1633 function Last_Child (Parent : Cursor) return Cursor is
1634 Node : Tree_Node_Access;
1637 if Parent = No_Element then
1638 raise Constraint_Error with "Parent cursor has no element";
1641 Node := Parent.Node.Children.Last;
1647 return (Parent.Container, Node);
1650 ------------------------
1651 -- Last_Child_Element --
1652 ------------------------
1654 function Last_Child_Element (Parent : Cursor) return Element_Type is
1656 return Element (Last_Child (Parent));
1657 end Last_Child_Element;
1663 procedure Move (Target : in out Tree; Source : in out Tree) is
1664 Node : Tree_Node_Access;
1667 if Target'Address = Source'Address then
1671 if Source.Busy > 0 then
1673 with "attempt to tamper with cursors of Source (tree is busy)";
1676 Target.Clear; -- checks busy bit
1678 Target.Root.Children := Source.Root.Children;
1679 Source.Root.Children := Children_Type'(others => null);
1681 Node
:= Target
.Root
.Children
.First
;
1682 while Node
/= null loop
1683 Node
.Parent
:= Root_Node
(Target
);
1687 Target
.Count
:= Source
.Count
;
1696 (Object
: Subtree_Iterator
;
1697 Position
: Cursor
) return Cursor
1699 Node
: Tree_Node_Access
;
1702 if Position
.Container
= null then
1706 if Position
.Container
/= Object
.Container
then
1707 raise Program_Error
with
1708 "Position cursor of Next designates wrong tree";
1711 Node
:= Position
.Node
;
1713 if Node
.Children
.First
/= null then
1714 return Cursor
'(Object.Container, Node.Children.First);
1717 while Node /= Object.Subtree loop
1718 if Node.Next /= null then
1719 return Cursor'(Object
.Container
, Node
.Next
);
1722 Node
:= Node
.Parent
;
1729 (Object
: Child_Iterator
;
1730 Position
: Cursor
) return Cursor
1733 if Position
.Container
= null then
1737 if Position
.Container
/= Object
.Container
then
1738 raise Program_Error
with
1739 "Position cursor of Next designates wrong tree";
1742 return Next_Sibling
(Position
);
1749 function Next_Sibling
(Position
: Cursor
) return Cursor
is
1751 if Position
= No_Element
then
1755 if Position
.Node
.Next
= null then
1759 return Cursor
'(Position.Container, Position.Node.Next);
1762 procedure Next_Sibling (Position : in out Cursor) is
1764 Position := Next_Sibling (Position);
1771 function Node_Count (Container : Tree) return Count_Type is
1773 -- Container.Count is the number of nodes we have actually allocated. We
1774 -- cache the value specifically so this Node_Count operation can execute
1775 -- in O(1) time, which makes it behave similarly to how the Length
1776 -- selector function behaves for other containers.
1778 -- The cached node count value only describes the nodes we have
1779 -- allocated; the root node itself is not included in that count. The
1780 -- Node_Count operation returns a value that includes the root node
1781 -- (because the RM says so), so we must add 1 to our cached value.
1783 return 1 + Container.Count;
1790 function Parent (Position : Cursor) return Cursor is
1792 if Position = No_Element then
1796 if Position.Node.Parent = null then
1800 return Cursor'(Position
.Container
, Position
.Node
.Parent
);
1807 procedure Prepend_Child
1808 (Container
: in out Tree
;
1810 New_Item
: Element_Type
;
1811 Count
: Count_Type
:= 1)
1813 First
, Last
: Tree_Node_Access
;
1816 if Parent
= No_Element
then
1817 raise Constraint_Error
with "Parent cursor has no element";
1820 if Parent
.Container
/= Container
'Unrestricted_Access then
1821 raise Program_Error
with "Parent cursor not in container";
1828 if Container
.Busy
> 0 then
1830 with "attempt to tamper with cursors (tree is busy)";
1833 First
:= new Tree_Node_Type
'(Parent => Parent.Node,
1834 Element => New_Item,
1839 for J in Count_Type'(2) .. Count
loop
1841 -- Reclaim other nodes if Storage_Error???
1843 Last
.Next
:= new Tree_Node_Type
'(Parent => Parent.Node,
1845 Element => New_Item,
1854 Parent => Parent.Node,
1855 Before => Parent.Node.Children.First);
1857 -- In order for operation Node_Count to complete in O(1) time, we cache
1858 -- the count value. Here we increment the total count by the number of
1859 -- nodes we just inserted.
1861 Container.Count := Container.Count + Count;
1868 overriding function Previous
1869 (Object : Child_Iterator;
1870 Position : Cursor) return Cursor
1873 if Position.Container = null then
1877 if Position.Container /= Object.Container then
1878 raise Program_Error with
1879 "Position cursor of Previous designates wrong tree";
1882 return Previous_Sibling (Position);
1885 ----------------------
1886 -- Previous_Sibling --
1887 ----------------------
1889 function Previous_Sibling (Position : Cursor) return Cursor is
1892 (if Position = No_Element then No_Element
1893 elsif Position.Node.Prev = null then No_Element
1894 else Cursor'(Position
.Container
, Position
.Node
.Prev
));
1895 end Previous_Sibling
;
1897 procedure Previous_Sibling
(Position
: in out Cursor
) is
1899 Position
:= Previous_Sibling
(Position
);
1900 end Previous_Sibling
;
1906 procedure Query_Element
1908 Process
: not null access procedure (Element
: Element_Type
))
1911 if Position
= No_Element
then
1912 raise Constraint_Error
with "Position cursor has no element";
1915 if Is_Root
(Position
) then
1916 raise Program_Error
with "Position cursor designates root";
1920 T
: Tree
renames Position
.Container
.all'Unrestricted_Access.all;
1921 B
: Natural renames T
.Busy
;
1922 L
: Natural renames T
.Lock
;
1928 Process
(Position
.Node
.Element
);
1947 (Stream
: not null access Root_Stream_Type
'Class;
1948 Container
: out Tree
)
1950 procedure Read_Children
(Subtree
: Tree_Node_Access
);
1952 function Read_Subtree
1953 (Parent
: Tree_Node_Access
) return Tree_Node_Access
;
1955 Total_Count
: Count_Type
'Base;
1956 -- Value read from the stream that says how many elements follow
1958 Read_Count
: Count_Type
'Base;
1959 -- Actual number of elements read from the stream
1965 procedure Read_Children
(Subtree
: Tree_Node_Access
) is
1966 pragma Assert
(Subtree
/= null);
1967 pragma Assert
(Subtree
.Children
.First
= null);
1968 pragma Assert
(Subtree
.Children
.Last
= null);
1970 Count
: Count_Type
'Base;
1971 -- Number of child subtrees
1976 Count_Type
'Read (Stream
, Count
);
1979 raise Program_Error
with "attempt to read from corrupt stream";
1986 C
.First
:= Read_Subtree
(Parent
=> Subtree
);
1989 for J
in Count_Type
'(2) .. Count loop
1990 C.Last.Next := Read_Subtree (Parent => Subtree);
1991 C.Last.Next.Prev := C.Last;
1992 C.Last := C.Last.Next;
1995 -- Now that the allocation and reads have completed successfully, it
1996 -- is safe to link the children to their parent.
1998 Subtree.Children := C;
2005 function Read_Subtree
2006 (Parent : Tree_Node_Access) return Tree_Node_Access
2008 Subtree : constant Tree_Node_Access :=
2011 Element
=> Element_Type
'Input (Stream
),
2015 Read_Count
:= Read_Count
+ 1;
2017 Read_Children
(Subtree
);
2022 -- Start of processing for Read
2025 Container
.Clear
; -- checks busy bit
2027 Count_Type
'Read (Stream
, Total_Count
);
2029 if Total_Count
< 0 then
2030 raise Program_Error
with "attempt to read from corrupt stream";
2033 if Total_Count
= 0 then
2039 Read_Children
(Root_Node
(Container
));
2041 if Read_Count
/= Total_Count
then
2042 raise Program_Error
with "attempt to read from corrupt stream";
2045 Container
.Count
:= Total_Count
;
2049 (Stream
: not null access Root_Stream_Type
'Class;
2050 Position
: out Cursor
)
2053 raise Program_Error
with "attempt to read tree cursor from stream";
2057 (Stream
: not null access Root_Stream_Type
'Class;
2058 Item
: out Reference_Type
)
2061 raise Program_Error
with "attempt to stream reference";
2065 (Stream
: not null access Root_Stream_Type
'Class;
2066 Item
: out Constant_Reference_Type
)
2069 raise Program_Error
with "attempt to stream reference";
2077 (Container
: aliased in out Tree
;
2078 Position
: Cursor
) return Reference_Type
2081 if Position
.Container
= null then
2082 raise Constraint_Error
with
2083 "Position cursor has no element";
2086 if Position
.Container
/= Container
'Unrestricted_Access then
2087 raise Program_Error
with
2088 "Position cursor designates wrong container";
2091 if Position
.Node
= Root_Node
(Container
) then
2092 raise Program_Error
with "Position cursor designates root";
2095 -- Implement Vet for multiway tree???
2096 -- pragma Assert (Vet (Position),
2097 -- "Position cursor in Constant_Reference is bad");
2100 C
: Tree
renames Position
.Container
.all;
2101 B
: Natural renames C
.Busy
;
2102 L
: Natural renames C
.Lock
;
2104 return R
: constant Reference_Type
:=
2105 (Element
=> Position
.Node
.Element
'Access,
2106 Control
=> (Controlled
with Position
.Container
))
2114 --------------------
2115 -- Remove_Subtree --
2116 --------------------
2118 procedure Remove_Subtree
(Subtree
: Tree_Node_Access
) is
2119 C
: Children_Type
renames Subtree
.Parent
.Children
;
2122 -- This is a utility operation to remove a subtree node from its
2123 -- parent's list of children.
2125 if C
.First
= Subtree
then
2126 pragma Assert
(Subtree
.Prev
= null);
2128 if C
.Last
= Subtree
then
2129 pragma Assert
(Subtree
.Next
= null);
2134 C
.First
:= Subtree
.Next
;
2135 C
.First
.Prev
:= null;
2138 elsif C
.Last
= Subtree
then
2139 pragma Assert
(Subtree
.Next
= null);
2140 C
.Last
:= Subtree
.Prev
;
2141 C
.Last
.Next
:= null;
2144 Subtree
.Prev
.Next
:= Subtree
.Next
;
2145 Subtree
.Next
.Prev
:= Subtree
.Prev
;
2149 ----------------------
2150 -- Replace_Element --
2151 ----------------------
2153 procedure Replace_Element
2154 (Container
: in out Tree
;
2156 New_Item
: Element_Type
)
2159 if Position
= No_Element
then
2160 raise Constraint_Error
with "Position cursor has no element";
2163 if Position
.Container
/= Container
'Unrestricted_Access then
2164 raise Program_Error
with "Position cursor not in container";
2167 if Is_Root
(Position
) then
2168 raise Program_Error
with "Position cursor designates root";
2171 if Container
.Lock
> 0 then
2173 with "attempt to tamper with elements (tree is locked)";
2176 Position
.Node
.Element
:= New_Item
;
2177 end Replace_Element
;
2179 ------------------------------
2180 -- Reverse_Iterate_Children --
2181 ------------------------------
2183 procedure Reverse_Iterate_Children
2185 Process
: not null access procedure (Position
: Cursor
))
2188 if Parent
= No_Element
then
2189 raise Constraint_Error
with "Parent cursor has no element";
2193 B
: Natural renames Parent
.Container
.Busy
;
2194 C
: Tree_Node_Access
;
2199 C
:= Parent
.Node
.Children
.Last
;
2200 while C
/= null loop
2201 Process
(Position
=> Cursor
'(Parent.Container, Node => C));
2212 end Reverse_Iterate_Children;
2218 function Root (Container : Tree) return Cursor is
2220 return (Container'Unrestricted_Access, Root_Node (Container));
2227 function Root_Node (Container : Tree) return Tree_Node_Access is
2228 type Root_Node_Access is access all Root_Node_Type;
2229 for Root_Node_Access'Storage_Size use 0;
2230 pragma Convention (C, Root_Node_Access);
2232 function To_Tree_Node_Access is
2233 new Ada.Unchecked_Conversion (Root_Node_Access, Tree_Node_Access);
2235 -- Start of processing for Root_Node
2238 -- This is a utility function for converting from an access type that
2239 -- designates the distinguished root node to an access type designating
2240 -- a non-root node. The representation of a root node does not have an
2241 -- element, but is otherwise identical to a non-root node, so the
2242 -- conversion itself is safe.
2244 return To_Tree_Node_Access (Container.Root'Unrestricted_Access);
2247 ---------------------
2248 -- Splice_Children --
2249 ---------------------
2251 procedure Splice_Children
2252 (Target : in out Tree;
2253 Target_Parent : Cursor;
2255 Source : in out Tree;
2256 Source_Parent : Cursor)
2261 if Target_Parent = No_Element then
2262 raise Constraint_Error with "Target_Parent cursor has no element";
2265 if Target_Parent.Container /= Target'Unrestricted_Access then
2267 with "Target_Parent cursor not in Target container";
2270 if Before /= No_Element then
2271 if Before.Container /= Target'Unrestricted_Access then
2273 with "Before cursor not in Target container";
2276 if Before.Node.Parent /= Target_Parent.Node then
2277 raise Constraint_Error
2278 with "Before cursor not child of Target_Parent";
2282 if Source_Parent = No_Element then
2283 raise Constraint_Error with "Source_Parent cursor has no element";
2286 if Source_Parent.Container /= Source'Unrestricted_Access then
2288 with "Source_Parent cursor not in Source container";
2291 if Target'Address = Source'Address then
2292 if Target_Parent = Source_Parent then
2296 if Target.Busy > 0 then
2298 with "attempt to tamper with cursors (Target tree is busy)";
2301 if Is_Reachable (From => Target_Parent.Node,
2302 To => Source_Parent.Node)
2304 raise Constraint_Error
2305 with "Source_Parent is ancestor of Target_Parent";
2309 (Target_Parent => Target_Parent.Node,
2310 Before => Before.Node,
2311 Source_Parent => Source_Parent.Node);
2316 if Target.Busy > 0 then
2318 with "attempt to tamper with cursors (Target tree is busy)";
2321 if Source.Busy > 0 then
2323 with "attempt to tamper with cursors (Source tree is busy)";
2326 -- We cache the count of the nodes we have allocated, so that operation
2327 -- Node_Count can execute in O(1) time. But that means we must count the
2328 -- nodes in the subtree we remove from Source and insert into Target, in
2329 -- order to keep the count accurate.
2331 Count := Subtree_Node_Count (Source_Parent.Node);
2332 pragma Assert (Count >= 1);
2334 Count := Count - 1; -- because Source_Parent node does not move
2337 (Target_Parent => Target_Parent.Node,
2338 Before => Before.Node,
2339 Source_Parent => Source_Parent.Node);
2341 Source.Count := Source.Count - Count;
2342 Target.Count := Target.Count + Count;
2343 end Splice_Children;
2345 procedure Splice_Children
2346 (Container : in out Tree;
2347 Target_Parent : Cursor;
2349 Source_Parent : Cursor)
2352 if Target_Parent = No_Element then
2353 raise Constraint_Error with "Target_Parent cursor has no element";
2356 if Target_Parent.Container /= Container'Unrestricted_Access then
2358 with "Target_Parent cursor not in container";
2361 if Before /= No_Element then
2362 if Before.Container /= Container'Unrestricted_Access then
2364 with "Before cursor not in container";
2367 if Before.Node.Parent /= Target_Parent.Node then
2368 raise Constraint_Error
2369 with "Before cursor not child of Target_Parent";
2373 if Source_Parent = No_Element then
2374 raise Constraint_Error with "Source_Parent cursor has no element";
2377 if Source_Parent.Container /= Container'Unrestricted_Access then
2379 with "Source_Parent cursor not in container";
2382 if Target_Parent = Source_Parent then
2386 if Container.Busy > 0 then
2388 with "attempt to tamper with cursors (tree is busy)";
2391 if Is_Reachable (From => Target_Parent.Node,
2392 To => Source_Parent.Node)
2394 raise Constraint_Error
2395 with "Source_Parent is ancestor of Target_Parent";
2399 (Target_Parent => Target_Parent.Node,
2400 Before => Before.Node,
2401 Source_Parent => Source_Parent.Node);
2402 end Splice_Children;
2404 procedure Splice_Children
2405 (Target_Parent : Tree_Node_Access;
2406 Before : Tree_Node_Access;
2407 Source_Parent : Tree_Node_Access)
2409 CC : constant Children_Type := Source_Parent.Children;
2410 C : Tree_Node_Access;
2413 -- This is a utility operation to remove the children from
2414 -- Source parent and insert them into Target parent.
2416 Source_Parent.Children := Children_Type'(others => null);
2418 -- Fix up the Parent pointers of each child to designate
2419 -- its new Target parent.
2422 while C
/= null loop
2423 C
.Parent
:= Target_Parent
;
2430 Parent
=> Target_Parent
,
2432 end Splice_Children
;
2434 --------------------
2435 -- Splice_Subtree --
2436 --------------------
2438 procedure Splice_Subtree
2439 (Target
: in out Tree
;
2442 Source
: in out Tree
;
2443 Position
: in out Cursor
)
2445 Subtree_Count
: Count_Type
;
2448 if Parent
= No_Element
then
2449 raise Constraint_Error
with "Parent cursor has no element";
2452 if Parent
.Container
/= Target
'Unrestricted_Access then
2453 raise Program_Error
with "Parent cursor not in Target container";
2456 if Before
/= No_Element
then
2457 if Before
.Container
/= Target
'Unrestricted_Access then
2458 raise Program_Error
with "Before cursor not in Target container";
2461 if Before
.Node
.Parent
/= Parent
.Node
then
2462 raise Constraint_Error
with "Before cursor not child of Parent";
2466 if Position
= No_Element
then
2467 raise Constraint_Error
with "Position cursor has no element";
2470 if Position
.Container
/= Source
'Unrestricted_Access then
2471 raise Program_Error
with "Position cursor not in Source container";
2474 if Is_Root
(Position
) then
2475 raise Program_Error
with "Position cursor designates root";
2478 if Target
'Address = Source
'Address then
2479 if Position
.Node
.Parent
= Parent
.Node
then
2480 if Position
.Node
= Before
.Node
then
2484 if Position
.Node
.Next
= Before
.Node
then
2489 if Target
.Busy
> 0 then
2491 with "attempt to tamper with cursors (Target tree is busy)";
2494 if Is_Reachable
(From
=> Parent
.Node
, To
=> Position
.Node
) then
2495 raise Constraint_Error
with "Position is ancestor of Parent";
2498 Remove_Subtree
(Position
.Node
);
2500 Position
.Node
.Parent
:= Parent
.Node
;
2501 Insert_Subtree_Node
(Position
.Node
, Parent
.Node
, Before
.Node
);
2506 if Target
.Busy
> 0 then
2508 with "attempt to tamper with cursors (Target tree is busy)";
2511 if Source
.Busy
> 0 then
2513 with "attempt to tamper with cursors (Source tree is busy)";
2516 -- This is an unfortunate feature of this API: we must count the nodes
2517 -- in the subtree that we remove from the source tree, which is an O(n)
2518 -- operation. It would have been better if the Tree container did not
2519 -- have a Node_Count selector; a user that wants the number of nodes in
2520 -- the tree could simply call Subtree_Node_Count, with the understanding
2521 -- that such an operation is O(n).
2523 -- Of course, we could choose to implement the Node_Count selector as an
2524 -- O(n) operation, which would turn this splice operation into an O(1)
2527 Subtree_Count
:= Subtree_Node_Count
(Position
.Node
);
2528 pragma Assert
(Subtree_Count
<= Source
.Count
);
2530 Remove_Subtree
(Position
.Node
);
2531 Source
.Count
:= Source
.Count
- Subtree_Count
;
2533 Position
.Node
.Parent
:= Parent
.Node
;
2534 Insert_Subtree_Node
(Position
.Node
, Parent
.Node
, Before
.Node
);
2536 Target
.Count
:= Target
.Count
+ Subtree_Count
;
2538 Position
.Container
:= Target
'Unrestricted_Access;
2541 procedure Splice_Subtree
2542 (Container
: in out Tree
;
2548 if Parent
= No_Element
then
2549 raise Constraint_Error
with "Parent cursor has no element";
2552 if Parent
.Container
/= Container
'Unrestricted_Access then
2553 raise Program_Error
with "Parent cursor not in container";
2556 if Before
/= No_Element
then
2557 if Before
.Container
/= Container
'Unrestricted_Access then
2558 raise Program_Error
with "Before cursor not in container";
2561 if Before
.Node
.Parent
/= Parent
.Node
then
2562 raise Constraint_Error
with "Before cursor not child of Parent";
2566 if Position
= No_Element
then
2567 raise Constraint_Error
with "Position cursor has no element";
2570 if Position
.Container
/= Container
'Unrestricted_Access then
2571 raise Program_Error
with "Position cursor not in container";
2574 if Is_Root
(Position
) then
2576 -- Should this be PE instead? Need ARG confirmation. ???
2578 raise Constraint_Error
with "Position cursor designates root";
2581 if Position
.Node
.Parent
= Parent
.Node
then
2582 if Position
.Node
= Before
.Node
then
2586 if Position
.Node
.Next
= Before
.Node
then
2591 if Container
.Busy
> 0 then
2593 with "attempt to tamper with cursors (tree is busy)";
2596 if Is_Reachable
(From
=> Parent
.Node
, To
=> Position
.Node
) then
2597 raise Constraint_Error
with "Position is ancestor of Parent";
2600 Remove_Subtree
(Position
.Node
);
2602 Position
.Node
.Parent
:= Parent
.Node
;
2603 Insert_Subtree_Node
(Position
.Node
, Parent
.Node
, Before
.Node
);
2606 ------------------------
2607 -- Subtree_Node_Count --
2608 ------------------------
2610 function Subtree_Node_Count
(Position
: Cursor
) return Count_Type
is
2612 if Position
= No_Element
then
2616 return Subtree_Node_Count
(Position
.Node
);
2617 end Subtree_Node_Count
;
2619 function Subtree_Node_Count
2620 (Subtree
: Tree_Node_Access
) return Count_Type
2622 Result
: Count_Type
;
2623 Node
: Tree_Node_Access
;
2627 Node
:= Subtree
.Children
.First
;
2628 while Node
/= null loop
2629 Result
:= Result
+ Subtree_Node_Count
(Node
);
2634 end Subtree_Node_Count
;
2641 (Container
: in out Tree
;
2645 if I
= No_Element
then
2646 raise Constraint_Error
with "I cursor has no element";
2649 if I
.Container
/= Container
'Unrestricted_Access then
2650 raise Program_Error
with "I cursor not in container";
2654 raise Program_Error
with "I cursor designates root";
2657 if I
= J
then -- make this test sooner???
2661 if J
= No_Element
then
2662 raise Constraint_Error
with "J cursor has no element";
2665 if J
.Container
/= Container
'Unrestricted_Access then
2666 raise Program_Error
with "J cursor not in container";
2670 raise Program_Error
with "J cursor designates root";
2673 if Container
.Lock
> 0 then
2675 with "attempt to tamper with elements (tree is locked)";
2679 EI
: constant Element_Type
:= I
.Node
.Element
;
2682 I
.Node
.Element
:= J
.Node
.Element
;
2683 J
.Node
.Element
:= EI
;
2687 --------------------
2688 -- Update_Element --
2689 --------------------
2691 procedure Update_Element
2692 (Container
: in out Tree
;
2694 Process
: not null access procedure (Element
: in out Element_Type
))
2697 if Position
= No_Element
then
2698 raise Constraint_Error
with "Position cursor has no element";
2701 if Position
.Container
/= Container
'Unrestricted_Access then
2702 raise Program_Error
with "Position cursor not in container";
2705 if Is_Root
(Position
) then
2706 raise Program_Error
with "Position cursor designates root";
2710 T
: Tree
renames Position
.Container
.all'Unrestricted_Access.all;
2711 B
: Natural renames T
.Busy
;
2712 L
: Natural renames T
.Lock
;
2718 Process
(Position
.Node
.Element
);
2737 (Stream
: not null access Root_Stream_Type
'Class;
2740 procedure Write_Children
(Subtree
: Tree_Node_Access
);
2741 procedure Write_Subtree
(Subtree
: Tree_Node_Access
);
2743 --------------------
2744 -- Write_Children --
2745 --------------------
2747 procedure Write_Children
(Subtree
: Tree_Node_Access
) is
2748 CC
: Children_Type
renames Subtree
.Children
;
2749 C
: Tree_Node_Access
;
2752 Count_Type
'Write (Stream
, Child_Count
(CC
));
2755 while C
/= null loop
2765 procedure Write_Subtree
(Subtree
: Tree_Node_Access
) is
2767 Element_Type
'Output (Stream
, Subtree
.Element
);
2768 Write_Children
(Subtree
);
2771 -- Start of processing for Write
2774 Count_Type
'Write (Stream
, Container
.Count
);
2776 if Container
.Count
= 0 then
2780 Write_Children
(Root_Node
(Container
));
2784 (Stream
: not null access Root_Stream_Type
'Class;
2788 raise Program_Error
with "attempt to write tree cursor to stream";
2792 (Stream
: not null access Root_Stream_Type
'Class;
2793 Item
: Reference_Type
)
2796 raise Program_Error
with "attempt to stream reference";
2800 (Stream
: not null access Root_Stream_Type
'Class;
2801 Item
: Constant_Reference_Type
)
2804 raise Program_Error
with "attempt to stream reference";
2807 end Ada
.Containers
.Multiway_Trees
;