* tree-vect-loop-manip.c (vect_do_peeling): Do not use
[official-gcc.git] / gcc / ada / libgnat / a-cborma.adb
blob1bff46d9cc32b2da46a6d14698faf648252f6dc2
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT LIBRARY COMPONENTS --
4 -- --
5 -- A D A . C O N T A I N E R S . B O U N D E D _ O R D E R E D _ M A P S --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 2004-2017, 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.Helpers; use Ada.Containers.Helpers;
32 with Ada.Containers.Red_Black_Trees.Generic_Bounded_Operations;
33 pragma Elaborate_All
34 (Ada.Containers.Red_Black_Trees.Generic_Bounded_Operations);
36 with Ada.Containers.Red_Black_Trees.Generic_Bounded_Keys;
37 pragma Elaborate_All
38 (Ada.Containers.Red_Black_Trees.Generic_Bounded_Keys);
40 with System; use type System.Address;
42 package body Ada.Containers.Bounded_Ordered_Maps is
44 pragma Warnings (Off, "variable ""Busy*"" is not referenced");
45 pragma Warnings (Off, "variable ""Lock*"" is not referenced");
46 -- See comment in Ada.Containers.Helpers
48 -----------------------------
49 -- Node Access Subprograms --
50 -----------------------------
52 -- These subprograms provide a functional interface to access fields
53 -- of a node, and a procedural interface for modifying these values.
55 function Color (Node : Node_Type) return Color_Type;
56 pragma Inline (Color);
58 function Left (Node : Node_Type) return Count_Type;
59 pragma Inline (Left);
61 function Parent (Node : Node_Type) return Count_Type;
62 pragma Inline (Parent);
64 function Right (Node : Node_Type) return Count_Type;
65 pragma Inline (Right);
67 procedure Set_Parent (Node : in out Node_Type; Parent : Count_Type);
68 pragma Inline (Set_Parent);
70 procedure Set_Left (Node : in out Node_Type; Left : Count_Type);
71 pragma Inline (Set_Left);
73 procedure Set_Right (Node : in out Node_Type; Right : Count_Type);
74 pragma Inline (Set_Right);
76 procedure Set_Color (Node : in out Node_Type; Color : Color_Type);
77 pragma Inline (Set_Color);
79 -----------------------
80 -- Local Subprograms --
81 -----------------------
83 function Is_Greater_Key_Node
84 (Left : Key_Type;
85 Right : Node_Type) return Boolean;
86 pragma Inline (Is_Greater_Key_Node);
88 function Is_Less_Key_Node
89 (Left : Key_Type;
90 Right : Node_Type) return Boolean;
91 pragma Inline (Is_Less_Key_Node);
93 --------------------------
94 -- Local Instantiations --
95 --------------------------
97 package Tree_Operations is
98 new Red_Black_Trees.Generic_Bounded_Operations (Tree_Types);
100 use Tree_Operations;
102 package Key_Ops is
103 new Red_Black_Trees.Generic_Bounded_Keys
104 (Tree_Operations => Tree_Operations,
105 Key_Type => Key_Type,
106 Is_Less_Key_Node => Is_Less_Key_Node,
107 Is_Greater_Key_Node => Is_Greater_Key_Node);
109 ---------
110 -- "<" --
111 ---------
113 function "<" (Left, Right : Cursor) return Boolean is
114 begin
115 if Checks and then Left.Node = 0 then
116 raise Constraint_Error with "Left cursor of ""<"" equals No_Element";
117 end if;
119 if Checks and then Right.Node = 0 then
120 raise Constraint_Error with "Right cursor of ""<"" equals No_Element";
121 end if;
123 pragma Assert (Vet (Left.Container.all, Left.Node),
124 "Left cursor of ""<"" is bad");
126 pragma Assert (Vet (Right.Container.all, Right.Node),
127 "Right cursor of ""<"" is bad");
129 declare
130 LN : Node_Type renames Left.Container.Nodes (Left.Node);
131 RN : Node_Type renames Right.Container.Nodes (Right.Node);
133 begin
134 return LN.Key < RN.Key;
135 end;
136 end "<";
138 function "<" (Left : Cursor; Right : Key_Type) return Boolean is
139 begin
140 if Checks and then Left.Node = 0 then
141 raise Constraint_Error with "Left cursor of ""<"" equals No_Element";
142 end if;
144 pragma Assert (Vet (Left.Container.all, Left.Node),
145 "Left cursor of ""<"" is bad");
147 declare
148 LN : Node_Type renames Left.Container.Nodes (Left.Node);
150 begin
151 return LN.Key < Right;
152 end;
153 end "<";
155 function "<" (Left : Key_Type; Right : Cursor) return Boolean is
156 begin
157 if Checks and then Right.Node = 0 then
158 raise Constraint_Error with "Right cursor of ""<"" equals No_Element";
159 end if;
161 pragma Assert (Vet (Right.Container.all, Right.Node),
162 "Right cursor of ""<"" is bad");
164 declare
165 RN : Node_Type renames Right.Container.Nodes (Right.Node);
167 begin
168 return Left < RN.Key;
169 end;
170 end "<";
172 ---------
173 -- "=" --
174 ---------
176 function "=" (Left, Right : Map) return Boolean is
177 function Is_Equal_Node_Node (L, R : Node_Type) return Boolean;
178 pragma Inline (Is_Equal_Node_Node);
180 function Is_Equal is
181 new Tree_Operations.Generic_Equal (Is_Equal_Node_Node);
183 ------------------------
184 -- Is_Equal_Node_Node --
185 ------------------------
187 function Is_Equal_Node_Node
188 (L, R : Node_Type) return Boolean is
189 begin
190 if L.Key < R.Key then
191 return False;
193 elsif R.Key < L.Key then
194 return False;
196 else
197 return L.Element = R.Element;
198 end if;
199 end Is_Equal_Node_Node;
201 -- Start of processing for "="
203 begin
204 return Is_Equal (Left, Right);
205 end "=";
207 ---------
208 -- ">" --
209 ---------
211 function ">" (Left, Right : Cursor) return Boolean is
212 begin
213 if Checks and then Left.Node = 0 then
214 raise Constraint_Error with "Left cursor of "">"" equals No_Element";
215 end if;
217 if Checks and then Right.Node = 0 then
218 raise Constraint_Error with "Right cursor of "">"" equals No_Element";
219 end if;
221 pragma Assert (Vet (Left.Container.all, Left.Node),
222 "Left cursor of "">"" is bad");
224 pragma Assert (Vet (Right.Container.all, Right.Node),
225 "Right cursor of "">"" is bad");
227 declare
228 LN : Node_Type renames Left.Container.Nodes (Left.Node);
229 RN : Node_Type renames Right.Container.Nodes (Right.Node);
231 begin
232 return RN.Key < LN.Key;
233 end;
234 end ">";
236 function ">" (Left : Cursor; Right : Key_Type) return Boolean is
237 begin
238 if Checks and then Left.Node = 0 then
239 raise Constraint_Error with "Left cursor of "">"" equals No_Element";
240 end if;
242 pragma Assert (Vet (Left.Container.all, Left.Node),
243 "Left cursor of "">"" is bad");
245 declare
246 LN : Node_Type renames Left.Container.Nodes (Left.Node);
247 begin
248 return Right < LN.Key;
249 end;
250 end ">";
252 function ">" (Left : Key_Type; Right : Cursor) return Boolean is
253 begin
254 if Checks and then Right.Node = 0 then
255 raise Constraint_Error with "Right cursor of "">"" equals No_Element";
256 end if;
258 pragma Assert (Vet (Right.Container.all, Right.Node),
259 "Right cursor of "">"" is bad");
261 declare
262 RN : Node_Type renames Right.Container.Nodes (Right.Node);
264 begin
265 return RN.Key < Left;
266 end;
267 end ">";
269 ------------
270 -- Assign --
271 ------------
273 procedure Assign (Target : in out Map; Source : Map) is
274 procedure Append_Element (Source_Node : Count_Type);
276 procedure Append_Elements is
277 new Tree_Operations.Generic_Iteration (Append_Element);
279 --------------------
280 -- Append_Element --
281 --------------------
283 procedure Append_Element (Source_Node : Count_Type) is
284 SN : Node_Type renames Source.Nodes (Source_Node);
286 procedure Set_Element (Node : in out Node_Type);
287 pragma Inline (Set_Element);
289 function New_Node return Count_Type;
290 pragma Inline (New_Node);
292 procedure Insert_Post is
293 new Key_Ops.Generic_Insert_Post (New_Node);
295 procedure Unconditional_Insert_Sans_Hint is
296 new Key_Ops.Generic_Unconditional_Insert (Insert_Post);
298 procedure Unconditional_Insert_Avec_Hint is
299 new Key_Ops.Generic_Unconditional_Insert_With_Hint
300 (Insert_Post,
301 Unconditional_Insert_Sans_Hint);
303 procedure Allocate is
304 new Tree_Operations.Generic_Allocate (Set_Element);
306 --------------
307 -- New_Node --
308 --------------
310 function New_Node return Count_Type is
311 Result : Count_Type;
313 begin
314 Allocate (Target, Result);
315 return Result;
316 end New_Node;
318 -----------------
319 -- Set_Element --
320 -----------------
322 procedure Set_Element (Node : in out Node_Type) is
323 begin
324 Node.Key := SN.Key;
325 Node.Element := SN.Element;
326 end Set_Element;
328 Target_Node : Count_Type;
330 -- Start of processing for Append_Element
332 begin
333 Unconditional_Insert_Avec_Hint
334 (Tree => Target,
335 Hint => 0,
336 Key => SN.Key,
337 Node => Target_Node);
338 end Append_Element;
340 -- Start of processing for Assign
342 begin
343 if Target'Address = Source'Address then
344 return;
345 end if;
347 if Checks and then Target.Capacity < Source.Length then
348 raise Capacity_Error
349 with "Target capacity is less than Source length";
350 end if;
352 Tree_Operations.Clear_Tree (Target);
353 Append_Elements (Source);
354 end Assign;
356 -------------
357 -- Ceiling --
358 -------------
360 function Ceiling (Container : Map; Key : Key_Type) return Cursor is
361 Node : constant Count_Type := Key_Ops.Ceiling (Container, Key);
363 begin
364 if Node = 0 then
365 return No_Element;
366 end if;
368 return Cursor'(Container'Unrestricted_Access, Node);
369 end Ceiling;
371 -----------
372 -- Clear --
373 -----------
375 procedure Clear (Container : in out Map) is
376 begin
377 Tree_Operations.Clear_Tree (Container);
378 end Clear;
380 -----------
381 -- Color --
382 -----------
384 function Color (Node : Node_Type) return Color_Type is
385 begin
386 return Node.Color;
387 end Color;
389 ------------------------
390 -- Constant_Reference --
391 ------------------------
393 function Constant_Reference
394 (Container : aliased Map;
395 Position : Cursor) return Constant_Reference_Type
397 begin
398 if Checks and then Position.Container = null then
399 raise Constraint_Error with
400 "Position cursor has no element";
401 end if;
403 if Checks and then Position.Container /= Container'Unrestricted_Access
404 then
405 raise Program_Error with
406 "Position cursor designates wrong map";
407 end if;
409 pragma Assert (Vet (Container, Position.Node),
410 "Position cursor in Constant_Reference is bad");
412 declare
413 N : Node_Type renames Container.Nodes (Position.Node);
414 TC : constant Tamper_Counts_Access :=
415 Container.TC'Unrestricted_Access;
416 begin
417 return R : constant Constant_Reference_Type :=
418 (Element => N.Element'Access,
419 Control => (Controlled with TC))
421 Lock (TC.all);
422 end return;
423 end;
424 end Constant_Reference;
426 function Constant_Reference
427 (Container : aliased Map;
428 Key : Key_Type) return Constant_Reference_Type
430 Node : constant Count_Type := Key_Ops.Find (Container, Key);
432 begin
433 if Checks and then Node = 0 then
434 raise Constraint_Error with "key not in map";
435 end if;
437 declare
438 N : Node_Type renames Container.Nodes (Node);
439 TC : constant Tamper_Counts_Access :=
440 Container.TC'Unrestricted_Access;
441 begin
442 return R : constant Constant_Reference_Type :=
443 (Element => N.Element'Access,
444 Control => (Controlled with TC))
446 Lock (TC.all);
447 end return;
448 end;
449 end Constant_Reference;
451 --------------
452 -- Contains --
453 --------------
455 function Contains (Container : Map; Key : Key_Type) return Boolean is
456 begin
457 return Find (Container, Key) /= No_Element;
458 end Contains;
460 ----------
461 -- Copy --
462 ----------
464 function Copy (Source : Map; Capacity : Count_Type := 0) return Map is
465 C : Count_Type;
467 begin
468 if Capacity = 0 then
469 C := Source.Length;
471 elsif Capacity >= Source.Length then
472 C := Capacity;
474 elsif Checks then
475 raise Capacity_Error with "Capacity value too small";
476 end if;
478 return Target : Map (Capacity => C) do
479 Assign (Target => Target, Source => Source);
480 end return;
481 end Copy;
483 ------------
484 -- Delete --
485 ------------
487 procedure Delete (Container : in out Map; Position : in out Cursor) is
488 begin
489 if Checks and then Position.Node = 0 then
490 raise Constraint_Error with
491 "Position cursor of Delete equals No_Element";
492 end if;
494 if Checks and then Position.Container /= Container'Unrestricted_Access
495 then
496 raise Program_Error with
497 "Position cursor of Delete designates wrong map";
498 end if;
500 pragma Assert (Vet (Container, Position.Node),
501 "Position cursor of Delete is bad");
503 Tree_Operations.Delete_Node_Sans_Free (Container, Position.Node);
504 Tree_Operations.Free (Container, Position.Node);
506 Position := No_Element;
507 end Delete;
509 procedure Delete (Container : in out Map; Key : Key_Type) is
510 X : constant Count_Type := Key_Ops.Find (Container, Key);
512 begin
513 if Checks and then X = 0 then
514 raise Constraint_Error with "key not in map";
515 end if;
517 Tree_Operations.Delete_Node_Sans_Free (Container, X);
518 Tree_Operations.Free (Container, X);
519 end Delete;
521 ------------------
522 -- Delete_First --
523 ------------------
525 procedure Delete_First (Container : in out Map) is
526 X : constant Count_Type := Container.First;
528 begin
529 if X /= 0 then
530 Tree_Operations.Delete_Node_Sans_Free (Container, X);
531 Tree_Operations.Free (Container, X);
532 end if;
533 end Delete_First;
535 -----------------
536 -- Delete_Last --
537 -----------------
539 procedure Delete_Last (Container : in out Map) is
540 X : constant Count_Type := Container.Last;
542 begin
543 if X /= 0 then
544 Tree_Operations.Delete_Node_Sans_Free (Container, X);
545 Tree_Operations.Free (Container, X);
546 end if;
547 end Delete_Last;
549 -------------
550 -- Element --
551 -------------
553 function Element (Position : Cursor) return Element_Type is
554 begin
555 if Checks and then Position.Node = 0 then
556 raise Constraint_Error with
557 "Position cursor of function Element equals No_Element";
558 end if;
560 pragma Assert (Vet (Position.Container.all, Position.Node),
561 "Position cursor of function Element is bad");
563 return Position.Container.Nodes (Position.Node).Element;
564 end Element;
566 function Element (Container : Map; Key : Key_Type) return Element_Type is
567 Node : constant Count_Type := Key_Ops.Find (Container, Key);
568 begin
569 if Checks and then Node = 0 then
570 raise Constraint_Error with "key not in map";
571 end if;
573 return Container.Nodes (Node).Element;
574 end Element;
576 ---------------------
577 -- Equivalent_Keys --
578 ---------------------
580 function Equivalent_Keys (Left, Right : Key_Type) return Boolean is
581 begin
582 if Left < Right
583 or else Right < Left
584 then
585 return False;
586 else
587 return True;
588 end if;
589 end Equivalent_Keys;
591 -------------
592 -- Exclude --
593 -------------
595 procedure Exclude (Container : in out Map; Key : Key_Type) is
596 X : constant Count_Type := Key_Ops.Find (Container, Key);
598 begin
599 if X /= 0 then
600 Tree_Operations.Delete_Node_Sans_Free (Container, X);
601 Tree_Operations.Free (Container, X);
602 end if;
603 end Exclude;
605 --------------
606 -- Finalize --
607 --------------
609 procedure Finalize (Object : in out Iterator) is
610 begin
611 if Object.Container /= null then
612 Unbusy (Object.Container.TC);
613 end if;
614 end Finalize;
616 ----------
617 -- Find --
618 ----------
620 function Find (Container : Map; Key : Key_Type) return Cursor is
621 Node : constant Count_Type := Key_Ops.Find (Container, Key);
622 begin
623 if Node = 0 then
624 return No_Element;
625 else
626 return Cursor'(Container'Unrestricted_Access, Node);
627 end if;
628 end Find;
630 -----------
631 -- First --
632 -----------
634 function First (Container : Map) return Cursor is
635 begin
636 if Container.First = 0 then
637 return No_Element;
638 else
639 return Cursor'(Container'Unrestricted_Access, Container.First);
640 end if;
641 end First;
643 function First (Object : Iterator) return Cursor is
644 begin
645 -- The value of the iterator object's Node component influences the
646 -- behavior of the First (and Last) selector function.
648 -- When the Node component is 0, this means the iterator object was
649 -- constructed without a start expression, in which case the (forward)
650 -- iteration starts from the (logical) beginning of the entire sequence
651 -- of items (corresponding to Container.First, for a forward iterator).
653 -- Otherwise, this is iteration over a partial sequence of items. When
654 -- the Node component is positive, the iterator object was constructed
655 -- with a start expression, that specifies the position from which the
656 -- (forward) partial iteration begins.
658 if Object.Node = 0 then
659 return Bounded_Ordered_Maps.First (Object.Container.all);
660 else
661 return Cursor'(Object.Container, Object.Node);
662 end if;
663 end First;
665 -------------------
666 -- First_Element --
667 -------------------
669 function First_Element (Container : Map) return Element_Type is
670 begin
671 if Checks and then Container.First = 0 then
672 raise Constraint_Error with "map is empty";
673 end if;
675 return Container.Nodes (Container.First).Element;
676 end First_Element;
678 ---------------
679 -- First_Key --
680 ---------------
682 function First_Key (Container : Map) return Key_Type is
683 begin
684 if Checks and then Container.First = 0 then
685 raise Constraint_Error with "map is empty";
686 end if;
688 return Container.Nodes (Container.First).Key;
689 end First_Key;
691 -----------
692 -- Floor --
693 -----------
695 function Floor (Container : Map; Key : Key_Type) return Cursor is
696 Node : constant Count_Type := Key_Ops.Floor (Container, Key);
697 begin
698 if Node = 0 then
699 return No_Element;
700 else
701 return Cursor'(Container'Unrestricted_Access, Node);
702 end if;
703 end Floor;
705 ------------------------
706 -- Get_Element_Access --
707 ------------------------
709 function Get_Element_Access
710 (Position : Cursor) return not null Element_Access is
711 begin
712 return Position.Container.Nodes (Position.Node).Element'Access;
713 end Get_Element_Access;
715 -----------------
716 -- Has_Element --
717 -----------------
719 function Has_Element (Position : Cursor) return Boolean is
720 begin
721 return Position /= No_Element;
722 end Has_Element;
724 -------------
725 -- Include --
726 -------------
728 procedure Include
729 (Container : in out Map;
730 Key : Key_Type;
731 New_Item : Element_Type)
733 Position : Cursor;
734 Inserted : Boolean;
736 begin
737 Insert (Container, Key, New_Item, Position, Inserted);
739 if not Inserted then
740 TE_Check (Container.TC);
742 declare
743 N : Node_Type renames Container.Nodes (Position.Node);
744 begin
745 N.Key := Key;
746 N.Element := New_Item;
747 end;
748 end if;
749 end Include;
751 ------------
752 -- Insert --
753 ------------
755 procedure Insert
756 (Container : in out Map;
757 Key : Key_Type;
758 New_Item : Element_Type;
759 Position : out Cursor;
760 Inserted : out Boolean)
762 procedure Assign (Node : in out Node_Type);
763 pragma Inline (Assign);
765 function New_Node return Count_Type;
766 pragma Inline (New_Node);
768 procedure Insert_Post is
769 new Key_Ops.Generic_Insert_Post (New_Node);
771 procedure Insert_Sans_Hint is
772 new Key_Ops.Generic_Conditional_Insert (Insert_Post);
774 procedure Allocate is
775 new Tree_Operations.Generic_Allocate (Assign);
777 ------------
778 -- Assign --
779 ------------
781 procedure Assign (Node : in out Node_Type) is
782 begin
783 Node.Key := Key;
784 Node.Element := New_Item;
785 end Assign;
787 --------------
788 -- New_Node --
789 --------------
791 function New_Node return Count_Type is
792 Result : Count_Type;
793 begin
794 Allocate (Container, Result);
795 return Result;
796 end New_Node;
798 -- Start of processing for Insert
800 begin
801 Insert_Sans_Hint
802 (Container,
803 Key,
804 Position.Node,
805 Inserted);
807 Position.Container := Container'Unrestricted_Access;
808 end Insert;
810 procedure Insert
811 (Container : in out Map;
812 Key : Key_Type;
813 New_Item : Element_Type)
815 Position : Cursor;
816 pragma Unreferenced (Position);
818 Inserted : Boolean;
820 begin
821 Insert (Container, Key, New_Item, Position, Inserted);
823 if Checks and then not Inserted then
824 raise Constraint_Error with "key already in map";
825 end if;
826 end Insert;
828 procedure Insert
829 (Container : in out Map;
830 Key : Key_Type;
831 Position : out Cursor;
832 Inserted : out Boolean)
834 procedure Assign (Node : in out Node_Type);
835 pragma Inline (Assign);
837 function New_Node return Count_Type;
838 pragma Inline (New_Node);
840 procedure Insert_Post is
841 new Key_Ops.Generic_Insert_Post (New_Node);
843 procedure Insert_Sans_Hint is
844 new Key_Ops.Generic_Conditional_Insert (Insert_Post);
846 procedure Allocate is
847 new Tree_Operations.Generic_Allocate (Assign);
849 ------------
850 -- Assign --
851 ------------
853 procedure Assign (Node : in out Node_Type) is
854 pragma Warnings (Off);
855 Default_Initialized_Item : Element_Type;
856 pragma Unmodified (Default_Initialized_Item);
857 -- Default-initialized element (ok to reference, see below)
859 begin
860 Node.Key := Key;
862 -- There is no explicit element provided, but in an instance the element
863 -- type may be a scalar with a Default_Value aspect, or a composite type
864 -- with such a scalar component or with defaulted components, so insert
865 -- possibly initialized elements at the given position.
867 Node.Element := Default_Initialized_Item;
868 pragma Warnings (On);
869 end Assign;
871 --------------
872 -- New_Node --
873 --------------
875 function New_Node return Count_Type is
876 Result : Count_Type;
877 begin
878 Allocate (Container, Result);
879 return Result;
880 end New_Node;
882 -- Start of processing for Insert
884 begin
885 Insert_Sans_Hint
886 (Container,
887 Key,
888 Position.Node,
889 Inserted);
891 Position.Container := Container'Unrestricted_Access;
892 end Insert;
894 --------------
895 -- Is_Empty --
896 --------------
898 function Is_Empty (Container : Map) return Boolean is
899 begin
900 return Container.Length = 0;
901 end Is_Empty;
903 -------------------------
904 -- Is_Greater_Key_Node --
905 -------------------------
907 function Is_Greater_Key_Node
908 (Left : Key_Type;
909 Right : Node_Type) return Boolean
911 begin
912 -- Left > Right same as Right < Left
914 return Right.Key < Left;
915 end Is_Greater_Key_Node;
917 ----------------------
918 -- Is_Less_Key_Node --
919 ----------------------
921 function Is_Less_Key_Node
922 (Left : Key_Type;
923 Right : Node_Type) return Boolean
925 begin
926 return Left < Right.Key;
927 end Is_Less_Key_Node;
929 -------------
930 -- Iterate --
931 -------------
933 procedure Iterate
934 (Container : Map;
935 Process : not null access procedure (Position : Cursor))
937 procedure Process_Node (Node : Count_Type);
938 pragma Inline (Process_Node);
940 procedure Local_Iterate is
941 new Tree_Operations.Generic_Iteration (Process_Node);
943 ------------------
944 -- Process_Node --
945 ------------------
947 procedure Process_Node (Node : Count_Type) is
948 begin
949 Process (Cursor'(Container'Unrestricted_Access, Node));
950 end Process_Node;
952 Busy : With_Busy (Container.TC'Unrestricted_Access);
954 -- Start of processing for Iterate
956 begin
957 Local_Iterate (Container);
958 end Iterate;
960 function Iterate
961 (Container : Map) return Map_Iterator_Interfaces.Reversible_Iterator'Class
963 begin
964 -- The value of the Node component influences the behavior of the First
965 -- and Last selector functions of the iterator object. When the Node
966 -- component is 0 (as is the case here), this means the iterator object
967 -- was constructed without a start expression. This is a complete
968 -- iterator, meaning that the iteration starts from the (logical)
969 -- beginning of the sequence of items.
971 -- Note: For a forward iterator, Container.First is the beginning, and
972 -- for a reverse iterator, Container.Last is the beginning.
974 return It : constant Iterator :=
975 (Limited_Controlled with
976 Container => Container'Unrestricted_Access,
977 Node => 0)
979 Busy (Container.TC'Unrestricted_Access.all);
980 end return;
981 end Iterate;
983 function Iterate
984 (Container : Map;
985 Start : Cursor)
986 return Map_Iterator_Interfaces.Reversible_Iterator'Class
988 begin
989 -- Iterator was defined to behave the same as for a complete iterator,
990 -- and iterate over the entire sequence of items. However, those
991 -- semantics were unintuitive and arguably error-prone (it is too easy
992 -- to accidentally create an endless loop), and so they were changed,
993 -- per the ARG meeting in Denver on 2011/11. However, there was no
994 -- consensus about what positive meaning this corner case should have,
995 -- and so it was decided to simply raise an exception. This does imply,
996 -- however, that it is not possible to use a partial iterator to specify
997 -- an empty sequence of items.
999 if Checks and then Start = No_Element then
1000 raise Constraint_Error with
1001 "Start position for iterator equals No_Element";
1002 end if;
1004 if Checks and then Start.Container /= Container'Unrestricted_Access then
1005 raise Program_Error with
1006 "Start cursor of Iterate designates wrong map";
1007 end if;
1009 pragma Assert (Vet (Container, Start.Node),
1010 "Start cursor of Iterate is bad");
1012 -- The value of the Node component influences the behavior of the First
1013 -- and Last selector functions of the iterator object. When the Node
1014 -- component is positive (as is the case here), it means that this
1015 -- is a partial iteration, over a subset of the complete sequence of
1016 -- items. The iterator object was constructed with a start expression,
1017 -- indicating the position from which the iteration begins. (Note that
1018 -- the start position has the same value irrespective of whether this
1019 -- is a forward or reverse iteration.)
1021 return It : constant Iterator :=
1022 (Limited_Controlled with
1023 Container => Container'Unrestricted_Access,
1024 Node => Start.Node)
1026 Busy (Container.TC'Unrestricted_Access.all);
1027 end return;
1028 end Iterate;
1030 ---------
1031 -- Key --
1032 ---------
1034 function Key (Position : Cursor) return Key_Type is
1035 begin
1036 if Checks and then Position.Node = 0 then
1037 raise Constraint_Error with
1038 "Position cursor of function Key equals No_Element";
1039 end if;
1041 pragma Assert (Vet (Position.Container.all, Position.Node),
1042 "Position cursor of function Key is bad");
1044 return Position.Container.Nodes (Position.Node).Key;
1045 end Key;
1047 ----------
1048 -- Last --
1049 ----------
1051 function Last (Container : Map) return Cursor is
1052 begin
1053 if Container.Last = 0 then
1054 return No_Element;
1055 else
1056 return Cursor'(Container'Unrestricted_Access, Container.Last);
1057 end if;
1058 end Last;
1060 function Last (Object : Iterator) return Cursor is
1061 begin
1062 -- The value of the iterator object's Node component influences the
1063 -- behavior of the Last (and First) selector function.
1065 -- When the Node component is 0, this means the iterator object was
1066 -- constructed without a start expression, in which case the (reverse)
1067 -- iteration starts from the (logical) beginning of the entire sequence
1068 -- (corresponding to Container.Last, for a reverse iterator).
1070 -- Otherwise, this is iteration over a partial sequence of items. When
1071 -- the Node component is positive, the iterator object was constructed
1072 -- with a start expression, that specifies the position from which the
1073 -- (reverse) partial iteration begins.
1075 if Object.Node = 0 then
1076 return Bounded_Ordered_Maps.Last (Object.Container.all);
1077 else
1078 return Cursor'(Object.Container, Object.Node);
1079 end if;
1080 end Last;
1082 ------------------
1083 -- Last_Element --
1084 ------------------
1086 function Last_Element (Container : Map) return Element_Type is
1087 begin
1088 if Checks and then Container.Last = 0 then
1089 raise Constraint_Error with "map is empty";
1090 end if;
1092 return Container.Nodes (Container.Last).Element;
1093 end Last_Element;
1095 --------------
1096 -- Last_Key --
1097 --------------
1099 function Last_Key (Container : Map) return Key_Type is
1100 begin
1101 if Checks and then Container.Last = 0 then
1102 raise Constraint_Error with "map is empty";
1103 end if;
1105 return Container.Nodes (Container.Last).Key;
1106 end Last_Key;
1108 ----------
1109 -- Left --
1110 ----------
1112 function Left (Node : Node_Type) return Count_Type is
1113 begin
1114 return Node.Left;
1115 end Left;
1117 ------------
1118 -- Length --
1119 ------------
1121 function Length (Container : Map) return Count_Type is
1122 begin
1123 return Container.Length;
1124 end Length;
1126 ----------
1127 -- Move --
1128 ----------
1130 procedure Move (Target : in out Map; Source : in out Map) is
1131 begin
1132 if Target'Address = Source'Address then
1133 return;
1134 end if;
1136 TC_Check (Source.TC);
1138 Target.Assign (Source);
1139 Source.Clear;
1140 end Move;
1142 ----------
1143 -- Next --
1144 ----------
1146 procedure Next (Position : in out Cursor) is
1147 begin
1148 Position := Next (Position);
1149 end Next;
1151 function Next (Position : Cursor) return Cursor is
1152 begin
1153 if Position = No_Element then
1154 return No_Element;
1155 end if;
1157 pragma Assert (Vet (Position.Container.all, Position.Node),
1158 "Position cursor of Next is bad");
1160 declare
1161 M : Map renames Position.Container.all;
1163 Node : constant Count_Type :=
1164 Tree_Operations.Next (M, Position.Node);
1166 begin
1167 if Node = 0 then
1168 return No_Element;
1169 end if;
1171 return Cursor'(Position.Container, Node);
1172 end;
1173 end Next;
1175 function Next
1176 (Object : Iterator;
1177 Position : Cursor) return Cursor
1179 begin
1180 if Position.Container = null then
1181 return No_Element;
1182 end if;
1184 if Checks and then Position.Container /= Object.Container then
1185 raise Program_Error with
1186 "Position cursor of Next designates wrong map";
1187 end if;
1189 return Next (Position);
1190 end Next;
1192 ------------
1193 -- Parent --
1194 ------------
1196 function Parent (Node : Node_Type) return Count_Type is
1197 begin
1198 return Node.Parent;
1199 end Parent;
1201 --------------
1202 -- Previous --
1203 --------------
1205 procedure Previous (Position : in out Cursor) is
1206 begin
1207 Position := Previous (Position);
1208 end Previous;
1210 function Previous (Position : Cursor) return Cursor is
1211 begin
1212 if Position = No_Element then
1213 return No_Element;
1214 end if;
1216 pragma Assert (Vet (Position.Container.all, Position.Node),
1217 "Position cursor of Previous is bad");
1219 declare
1220 M : Map renames Position.Container.all;
1222 Node : constant Count_Type :=
1223 Tree_Operations.Previous (M, Position.Node);
1225 begin
1226 if Node = 0 then
1227 return No_Element;
1228 end if;
1230 return Cursor'(Position.Container, Node);
1231 end;
1232 end Previous;
1234 function Previous
1235 (Object : Iterator;
1236 Position : Cursor) return Cursor
1238 begin
1239 if Position.Container = null then
1240 return No_Element;
1241 end if;
1243 if Checks and then Position.Container /= Object.Container then
1244 raise Program_Error with
1245 "Position cursor of Previous designates wrong map";
1246 end if;
1248 return Previous (Position);
1249 end Previous;
1251 ----------------------
1252 -- Pseudo_Reference --
1253 ----------------------
1255 function Pseudo_Reference
1256 (Container : aliased Map'Class) return Reference_Control_Type
1258 TC : constant Tamper_Counts_Access :=
1259 Container.TC'Unrestricted_Access;
1260 begin
1261 return R : constant Reference_Control_Type := (Controlled with TC) do
1262 Lock (TC.all);
1263 end return;
1264 end Pseudo_Reference;
1266 -------------------
1267 -- Query_Element --
1268 -------------------
1270 procedure Query_Element
1271 (Position : Cursor;
1272 Process : not null access procedure (Key : Key_Type;
1273 Element : Element_Type))
1275 begin
1276 if Checks and then Position.Node = 0 then
1277 raise Constraint_Error with
1278 "Position cursor of Query_Element equals No_Element";
1279 end if;
1281 pragma Assert (Vet (Position.Container.all, Position.Node),
1282 "Position cursor of Query_Element is bad");
1284 declare
1285 M : Map renames Position.Container.all;
1286 N : Node_Type renames M.Nodes (Position.Node);
1287 Lock : With_Lock (M.TC'Unrestricted_Access);
1288 begin
1289 Process (N.Key, N.Element);
1290 end;
1291 end Query_Element;
1293 ----------
1294 -- Read --
1295 ----------
1297 procedure Read
1298 (Stream : not null access Root_Stream_Type'Class;
1299 Container : out Map)
1301 procedure Read_Element (Node : in out Node_Type);
1302 pragma Inline (Read_Element);
1304 procedure Allocate is
1305 new Tree_Operations.Generic_Allocate (Read_Element);
1307 procedure Read_Elements is
1308 new Tree_Operations.Generic_Read (Allocate);
1310 ------------------
1311 -- Read_Element --
1312 ------------------
1314 procedure Read_Element (Node : in out Node_Type) is
1315 begin
1316 Key_Type'Read (Stream, Node.Key);
1317 Element_Type'Read (Stream, Node.Element);
1318 end Read_Element;
1320 -- Start of processing for Read
1322 begin
1323 Read_Elements (Stream, Container);
1324 end Read;
1326 procedure Read
1327 (Stream : not null access Root_Stream_Type'Class;
1328 Item : out Cursor)
1330 begin
1331 raise Program_Error with "attempt to stream map cursor";
1332 end Read;
1334 procedure Read
1335 (Stream : not null access Root_Stream_Type'Class;
1336 Item : out Reference_Type)
1338 begin
1339 raise Program_Error with "attempt to stream reference";
1340 end Read;
1342 procedure Read
1343 (Stream : not null access Root_Stream_Type'Class;
1344 Item : out Constant_Reference_Type)
1346 begin
1347 raise Program_Error with "attempt to stream reference";
1348 end Read;
1350 ---------------
1351 -- Reference --
1352 ---------------
1354 function Reference
1355 (Container : aliased in out Map;
1356 Position : Cursor) return Reference_Type
1358 begin
1359 if Checks and then Position.Container = null then
1360 raise Constraint_Error with
1361 "Position cursor has no element";
1362 end if;
1364 if Checks and then Position.Container /= Container'Unrestricted_Access
1365 then
1366 raise Program_Error with
1367 "Position cursor designates wrong map";
1368 end if;
1370 pragma Assert (Vet (Container, Position.Node),
1371 "Position cursor in function Reference is bad");
1373 declare
1374 N : Node_Type renames Container.Nodes (Position.Node);
1375 TC : constant Tamper_Counts_Access :=
1376 Container.TC'Unrestricted_Access;
1377 begin
1378 return R : constant Reference_Type :=
1379 (Element => N.Element'Access,
1380 Control => (Controlled with TC))
1382 Lock (TC.all);
1383 end return;
1384 end;
1385 end Reference;
1387 function Reference
1388 (Container : aliased in out Map;
1389 Key : Key_Type) return Reference_Type
1391 Node : constant Count_Type := Key_Ops.Find (Container, Key);
1393 begin
1394 if Checks and then Node = 0 then
1395 raise Constraint_Error with "key not in map";
1396 end if;
1398 declare
1399 N : Node_Type renames Container.Nodes (Node);
1400 TC : constant Tamper_Counts_Access :=
1401 Container.TC'Unrestricted_Access;
1402 begin
1403 return R : constant Reference_Type :=
1404 (Element => N.Element'Access,
1405 Control => (Controlled with TC))
1407 Lock (TC.all);
1408 end return;
1409 end;
1410 end Reference;
1412 -------------
1413 -- Replace --
1414 -------------
1416 procedure Replace
1417 (Container : in out Map;
1418 Key : Key_Type;
1419 New_Item : Element_Type)
1421 Node : constant Count_Type := Key_Ops.Find (Container, Key);
1423 begin
1424 if Checks and then Node = 0 then
1425 raise Constraint_Error with "key not in map";
1426 end if;
1428 TE_Check (Container.TC);
1430 declare
1431 N : Node_Type renames Container.Nodes (Node);
1433 begin
1434 N.Key := Key;
1435 N.Element := New_Item;
1436 end;
1437 end Replace;
1439 ---------------------
1440 -- Replace_Element --
1441 ---------------------
1443 procedure Replace_Element
1444 (Container : in out Map;
1445 Position : Cursor;
1446 New_Item : Element_Type)
1448 begin
1449 if Checks and then Position.Node = 0 then
1450 raise Constraint_Error with
1451 "Position cursor of Replace_Element equals No_Element";
1452 end if;
1454 if Checks and then Position.Container /= Container'Unrestricted_Access
1455 then
1456 raise Program_Error with
1457 "Position cursor of Replace_Element designates wrong map";
1458 end if;
1460 TE_Check (Container.TC);
1462 pragma Assert (Vet (Container, Position.Node),
1463 "Position cursor of Replace_Element is bad");
1465 Container.Nodes (Position.Node).Element := New_Item;
1466 end Replace_Element;
1468 ---------------------
1469 -- Reverse_Iterate --
1470 ---------------------
1472 procedure Reverse_Iterate
1473 (Container : Map;
1474 Process : not null access procedure (Position : Cursor))
1476 procedure Process_Node (Node : Count_Type);
1477 pragma Inline (Process_Node);
1479 procedure Local_Reverse_Iterate is
1480 new Tree_Operations.Generic_Reverse_Iteration (Process_Node);
1482 ------------------
1483 -- Process_Node --
1484 ------------------
1486 procedure Process_Node (Node : Count_Type) is
1487 begin
1488 Process (Cursor'(Container'Unrestricted_Access, Node));
1489 end Process_Node;
1491 Busy : With_Busy (Container.TC'Unrestricted_Access);
1493 -- Start of processing for Reverse_Iterate
1495 begin
1496 Local_Reverse_Iterate (Container);
1497 end Reverse_Iterate;
1499 -----------
1500 -- Right --
1501 -----------
1503 function Right (Node : Node_Type) return Count_Type is
1504 begin
1505 return Node.Right;
1506 end Right;
1508 ---------------
1509 -- Set_Color --
1510 ---------------
1512 procedure Set_Color
1513 (Node : in out Node_Type;
1514 Color : Color_Type)
1516 begin
1517 Node.Color := Color;
1518 end Set_Color;
1520 --------------
1521 -- Set_Left --
1522 --------------
1524 procedure Set_Left (Node : in out Node_Type; Left : Count_Type) is
1525 begin
1526 Node.Left := Left;
1527 end Set_Left;
1529 ----------------
1530 -- Set_Parent --
1531 ----------------
1533 procedure Set_Parent (Node : in out Node_Type; Parent : Count_Type) is
1534 begin
1535 Node.Parent := Parent;
1536 end Set_Parent;
1538 ---------------
1539 -- Set_Right --
1540 ---------------
1542 procedure Set_Right (Node : in out Node_Type; Right : Count_Type) is
1543 begin
1544 Node.Right := Right;
1545 end Set_Right;
1547 --------------------
1548 -- Update_Element --
1549 --------------------
1551 procedure Update_Element
1552 (Container : in out Map;
1553 Position : Cursor;
1554 Process : not null access procedure (Key : Key_Type;
1555 Element : in out Element_Type))
1557 begin
1558 if Checks and then Position.Node = 0 then
1559 raise Constraint_Error with
1560 "Position cursor of Update_Element equals No_Element";
1561 end if;
1563 if Checks and then Position.Container /= Container'Unrestricted_Access
1564 then
1565 raise Program_Error with
1566 "Position cursor of Update_Element designates wrong map";
1567 end if;
1569 pragma Assert (Vet (Container, Position.Node),
1570 "Position cursor of Update_Element is bad");
1572 declare
1573 N : Node_Type renames Container.Nodes (Position.Node);
1574 Lock : With_Lock (Container.TC'Unrestricted_Access);
1575 begin
1576 Process (N.Key, N.Element);
1577 end;
1578 end Update_Element;
1580 -----------
1581 -- Write --
1582 -----------
1584 procedure Write
1585 (Stream : not null access Root_Stream_Type'Class;
1586 Container : Map)
1588 procedure Write_Node
1589 (Stream : not null access Root_Stream_Type'Class;
1590 Node : Node_Type);
1591 pragma Inline (Write_Node);
1593 procedure Write_Nodes is
1594 new Tree_Operations.Generic_Write (Write_Node);
1596 ----------------
1597 -- Write_Node --
1598 ----------------
1600 procedure Write_Node
1601 (Stream : not null access Root_Stream_Type'Class;
1602 Node : Node_Type)
1604 begin
1605 Key_Type'Write (Stream, Node.Key);
1606 Element_Type'Write (Stream, Node.Element);
1607 end Write_Node;
1609 -- Start of processing for Write
1611 begin
1612 Write_Nodes (Stream, Container);
1613 end Write;
1615 procedure Write
1616 (Stream : not null access Root_Stream_Type'Class;
1617 Item : Cursor)
1619 begin
1620 raise Program_Error with "attempt to stream map cursor";
1621 end Write;
1623 procedure Write
1624 (Stream : not null access Root_Stream_Type'Class;
1625 Item : Reference_Type)
1627 begin
1628 raise Program_Error with "attempt to stream reference";
1629 end Write;
1631 procedure Write
1632 (Stream : not null access Root_Stream_Type'Class;
1633 Item : Constant_Reference_Type)
1635 begin
1636 raise Program_Error with "attempt to stream reference";
1637 end Write;
1639 end Ada.Containers.Bounded_Ordered_Maps;