* arm.c (FL_WBUF): Define.
[official-gcc.git] / gcc / ada / a-stzunb.adb
blob8717bb375777325b91bd7560f0d375039e360806
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUNTIME COMPONENTS --
4 -- --
5 -- A D A . S T R I N G S . W I D E _ W I D E _ U N B O U N D E D --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2005 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 2, 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. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, USA. --
21 -- --
22 -- As a special exception, if other files instantiate generics from this --
23 -- unit, or you link this unit with other files to produce an executable, --
24 -- this unit does not by itself cause the resulting executable to be --
25 -- covered by the GNU General Public License. This exception does not --
26 -- however invalidate any other reasons why the executable file might be --
27 -- covered by the GNU Public License. --
28 -- --
29 -- GNAT was originally developed by the GNAT team at New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc. --
31 -- --
32 ------------------------------------------------------------------------------
34 with Ada.Strings.Wide_Wide_Fixed;
35 with Ada.Strings.Wide_Wide_Search;
36 with Ada.Unchecked_Deallocation;
38 package body Ada.Strings.Wide_Wide_Unbounded is
40 use Ada.Finalization;
42 ---------
43 -- "&" --
44 ---------
46 function "&"
47 (Left : Unbounded_Wide_Wide_String;
48 Right : Unbounded_Wide_Wide_String) return Unbounded_Wide_Wide_String
50 L_Length : constant Natural := Left.Last;
51 R_Length : constant Natural := Right.Last;
52 Result : Unbounded_Wide_Wide_String;
54 begin
55 Result.Last := L_Length + R_Length;
57 Result.Reference := new Wide_Wide_String (1 .. Result.Last);
59 Result.Reference (1 .. L_Length) :=
60 Left.Reference (1 .. Left.Last);
61 Result.Reference (L_Length + 1 .. Result.Last) :=
62 Right.Reference (1 .. Right.Last);
64 return Result;
65 end "&";
67 function "&"
68 (Left : Unbounded_Wide_Wide_String;
69 Right : Wide_Wide_String) return Unbounded_Wide_Wide_String
71 L_Length : constant Natural := Left.Last;
72 Result : Unbounded_Wide_Wide_String;
74 begin
75 Result.Last := L_Length + Right'Length;
77 Result.Reference := new Wide_Wide_String (1 .. Result.Last);
79 Result.Reference (1 .. L_Length) := Left.Reference (1 .. Left.Last);
80 Result.Reference (L_Length + 1 .. Result.Last) := Right;
82 return Result;
83 end "&";
85 function "&"
86 (Left : Wide_Wide_String;
87 Right : Unbounded_Wide_Wide_String) return Unbounded_Wide_Wide_String
89 R_Length : constant Natural := Right.Last;
90 Result : Unbounded_Wide_Wide_String;
92 begin
93 Result.Last := Left'Length + R_Length;
95 Result.Reference := new Wide_Wide_String (1 .. Result.Last);
97 Result.Reference (1 .. Left'Length) := Left;
98 Result.Reference (Left'Length + 1 .. Result.Last) :=
99 Right.Reference (1 .. Right.Last);
101 return Result;
102 end "&";
104 function "&"
105 (Left : Unbounded_Wide_Wide_String;
106 Right : Wide_Wide_Character) return Unbounded_Wide_Wide_String
108 Result : Unbounded_Wide_Wide_String;
110 begin
111 Result.Last := Left.Last + 1;
113 Result.Reference := new Wide_Wide_String (1 .. Result.Last);
115 Result.Reference (1 .. Result.Last - 1) :=
116 Left.Reference (1 .. Left.Last);
117 Result.Reference (Result.Last) := Right;
119 return Result;
120 end "&";
122 function "&"
123 (Left : Wide_Wide_Character;
124 Right : Unbounded_Wide_Wide_String) return Unbounded_Wide_Wide_String
126 Result : Unbounded_Wide_Wide_String;
128 begin
129 Result.Last := Right.Last + 1;
131 Result.Reference := new Wide_Wide_String (1 .. Result.Last);
132 Result.Reference (1) := Left;
133 Result.Reference (2 .. Result.Last) :=
134 Right.Reference (1 .. Right.Last);
135 return Result;
136 end "&";
138 ---------
139 -- "*" --
140 ---------
142 function "*"
143 (Left : Natural;
144 Right : Wide_Wide_Character) return Unbounded_Wide_Wide_String
146 Result : Unbounded_Wide_Wide_String;
148 begin
149 Result.Last := Left;
151 Result.Reference := new Wide_Wide_String (1 .. Left);
152 for J in Result.Reference'Range loop
153 Result.Reference (J) := Right;
154 end loop;
156 return Result;
157 end "*";
159 function "*"
160 (Left : Natural;
161 Right : Wide_Wide_String) return Unbounded_Wide_Wide_String
163 Len : constant Natural := Right'Length;
164 K : Positive;
165 Result : Unbounded_Wide_Wide_String;
167 begin
168 Result.Last := Left * Len;
170 Result.Reference := new Wide_Wide_String (1 .. Result.Last);
172 K := 1;
173 for J in 1 .. Left loop
174 Result.Reference (K .. K + Len - 1) := Right;
175 K := K + Len;
176 end loop;
178 return Result;
179 end "*";
181 function "*"
182 (Left : Natural;
183 Right : Unbounded_Wide_Wide_String) return Unbounded_Wide_Wide_String
185 Len : constant Natural := Right.Last;
186 K : Positive;
187 Result : Unbounded_Wide_Wide_String;
189 begin
190 Result.Last := Left * Len;
192 Result.Reference := new Wide_Wide_String (1 .. Result.Last);
194 K := 1;
195 for J in 1 .. Left loop
196 Result.Reference (K .. K + Len - 1) :=
197 Right.Reference (1 .. Right.Last);
198 K := K + Len;
199 end loop;
201 return Result;
202 end "*";
204 ---------
205 -- "<" --
206 ---------
208 function "<"
209 (Left : Unbounded_Wide_Wide_String;
210 Right : Unbounded_Wide_Wide_String) return Boolean
212 begin
213 return
214 Left.Reference (1 .. Left.Last) < Right.Reference (1 .. Right.Last);
215 end "<";
217 function "<"
218 (Left : Unbounded_Wide_Wide_String;
219 Right : Wide_Wide_String) return Boolean
221 begin
222 return Left.Reference (1 .. Left.Last) < Right;
223 end "<";
225 function "<"
226 (Left : Wide_Wide_String;
227 Right : Unbounded_Wide_Wide_String) return Boolean
229 begin
230 return Left < Right.Reference (1 .. Right.Last);
231 end "<";
233 ----------
234 -- "<=" --
235 ----------
237 function "<="
238 (Left : Unbounded_Wide_Wide_String;
239 Right : Unbounded_Wide_Wide_String) return Boolean
241 begin
242 return
243 Left.Reference (1 .. Left.Last) <= Right.Reference (1 .. Right.Last);
244 end "<=";
246 function "<="
247 (Left : Unbounded_Wide_Wide_String;
248 Right : Wide_Wide_String) return Boolean
250 begin
251 return Left.Reference (1 .. Left.Last) <= Right;
252 end "<=";
254 function "<="
255 (Left : Wide_Wide_String;
256 Right : Unbounded_Wide_Wide_String) return Boolean
258 begin
259 return Left <= Right.Reference (1 .. Right.Last);
260 end "<=";
262 ---------
263 -- "=" --
264 ---------
266 function "="
267 (Left : Unbounded_Wide_Wide_String;
268 Right : Unbounded_Wide_Wide_String) return Boolean
270 begin
271 return
272 Left.Reference (1 .. Left.Last) = Right.Reference (1 .. Right.Last);
273 end "=";
275 function "="
276 (Left : Unbounded_Wide_Wide_String;
277 Right : Wide_Wide_String) return Boolean
279 begin
280 return Left.Reference (1 .. Left.Last) = Right;
281 end "=";
283 function "="
284 (Left : Wide_Wide_String;
285 Right : Unbounded_Wide_Wide_String) return Boolean
287 begin
288 return Left = Right.Reference (1 .. Right.Last);
289 end "=";
291 ---------
292 -- ">" --
293 ---------
295 function ">"
296 (Left : Unbounded_Wide_Wide_String;
297 Right : Unbounded_Wide_Wide_String) return Boolean
299 begin
300 return
301 Left.Reference (1 .. Left.Last) > Right.Reference (1 .. Right.Last);
302 end ">";
304 function ">"
305 (Left : Unbounded_Wide_Wide_String;
306 Right : Wide_Wide_String) return Boolean
308 begin
309 return Left.Reference (1 .. Left.Last) > Right;
310 end ">";
312 function ">"
313 (Left : Wide_Wide_String;
314 Right : Unbounded_Wide_Wide_String) return Boolean
316 begin
317 return Left > Right.Reference (1 .. Right.Last);
318 end ">";
320 ----------
321 -- ">=" --
322 ----------
324 function ">="
325 (Left : Unbounded_Wide_Wide_String;
326 Right : Unbounded_Wide_Wide_String) return Boolean
328 begin
329 return
330 Left.Reference (1 .. Left.Last) >= Right.Reference (1 .. Right.Last);
331 end ">=";
333 function ">="
334 (Left : Unbounded_Wide_Wide_String;
335 Right : Wide_Wide_String) return Boolean
337 begin
338 return Left.Reference (1 .. Left.Last) >= Right;
339 end ">=";
341 function ">="
342 (Left : Wide_Wide_String;
343 Right : Unbounded_Wide_Wide_String) return Boolean
345 begin
346 return Left >= Right.Reference (1 .. Right.Last);
347 end ">=";
349 ------------
350 -- Adjust --
351 ------------
353 procedure Adjust (Object : in out Unbounded_Wide_Wide_String) is
354 begin
355 -- Copy string, except we do not copy the statically allocated null
356 -- string, since it can never be deallocated. Note that we do not copy
357 -- extra string room here to avoid dragging unused allocated memory.
359 if Object.Reference /= Null_Wide_Wide_String'Access then
360 Object.Reference :=
361 new Wide_Wide_String'(Object.Reference (1 .. Object.Last));
362 end if;
363 end Adjust;
365 ------------
366 -- Append --
367 ------------
369 procedure Append
370 (Source : in out Unbounded_Wide_Wide_String;
371 New_Item : Unbounded_Wide_Wide_String)
373 begin
374 Realloc_For_Chunk (Source, New_Item.Last);
375 Source.Reference (Source.Last + 1 .. Source.Last + New_Item.Last) :=
376 New_Item.Reference (1 .. New_Item.Last);
377 Source.Last := Source.Last + New_Item.Last;
378 end Append;
380 procedure Append
381 (Source : in out Unbounded_Wide_Wide_String;
382 New_Item : Wide_Wide_String)
384 begin
385 Realloc_For_Chunk (Source, New_Item'Length);
386 Source.Reference (Source.Last + 1 .. Source.Last + New_Item'Length) :=
387 New_Item;
388 Source.Last := Source.Last + New_Item'Length;
389 end Append;
391 procedure Append
392 (Source : in out Unbounded_Wide_Wide_String;
393 New_Item : Wide_Wide_Character)
395 begin
396 Realloc_For_Chunk (Source, 1);
397 Source.Reference (Source.Last + 1) := New_Item;
398 Source.Last := Source.Last + 1;
399 end Append;
401 -----------
402 -- Count --
403 -----------
405 function Count
406 (Source : Unbounded_Wide_Wide_String;
407 Pattern : Wide_Wide_String;
408 Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping :=
409 Wide_Wide_Maps.Identity)
410 return Natural
412 begin
413 return
414 Wide_Wide_Search.Count
415 (Source.Reference (1 .. Source.Last), Pattern, Mapping);
416 end Count;
418 function Count
419 (Source : Unbounded_Wide_Wide_String;
420 Pattern : Wide_Wide_String;
421 Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function)
422 return Natural
424 begin
425 return
426 Wide_Wide_Search.Count
427 (Source.Reference (1 .. Source.Last), Pattern, Mapping);
428 end Count;
430 function Count
431 (Source : Unbounded_Wide_Wide_String;
432 Set : Wide_Wide_Maps.Wide_Wide_Character_Set) return Natural
434 begin
435 return
436 Wide_Wide_Search.Count
437 (Source.Reference (1 .. Source.Last), Set);
438 end Count;
440 ------------
441 -- Delete --
442 ------------
444 function Delete
445 (Source : Unbounded_Wide_Wide_String;
446 From : Positive;
447 Through : Natural) return Unbounded_Wide_Wide_String
449 begin
450 return
451 To_Unbounded_Wide_Wide_String
452 (Wide_Wide_Fixed.Delete
453 (Source.Reference (1 .. Source.Last), From, Through));
454 end Delete;
456 procedure Delete
457 (Source : in out Unbounded_Wide_Wide_String;
458 From : Positive;
459 Through : Natural)
461 begin
462 if From > Through then
463 null;
465 elsif From < Source.Reference'First or else Through > Source.Last then
466 raise Index_Error;
468 else
469 declare
470 Len : constant Natural := Through - From + 1;
472 begin
473 Source.Reference (From .. Source.Last - Len) :=
474 Source.Reference (Through + 1 .. Source.Last);
475 Source.Last := Source.Last - Len;
476 end;
477 end if;
478 end Delete;
480 -------------
481 -- Element --
482 -------------
484 function Element
485 (Source : Unbounded_Wide_Wide_String;
486 Index : Positive) return Wide_Wide_Character
488 begin
489 if Index <= Source.Last then
490 return Source.Reference (Index);
491 else
492 raise Strings.Index_Error;
493 end if;
494 end Element;
496 --------------
497 -- Finalize --
498 --------------
500 procedure Finalize (Object : in out Unbounded_Wide_Wide_String) is
501 procedure Deallocate is
502 new Ada.Unchecked_Deallocation
503 (Wide_Wide_String, Wide_Wide_String_Access);
505 begin
506 -- Note: Don't try to free statically allocated null string
508 if Object.Reference /= Null_Wide_Wide_String'Access then
509 Deallocate (Object.Reference);
510 Object.Reference := Null_Unbounded_Wide_Wide_String.Reference;
511 Object.Last := 0;
512 end if;
513 end Finalize;
515 ----------------
516 -- Find_Token --
517 ----------------
519 procedure Find_Token
520 (Source : Unbounded_Wide_Wide_String;
521 Set : Wide_Wide_Maps.Wide_Wide_Character_Set;
522 Test : Strings.Membership;
523 First : out Positive;
524 Last : out Natural)
526 begin
527 Wide_Wide_Search.Find_Token
528 (Source.Reference (1 .. Source.Last), Set, Test, First, Last);
529 end Find_Token;
531 ----------
532 -- Free --
533 ----------
535 procedure Free (X : in out Wide_Wide_String_Access) is
536 procedure Deallocate is
537 new Ada.Unchecked_Deallocation
538 (Wide_Wide_String, Wide_Wide_String_Access);
540 begin
541 -- Note: Do not try to free statically allocated null string
543 if X /= Null_Unbounded_Wide_Wide_String.Reference then
544 Deallocate (X);
545 end if;
546 end Free;
548 ----------
549 -- Head --
550 ----------
552 function Head
553 (Source : Unbounded_Wide_Wide_String;
554 Count : Natural;
555 Pad : Wide_Wide_Character := Wide_Wide_Space)
556 return Unbounded_Wide_Wide_String
558 begin
559 return To_Unbounded_Wide_Wide_String
560 (Wide_Wide_Fixed.Head
561 (Source.Reference (1 .. Source.Last), Count, Pad));
562 end Head;
564 procedure Head
565 (Source : in out Unbounded_Wide_Wide_String;
566 Count : Natural;
567 Pad : Wide_Wide_Character := Wide_Wide_Space)
569 Old : Wide_Wide_String_Access := Source.Reference;
570 begin
571 Source.Reference :=
572 new Wide_Wide_String'
573 (Wide_Wide_Fixed.Head
574 (Source.Reference (1 .. Source.Last), Count, Pad));
575 Source.Last := Source.Reference'Length;
576 Free (Old);
577 end Head;
579 -----------
580 -- Index --
581 -----------
583 function Index
584 (Source : Unbounded_Wide_Wide_String;
585 Pattern : Wide_Wide_String;
586 Going : Strings.Direction := Strings.Forward;
587 Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping :=
588 Wide_Wide_Maps.Identity)
589 return Natural
591 begin
592 return
593 Wide_Wide_Search.Index
594 (Source.Reference (1 .. Source.Last), Pattern, Going, Mapping);
595 end Index;
597 function Index
598 (Source : Unbounded_Wide_Wide_String;
599 Pattern : Wide_Wide_String;
600 Going : Direction := Forward;
601 Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function)
602 return Natural
604 begin
605 return
606 Wide_Wide_Search.Index
607 (Source.Reference (1 .. Source.Last), Pattern, Going, Mapping);
608 end Index;
610 function Index
611 (Source : Unbounded_Wide_Wide_String;
612 Set : Wide_Wide_Maps.Wide_Wide_Character_Set;
613 Test : Strings.Membership := Strings.Inside;
614 Going : Strings.Direction := Strings.Forward) return Natural
616 begin
617 return Wide_Wide_Search.Index
618 (Source.Reference (1 .. Source.Last), Set, Test, Going);
619 end Index;
621 function Index
622 (Source : Unbounded_Wide_Wide_String;
623 Pattern : Wide_Wide_String;
624 From : Positive;
625 Going : Direction := Forward;
626 Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping :=
627 Wide_Wide_Maps.Identity)
628 return Natural
630 begin
631 return
632 Wide_Wide_Search.Index
633 (Source.Reference (1 .. Source.Last), Pattern, From, Going, Mapping);
634 end Index;
636 function Index
637 (Source : Unbounded_Wide_Wide_String;
638 Pattern : Wide_Wide_String;
639 From : Positive;
640 Going : Direction := Forward;
641 Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function)
642 return Natural
644 begin
645 return
646 Wide_Wide_Search.Index
647 (Source.Reference (1 .. Source.Last), Pattern, From, Going, Mapping);
648 end Index;
651 function Index
652 (Source : Unbounded_Wide_Wide_String;
653 Set : Wide_Wide_Maps.Wide_Wide_Character_Set;
654 From : Positive;
655 Test : Membership := Inside;
656 Going : Direction := Forward) return Natural
658 begin
659 return
660 Wide_Wide_Search.Index
661 (Source.Reference (1 .. Source.Last), Set, From, Test, Going);
662 end Index;
664 function Index_Non_Blank
665 (Source : Unbounded_Wide_Wide_String;
666 Going : Strings.Direction := Strings.Forward) return Natural
668 begin
669 return
670 Wide_Wide_Search.Index_Non_Blank
671 (Source.Reference (1 .. Source.Last), Going);
672 end Index_Non_Blank;
674 function Index_Non_Blank
675 (Source : Unbounded_Wide_Wide_String;
676 From : Positive;
677 Going : Direction := Forward) return Natural
679 begin
680 return
681 Wide_Wide_Search.Index_Non_Blank
682 (Source.Reference (1 .. Source.Last), From, Going);
683 end Index_Non_Blank;
685 ----------------
686 -- Initialize --
687 ----------------
689 procedure Initialize (Object : in out Unbounded_Wide_Wide_String) is
690 begin
691 Object.Reference := Null_Unbounded_Wide_Wide_String.Reference;
692 Object.Last := 0;
693 end Initialize;
695 ------------
696 -- Insert --
697 ------------
699 function Insert
700 (Source : Unbounded_Wide_Wide_String;
701 Before : Positive;
702 New_Item : Wide_Wide_String) return Unbounded_Wide_Wide_String
704 begin
705 return
706 To_Unbounded_Wide_Wide_String
707 (Wide_Wide_Fixed.Insert
708 (Source.Reference (1 .. Source.Last), Before, New_Item));
709 end Insert;
711 procedure Insert
712 (Source : in out Unbounded_Wide_Wide_String;
713 Before : Positive;
714 New_Item : Wide_Wide_String)
716 begin
717 if Before not in Source.Reference'First .. Source.Last + 1 then
718 raise Index_Error;
719 end if;
721 Realloc_For_Chunk (Source, New_Item'Size);
723 Source.Reference
724 (Before + New_Item'Length .. Source.Last + New_Item'Length) :=
725 Source.Reference (Before .. Source.Last);
727 Source.Reference (Before .. Before + New_Item'Length - 1) := New_Item;
728 Source.Last := Source.Last + New_Item'Length;
729 end Insert;
731 ------------
732 -- Length --
733 ------------
735 function Length (Source : Unbounded_Wide_Wide_String) return Natural is
736 begin
737 return Source.Last;
738 end Length;
740 ---------------
741 -- Overwrite --
742 ---------------
744 function Overwrite
745 (Source : Unbounded_Wide_Wide_String;
746 Position : Positive;
747 New_Item : Wide_Wide_String) return Unbounded_Wide_Wide_String
749 begin
750 return
751 To_Unbounded_Wide_Wide_String
752 (Wide_Wide_Fixed.Overwrite
753 (Source.Reference (1 .. Source.Last), Position, New_Item));
754 end Overwrite;
756 procedure Overwrite
757 (Source : in out Unbounded_Wide_Wide_String;
758 Position : Positive;
759 New_Item : Wide_Wide_String)
761 NL : constant Natural := New_Item'Length;
762 begin
763 if Position <= Source.Last - NL + 1 then
764 Source.Reference (Position .. Position + NL - 1) := New_Item;
765 else
766 declare
767 Old : Wide_Wide_String_Access := Source.Reference;
768 begin
769 Source.Reference := new Wide_Wide_String'
770 (Wide_Wide_Fixed.Overwrite
771 (Source.Reference (1 .. Source.Last), Position, New_Item));
772 Source.Last := Source.Reference'Length;
773 Free (Old);
774 end;
775 end if;
776 end Overwrite;
778 -----------------------
779 -- Realloc_For_Chunk --
780 -----------------------
782 procedure Realloc_For_Chunk
783 (Source : in out Unbounded_Wide_Wide_String;
784 Chunk_Size : Natural)
786 Growth_Factor : constant := 50;
787 S_Length : constant Natural := Source.Reference'Length;
789 begin
790 if Chunk_Size > S_Length - Source.Last then
791 declare
792 Alloc_Chunk_Size : constant Positive :=
793 Chunk_Size + (S_Length / Growth_Factor);
794 Tmp : Wide_Wide_String_Access;
795 begin
796 Tmp := new Wide_Wide_String (1 .. S_Length + Alloc_Chunk_Size);
797 Tmp (1 .. Source.Last) := Source.Reference (1 .. Source.Last);
798 Free (Source.Reference);
799 Source.Reference := Tmp;
800 end;
801 end if;
802 end Realloc_For_Chunk;
804 ---------------------
805 -- Replace_Element --
806 ---------------------
808 procedure Replace_Element
809 (Source : in out Unbounded_Wide_Wide_String;
810 Index : Positive;
811 By : Wide_Wide_Character)
813 begin
814 if Index <= Source.Last then
815 Source.Reference (Index) := By;
816 else
817 raise Strings.Index_Error;
818 end if;
819 end Replace_Element;
821 -------------------
822 -- Replace_Slice --
823 -------------------
825 function Replace_Slice
826 (Source : Unbounded_Wide_Wide_String;
827 Low : Positive;
828 High : Natural;
829 By : Wide_Wide_String) return Unbounded_Wide_Wide_String
831 begin
832 return To_Unbounded_Wide_Wide_String
833 (Wide_Wide_Fixed.Replace_Slice
834 (Source.Reference (1 .. Source.Last), Low, High, By));
835 end Replace_Slice;
837 procedure Replace_Slice
838 (Source : in out Unbounded_Wide_Wide_String;
839 Low : Positive;
840 High : Natural;
841 By : Wide_Wide_String)
843 Old : Wide_Wide_String_Access := Source.Reference;
844 begin
845 Source.Reference := new Wide_Wide_String'
846 (Wide_Wide_Fixed.Replace_Slice
847 (Source.Reference (1 .. Source.Last), Low, High, By));
848 Source.Last := Source.Reference'Length;
849 Free (Old);
850 end Replace_Slice;
852 ------------------------------------
853 -- Set_Unbounded_Wide_Wide_String --
854 ------------------------------------
856 procedure Set_Unbounded_Wide_Wide_String
857 (Target : out Unbounded_Wide_Wide_String;
858 Source : Wide_Wide_String)
860 begin
861 Target.Last := Source'Length;
862 Target.Reference := new Wide_Wide_String (1 .. Source'Length);
863 Target.Reference.all := Source;
864 end Set_Unbounded_Wide_Wide_String;
866 -----------
867 -- Slice --
868 -----------
870 function Slice
871 (Source : Unbounded_Wide_Wide_String;
872 Low : Positive;
873 High : Natural) return Wide_Wide_String
875 begin
876 -- Note: test of High > Length is in accordance with AI95-00128
878 if Low > Source.Last + 1 or else High > Source.Last then
879 raise Index_Error;
880 else
881 return Source.Reference (Low .. High);
882 end if;
883 end Slice;
885 ----------
886 -- Tail --
887 ----------
889 function Tail
890 (Source : Unbounded_Wide_Wide_String;
891 Count : Natural;
892 Pad : Wide_Wide_Character := Wide_Wide_Space)
893 return Unbounded_Wide_Wide_String is
894 begin
895 return To_Unbounded_Wide_Wide_String
896 (Wide_Wide_Fixed.Tail
897 (Source.Reference (1 .. Source.Last), Count, Pad));
898 end Tail;
900 procedure Tail
901 (Source : in out Unbounded_Wide_Wide_String;
902 Count : Natural;
903 Pad : Wide_Wide_Character := Wide_Wide_Space)
905 Old : Wide_Wide_String_Access := Source.Reference;
906 begin
907 Source.Reference := new Wide_Wide_String'
908 (Wide_Wide_Fixed.Tail
909 (Source.Reference (1 .. Source.Last), Count, Pad));
910 Source.Last := Source.Reference'Length;
911 Free (Old);
912 end Tail;
914 ------------------------------
915 -- To_Unbounded_Wide_Wide_String --
916 ------------------------------
918 function To_Unbounded_Wide_Wide_String
919 (Source : Wide_Wide_String) return Unbounded_Wide_Wide_String
921 Result : Unbounded_Wide_Wide_String;
922 begin
923 Result.Last := Source'Length;
924 Result.Reference := new Wide_Wide_String (1 .. Source'Length);
925 Result.Reference.all := Source;
926 return Result;
927 end To_Unbounded_Wide_Wide_String;
929 function To_Unbounded_Wide_Wide_String
930 (Length : Natural) return Unbounded_Wide_Wide_String
932 Result : Unbounded_Wide_Wide_String;
933 begin
934 Result.Last := Length;
935 Result.Reference := new Wide_Wide_String (1 .. Length);
936 return Result;
937 end To_Unbounded_Wide_Wide_String;
939 -------------------
940 -- To_Wide_Wide_String --
941 --------------------
943 function To_Wide_Wide_String
944 (Source : Unbounded_Wide_Wide_String) return Wide_Wide_String
946 begin
947 return Source.Reference (1 .. Source.Last);
948 end To_Wide_Wide_String;
951 ---------------
952 -- Translate --
953 ---------------
955 function Translate
956 (Source : Unbounded_Wide_Wide_String;
957 Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping)
958 return Unbounded_Wide_Wide_String
960 begin
961 return
962 To_Unbounded_Wide_Wide_String
963 (Wide_Wide_Fixed.Translate
964 (Source.Reference (1 .. Source.Last), Mapping));
965 end Translate;
967 procedure Translate
968 (Source : in out Unbounded_Wide_Wide_String;
969 Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping)
971 begin
972 Wide_Wide_Fixed.Translate (Source.Reference (1 .. Source.Last), Mapping);
973 end Translate;
975 function Translate
976 (Source : Unbounded_Wide_Wide_String;
977 Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function)
978 return Unbounded_Wide_Wide_String
980 begin
981 return
982 To_Unbounded_Wide_Wide_String
983 (Wide_Wide_Fixed.Translate
984 (Source.Reference (1 .. Source.Last), Mapping));
985 end Translate;
987 procedure Translate
988 (Source : in out Unbounded_Wide_Wide_String;
989 Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function)
991 begin
992 Wide_Wide_Fixed.Translate (Source.Reference (1 .. Source.Last), Mapping);
993 end Translate;
995 ----------
996 -- Trim --
997 ----------
999 function Trim
1000 (Source : Unbounded_Wide_Wide_String;
1001 Side : Trim_End) return Unbounded_Wide_Wide_String
1003 begin
1004 return
1005 To_Unbounded_Wide_Wide_String
1006 (Wide_Wide_Fixed.Trim (Source.Reference (1 .. Source.Last), Side));
1007 end Trim;
1009 procedure Trim
1010 (Source : in out Unbounded_Wide_Wide_String;
1011 Side : Trim_End)
1013 Old : Wide_Wide_String_Access := Source.Reference;
1014 begin
1015 Source.Reference :=
1016 new Wide_Wide_String'
1017 (Wide_Wide_Fixed.Trim (Source.Reference (1 .. Source.Last), Side));
1018 Source.Last := Source.Reference'Length;
1019 Free (Old);
1020 end Trim;
1022 function Trim
1023 (Source : Unbounded_Wide_Wide_String;
1024 Left : Wide_Wide_Maps.Wide_Wide_Character_Set;
1025 Right : Wide_Wide_Maps.Wide_Wide_Character_Set)
1026 return Unbounded_Wide_Wide_String
1028 begin
1029 return
1030 To_Unbounded_Wide_Wide_String
1031 (Wide_Wide_Fixed.Trim
1032 (Source.Reference (1 .. Source.Last), Left, Right));
1033 end Trim;
1035 procedure Trim
1036 (Source : in out Unbounded_Wide_Wide_String;
1037 Left : Wide_Wide_Maps.Wide_Wide_Character_Set;
1038 Right : Wide_Wide_Maps.Wide_Wide_Character_Set)
1040 Old : Wide_Wide_String_Access := Source.Reference;
1041 begin
1042 Source.Reference :=
1043 new Wide_Wide_String'
1044 (Wide_Wide_Fixed.Trim
1045 (Source.Reference (1 .. Source.Last), Left, Right));
1046 Source.Last := Source.Reference'Length;
1047 Free (Old);
1048 end Trim;
1050 ---------------------
1051 -- Unbounded_Slice --
1052 ---------------------
1054 function Unbounded_Slice
1055 (Source : Unbounded_Wide_Wide_String;
1056 Low : Positive;
1057 High : Natural) return Unbounded_Wide_Wide_String
1059 begin
1060 if Low > Source.Last + 1 or else High > Source.Last then
1061 raise Index_Error;
1062 else
1063 return
1064 To_Unbounded_Wide_Wide_String (Source.Reference.all (Low .. High));
1065 end if;
1066 end Unbounded_Slice;
1068 procedure Unbounded_Slice
1069 (Source : Unbounded_Wide_Wide_String;
1070 Target : out Unbounded_Wide_Wide_String;
1071 Low : Positive;
1072 High : Natural)
1074 begin
1075 if Low > Source.Last + 1 or else High > Source.Last then
1076 raise Index_Error;
1077 else
1078 Target :=
1079 To_Unbounded_Wide_Wide_String (Source.Reference.all (Low .. High));
1080 end if;
1081 end Unbounded_Slice;
1083 end Ada.Strings.Wide_Wide_Unbounded;