Merge from mainline (163495:164578).
[official-gcc/graphite-test-results.git] / gcc / ada / a-ciorse.adb
blob7153c6dd235940dcacea9a320fb45a7495c8fc8e
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT LIBRARY COMPONENTS --
4 -- --
5 -- ADA.CONTAINERS.INDEFINITE_ORDERED_SETS --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 2004-2010, Free Software Foundation, Inc. --
10 -- --
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. --
17 -- --
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. --
21 -- --
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/>. --
26 -- --
27 -- This unit was originally developed by Matthew J Heaney. --
28 ------------------------------------------------------------------------------
30 with Ada.Containers.Red_Black_Trees.Generic_Operations;
31 pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Operations);
33 with Ada.Containers.Red_Black_Trees.Generic_Keys;
34 pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Keys);
36 with Ada.Containers.Red_Black_Trees.Generic_Set_Operations;
37 pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Set_Operations);
39 with Ada.Unchecked_Deallocation;
41 package body Ada.Containers.Indefinite_Ordered_Sets is
43 -----------------------
44 -- Local Subprograms --
45 -----------------------
47 function Color (Node : Node_Access) return Color_Type;
48 pragma Inline (Color);
50 function Copy_Node (Source : Node_Access) return Node_Access;
51 pragma Inline (Copy_Node);
53 procedure Free (X : in out Node_Access);
55 procedure Insert_Sans_Hint
56 (Tree : in out Tree_Type;
57 New_Item : Element_Type;
58 Node : out Node_Access;
59 Inserted : out Boolean);
61 procedure Insert_With_Hint
62 (Dst_Tree : in out Tree_Type;
63 Dst_Hint : Node_Access;
64 Src_Node : Node_Access;
65 Dst_Node : out Node_Access);
67 function Is_Greater_Element_Node
68 (Left : Element_Type;
69 Right : Node_Access) return Boolean;
70 pragma Inline (Is_Greater_Element_Node);
72 function Is_Less_Element_Node
73 (Left : Element_Type;
74 Right : Node_Access) return Boolean;
75 pragma Inline (Is_Less_Element_Node);
77 function Is_Less_Node_Node (L, R : Node_Access) return Boolean;
78 pragma Inline (Is_Less_Node_Node);
80 function Left (Node : Node_Access) return Node_Access;
81 pragma Inline (Left);
83 function Parent (Node : Node_Access) return Node_Access;
84 pragma Inline (Parent);
86 procedure Replace_Element
87 (Tree : in out Tree_Type;
88 Node : Node_Access;
89 Item : Element_Type);
91 function Right (Node : Node_Access) return Node_Access;
92 pragma Inline (Right);
94 procedure Set_Color (Node : Node_Access; Color : Color_Type);
95 pragma Inline (Set_Color);
97 procedure Set_Left (Node : Node_Access; Left : Node_Access);
98 pragma Inline (Set_Left);
100 procedure Set_Parent (Node : Node_Access; Parent : Node_Access);
101 pragma Inline (Set_Parent);
103 procedure Set_Right (Node : Node_Access; Right : Node_Access);
104 pragma Inline (Set_Right);
106 --------------------------
107 -- Local Instantiations --
108 --------------------------
110 procedure Free_Element is
111 new Ada.Unchecked_Deallocation (Element_Type, Element_Access);
113 package Tree_Operations is
114 new Red_Black_Trees.Generic_Operations (Tree_Types);
116 procedure Delete_Tree is
117 new Tree_Operations.Generic_Delete_Tree (Free);
119 function Copy_Tree is
120 new Tree_Operations.Generic_Copy_Tree (Copy_Node, Delete_Tree);
122 use Tree_Operations;
124 package Element_Keys is
125 new Red_Black_Trees.Generic_Keys
126 (Tree_Operations => Tree_Operations,
127 Key_Type => Element_Type,
128 Is_Less_Key_Node => Is_Less_Element_Node,
129 Is_Greater_Key_Node => Is_Greater_Element_Node);
131 package Set_Ops is
132 new Generic_Set_Operations
133 (Tree_Operations => Tree_Operations,
134 Insert_With_Hint => Insert_With_Hint,
135 Copy_Tree => Copy_Tree,
136 Delete_Tree => Delete_Tree,
137 Is_Less => Is_Less_Node_Node,
138 Free => Free);
140 ---------
141 -- "<" --
142 ---------
144 function "<" (Left, Right : Cursor) return Boolean is
145 begin
146 if Left.Node = null then
147 raise Constraint_Error with "Left cursor equals No_Element";
148 end if;
150 if Right.Node = null then
151 raise Constraint_Error with "Right cursor equals No_Element";
152 end if;
154 if Left.Node.Element = null then
155 raise Program_Error with "Left cursor is bad";
156 end if;
158 if Right.Node.Element = null then
159 raise Program_Error with "Right cursor is bad";
160 end if;
162 pragma Assert (Vet (Left.Container.Tree, Left.Node),
163 "bad Left cursor in ""<""");
165 pragma Assert (Vet (Right.Container.Tree, Right.Node),
166 "bad Right cursor in ""<""");
168 return Left.Node.Element.all < Right.Node.Element.all;
169 end "<";
171 function "<" (Left : Cursor; Right : Element_Type) return Boolean is
172 begin
173 if Left.Node = null then
174 raise Constraint_Error with "Left cursor equals No_Element";
175 end if;
177 if Left.Node.Element = null then
178 raise Program_Error with "Left cursor is bad";
179 end if;
181 pragma Assert (Vet (Left.Container.Tree, Left.Node),
182 "bad Left cursor in ""<""");
184 return Left.Node.Element.all < Right;
185 end "<";
187 function "<" (Left : Element_Type; Right : Cursor) return Boolean is
188 begin
189 if Right.Node = null then
190 raise Constraint_Error with "Right cursor equals No_Element";
191 end if;
193 if Right.Node.Element = null then
194 raise Program_Error with "Right cursor is bad";
195 end if;
197 pragma Assert (Vet (Right.Container.Tree, Right.Node),
198 "bad Right cursor in ""<""");
200 return Left < Right.Node.Element.all;
201 end "<";
203 ---------
204 -- "=" --
205 ---------
207 function "=" (Left, Right : Set) return Boolean is
209 function Is_Equal_Node_Node (L, R : Node_Access) return Boolean;
210 pragma Inline (Is_Equal_Node_Node);
212 function Is_Equal is
213 new Tree_Operations.Generic_Equal (Is_Equal_Node_Node);
215 ------------------------
216 -- Is_Equal_Node_Node --
217 ------------------------
219 function Is_Equal_Node_Node (L, R : Node_Access) return Boolean is
220 begin
221 return L.Element.all = R.Element.all;
222 end Is_Equal_Node_Node;
224 -- Start of processing for "="
226 begin
227 return Is_Equal (Left.Tree, Right.Tree);
228 end "=";
230 ---------
231 -- ">" --
232 ---------
234 function ">" (Left, Right : Cursor) return Boolean is
235 begin
236 if Left.Node = null then
237 raise Constraint_Error with "Left cursor equals No_Element";
238 end if;
240 if Right.Node = null then
241 raise Constraint_Error with "Right cursor equals No_Element";
242 end if;
244 if Left.Node.Element = null then
245 raise Program_Error with "Left cursor is bad";
246 end if;
248 if Right.Node.Element = null then
249 raise Program_Error with "Right cursor is bad";
250 end if;
252 pragma Assert (Vet (Left.Container.Tree, Left.Node),
253 "bad Left cursor in "">""");
255 pragma Assert (Vet (Right.Container.Tree, Right.Node),
256 "bad Right cursor in "">""");
258 -- L > R same as R < L
260 return Right.Node.Element.all < Left.Node.Element.all;
261 end ">";
263 function ">" (Left : Cursor; Right : Element_Type) return Boolean is
264 begin
265 if Left.Node = null then
266 raise Constraint_Error with "Left cursor equals No_Element";
267 end if;
269 if Left.Node.Element = null then
270 raise Program_Error with "Left cursor is bad";
271 end if;
273 pragma Assert (Vet (Left.Container.Tree, Left.Node),
274 "bad Left cursor in "">""");
276 return Right < Left.Node.Element.all;
277 end ">";
279 function ">" (Left : Element_Type; Right : Cursor) return Boolean is
280 begin
281 if Right.Node = null then
282 raise Constraint_Error with "Right cursor equals No_Element";
283 end if;
285 if Right.Node.Element = null then
286 raise Program_Error with "Right cursor is bad";
287 end if;
289 pragma Assert (Vet (Right.Container.Tree, Right.Node),
290 "bad Right cursor in "">""");
292 return Right.Node.Element.all < Left;
293 end ">";
295 ------------
296 -- Adjust --
297 ------------
299 procedure Adjust is
300 new Tree_Operations.Generic_Adjust (Copy_Tree);
302 procedure Adjust (Container : in out Set) is
303 begin
304 Adjust (Container.Tree);
305 end Adjust;
307 -------------
308 -- Ceiling --
309 -------------
311 function Ceiling (Container : Set; Item : Element_Type) return Cursor is
312 Node : constant Node_Access :=
313 Element_Keys.Ceiling (Container.Tree, Item);
315 begin
316 if Node = null then
317 return No_Element;
318 end if;
320 return Cursor'(Container'Unrestricted_Access, Node);
321 end Ceiling;
323 -----------
324 -- Clear --
325 -----------
327 procedure Clear is
328 new Tree_Operations.Generic_Clear (Delete_Tree);
330 procedure Clear (Container : in out Set) is
331 begin
332 Clear (Container.Tree);
333 end Clear;
335 -----------
336 -- Color --
337 -----------
339 function Color (Node : Node_Access) return Color_Type is
340 begin
341 return Node.Color;
342 end Color;
344 --------------
345 -- Contains --
346 --------------
348 function Contains (Container : Set; Item : Element_Type) return Boolean is
349 begin
350 return Find (Container, Item) /= No_Element;
351 end Contains;
353 ---------------
354 -- Copy_Node --
355 ---------------
357 function Copy_Node (Source : Node_Access) return Node_Access is
358 Element : Element_Access := new Element_Type'(Source.Element.all);
360 begin
361 return new Node_Type'(Parent => null,
362 Left => null,
363 Right => null,
364 Color => Source.Color,
365 Element => Element);
366 exception
367 when others =>
368 Free_Element (Element);
369 raise;
370 end Copy_Node;
372 ------------
373 -- Delete --
374 ------------
376 procedure Delete (Container : in out Set; Position : in out Cursor) is
377 begin
378 if Position.Node = null then
379 raise Constraint_Error with "Position cursor equals No_Element";
380 end if;
382 if Position.Node.Element = null then
383 raise Program_Error with "Position cursor is bad";
384 end if;
386 if Position.Container /= Container'Unrestricted_Access then
387 raise Program_Error with "Position cursor designates wrong set";
388 end if;
390 pragma Assert (Vet (Container.Tree, Position.Node),
391 "bad cursor in Delete");
393 Tree_Operations.Delete_Node_Sans_Free (Container.Tree, Position.Node);
394 Free (Position.Node);
395 Position.Container := null;
396 end Delete;
398 procedure Delete (Container : in out Set; Item : Element_Type) is
399 X : Node_Access :=
400 Element_Keys.Find (Container.Tree, Item);
402 begin
403 if X = null then
404 raise Constraint_Error with "attempt to delete element not in set";
405 end if;
407 Tree_Operations.Delete_Node_Sans_Free (Container.Tree, X);
408 Free (X);
409 end Delete;
411 ------------------
412 -- Delete_First --
413 ------------------
415 procedure Delete_First (Container : in out Set) is
416 Tree : Tree_Type renames Container.Tree;
417 X : Node_Access := Tree.First;
419 begin
420 if X /= null then
421 Tree_Operations.Delete_Node_Sans_Free (Tree, X);
422 Free (X);
423 end if;
424 end Delete_First;
426 -----------------
427 -- Delete_Last --
428 -----------------
430 procedure Delete_Last (Container : in out Set) is
431 Tree : Tree_Type renames Container.Tree;
432 X : Node_Access := Tree.Last;
434 begin
435 if X /= null then
436 Tree_Operations.Delete_Node_Sans_Free (Tree, X);
437 Free (X);
438 end if;
439 end Delete_Last;
441 ----------------
442 -- Difference --
443 ----------------
445 procedure Difference (Target : in out Set; Source : Set) is
446 begin
447 Set_Ops.Difference (Target.Tree, Source.Tree);
448 end Difference;
450 function Difference (Left, Right : Set) return Set is
451 Tree : constant Tree_Type :=
452 Set_Ops.Difference (Left.Tree, Right.Tree);
453 begin
454 return Set'(Controlled with Tree);
455 end Difference;
457 -------------
458 -- Element --
459 -------------
461 function Element (Position : Cursor) return Element_Type is
462 begin
463 if Position.Node = null then
464 raise Constraint_Error with "Position cursor equals No_Element";
465 end if;
467 if Position.Node.Element = null then
468 raise Program_Error with "Position cursor is bad";
469 end if;
471 pragma Assert (Vet (Position.Container.Tree, Position.Node),
472 "bad cursor in Element");
474 return Position.Node.Element.all;
475 end Element;
477 -------------------------
478 -- Equivalent_Elements --
479 -------------------------
481 function Equivalent_Elements (Left, Right : Element_Type) return Boolean is
482 begin
483 if Left < Right
484 or else Right < Left
485 then
486 return False;
487 else
488 return True;
489 end if;
490 end Equivalent_Elements;
492 ---------------------
493 -- Equivalent_Sets --
494 ---------------------
496 function Equivalent_Sets (Left, Right : Set) return Boolean is
498 function Is_Equivalent_Node_Node (L, R : Node_Access) return Boolean;
499 pragma Inline (Is_Equivalent_Node_Node);
501 function Is_Equivalent is
502 new Tree_Operations.Generic_Equal (Is_Equivalent_Node_Node);
504 -----------------------------
505 -- Is_Equivalent_Node_Node --
506 -----------------------------
508 function Is_Equivalent_Node_Node (L, R : Node_Access) return Boolean is
509 begin
510 if L.Element.all < R.Element.all then
511 return False;
512 elsif R.Element.all < L.Element.all then
513 return False;
514 else
515 return True;
516 end if;
517 end Is_Equivalent_Node_Node;
519 -- Start of processing for Equivalent_Sets
521 begin
522 return Is_Equivalent (Left.Tree, Right.Tree);
523 end Equivalent_Sets;
525 -------------
526 -- Exclude --
527 -------------
529 procedure Exclude (Container : in out Set; Item : Element_Type) is
530 X : Node_Access :=
531 Element_Keys.Find (Container.Tree, Item);
533 begin
534 if X /= null then
535 Tree_Operations.Delete_Node_Sans_Free (Container.Tree, X);
536 Free (X);
537 end if;
538 end Exclude;
540 ----------
541 -- Find --
542 ----------
544 function Find (Container : Set; Item : Element_Type) return Cursor is
545 Node : constant Node_Access :=
546 Element_Keys.Find (Container.Tree, Item);
548 begin
549 if Node = null then
550 return No_Element;
551 end if;
553 return Cursor'(Container'Unrestricted_Access, Node);
554 end Find;
556 -----------
557 -- First --
558 -----------
560 function First (Container : Set) return Cursor is
561 begin
562 if Container.Tree.First = null then
563 return No_Element;
564 end if;
566 return Cursor'(Container'Unrestricted_Access, Container.Tree.First);
567 end First;
569 -------------------
570 -- First_Element --
571 -------------------
573 function First_Element (Container : Set) return Element_Type is
574 begin
575 if Container.Tree.First = null then
576 raise Constraint_Error with "set is empty";
577 end if;
579 return Container.Tree.First.Element.all;
580 end First_Element;
582 -----------
583 -- Floor --
584 -----------
586 function Floor (Container : Set; Item : Element_Type) return Cursor is
587 Node : constant Node_Access :=
588 Element_Keys.Floor (Container.Tree, Item);
590 begin
591 if Node = null then
592 return No_Element;
593 end if;
595 return Cursor'(Container'Unrestricted_Access, Node);
596 end Floor;
598 ----------
599 -- Free --
600 ----------
602 procedure Free (X : in out Node_Access) is
603 procedure Deallocate is
604 new Ada.Unchecked_Deallocation (Node_Type, Node_Access);
606 begin
607 if X = null then
608 return;
609 end if;
611 X.Parent := X;
612 X.Left := X;
613 X.Right := X;
615 begin
616 Free_Element (X.Element);
617 exception
618 when others =>
619 X.Element := null;
620 Deallocate (X);
621 raise;
622 end;
624 Deallocate (X);
625 end Free;
627 ------------------
628 -- Generic_Keys --
629 ------------------
631 package body Generic_Keys is
633 -----------------------
634 -- Local Subprograms --
635 -----------------------
637 function Is_Greater_Key_Node
638 (Left : Key_Type;
639 Right : Node_Access) return Boolean;
640 pragma Inline (Is_Greater_Key_Node);
642 function Is_Less_Key_Node
643 (Left : Key_Type;
644 Right : Node_Access) return Boolean;
645 pragma Inline (Is_Less_Key_Node);
647 --------------------------
648 -- Local Instantiations --
649 --------------------------
651 package Key_Keys is
652 new Red_Black_Trees.Generic_Keys
653 (Tree_Operations => Tree_Operations,
654 Key_Type => Key_Type,
655 Is_Less_Key_Node => Is_Less_Key_Node,
656 Is_Greater_Key_Node => Is_Greater_Key_Node);
658 -------------
659 -- Ceiling --
660 -------------
662 function Ceiling (Container : Set; Key : Key_Type) return Cursor is
663 Node : constant Node_Access :=
664 Key_Keys.Ceiling (Container.Tree, Key);
666 begin
667 if Node = null then
668 return No_Element;
669 end if;
671 return Cursor'(Container'Unrestricted_Access, Node);
672 end Ceiling;
674 --------------
675 -- Contains --
676 --------------
678 function Contains (Container : Set; Key : Key_Type) return Boolean is
679 begin
680 return Find (Container, Key) /= No_Element;
681 end Contains;
683 ------------
684 -- Delete --
685 ------------
687 procedure Delete (Container : in out Set; Key : Key_Type) is
688 X : Node_Access := Key_Keys.Find (Container.Tree, Key);
690 begin
691 if X = null then
692 raise Constraint_Error with "attempt to delete key not in set";
693 end if;
695 Tree_Operations.Delete_Node_Sans_Free (Container.Tree, X);
696 Free (X);
697 end Delete;
699 -------------
700 -- Element --
701 -------------
703 function Element (Container : Set; Key : Key_Type) return Element_Type is
704 Node : constant Node_Access :=
705 Key_Keys.Find (Container.Tree, Key);
707 begin
708 if Node = null then
709 raise Constraint_Error with "key not in set";
710 end if;
712 return Node.Element.all;
713 end Element;
715 ---------------------
716 -- Equivalent_Keys --
717 ---------------------
719 function Equivalent_Keys (Left, Right : Key_Type) return Boolean is
720 begin
721 if Left < Right
722 or else Right < Left
723 then
724 return False;
725 else
726 return True;
727 end if;
728 end Equivalent_Keys;
730 -------------
731 -- Exclude --
732 -------------
734 procedure Exclude (Container : in out Set; Key : Key_Type) is
735 X : Node_Access := Key_Keys.Find (Container.Tree, Key);
737 begin
738 if X /= null then
739 Tree_Operations.Delete_Node_Sans_Free (Container.Tree, X);
740 Free (X);
741 end if;
742 end Exclude;
744 ----------
745 -- Find --
746 ----------
748 function Find (Container : Set; Key : Key_Type) return Cursor is
749 Node : constant Node_Access :=
750 Key_Keys.Find (Container.Tree, Key);
752 begin
753 if Node = null then
754 return No_Element;
755 end if;
757 return Cursor'(Container'Unrestricted_Access, Node);
758 end Find;
760 -----------
761 -- Floor --
762 -----------
764 function Floor (Container : Set; Key : Key_Type) return Cursor is
765 Node : constant Node_Access :=
766 Key_Keys.Floor (Container.Tree, Key);
768 begin
769 if Node = null then
770 return No_Element;
771 end if;
773 return Cursor'(Container'Unrestricted_Access, Node);
774 end Floor;
776 -------------------------
777 -- Is_Greater_Key_Node --
778 -------------------------
780 function Is_Greater_Key_Node
781 (Left : Key_Type;
782 Right : Node_Access) return Boolean is
783 begin
784 return Key (Right.Element.all) < Left;
785 end Is_Greater_Key_Node;
787 ----------------------
788 -- Is_Less_Key_Node --
789 ----------------------
791 function Is_Less_Key_Node
792 (Left : Key_Type;
793 Right : Node_Access) return Boolean is
794 begin
795 return Left < Key (Right.Element.all);
796 end Is_Less_Key_Node;
798 ---------
799 -- Key --
800 ---------
802 function Key (Position : Cursor) return Key_Type is
803 begin
804 if Position.Node = null then
805 raise Constraint_Error with
806 "Position cursor equals No_Element";
807 end if;
809 if Position.Node.Element = null then
810 raise Program_Error with
811 "Position cursor is bad";
812 end if;
814 pragma Assert (Vet (Position.Container.Tree, Position.Node),
815 "bad cursor in Key");
817 return Key (Position.Node.Element.all);
818 end Key;
820 -------------
821 -- Replace --
822 -------------
824 procedure Replace
825 (Container : in out Set;
826 Key : Key_Type;
827 New_Item : Element_Type)
829 Node : constant Node_Access := Key_Keys.Find (Container.Tree, Key);
831 begin
832 if Node = null then
833 raise Constraint_Error with
834 "attempt to replace key not in set";
835 end if;
837 Replace_Element (Container.Tree, Node, New_Item);
838 end Replace;
840 -----------------------------------
841 -- Update_Element_Preserving_Key --
842 -----------------------------------
844 procedure Update_Element_Preserving_Key
845 (Container : in out Set;
846 Position : Cursor;
847 Process : not null access
848 procedure (Element : in out Element_Type))
850 Tree : Tree_Type renames Container.Tree;
852 begin
853 if Position.Node = null then
854 raise Constraint_Error with "Position cursor equals No_Element";
855 end if;
857 if Position.Node.Element = null then
858 raise Program_Error with "Position cursor is bad";
859 end if;
861 if Position.Container /= Container'Unrestricted_Access then
862 raise Program_Error with "Position cursor designates wrong set";
863 end if;
865 pragma Assert (Vet (Container.Tree, Position.Node),
866 "bad cursor in Update_Element_Preserving_Key");
868 declare
869 E : Element_Type renames Position.Node.Element.all;
870 K : constant Key_Type := Key (E);
872 B : Natural renames Tree.Busy;
873 L : Natural renames Tree.Lock;
875 begin
876 B := B + 1;
877 L := L + 1;
879 begin
880 Process (E);
881 exception
882 when others =>
883 L := L - 1;
884 B := B - 1;
885 raise;
886 end;
888 L := L - 1;
889 B := B - 1;
891 if Equivalent_Keys (K, Key (E)) then
892 return;
893 end if;
894 end;
896 declare
897 X : Node_Access := Position.Node;
898 begin
899 Tree_Operations.Delete_Node_Sans_Free (Tree, X);
900 Free (X);
901 end;
903 raise Program_Error with "key was modified";
904 end Update_Element_Preserving_Key;
906 end Generic_Keys;
908 -----------------
909 -- Has_Element --
910 -----------------
912 function Has_Element (Position : Cursor) return Boolean is
913 begin
914 return Position /= No_Element;
915 end Has_Element;
917 -------------
918 -- Include --
919 -------------
921 procedure Include (Container : in out Set; New_Item : Element_Type) is
922 Position : Cursor;
923 Inserted : Boolean;
925 X : Element_Access;
927 begin
928 Insert (Container, New_Item, Position, Inserted);
930 if not Inserted then
931 if Container.Tree.Lock > 0 then
932 raise Program_Error with
933 "attempt to tamper with elements (set is locked)";
934 end if;
936 X := Position.Node.Element;
937 Position.Node.Element := new Element_Type'(New_Item);
938 Free_Element (X);
939 end if;
940 end Include;
942 ------------
943 -- Insert --
944 ------------
946 procedure Insert
947 (Container : in out Set;
948 New_Item : Element_Type;
949 Position : out Cursor;
950 Inserted : out Boolean)
952 begin
953 Insert_Sans_Hint
954 (Container.Tree,
955 New_Item,
956 Position.Node,
957 Inserted);
959 Position.Container := Container'Unrestricted_Access;
960 end Insert;
962 procedure Insert (Container : in out Set; New_Item : Element_Type) is
963 Position : Cursor;
964 pragma Unreferenced (Position);
966 Inserted : Boolean;
968 begin
969 Insert (Container, New_Item, Position, Inserted);
971 if not Inserted then
972 raise Constraint_Error with
973 "attempt to insert element already in set";
974 end if;
975 end Insert;
977 ----------------------
978 -- Insert_Sans_Hint --
979 ----------------------
981 procedure Insert_Sans_Hint
982 (Tree : in out Tree_Type;
983 New_Item : Element_Type;
984 Node : out Node_Access;
985 Inserted : out Boolean)
987 function New_Node return Node_Access;
988 pragma Inline (New_Node);
990 procedure Insert_Post is
991 new Element_Keys.Generic_Insert_Post (New_Node);
993 procedure Conditional_Insert_Sans_Hint is
994 new Element_Keys.Generic_Conditional_Insert (Insert_Post);
996 --------------
997 -- New_Node --
998 --------------
1000 function New_Node return Node_Access is
1001 Element : Element_Access := new Element_Type'(New_Item);
1003 begin
1004 return new Node_Type'(Parent => null,
1005 Left => null,
1006 Right => null,
1007 Color => Red_Black_Trees.Red,
1008 Element => Element);
1009 exception
1010 when others =>
1011 Free_Element (Element);
1012 raise;
1013 end New_Node;
1015 -- Start of processing for Insert_Sans_Hint
1017 begin
1018 Conditional_Insert_Sans_Hint
1019 (Tree,
1020 New_Item,
1021 Node,
1022 Inserted);
1023 end Insert_Sans_Hint;
1025 ----------------------
1026 -- Insert_With_Hint --
1027 ----------------------
1029 procedure Insert_With_Hint
1030 (Dst_Tree : in out Tree_Type;
1031 Dst_Hint : Node_Access;
1032 Src_Node : Node_Access;
1033 Dst_Node : out Node_Access)
1035 Success : Boolean;
1036 pragma Unreferenced (Success);
1038 function New_Node return Node_Access;
1040 procedure Insert_Post is
1041 new Element_Keys.Generic_Insert_Post (New_Node);
1043 procedure Insert_Sans_Hint is
1044 new Element_Keys.Generic_Conditional_Insert (Insert_Post);
1046 procedure Insert_With_Hint is
1047 new Element_Keys.Generic_Conditional_Insert_With_Hint
1048 (Insert_Post,
1049 Insert_Sans_Hint);
1051 --------------
1052 -- New_Node --
1053 --------------
1055 function New_Node return Node_Access is
1056 Element : Element_Access :=
1057 new Element_Type'(Src_Node.Element.all);
1058 Node : Node_Access;
1060 begin
1061 begin
1062 Node := new Node_Type;
1063 exception
1064 when others =>
1065 Free_Element (Element);
1066 raise;
1067 end;
1069 Node.Element := Element;
1070 return Node;
1071 end New_Node;
1073 -- Start of processing for Insert_With_Hint
1075 begin
1076 Insert_With_Hint
1077 (Dst_Tree,
1078 Dst_Hint,
1079 Src_Node.Element.all,
1080 Dst_Node,
1081 Success);
1082 end Insert_With_Hint;
1084 ------------------
1085 -- Intersection --
1086 ------------------
1088 procedure Intersection (Target : in out Set; Source : Set) is
1089 begin
1090 Set_Ops.Intersection (Target.Tree, Source.Tree);
1091 end Intersection;
1093 function Intersection (Left, Right : Set) return Set is
1094 Tree : constant Tree_Type :=
1095 Set_Ops.Intersection (Left.Tree, Right.Tree);
1096 begin
1097 return Set'(Controlled with Tree);
1098 end Intersection;
1100 --------------
1101 -- Is_Empty --
1102 --------------
1104 function Is_Empty (Container : Set) return Boolean is
1105 begin
1106 return Container.Tree.Length = 0;
1107 end Is_Empty;
1109 -----------------------------
1110 -- Is_Greater_Element_Node --
1111 -----------------------------
1113 function Is_Greater_Element_Node
1114 (Left : Element_Type;
1115 Right : Node_Access) return Boolean is
1116 begin
1117 -- e > node same as node < e
1119 return Right.Element.all < Left;
1120 end Is_Greater_Element_Node;
1122 --------------------------
1123 -- Is_Less_Element_Node --
1124 --------------------------
1126 function Is_Less_Element_Node
1127 (Left : Element_Type;
1128 Right : Node_Access) return Boolean is
1129 begin
1130 return Left < Right.Element.all;
1131 end Is_Less_Element_Node;
1133 -----------------------
1134 -- Is_Less_Node_Node --
1135 -----------------------
1137 function Is_Less_Node_Node (L, R : Node_Access) return Boolean is
1138 begin
1139 return L.Element.all < R.Element.all;
1140 end Is_Less_Node_Node;
1142 ---------------
1143 -- Is_Subset --
1144 ---------------
1146 function Is_Subset (Subset : Set; Of_Set : Set) return Boolean is
1147 begin
1148 return Set_Ops.Is_Subset (Subset => Subset.Tree, Of_Set => Of_Set.Tree);
1149 end Is_Subset;
1151 -------------
1152 -- Iterate --
1153 -------------
1155 procedure Iterate
1156 (Container : Set;
1157 Process : not null access procedure (Position : Cursor))
1159 procedure Process_Node (Node : Node_Access);
1160 pragma Inline (Process_Node);
1162 procedure Local_Iterate is
1163 new Tree_Operations.Generic_Iteration (Process_Node);
1165 ------------------
1166 -- Process_Node --
1167 ------------------
1169 procedure Process_Node (Node : Node_Access) is
1170 begin
1171 Process (Cursor'(Container'Unrestricted_Access, Node));
1172 end Process_Node;
1174 T : Tree_Type renames Container.Tree'Unrestricted_Access.all;
1175 B : Natural renames T.Busy;
1177 -- Start of processing for Iterate
1179 begin
1180 B := B + 1;
1182 begin
1183 Local_Iterate (T);
1184 exception
1185 when others =>
1186 B := B - 1;
1187 raise;
1188 end;
1190 B := B - 1;
1191 end Iterate;
1193 ----------
1194 -- Last --
1195 ----------
1197 function Last (Container : Set) return Cursor is
1198 begin
1199 if Container.Tree.Last = null then
1200 return No_Element;
1201 end if;
1203 return Cursor'(Container'Unrestricted_Access, Container.Tree.Last);
1204 end Last;
1206 ------------------
1207 -- Last_Element --
1208 ------------------
1210 function Last_Element (Container : Set) return Element_Type is
1211 begin
1212 if Container.Tree.Last = null then
1213 raise Constraint_Error with "set is empty";
1214 end if;
1216 return Container.Tree.Last.Element.all;
1217 end Last_Element;
1219 ----------
1220 -- Left --
1221 ----------
1223 function Left (Node : Node_Access) return Node_Access is
1224 begin
1225 return Node.Left;
1226 end Left;
1228 ------------
1229 -- Length --
1230 ------------
1232 function Length (Container : Set) return Count_Type is
1233 begin
1234 return Container.Tree.Length;
1235 end Length;
1237 ----------
1238 -- Move --
1239 ----------
1241 procedure Move is
1242 new Tree_Operations.Generic_Move (Clear);
1244 procedure Move (Target : in out Set; Source : in out Set) is
1245 begin
1246 Move (Target => Target.Tree, Source => Source.Tree);
1247 end Move;
1249 ----------
1250 -- Next --
1251 ----------
1253 procedure Next (Position : in out Cursor) is
1254 begin
1255 Position := Next (Position);
1256 end Next;
1258 function Next (Position : Cursor) return Cursor is
1259 begin
1260 if Position = No_Element then
1261 return No_Element;
1262 end if;
1264 if Position.Node.Element = null then
1265 raise Program_Error with "Position cursor is bad";
1266 end if;
1268 pragma Assert (Vet (Position.Container.Tree, Position.Node),
1269 "bad cursor in Next");
1271 declare
1272 Node : constant Node_Access :=
1273 Tree_Operations.Next (Position.Node);
1275 begin
1276 if Node = null then
1277 return No_Element;
1278 end if;
1280 return Cursor'(Position.Container, Node);
1281 end;
1282 end Next;
1284 -------------
1285 -- Overlap --
1286 -------------
1288 function Overlap (Left, Right : Set) return Boolean is
1289 begin
1290 return Set_Ops.Overlap (Left.Tree, Right.Tree);
1291 end Overlap;
1293 ------------
1294 -- Parent --
1295 ------------
1297 function Parent (Node : Node_Access) return Node_Access is
1298 begin
1299 return Node.Parent;
1300 end Parent;
1302 --------------
1303 -- Previous --
1304 --------------
1306 procedure Previous (Position : in out Cursor) is
1307 begin
1308 Position := Previous (Position);
1309 end Previous;
1311 function Previous (Position : Cursor) return Cursor is
1312 begin
1313 if Position = No_Element then
1314 return No_Element;
1315 end if;
1317 if Position.Node.Element = null then
1318 raise Program_Error with "Position cursor is bad";
1319 end if;
1321 pragma Assert (Vet (Position.Container.Tree, Position.Node),
1322 "bad cursor in Previous");
1324 declare
1325 Node : constant Node_Access :=
1326 Tree_Operations.Previous (Position.Node);
1328 begin
1329 if Node = null then
1330 return No_Element;
1331 end if;
1333 return Cursor'(Position.Container, Node);
1334 end;
1335 end Previous;
1337 -------------------
1338 -- Query_Element --
1339 -------------------
1341 procedure Query_Element
1342 (Position : Cursor;
1343 Process : not null access procedure (Element : Element_Type))
1345 begin
1346 if Position.Node = null then
1347 raise Constraint_Error with "Position cursor equals No_Element";
1348 end if;
1350 if Position.Node.Element = null then
1351 raise Program_Error with "Position cursor is bad";
1352 end if;
1354 pragma Assert (Vet (Position.Container.Tree, Position.Node),
1355 "bad cursor in Query_Element");
1357 declare
1358 T : Tree_Type renames Position.Container.Tree;
1360 B : Natural renames T.Busy;
1361 L : Natural renames T.Lock;
1363 begin
1364 B := B + 1;
1365 L := L + 1;
1367 begin
1368 Process (Position.Node.Element.all);
1369 exception
1370 when others =>
1371 L := L - 1;
1372 B := B - 1;
1373 raise;
1374 end;
1376 L := L - 1;
1377 B := B - 1;
1378 end;
1379 end Query_Element;
1381 ----------
1382 -- Read --
1383 ----------
1385 procedure Read
1386 (Stream : not null access Root_Stream_Type'Class;
1387 Container : out Set)
1389 function Read_Node
1390 (Stream : not null access Root_Stream_Type'Class) return Node_Access;
1391 pragma Inline (Read_Node);
1393 procedure Read is
1394 new Tree_Operations.Generic_Read (Clear, Read_Node);
1396 ---------------
1397 -- Read_Node --
1398 ---------------
1400 function Read_Node
1401 (Stream : not null access Root_Stream_Type'Class) return Node_Access
1403 Node : Node_Access := new Node_Type;
1405 begin
1406 Node.Element := new Element_Type'(Element_Type'Input (Stream));
1407 return Node;
1409 exception
1410 when others =>
1411 Free (Node); -- Note that Free deallocates elem too
1412 raise;
1413 end Read_Node;
1415 -- Start of processing for Read
1417 begin
1418 Read (Stream, Container.Tree);
1419 end Read;
1421 procedure Read
1422 (Stream : not null access Root_Stream_Type'Class;
1423 Item : out Cursor)
1425 begin
1426 raise Program_Error with "attempt to stream set cursor";
1427 end Read;
1429 -------------
1430 -- Replace --
1431 -------------
1433 procedure Replace (Container : in out Set; New_Item : Element_Type) is
1434 Node : constant Node_Access :=
1435 Element_Keys.Find (Container.Tree, New_Item);
1437 X : Element_Access;
1438 pragma Warnings (Off, X);
1440 begin
1441 if Node = null then
1442 raise Constraint_Error with "attempt to replace element not in set";
1443 end if;
1445 if Container.Tree.Lock > 0 then
1446 raise Program_Error with
1447 "attempt to tamper with elements (set is locked)";
1448 end if;
1450 X := Node.Element;
1451 Node.Element := new Element_Type'(New_Item);
1452 Free_Element (X);
1453 end Replace;
1455 ---------------------
1456 -- Replace_Element --
1457 ---------------------
1459 procedure Replace_Element
1460 (Tree : in out Tree_Type;
1461 Node : Node_Access;
1462 Item : Element_Type)
1464 pragma Assert (Node /= null);
1465 pragma Assert (Node.Element /= null);
1467 function New_Node return Node_Access;
1468 pragma Inline (New_Node);
1470 procedure Local_Insert_Post is
1471 new Element_Keys.Generic_Insert_Post (New_Node);
1473 procedure Local_Insert_Sans_Hint is
1474 new Element_Keys.Generic_Conditional_Insert (Local_Insert_Post);
1476 procedure Local_Insert_With_Hint is
1477 new Element_Keys.Generic_Conditional_Insert_With_Hint
1478 (Local_Insert_Post,
1479 Local_Insert_Sans_Hint);
1481 --------------
1482 -- New_Node --
1483 --------------
1485 function New_Node return Node_Access is
1486 begin
1487 Node.Element := new Element_Type'(Item); -- OK if fails
1488 Node.Color := Red;
1489 Node.Parent := null;
1490 Node.Right := null;
1491 Node.Left := null;
1493 return Node;
1494 end New_Node;
1496 Hint : Node_Access;
1497 Result : Node_Access;
1498 Inserted : Boolean;
1500 X : Element_Access := Node.Element;
1502 -- Start of processing for Replace_Element
1504 begin
1505 if Item < Node.Element.all
1506 or else Node.Element.all < Item
1507 then
1508 null;
1510 else
1511 if Tree.Lock > 0 then
1512 raise Program_Error with
1513 "attempt to tamper with elements (set is locked)";
1514 end if;
1516 Node.Element := new Element_Type'(Item);
1517 Free_Element (X);
1519 return;
1520 end if;
1522 Hint := Element_Keys.Ceiling (Tree, Item);
1524 if Hint = null then
1525 null;
1527 elsif Item < Hint.Element.all then
1528 if Hint = Node then
1529 if Tree.Lock > 0 then
1530 raise Program_Error with
1531 "attempt to tamper with elements (set is locked)";
1532 end if;
1534 Node.Element := new Element_Type'(Item);
1535 Free_Element (X);
1537 return;
1538 end if;
1540 else
1541 pragma Assert (not (Hint.Element.all < Item));
1542 raise Program_Error with "attempt to replace existing element";
1543 end if;
1545 Tree_Operations.Delete_Node_Sans_Free (Tree, Node); -- Checks busy-bit
1547 Local_Insert_With_Hint
1548 (Tree => Tree,
1549 Position => Hint,
1550 Key => Item,
1551 Node => Result,
1552 Inserted => Inserted);
1554 pragma Assert (Inserted);
1555 pragma Assert (Result = Node);
1557 Free_Element (X);
1558 end Replace_Element;
1560 procedure Replace_Element
1561 (Container : in out Set;
1562 Position : Cursor;
1563 New_Item : Element_Type)
1565 begin
1566 if Position.Node = null then
1567 raise Constraint_Error with "Position cursor equals No_Element";
1568 end if;
1570 if Position.Node.Element = null then
1571 raise Program_Error with "Position cursor is bad";
1572 end if;
1574 if Position.Container /= Container'Unrestricted_Access then
1575 raise Program_Error with "Position cursor designates wrong set";
1576 end if;
1578 pragma Assert (Vet (Container.Tree, Position.Node),
1579 "bad cursor in Replace_Element");
1581 Replace_Element (Container.Tree, Position.Node, New_Item);
1582 end Replace_Element;
1584 ---------------------
1585 -- Reverse_Iterate --
1586 ---------------------
1588 procedure Reverse_Iterate
1589 (Container : Set;
1590 Process : not null access procedure (Position : Cursor))
1592 procedure Process_Node (Node : Node_Access);
1593 pragma Inline (Process_Node);
1595 procedure Local_Reverse_Iterate is
1596 new Tree_Operations.Generic_Reverse_Iteration (Process_Node);
1598 ------------------
1599 -- Process_Node --
1600 ------------------
1602 procedure Process_Node (Node : Node_Access) is
1603 begin
1604 Process (Cursor'(Container'Unrestricted_Access, Node));
1605 end Process_Node;
1607 T : Tree_Type renames Container.Tree'Unrestricted_Access.all;
1608 B : Natural renames T.Busy;
1610 -- Start of processing for Reverse_Iterate
1612 begin
1613 B := B + 1;
1615 begin
1616 Local_Reverse_Iterate (T);
1617 exception
1618 when others =>
1619 B := B - 1;
1620 raise;
1621 end;
1623 B := B - 1;
1624 end Reverse_Iterate;
1626 -----------
1627 -- Right --
1628 -----------
1630 function Right (Node : Node_Access) return Node_Access is
1631 begin
1632 return Node.Right;
1633 end Right;
1635 ---------------
1636 -- Set_Color --
1637 ---------------
1639 procedure Set_Color (Node : Node_Access; Color : Color_Type) is
1640 begin
1641 Node.Color := Color;
1642 end Set_Color;
1644 --------------
1645 -- Set_Left --
1646 --------------
1648 procedure Set_Left (Node : Node_Access; Left : Node_Access) is
1649 begin
1650 Node.Left := Left;
1651 end Set_Left;
1653 ----------------
1654 -- Set_Parent --
1655 ----------------
1657 procedure Set_Parent (Node : Node_Access; Parent : Node_Access) is
1658 begin
1659 Node.Parent := Parent;
1660 end Set_Parent;
1662 ---------------
1663 -- Set_Right --
1664 ---------------
1666 procedure Set_Right (Node : Node_Access; Right : Node_Access) is
1667 begin
1668 Node.Right := Right;
1669 end Set_Right;
1671 --------------------------
1672 -- Symmetric_Difference --
1673 --------------------------
1675 procedure Symmetric_Difference (Target : in out Set; Source : Set) is
1676 begin
1677 Set_Ops.Symmetric_Difference (Target.Tree, Source.Tree);
1678 end Symmetric_Difference;
1680 function Symmetric_Difference (Left, Right : Set) return Set is
1681 Tree : constant Tree_Type :=
1682 Set_Ops.Symmetric_Difference (Left.Tree, Right.Tree);
1683 begin
1684 return Set'(Controlled with Tree);
1685 end Symmetric_Difference;
1687 ------------
1688 -- To_Set --
1689 ------------
1691 function To_Set (New_Item : Element_Type) return Set is
1692 Tree : Tree_Type;
1694 Node : Node_Access;
1695 Inserted : Boolean;
1696 pragma Unreferenced (Node, Inserted);
1698 begin
1699 Insert_Sans_Hint (Tree, New_Item, Node, Inserted);
1700 return Set'(Controlled with Tree);
1701 end To_Set;
1703 -----------
1704 -- Union --
1705 -----------
1707 procedure Union (Target : in out Set; Source : Set) is
1708 begin
1709 Set_Ops.Union (Target.Tree, Source.Tree);
1710 end Union;
1712 function Union (Left, Right : Set) return Set is
1713 Tree : constant Tree_Type :=
1714 Set_Ops.Union (Left.Tree, Right.Tree);
1715 begin
1716 return Set'(Controlled with Tree);
1717 end Union;
1719 -----------
1720 -- Write --
1721 -----------
1723 procedure Write
1724 (Stream : not null access Root_Stream_Type'Class;
1725 Container : Set)
1727 procedure Write_Node
1728 (Stream : not null access Root_Stream_Type'Class;
1729 Node : Node_Access);
1730 pragma Inline (Write_Node);
1732 procedure Write is
1733 new Tree_Operations.Generic_Write (Write_Node);
1735 ----------------
1736 -- Write_Node --
1737 ----------------
1739 procedure Write_Node
1740 (Stream : not null access Root_Stream_Type'Class;
1741 Node : Node_Access)
1743 begin
1744 Element_Type'Output (Stream, Node.Element.all);
1745 end Write_Node;
1747 -- Start of processing for Write
1749 begin
1750 Write (Stream, Container.Tree);
1751 end Write;
1753 procedure Write
1754 (Stream : not null access Root_Stream_Type'Class;
1755 Item : Cursor)
1757 begin
1758 raise Program_Error with "attempt to stream set cursor";
1759 end Write;
1761 end Ada.Containers.Indefinite_Ordered_Sets;