Merge from mainline
[official-gcc.git] / gcc / ada / a-stzmap.adb
blob1573c6fdfb7de3901ecd1f42d0eddfd5ff4eabab
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME COMPONENTS --
4 -- --
5 -- A D A . S T R I N G S . W I D E _ W I D E _ M A P S --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2006, 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, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, 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 Unchecked_Deallocation;
36 package body Ada.Strings.Wide_Wide_Maps is
38 ---------
39 -- "-" --
40 ---------
42 function "-"
43 (Left, Right : Wide_Wide_Character_Set) return Wide_Wide_Character_Set
45 LS : constant Wide_Wide_Character_Ranges_Access := Left.Set;
46 RS : constant Wide_Wide_Character_Ranges_Access := Right.Set;
48 Result : Wide_Wide_Character_Ranges (1 .. LS'Last + RS'Last);
49 -- Each range on the right can generate at least one more range in
50 -- the result, by splitting one of the left operand ranges.
52 N : Natural := 0;
53 R : Natural := 1;
54 L : Natural := 1;
56 Left_Low : Wide_Wide_Character;
57 -- Left_Low is lowest character of the L'th range not yet dealt with
59 begin
60 if LS'Last = 0 or else RS'Last = 0 then
61 return Left;
62 end if;
64 Left_Low := LS (L).Low;
65 while R <= RS'Last loop
67 -- If next right range is below current left range, skip it
69 if RS (R).High < Left_Low then
70 R := R + 1;
72 -- If next right range above current left range, copy remainder of
73 -- the left range to the result
75 elsif RS (R).Low > LS (L).High then
76 N := N + 1;
77 Result (N).Low := Left_Low;
78 Result (N).High := LS (L).High;
79 L := L + 1;
80 exit when L > LS'Last;
81 Left_Low := LS (L).Low;
83 else
84 -- Next right range overlaps bottom of left range
86 if RS (R).Low <= Left_Low then
88 -- Case of right range complete overlaps left range
90 if RS (R).High >= LS (L).High then
91 L := L + 1;
92 exit when L > LS'Last;
93 Left_Low := LS (L).Low;
95 -- Case of right range eats lower part of left range
97 else
98 Left_Low := Wide_Wide_Character'Succ (RS (R).High);
99 R := R + 1;
100 end if;
102 -- Next right range overlaps some of left range, but not bottom
104 else
105 N := N + 1;
106 Result (N).Low := Left_Low;
107 Result (N).High := Wide_Wide_Character'Pred (RS (R).Low);
109 -- Case of right range splits left range
111 if RS (R).High < LS (L).High then
112 Left_Low := Wide_Wide_Character'Succ (RS (R).High);
113 R := R + 1;
115 -- Case of right range overlaps top of left range
117 else
118 L := L + 1;
119 exit when L > LS'Last;
120 Left_Low := LS (L).Low;
121 end if;
122 end if;
123 end if;
124 end loop;
126 -- Copy remainder of left ranges to result
128 if L <= LS'Last then
129 N := N + 1;
130 Result (N).Low := Left_Low;
131 Result (N).High := LS (L).High;
133 loop
134 L := L + 1;
135 exit when L > LS'Last;
136 N := N + 1;
137 Result (N) := LS (L);
138 end loop;
139 end if;
141 return (AF.Controlled with
142 Set => new Wide_Wide_Character_Ranges'(Result (1 .. N)));
143 end "-";
145 ---------
146 -- "=" --
147 ---------
149 -- The sorted, discontiguous form is canonical, so equality can be used
151 function "=" (Left, Right : Wide_Wide_Character_Set) return Boolean is
152 begin
153 return Left.Set.all = Right.Set.all;
154 end "=";
156 -----------
157 -- "and" --
158 -----------
160 function "and"
161 (Left, Right : Wide_Wide_Character_Set) return Wide_Wide_Character_Set
163 LS : constant Wide_Wide_Character_Ranges_Access := Left.Set;
164 RS : constant Wide_Wide_Character_Ranges_Access := Right.Set;
166 Result : Wide_Wide_Character_Ranges (1 .. LS'Last + RS'Last);
167 N : Natural := 0;
168 L, R : Natural := 1;
170 begin
171 -- Loop to search for overlapping character ranges
173 while L <= LS'Last and then R <= RS'Last loop
175 if LS (L).High < RS (R).Low then
176 L := L + 1;
178 elsif RS (R).High < LS (L).Low then
179 R := R + 1;
181 -- Here we have LS (L).High >= RS (R).Low
182 -- and RS (R).High >= LS (L).Low
183 -- so we have an overlapping range
185 else
186 N := N + 1;
187 Result (N).Low :=
188 Wide_Wide_Character'Max (LS (L).Low, RS (R).Low);
189 Result (N).High :=
190 Wide_Wide_Character'Min (LS (L).High, RS (R).High);
192 if RS (R).High = LS (L).High then
193 L := L + 1;
194 R := R + 1;
195 elsif RS (R).High < LS (L).High then
196 R := R + 1;
197 else
198 L := L + 1;
199 end if;
200 end if;
201 end loop;
203 return (AF.Controlled with
204 Set => new Wide_Wide_Character_Ranges'(Result (1 .. N)));
205 end "and";
207 -----------
208 -- "not" --
209 -----------
211 function "not"
212 (Right : Wide_Wide_Character_Set) return Wide_Wide_Character_Set
214 RS : constant Wide_Wide_Character_Ranges_Access := Right.Set;
216 Result : Wide_Wide_Character_Ranges (1 .. RS'Last + 1);
217 N : Natural := 0;
219 begin
220 if RS'Last = 0 then
221 N := 1;
222 Result (1) := (Low => Wide_Wide_Character'First,
223 High => Wide_Wide_Character'Last);
225 else
226 if RS (1).Low /= Wide_Wide_Character'First then
227 N := N + 1;
228 Result (N).Low := Wide_Wide_Character'First;
229 Result (N).High := Wide_Wide_Character'Pred (RS (1).Low);
230 end if;
232 for K in 1 .. RS'Last - 1 loop
233 N := N + 1;
234 Result (N).Low := Wide_Wide_Character'Succ (RS (K).High);
235 Result (N).High := Wide_Wide_Character'Pred (RS (K + 1).Low);
236 end loop;
238 if RS (RS'Last).High /= Wide_Wide_Character'Last then
239 N := N + 1;
240 Result (N).Low := Wide_Wide_Character'Succ (RS (RS'Last).High);
241 Result (N).High := Wide_Wide_Character'Last;
242 end if;
243 end if;
245 return (AF.Controlled with
246 Set => new Wide_Wide_Character_Ranges'(Result (1 .. N)));
247 end "not";
249 ----------
250 -- "or" --
251 ----------
253 function "or"
254 (Left, Right : Wide_Wide_Character_Set) return Wide_Wide_Character_Set
256 LS : constant Wide_Wide_Character_Ranges_Access := Left.Set;
257 RS : constant Wide_Wide_Character_Ranges_Access := Right.Set;
259 Result : Wide_Wide_Character_Ranges (1 .. LS'Last + RS'Last);
260 N : Natural;
261 L, R : Natural;
263 begin
264 N := 0;
265 L := 1;
266 R := 1;
268 -- Loop through ranges in output file
270 loop
271 -- If no left ranges left, copy next right range
273 if L > LS'Last then
274 exit when R > RS'Last;
275 N := N + 1;
276 Result (N) := RS (R);
277 R := R + 1;
279 -- If no right ranges left, copy next left range
281 elsif R > RS'Last then
282 N := N + 1;
283 Result (N) := LS (L);
284 L := L + 1;
286 else
287 -- We have two ranges, choose lower one
289 N := N + 1;
291 if LS (L).Low <= RS (R).Low then
292 Result (N) := LS (L);
293 L := L + 1;
294 else
295 Result (N) := RS (R);
296 R := R + 1;
297 end if;
299 -- Loop to collapse ranges into last range
301 loop
302 -- Collapse next length range into current result range
303 -- if possible.
305 if L <= LS'Last
306 and then LS (L).Low <=
307 Wide_Wide_Character'Succ (Result (N).High)
308 then
309 Result (N).High :=
310 Wide_Wide_Character'Max (Result (N).High, LS (L).High);
311 L := L + 1;
313 -- Collapse next right range into current result range
314 -- if possible
316 elsif R <= RS'Last
317 and then RS (R).Low <=
318 Wide_Wide_Character'Succ (Result (N).High)
319 then
320 Result (N).High :=
321 Wide_Wide_Character'Max (Result (N).High, RS (R).High);
322 R := R + 1;
324 -- If neither range collapses, then done with this range
326 else
327 exit;
328 end if;
329 end loop;
330 end if;
331 end loop;
333 return (AF.Controlled with
334 Set => new Wide_Wide_Character_Ranges'(Result (1 .. N)));
335 end "or";
337 -----------
338 -- "xor" --
339 -----------
341 function "xor"
342 (Left, Right : Wide_Wide_Character_Set) return Wide_Wide_Character_Set
344 begin
345 return (Left or Right) - (Left and Right);
346 end "xor";
348 ------------
349 -- Adjust --
350 ------------
352 procedure Adjust (Object : in out Wide_Wide_Character_Mapping) is
353 begin
354 Object.Map := new Wide_Wide_Character_Mapping_Values'(Object.Map.all);
355 end Adjust;
357 procedure Adjust (Object : in out Wide_Wide_Character_Set) is
358 begin
359 Object.Set := new Wide_Wide_Character_Ranges'(Object.Set.all);
360 end Adjust;
362 --------------
363 -- Finalize --
364 --------------
366 procedure Finalize (Object : in out Wide_Wide_Character_Mapping) is
368 procedure Free is new Unchecked_Deallocation
369 (Wide_Wide_Character_Mapping_Values,
370 Wide_Wide_Character_Mapping_Values_Access);
372 begin
373 if Object.Map /= Null_Map'Unrestricted_Access then
374 Free (Object.Map);
375 end if;
376 end Finalize;
378 procedure Finalize (Object : in out Wide_Wide_Character_Set) is
380 procedure Free is new Unchecked_Deallocation
381 (Wide_Wide_Character_Ranges,
382 Wide_Wide_Character_Ranges_Access);
384 begin
385 if Object.Set /= Null_Range'Unrestricted_Access then
386 Free (Object.Set);
387 end if;
388 end Finalize;
390 ----------------
391 -- Initialize --
392 ----------------
394 procedure Initialize (Object : in out Wide_Wide_Character_Mapping) is
395 begin
396 Object := Identity;
397 end Initialize;
399 procedure Initialize (Object : in out Wide_Wide_Character_Set) is
400 begin
401 Object := Null_Set;
402 end Initialize;
404 -----------
405 -- Is_In --
406 -----------
408 function Is_In
409 (Element : Wide_Wide_Character;
410 Set : Wide_Wide_Character_Set) return Boolean
412 L, R, M : Natural;
413 SS : constant Wide_Wide_Character_Ranges_Access := Set.Set;
415 begin
416 L := 1;
417 R := SS'Last;
419 -- Binary search loop. The invariant is that if Element is in any of
420 -- of the constituent ranges it is in one between Set (L) and Set (R).
422 loop
423 if L > R then
424 return False;
426 else
427 M := (L + R) / 2;
429 if Element > SS (M).High then
430 L := M + 1;
431 elsif Element < SS (M).Low then
432 R := M - 1;
433 else
434 return True;
435 end if;
436 end if;
437 end loop;
438 end Is_In;
440 ---------------
441 -- Is_Subset --
442 ---------------
444 function Is_Subset
445 (Elements : Wide_Wide_Character_Set;
446 Set : Wide_Wide_Character_Set) return Boolean
448 ES : constant Wide_Wide_Character_Ranges_Access := Elements.Set;
449 SS : constant Wide_Wide_Character_Ranges_Access := Set.Set;
451 S : Positive := 1;
452 E : Positive := 1;
454 begin
455 loop
456 -- If no more element ranges, done, and result is true
458 if E > ES'Last then
459 return True;
461 -- If more element ranges, but no more set ranges, result is false
463 elsif S > SS'Last then
464 return False;
466 -- Remove irrelevant set range
468 elsif SS (S).High < ES (E).Low then
469 S := S + 1;
471 -- Get rid of element range that is properly covered by set
473 elsif SS (S).Low <= ES (E).Low
474 and then ES (E).High <= SS (S).High
475 then
476 E := E + 1;
478 -- Otherwise we have a non-covered element range, result is false
480 else
481 return False;
482 end if;
483 end loop;
484 end Is_Subset;
486 ---------------
487 -- To_Domain --
488 ---------------
490 function To_Domain
491 (Map : Wide_Wide_Character_Mapping) return Wide_Wide_Character_Sequence
493 begin
494 return Map.Map.Domain;
495 end To_Domain;
497 ----------------
498 -- To_Mapping --
499 ----------------
501 function To_Mapping
502 (From, To : Wide_Wide_Character_Sequence)
503 return Wide_Wide_Character_Mapping
505 Domain : Wide_Wide_Character_Sequence (1 .. From'Length);
506 Rangev : Wide_Wide_Character_Sequence (1 .. To'Length);
507 N : Natural := 0;
509 begin
510 if From'Length /= To'Length then
511 raise Translation_Error;
513 else
514 pragma Warnings (Off); -- apparent uninit use of Domain
516 for J in From'Range loop
517 for M in 1 .. N loop
518 if From (J) = Domain (M) then
519 raise Translation_Error;
520 elsif From (J) < Domain (M) then
521 Domain (M + 1 .. N + 1) := Domain (M .. N);
522 Rangev (M + 1 .. N + 1) := Rangev (M .. N);
523 Domain (M) := From (J);
524 Rangev (M) := To (J);
525 goto Continue;
526 end if;
527 end loop;
529 Domain (N + 1) := From (J);
530 Rangev (N + 1) := To (J);
532 <<Continue>>
533 N := N + 1;
534 end loop;
536 pragma Warnings (On);
538 return (AF.Controlled with
539 Map => new Wide_Wide_Character_Mapping_Values'(
540 Length => N,
541 Domain => Domain (1 .. N),
542 Rangev => Rangev (1 .. N)));
543 end if;
544 end To_Mapping;
546 --------------
547 -- To_Range --
548 --------------
550 function To_Range
551 (Map : Wide_Wide_Character_Mapping) return Wide_Wide_Character_Sequence
553 begin
554 return Map.Map.Rangev;
555 end To_Range;
557 ---------------
558 -- To_Ranges --
559 ---------------
561 function To_Ranges
562 (Set : Wide_Wide_Character_Set) return Wide_Wide_Character_Ranges
564 begin
565 return Set.Set.all;
566 end To_Ranges;
568 -----------------
569 -- To_Sequence --
570 -----------------
572 function To_Sequence
573 (Set : Wide_Wide_Character_Set) return Wide_Wide_Character_Sequence
575 SS : constant Wide_Wide_Character_Ranges_Access := Set.Set;
577 Result : Wide_Wide_String (Positive range 1 .. 2 ** 16);
578 N : Natural := 0;
580 begin
581 for J in SS'Range loop
582 for K in SS (J).Low .. SS (J).High loop
583 N := N + 1;
584 Result (N) := K;
585 end loop;
586 end loop;
588 return Result (1 .. N);
589 end To_Sequence;
591 ------------
592 -- To_Set --
593 ------------
595 -- Case of multiple range input
597 function To_Set
598 (Ranges : Wide_Wide_Character_Ranges) return Wide_Wide_Character_Set
600 Result : Wide_Wide_Character_Ranges (Ranges'Range);
601 N : Natural := 0;
602 J : Natural;
604 begin
605 -- The output of To_Set is required to be sorted by increasing Low
606 -- values, and discontiguous, so first we sort them as we enter them,
607 -- using a simple insertion sort.
609 pragma Warnings (Off);
610 -- Kill bogus warning on Result being uninitialized
612 for J in Ranges'Range loop
613 for K in 1 .. N loop
614 if Ranges (J).Low < Result (K).Low then
615 Result (K + 1 .. N + 1) := Result (K .. N);
616 Result (K) := Ranges (J);
617 goto Continue;
618 end if;
619 end loop;
621 Result (N + 1) := Ranges (J);
623 <<Continue>>
624 N := N + 1;
625 end loop;
627 pragma Warnings (On);
629 -- Now collapse any contiguous or overlapping ranges
631 J := 1;
632 while J < N loop
633 if Result (J).High < Result (J).Low then
634 N := N - 1;
635 Result (J .. N) := Result (J + 1 .. N + 1);
637 elsif Wide_Wide_Character'Succ (Result (J).High) >=
638 Result (J + 1).Low
639 then
640 Result (J).High :=
641 Wide_Wide_Character'Max (Result (J).High, Result (J + 1).High);
643 N := N - 1;
644 Result (J + 1 .. N) := Result (J + 2 .. N + 1);
646 else
647 J := J + 1;
648 end if;
649 end loop;
651 if Result (N).High < Result (N).Low then
652 N := N - 1;
653 end if;
655 return (AF.Controlled with
656 Set => new Wide_Wide_Character_Ranges'(Result (1 .. N)));
657 end To_Set;
659 -- Case of single range input
661 function To_Set
662 (Span : Wide_Wide_Character_Range) return Wide_Wide_Character_Set
664 begin
665 if Span.Low > Span.High then
666 return Null_Set;
667 -- This is safe, because there is no procedure with parameter
668 -- Wide_Wide_Character_Set of mode "out" or "in out".
670 else
671 return (AF.Controlled with
672 Set => new Wide_Wide_Character_Ranges'(1 => Span));
673 end if;
674 end To_Set;
676 -- Case of wide string input
678 function To_Set
679 (Sequence : Wide_Wide_Character_Sequence) return Wide_Wide_Character_Set
681 R : Wide_Wide_Character_Ranges (1 .. Sequence'Length);
683 begin
684 for J in R'Range loop
685 R (J) := (Sequence (J), Sequence (J));
686 end loop;
688 return To_Set (R);
689 end To_Set;
691 -- Case of single wide character input
693 function To_Set
694 (Singleton : Wide_Wide_Character) return Wide_Wide_Character_Set
696 begin
697 return
698 (AF.Controlled with
699 Set => new Wide_Wide_Character_Ranges'(1 => (Singleton, Singleton)));
700 end To_Set;
702 -----------
703 -- Value --
704 -----------
706 function Value
707 (Map : Wide_Wide_Character_Mapping;
708 Element : Wide_Wide_Character) return Wide_Wide_Character
710 L, R, M : Natural;
712 MV : constant Wide_Wide_Character_Mapping_Values_Access := Map.Map;
714 begin
715 L := 1;
716 R := MV.Domain'Last;
718 -- Binary search loop
720 loop
721 -- If not found, identity
723 if L > R then
724 return Element;
726 -- Otherwise do binary divide
728 else
729 M := (L + R) / 2;
731 if Element < MV.Domain (M) then
732 R := M - 1;
734 elsif Element > MV.Domain (M) then
735 L := M + 1;
737 else -- Element = MV.Domain (M) then
738 return MV.Rangev (M);
739 end if;
740 end if;
741 end loop;
742 end Value;
744 end Ada.Strings.Wide_Wide_Maps;