Fix DealII type problems.
[official-gcc/Ramakrishna.git] / gcc / ada / a-wtedit.adb
blobcc41dc1cd866840d3d2604fe795318096fa1c606
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME COMPONENTS --
4 -- --
5 -- A D A . W I D E _ T E X T _ I O . E D I T I N G --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2009, 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 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
29 -- --
30 ------------------------------------------------------------------------------
32 with Ada.Strings.Fixed;
33 with Ada.Strings.Wide_Fixed;
35 package body Ada.Wide_Text_IO.Editing is
37 package Strings renames Ada.Strings;
38 package Strings_Fixed renames Ada.Strings.Fixed;
39 package Strings_Wide_Fixed renames Ada.Strings.Wide_Fixed;
40 package Wide_Text_IO renames Ada.Wide_Text_IO;
42 -----------------------
43 -- Local_Subprograms --
44 -----------------------
46 function To_Wide (C : Character) return Wide_Character;
47 pragma Inline (To_Wide);
48 -- Convert Character to corresponding Wide_Character
50 ---------------------
51 -- Blank_When_Zero --
52 ---------------------
54 function Blank_When_Zero (Pic : Picture) return Boolean is
55 begin
56 return Pic.Contents.Original_BWZ;
57 end Blank_When_Zero;
59 --------------------
60 -- Decimal_Output --
61 --------------------
63 package body Decimal_Output is
65 -----------
66 -- Image --
67 -----------
69 function Image
70 (Item : Num;
71 Pic : Picture;
72 Currency : Wide_String := Default_Currency;
73 Fill : Wide_Character := Default_Fill;
74 Separator : Wide_Character := Default_Separator;
75 Radix_Mark : Wide_Character := Default_Radix_Mark) return Wide_String
77 begin
78 return Format_Number
79 (Pic.Contents, Num'Image (Item),
80 Currency, Fill, Separator, Radix_Mark);
81 end Image;
83 ------------
84 -- Length --
85 ------------
87 function Length
88 (Pic : Picture;
89 Currency : Wide_String := Default_Currency) return Natural
91 Picstr : constant String := Pic_String (Pic);
92 V_Adjust : Integer := 0;
93 Cur_Adjust : Integer := 0;
95 begin
96 -- Check if Picstr has 'V' or '$'
98 -- If 'V', then length is 1 less than otherwise
100 -- If '$', then length is Currency'Length-1 more than otherwise
102 -- This should use the string handling package ???
104 for J in Picstr'Range loop
105 if Picstr (J) = 'V' then
106 V_Adjust := -1;
108 elsif Picstr (J) = '$' then
109 Cur_Adjust := Currency'Length - 1;
110 end if;
111 end loop;
113 return Picstr'Length - V_Adjust + Cur_Adjust;
114 end Length;
116 ---------
117 -- Put --
118 ---------
120 procedure Put
121 (File : Wide_Text_IO.File_Type;
122 Item : Num;
123 Pic : Picture;
124 Currency : Wide_String := Default_Currency;
125 Fill : Wide_Character := Default_Fill;
126 Separator : Wide_Character := Default_Separator;
127 Radix_Mark : Wide_Character := Default_Radix_Mark)
129 begin
130 Wide_Text_IO.Put (File, Image (Item, Pic,
131 Currency, Fill, Separator, Radix_Mark));
132 end Put;
134 procedure Put
135 (Item : Num;
136 Pic : Picture;
137 Currency : Wide_String := Default_Currency;
138 Fill : Wide_Character := Default_Fill;
139 Separator : Wide_Character := Default_Separator;
140 Radix_Mark : Wide_Character := Default_Radix_Mark)
142 begin
143 Wide_Text_IO.Put (Image (Item, Pic,
144 Currency, Fill, Separator, Radix_Mark));
145 end Put;
147 procedure Put
148 (To : out Wide_String;
149 Item : Num;
150 Pic : Picture;
151 Currency : Wide_String := Default_Currency;
152 Fill : Wide_Character := Default_Fill;
153 Separator : Wide_Character := Default_Separator;
154 Radix_Mark : Wide_Character := Default_Radix_Mark)
156 Result : constant Wide_String :=
157 Image (Item, Pic, Currency, Fill, Separator, Radix_Mark);
159 begin
160 if Result'Length > To'Length then
161 raise Wide_Text_IO.Layout_Error;
162 else
163 Strings_Wide_Fixed.Move (Source => Result, Target => To,
164 Justify => Strings.Right);
165 end if;
166 end Put;
168 -----------
169 -- Valid --
170 -----------
172 function Valid
173 (Item : Num;
174 Pic : Picture;
175 Currency : Wide_String := Default_Currency) return Boolean
177 begin
178 declare
179 Temp : constant Wide_String := Image (Item, Pic, Currency);
180 pragma Warnings (Off, Temp);
181 begin
182 return True;
183 end;
185 exception
186 when Layout_Error => return False;
188 end Valid;
189 end Decimal_Output;
191 ------------
192 -- Expand --
193 ------------
195 function Expand (Picture : String) return String is
196 Result : String (1 .. MAX_PICSIZE);
197 Picture_Index : Integer := Picture'First;
198 Result_Index : Integer := Result'First;
199 Count : Natural;
200 Last : Integer;
202 begin
203 if Picture'Length < 1 then
204 raise Picture_Error;
205 end if;
207 if Picture (Picture'First) = '(' then
208 raise Picture_Error;
209 end if;
211 loop
212 case Picture (Picture_Index) is
214 when '(' =>
216 -- We now need to scan out the count after a left paren. In
217 -- the non-wide version we used Integer_IO.Get, but that is
218 -- not convenient here, since we don't want to drag in normal
219 -- Text_IO just for this purpose. So we do the scan ourselves,
220 -- with the normal validity checks.
222 Last := Picture_Index + 1;
223 Count := 0;
225 if Picture (Last) not in '0' .. '9' then
226 raise Picture_Error;
227 end if;
229 Count := Character'Pos (Picture (Last)) - Character'Pos ('0');
230 Last := Last + 1;
232 loop
233 if Last > Picture'Last then
234 raise Picture_Error;
235 end if;
237 if Picture (Last) = '_' then
238 if Picture (Last - 1) = '_' then
239 raise Picture_Error;
240 end if;
242 elsif Picture (Last) = ')' then
243 exit;
245 elsif Picture (Last) not in '0' .. '9' then
246 raise Picture_Error;
248 else
249 Count := Count * 10
250 + Character'Pos (Picture (Last)) -
251 Character'Pos ('0');
252 end if;
254 Last := Last + 1;
255 end loop;
257 -- In what follows note that one copy of the repeated
258 -- character has already been made, so a count of one is
259 -- no-op, and a count of zero erases a character.
261 for J in 2 .. Count loop
262 Result (Result_Index + J - 2) := Picture (Picture_Index - 1);
263 end loop;
265 Result_Index := Result_Index + Count - 1;
267 -- Last was a ')' throw it away too
269 Picture_Index := Last + 1;
271 when ')' =>
272 raise Picture_Error;
274 when others =>
275 Result (Result_Index) := Picture (Picture_Index);
276 Picture_Index := Picture_Index + 1;
277 Result_Index := Result_Index + 1;
279 end case;
281 exit when Picture_Index > Picture'Last;
282 end loop;
284 return Result (1 .. Result_Index - 1);
286 exception
287 when others =>
288 raise Picture_Error;
289 end Expand;
291 -------------------
292 -- Format_Number --
293 -------------------
295 function Format_Number
296 (Pic : Format_Record;
297 Number : String;
298 Currency_Symbol : Wide_String;
299 Fill_Character : Wide_Character;
300 Separator_Character : Wide_Character;
301 Radix_Point : Wide_Character) return Wide_String
303 Attrs : Number_Attributes := Parse_Number_String (Number);
304 Position : Integer;
305 Rounded : String := Number;
307 Sign_Position : Integer := Pic.Sign_Position; -- may float.
309 Answer : Wide_String (1 .. Pic.Picture.Length);
310 Last : Integer;
311 Currency_Pos : Integer := Pic.Start_Currency;
313 Dollar : Boolean := False;
314 -- Overridden immediately if necessary
316 Zero : Boolean := True;
317 -- Set to False when a non-zero digit is output
319 begin
321 -- If the picture has fewer decimal places than the number, the image
322 -- must be rounded according to the usual rules.
324 if Attrs.Has_Fraction then
325 declare
326 R : constant Integer :=
327 (Attrs.End_Of_Fraction - Attrs.Start_Of_Fraction + 1)
328 - Pic.Max_Trailing_Digits;
329 R_Pos : Integer;
331 begin
332 if R > 0 then
333 R_Pos := Rounded'Length - R;
335 if Rounded (R_Pos + 1) > '4' then
337 if Rounded (R_Pos) = '.' then
338 R_Pos := R_Pos - 1;
339 end if;
341 if Rounded (R_Pos) /= '9' then
342 Rounded (R_Pos) := Character'Succ (Rounded (R_Pos));
343 else
344 Rounded (R_Pos) := '0';
345 R_Pos := R_Pos - 1;
347 while R_Pos > 1 loop
348 if Rounded (R_Pos) = '.' then
349 R_Pos := R_Pos - 1;
350 end if;
352 if Rounded (R_Pos) /= '9' then
353 Rounded (R_Pos) := Character'Succ (Rounded (R_Pos));
354 exit;
355 else
356 Rounded (R_Pos) := '0';
357 R_Pos := R_Pos - 1;
358 end if;
359 end loop;
361 -- The rounding may add a digit in front. Either the
362 -- leading blank or the sign (already captured) can be
363 -- overwritten.
365 if R_Pos = 1 then
366 Rounded (R_Pos) := '1';
367 Attrs.Start_Of_Int := Attrs.Start_Of_Int - 1;
368 end if;
369 end if;
370 end if;
371 end if;
372 end;
373 end if;
375 for J in Answer'Range loop
376 Answer (J) := To_Wide (Pic.Picture.Expanded (J));
377 end loop;
379 if Pic.Start_Currency /= Invalid_Position then
380 Dollar := Answer (Pic.Start_Currency) = '$';
381 end if;
383 -- Fix up "direct inserts" outside the playing field. Set up as one
384 -- loop to do the beginning, one (reverse) loop to do the end.
386 Last := 1;
387 loop
388 exit when Last = Pic.Start_Float;
389 exit when Last = Pic.Radix_Position;
390 exit when Answer (Last) = '9';
392 case Answer (Last) is
394 when '_' =>
395 Answer (Last) := Separator_Character;
397 when 'b' =>
398 Answer (Last) := ' ';
400 when others =>
401 null;
403 end case;
405 exit when Last = Answer'Last;
407 Last := Last + 1;
408 end loop;
410 -- Now for the end...
412 for J in reverse Last .. Answer'Last loop
413 exit when J = Pic.Radix_Position;
415 -- Do this test First, Separator_Character can equal Pic.Floater
417 if Answer (J) = Pic.Floater then
418 exit;
419 end if;
421 case Answer (J) is
423 when '_' =>
424 Answer (J) := Separator_Character;
426 when 'b' =>
427 Answer (J) := ' ';
429 when '9' =>
430 exit;
432 when others =>
433 null;
435 end case;
436 end loop;
438 -- Non-floating sign
440 if Pic.Start_Currency /= -1
441 and then Answer (Pic.Start_Currency) = '#'
442 and then Pic.Floater /= '#'
443 then
444 if Currency_Symbol'Length >
445 Pic.End_Currency - Pic.Start_Currency + 1
446 then
447 raise Picture_Error;
449 elsif Currency_Symbol'Length =
450 Pic.End_Currency - Pic.Start_Currency + 1
451 then
452 Answer (Pic.Start_Currency .. Pic.End_Currency) :=
453 Currency_Symbol;
455 elsif Pic.Radix_Position = Invalid_Position
456 or else Pic.Start_Currency < Pic.Radix_Position
457 then
458 Answer (Pic.Start_Currency .. Pic.End_Currency) :=
459 (others => ' ');
460 Answer (Pic.End_Currency - Currency_Symbol'Length + 1 ..
461 Pic.End_Currency) := Currency_Symbol;
463 else
464 Answer (Pic.Start_Currency .. Pic.End_Currency) :=
465 (others => ' ');
466 Answer (Pic.Start_Currency ..
467 Pic.Start_Currency + Currency_Symbol'Length - 1) :=
468 Currency_Symbol;
469 end if;
470 end if;
472 -- Fill in leading digits
474 if Attrs.End_Of_Int - Attrs.Start_Of_Int + 1 >
475 Pic.Max_Leading_Digits
476 then
477 raise Layout_Error;
478 end if;
480 Position :=
481 (if Pic.Radix_Position = Invalid_Position then Answer'Last
482 else Pic.Radix_Position - 1);
484 for J in reverse Attrs.Start_Of_Int .. Attrs.End_Of_Int loop
485 while Answer (Position) /= '9'
486 and then
487 Answer (Position) /= Pic.Floater
488 loop
489 if Answer (Position) = '_' then
490 Answer (Position) := Separator_Character;
491 elsif Answer (Position) = 'b' then
492 Answer (Position) := ' ';
493 end if;
495 Position := Position - 1;
496 end loop;
498 Answer (Position) := To_Wide (Rounded (J));
500 if Rounded (J) /= '0' then
501 Zero := False;
502 end if;
504 Position := Position - 1;
505 end loop;
507 -- Do lead float
509 if Pic.Start_Float = Invalid_Position then
511 -- No leading floats, but need to change '9' to '0', '_' to
512 -- Separator_Character and 'b' to ' '.
514 for J in Last .. Position loop
516 -- Last set when fixing the "uninteresting" leaders above.
517 -- Don't duplicate the work.
519 if Answer (J) = '9' then
520 Answer (J) := '0';
522 elsif Answer (J) = '_' then
523 Answer (J) := Separator_Character;
525 elsif Answer (J) = 'b' then
526 Answer (J) := ' ';
528 end if;
530 end loop;
532 elsif Pic.Floater = '<'
533 or else
534 Pic.Floater = '+'
535 or else
536 Pic.Floater = '-'
537 then
538 for J in Pic.End_Float .. Position loop -- May be null range
539 if Answer (J) = '9' then
540 Answer (J) := '0';
542 elsif Answer (J) = '_' then
543 Answer (J) := Separator_Character;
545 elsif Answer (J) = 'b' then
546 Answer (J) := ' ';
548 end if;
549 end loop;
551 if Position > Pic.End_Float then
552 Position := Pic.End_Float;
553 end if;
555 for J in Pic.Start_Float .. Position - 1 loop
556 Answer (J) := ' ';
557 end loop;
559 Answer (Position) := Pic.Floater;
560 Sign_Position := Position;
562 elsif Pic.Floater = '$' then
564 for J in Pic.End_Float .. Position loop -- May be null range
565 if Answer (J) = '9' then
566 Answer (J) := '0';
568 elsif Answer (J) = '_' then
569 Answer (J) := ' '; -- no separator before leftmost digit
571 elsif Answer (J) = 'b' then
572 Answer (J) := ' ';
573 end if;
574 end loop;
576 if Position > Pic.End_Float then
577 Position := Pic.End_Float;
578 end if;
580 for J in Pic.Start_Float .. Position - 1 loop
581 Answer (J) := ' ';
582 end loop;
584 Answer (Position) := Pic.Floater;
585 Currency_Pos := Position;
587 elsif Pic.Floater = '*' then
589 for J in Pic.End_Float .. Position loop -- May be null range
590 if Answer (J) = '9' then
591 Answer (J) := '0';
593 elsif Answer (J) = '_' then
594 Answer (J) := Separator_Character;
596 elsif Answer (J) = 'b' then
597 Answer (J) := '*';
598 end if;
599 end loop;
601 if Position > Pic.End_Float then
602 Position := Pic.End_Float;
603 end if;
605 for J in Pic.Start_Float .. Position loop
606 Answer (J) := '*';
607 end loop;
609 else
610 if Pic.Floater = '#' then
611 Currency_Pos := Currency_Symbol'Length;
612 end if;
614 for J in reverse Pic.Start_Float .. Position loop
615 case Answer (J) is
617 when '*' =>
618 Answer (J) := Fill_Character;
620 when 'Z' | 'b' | '/' | '0' =>
621 Answer (J) := ' ';
623 when '9' =>
624 Answer (J) := '0';
626 when '.' | 'V' | 'v' | '<' | '$' | '+' | '-' =>
627 null;
629 when '#' =>
630 if Currency_Pos = 0 then
631 Answer (J) := ' ';
632 else
633 Answer (J) := Currency_Symbol (Currency_Pos);
634 Currency_Pos := Currency_Pos - 1;
635 end if;
637 when '_' =>
639 case Pic.Floater is
641 when '*' =>
642 Answer (J) := Fill_Character;
644 when 'Z' | 'b' =>
645 Answer (J) := ' ';
647 when '#' =>
648 if Currency_Pos = 0 then
649 Answer (J) := ' ';
651 else
652 Answer (J) := Currency_Symbol (Currency_Pos);
653 Currency_Pos := Currency_Pos - 1;
654 end if;
656 when others =>
657 null;
659 end case;
661 when others =>
662 null;
664 end case;
665 end loop;
667 if Pic.Floater = '#' and then Currency_Pos /= 0 then
668 raise Layout_Error;
669 end if;
670 end if;
672 -- Do sign
674 if Sign_Position = Invalid_Position then
675 if Attrs.Negative then
676 raise Layout_Error;
677 end if;
679 else
680 if Attrs.Negative then
681 case Answer (Sign_Position) is
682 when 'C' | 'D' | '-' =>
683 null;
685 when '+' =>
686 Answer (Sign_Position) := '-';
688 when '<' =>
689 Answer (Sign_Position) := '(';
690 Answer (Pic.Second_Sign) := ')';
692 when others =>
693 raise Picture_Error;
695 end case;
697 else -- positive
699 case Answer (Sign_Position) is
701 when '-' =>
702 Answer (Sign_Position) := ' ';
704 when '<' | 'C' | 'D' =>
705 Answer (Sign_Position) := ' ';
706 Answer (Pic.Second_Sign) := ' ';
708 when '+' =>
709 null;
711 when others =>
712 raise Picture_Error;
714 end case;
715 end if;
716 end if;
718 -- Fill in trailing digits
720 if Pic.Max_Trailing_Digits > 0 then
722 if Attrs.Has_Fraction then
723 Position := Attrs.Start_Of_Fraction;
724 Last := Pic.Radix_Position + 1;
726 for J in Last .. Answer'Last loop
728 if Answer (J) = '9' or else Answer (J) = Pic.Floater then
729 Answer (J) := To_Wide (Rounded (Position));
731 if Rounded (Position) /= '0' then
732 Zero := False;
733 end if;
735 Position := Position + 1;
736 Last := J + 1;
738 -- Used up fraction but remember place in Answer
740 exit when Position > Attrs.End_Of_Fraction;
742 elsif Answer (J) = 'b' then
743 Answer (J) := ' ';
745 elsif Answer (J) = '_' then
746 Answer (J) := Separator_Character;
748 end if;
750 Last := J + 1;
751 end loop;
753 Position := Last;
755 else
756 Position := Pic.Radix_Position + 1;
757 end if;
759 -- Now fill remaining 9's with zeros and _ with separators
761 Last := Answer'Last;
763 for J in Position .. Last loop
764 if Answer (J) = '9' then
765 Answer (J) := '0';
767 elsif Answer (J) = Pic.Floater then
768 Answer (J) := '0';
770 elsif Answer (J) = '_' then
771 Answer (J) := Separator_Character;
773 elsif Answer (J) = 'b' then
774 Answer (J) := ' ';
776 end if;
777 end loop;
779 Position := Last + 1;
781 else
782 if Pic.Floater = '#' and then Currency_Pos /= 0 then
783 raise Layout_Error;
784 end if;
786 -- No trailing digits, but now J may need to stick in a currency
787 -- symbol or sign.
789 Position :=
790 (if Pic.Start_Currency = Invalid_Position then Answer'Last + 1
791 else Pic.Start_Currency);
792 end if;
794 for J in Position .. Answer'Last loop
795 if Pic.Start_Currency /= Invalid_Position and then
796 Answer (Pic.Start_Currency) = '#' then
797 Currency_Pos := 1;
798 end if;
800 -- Note: There are some weird cases J can imagine with 'b' or '#' in
801 -- currency strings where the following code will cause glitches. The
802 -- trick is to tell when the character in the answer should be
803 -- checked, and when to look at the original string. Some other time.
804 -- RIE 11/26/96 ???
806 case Answer (J) is
807 when '*' =>
808 Answer (J) := Fill_Character;
810 when 'b' =>
811 Answer (J) := ' ';
813 when '#' =>
814 if Currency_Pos > Currency_Symbol'Length then
815 Answer (J) := ' ';
817 else
818 Answer (J) := Currency_Symbol (Currency_Pos);
819 Currency_Pos := Currency_Pos + 1;
820 end if;
822 when '_' =>
824 case Pic.Floater is
826 when '*' =>
827 Answer (J) := Fill_Character;
829 when 'Z' | 'z' =>
830 Answer (J) := ' ';
832 when '#' =>
833 if Currency_Pos > Currency_Symbol'Length then
834 Answer (J) := ' ';
835 else
836 Answer (J) := Currency_Symbol (Currency_Pos);
837 Currency_Pos := Currency_Pos + 1;
838 end if;
840 when others =>
841 null;
843 end case;
845 when others =>
846 exit;
848 end case;
849 end loop;
851 -- Now get rid of Blank_when_Zero and complete Star fill
853 if Zero and then Pic.Blank_When_Zero then
855 -- Value is zero, and blank it
857 Last := Answer'Last;
859 if Dollar then
860 Last := Last - 1 + Currency_Symbol'Length;
861 end if;
863 if Pic.Radix_Position /= Invalid_Position and then
864 Answer (Pic.Radix_Position) = 'V' then
865 Last := Last - 1;
866 end if;
868 return Wide_String'(1 .. Last => ' ');
870 elsif Zero and then Pic.Star_Fill then
871 Last := Answer'Last;
873 if Dollar then
874 Last := Last - 1 + Currency_Symbol'Length;
875 end if;
877 if Pic.Radix_Position /= Invalid_Position then
879 if Answer (Pic.Radix_Position) = 'V' then
880 Last := Last - 1;
882 elsif Dollar then
883 if Pic.Radix_Position > Pic.Start_Currency then
884 return Wide_String'(1 .. Pic.Radix_Position - 1 => '*') &
885 Radix_Point &
886 Wide_String'(Pic.Radix_Position + 1 .. Last => '*');
888 else
889 return
890 Wide_String'
891 (1 ..
892 Pic.Radix_Position + Currency_Symbol'Length - 2
893 => '*') &
894 Radix_Point &
895 Wide_String'
896 (Pic.Radix_Position + Currency_Symbol'Length .. Last
897 => '*');
898 end if;
900 else
901 return
902 Wide_String'(1 .. Pic.Radix_Position - 1 => '*') &
903 Radix_Point &
904 Wide_String'(Pic.Radix_Position + 1 .. Last => '*');
905 end if;
906 end if;
908 return Wide_String'(1 .. Last => '*');
909 end if;
911 -- This was once a simple return statement, now there are nine
912 -- different return cases. Not to mention the five above to deal
913 -- with zeros. Why not split things out?
915 -- Processing the radix and sign expansion separately
916 -- would require lots of copying--the string and some of its
917 -- indicies--without really simplifying the logic. The cases are:
919 -- 1) Expand $, replace '.' with Radix_Point
920 -- 2) No currency expansion, replace '.' with Radix_Point
921 -- 3) Expand $, radix blanked
922 -- 4) No currency expansion, radix blanked
923 -- 5) Elide V
924 -- 6) Expand $, Elide V
925 -- 7) Elide V, Expand $ (Two cases depending on order.)
926 -- 8) No radix, expand $
927 -- 9) No radix, no currency expansion
929 if Pic.Radix_Position /= Invalid_Position then
931 if Answer (Pic.Radix_Position) = '.' then
932 Answer (Pic.Radix_Position) := Radix_Point;
934 if Dollar then
936 -- 1) Expand $, replace '.' with Radix_Point
938 return
939 Answer (1 .. Currency_Pos - 1) & Currency_Symbol &
940 Answer (Currency_Pos + 1 .. Answer'Last);
942 else
943 -- 2) No currency expansion, replace '.' with Radix_Point
945 return Answer;
946 end if;
948 elsif Answer (Pic.Radix_Position) = ' ' then -- blanked radix.
949 if Dollar then
951 -- 3) Expand $, radix blanked
953 return Answer (1 .. Currency_Pos - 1) & Currency_Symbol &
954 Answer (Currency_Pos + 1 .. Answer'Last);
956 else
957 -- 4) No expansion, radix blanked
959 return Answer;
960 end if;
962 -- V cases
964 else
965 if not Dollar then
967 -- 5) Elide V
969 return Answer (1 .. Pic.Radix_Position - 1) &
970 Answer (Pic.Radix_Position + 1 .. Answer'Last);
972 elsif Currency_Pos < Pic.Radix_Position then
974 -- 6) Expand $, Elide V
976 return Answer (1 .. Currency_Pos - 1) & Currency_Symbol &
977 Answer (Currency_Pos + 1 .. Pic.Radix_Position - 1) &
978 Answer (Pic.Radix_Position + 1 .. Answer'Last);
980 else
981 -- 7) Elide V, Expand $
983 return Answer (1 .. Pic.Radix_Position - 1) &
984 Answer (Pic.Radix_Position + 1 .. Currency_Pos - 1) &
985 Currency_Symbol &
986 Answer (Currency_Pos + 1 .. Answer'Last);
987 end if;
988 end if;
990 elsif Dollar then
992 -- 8) No radix, expand $
994 return Answer (1 .. Currency_Pos - 1) & Currency_Symbol &
995 Answer (Currency_Pos + 1 .. Answer'Last);
997 else
998 -- 9) No radix, no currency expansion
1000 return Answer;
1001 end if;
1002 end Format_Number;
1004 -------------------------
1005 -- Parse_Number_String --
1006 -------------------------
1008 function Parse_Number_String (Str : String) return Number_Attributes is
1009 Answer : Number_Attributes;
1011 begin
1012 for J in Str'Range loop
1013 case Str (J) is
1015 when ' ' =>
1016 null; -- ignore
1018 when '1' .. '9' =>
1020 -- Decide if this is the start of a number.
1021 -- If so, figure out which one...
1023 if Answer.Has_Fraction then
1024 Answer.End_Of_Fraction := J;
1025 else
1026 if Answer.Start_Of_Int = Invalid_Position then
1027 -- start integer
1028 Answer.Start_Of_Int := J;
1029 end if;
1030 Answer.End_Of_Int := J;
1031 end if;
1033 when '0' =>
1035 -- Only count a zero before the decimal point if it follows a
1036 -- non-zero digit. After the decimal point, zeros will be
1037 -- counted if followed by a non-zero digit.
1039 if not Answer.Has_Fraction then
1040 if Answer.Start_Of_Int /= Invalid_Position then
1041 Answer.End_Of_Int := J;
1042 end if;
1043 end if;
1045 when '-' =>
1047 -- Set negative
1049 Answer.Negative := True;
1051 when '.' =>
1053 -- Close integer, start fraction
1055 if Answer.Has_Fraction then
1056 raise Picture_Error;
1057 end if;
1059 -- Two decimal points is a no-no
1061 Answer.Has_Fraction := True;
1062 Answer.End_Of_Fraction := J;
1064 -- Could leave this at Invalid_Position, but this seems the
1065 -- right way to indicate a null range...
1067 Answer.Start_Of_Fraction := J + 1;
1068 Answer.End_Of_Int := J - 1;
1070 when others =>
1071 raise Picture_Error; -- can this happen? probably not!
1072 end case;
1073 end loop;
1075 if Answer.Start_Of_Int = Invalid_Position then
1076 Answer.Start_Of_Int := Answer.End_Of_Int + 1;
1077 end if;
1079 -- No significant (intger) digits needs a null range
1081 return Answer;
1082 end Parse_Number_String;
1084 ----------------
1085 -- Pic_String --
1086 ----------------
1088 -- The following ensures that we return B and not b being careful not
1089 -- to break things which expect lower case b for blank. See CXF3A02.
1091 function Pic_String (Pic : Picture) return String is
1092 Temp : String (1 .. Pic.Contents.Picture.Length) :=
1093 Pic.Contents.Picture.Expanded;
1094 begin
1095 for J in Temp'Range loop
1096 if Temp (J) = 'b' then
1097 Temp (J) := 'B';
1098 end if;
1099 end loop;
1101 return Temp;
1102 end Pic_String;
1104 ------------------
1105 -- Precalculate --
1106 ------------------
1108 procedure Precalculate (Pic : in out Format_Record) is
1110 Computed_BWZ : Boolean := True;
1112 type Legality is (Okay, Reject);
1113 State : Legality := Reject;
1114 -- Start in reject, which will reject null strings
1116 Index : Pic_Index := Pic.Picture.Expanded'First;
1118 function At_End return Boolean;
1119 pragma Inline (At_End);
1121 procedure Set_State (L : Legality);
1122 pragma Inline (Set_State);
1124 function Look return Character;
1125 pragma Inline (Look);
1127 function Is_Insert return Boolean;
1128 pragma Inline (Is_Insert);
1130 procedure Skip;
1131 pragma Inline (Skip);
1133 procedure Trailing_Currency;
1134 procedure Trailing_Bracket;
1135 procedure Number_Fraction;
1136 procedure Number_Completion;
1137 procedure Number_Fraction_Or_Bracket;
1138 procedure Number_Fraction_Or_Z_Fill;
1139 procedure Zero_Suppression;
1140 procedure Floating_Bracket;
1141 procedure Number_Fraction_Or_Star_Fill;
1142 procedure Star_Suppression;
1143 procedure Number_Fraction_Or_Dollar;
1144 procedure Leading_Dollar;
1145 procedure Number_Fraction_Or_Pound;
1146 procedure Leading_Pound;
1147 procedure Picture;
1148 procedure Floating_Plus;
1149 procedure Floating_Minus;
1150 procedure Picture_Plus;
1151 procedure Picture_Minus;
1152 procedure Picture_Bracket;
1153 procedure Number;
1154 procedure Optional_RHS_Sign;
1155 procedure Picture_String;
1157 ------------
1158 -- At_End --
1159 ------------
1161 function At_End return Boolean is
1162 begin
1163 return Index > Pic.Picture.Length;
1164 end At_End;
1166 ----------------------
1167 -- Floating_Bracket --
1168 ----------------------
1170 -- Note that Floating_Bracket is only called with an acceptable
1171 -- prefix. But we don't set Okay, because we must end with a '>'.
1173 procedure Floating_Bracket is
1174 begin
1175 Pic.Floater := '<';
1176 Pic.End_Float := Index;
1177 Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
1179 -- First bracket wasn't counted...
1181 Skip; -- known '<'
1183 loop
1184 if At_End then
1185 return;
1186 end if;
1188 case Look is
1190 when '_' | '0' | '/' =>
1191 Pic.End_Float := Index;
1192 Skip;
1194 when 'B' | 'b' =>
1195 Pic.End_Float := Index;
1196 Pic.Picture.Expanded (Index) := 'b';
1197 Skip;
1199 when '<' =>
1200 Pic.End_Float := Index;
1201 Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
1202 Skip;
1204 when '9' =>
1205 Number_Completion;
1207 when '$' =>
1208 Leading_Dollar;
1210 when '#' =>
1211 Leading_Pound;
1213 when 'V' | 'v' | '.' =>
1214 Pic.Radix_Position := Index;
1215 Skip;
1216 Number_Fraction_Or_Bracket;
1217 return;
1219 when others =>
1220 return;
1221 end case;
1222 end loop;
1223 end Floating_Bracket;
1225 --------------------
1226 -- Floating_Minus --
1227 --------------------
1229 procedure Floating_Minus is
1230 begin
1231 loop
1232 if At_End then
1233 return;
1234 end if;
1236 case Look is
1237 when '_' | '0' | '/' =>
1238 Pic.End_Float := Index;
1239 Skip;
1241 when 'B' | 'b' =>
1242 Pic.End_Float := Index;
1243 Pic.Picture.Expanded (Index) := 'b';
1244 Skip;
1246 when '-' =>
1247 Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
1248 Pic.End_Float := Index;
1249 Skip;
1251 when '9' =>
1252 Number_Completion;
1253 return;
1255 when '.' | 'V' | 'v' =>
1256 Pic.Radix_Position := Index;
1257 Skip; -- Radix
1259 while Is_Insert loop
1260 Skip;
1261 end loop;
1263 if At_End then
1264 return;
1265 end if;
1267 if Look = '-' then
1268 loop
1269 if At_End then
1270 return;
1271 end if;
1273 case Look is
1275 when '-' =>
1276 Pic.Max_Trailing_Digits :=
1277 Pic.Max_Trailing_Digits + 1;
1278 Pic.End_Float := Index;
1279 Skip;
1281 when '_' | '0' | '/' =>
1282 Skip;
1284 when 'B' | 'b' =>
1285 Pic.Picture.Expanded (Index) := 'b';
1286 Skip;
1288 when others =>
1289 return;
1291 end case;
1292 end loop;
1294 else
1295 Number_Completion;
1296 end if;
1298 return;
1300 when others =>
1301 return;
1302 end case;
1303 end loop;
1304 end Floating_Minus;
1306 -------------------
1307 -- Floating_Plus --
1308 -------------------
1310 procedure Floating_Plus is
1311 begin
1312 loop
1313 if At_End then
1314 return;
1315 end if;
1317 case Look is
1318 when '_' | '0' | '/' =>
1319 Pic.End_Float := Index;
1320 Skip;
1322 when 'B' | 'b' =>
1323 Pic.End_Float := Index;
1324 Pic.Picture.Expanded (Index) := 'b';
1325 Skip;
1327 when '+' =>
1328 Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
1329 Pic.End_Float := Index;
1330 Skip;
1332 when '9' =>
1333 Number_Completion;
1334 return;
1336 when '.' | 'V' | 'v' =>
1337 Pic.Radix_Position := Index;
1338 Skip; -- Radix
1340 while Is_Insert loop
1341 Skip;
1342 end loop;
1344 if At_End then
1345 return;
1346 end if;
1348 if Look = '+' then
1349 loop
1350 if At_End then
1351 return;
1352 end if;
1354 case Look is
1356 when '+' =>
1357 Pic.Max_Trailing_Digits :=
1358 Pic.Max_Trailing_Digits + 1;
1359 Pic.End_Float := Index;
1360 Skip;
1362 when '_' | '0' | '/' =>
1363 Skip;
1365 when 'B' | 'b' =>
1366 Pic.Picture.Expanded (Index) := 'b';
1367 Skip;
1369 when others =>
1370 return;
1372 end case;
1373 end loop;
1375 else
1376 Number_Completion;
1377 end if;
1379 return;
1381 when others =>
1382 return;
1384 end case;
1385 end loop;
1386 end Floating_Plus;
1388 ---------------
1389 -- Is_Insert --
1390 ---------------
1392 function Is_Insert return Boolean is
1393 begin
1394 if At_End then
1395 return False;
1396 end if;
1398 case Pic.Picture.Expanded (Index) is
1400 when '_' | '0' | '/' => return True;
1402 when 'B' | 'b' =>
1403 Pic.Picture.Expanded (Index) := 'b'; -- canonical
1404 return True;
1406 when others => return False;
1407 end case;
1408 end Is_Insert;
1410 --------------------
1411 -- Leading_Dollar --
1412 --------------------
1414 -- Note that Leading_Dollar can be called in either State.
1415 -- It will set state to Okay only if a 9 or (second) $
1416 -- is encountered.
1418 -- Also notice the tricky bit with State and Zero_Suppression.
1419 -- Zero_Suppression is Picture_Error if a '$' or a '9' has been
1420 -- encountered, exactly the cases where State has been set.
1422 procedure Leading_Dollar is
1423 begin
1424 -- Treat as a floating dollar, and unwind otherwise
1426 Pic.Floater := '$';
1427 Pic.Start_Currency := Index;
1428 Pic.End_Currency := Index;
1429 Pic.Start_Float := Index;
1430 Pic.End_Float := Index;
1432 -- Don't increment Pic.Max_Leading_Digits, we need one "real"
1433 -- currency place.
1435 Skip; -- known '$'
1437 loop
1438 if At_End then
1439 return;
1440 end if;
1442 case Look is
1444 when '_' | '0' | '/' =>
1445 Pic.End_Float := Index;
1446 Skip;
1448 -- A trailing insertion character is not part of the
1449 -- floating currency, so need to look ahead.
1451 if Look /= '$' then
1452 Pic.End_Float := Pic.End_Float - 1;
1453 end if;
1455 when 'B' | 'b' =>
1456 Pic.End_Float := Index;
1457 Pic.Picture.Expanded (Index) := 'b';
1458 Skip;
1460 when 'Z' | 'z' =>
1461 Pic.Picture.Expanded (Index) := 'Z'; -- consistency
1463 if State = Okay then
1464 raise Picture_Error;
1465 else
1466 -- Will overwrite Floater and Start_Float
1468 Zero_Suppression;
1469 end if;
1471 when '*' =>
1472 if State = Okay then
1473 raise Picture_Error;
1474 else
1475 -- Will overwrite Floater and Start_Float
1477 Star_Suppression;
1478 end if;
1480 when '$' =>
1481 Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
1482 Pic.End_Float := Index;
1483 Pic.End_Currency := Index;
1484 Set_State (Okay); Skip;
1486 when '9' =>
1487 if State /= Okay then
1488 Pic.Floater := '!';
1489 Pic.Start_Float := Invalid_Position;
1490 Pic.End_Float := Invalid_Position;
1491 end if;
1493 -- A single dollar does not a floating make
1495 Number_Completion;
1496 return;
1498 when 'V' | 'v' | '.' =>
1499 if State /= Okay then
1500 Pic.Floater := '!';
1501 Pic.Start_Float := Invalid_Position;
1502 Pic.End_Float := Invalid_Position;
1503 end if;
1505 -- Only one dollar before the sign is okay, but doesn't
1506 -- float.
1508 Pic.Radix_Position := Index;
1509 Skip;
1510 Number_Fraction_Or_Dollar;
1511 return;
1513 when others =>
1514 return;
1516 end case;
1517 end loop;
1518 end Leading_Dollar;
1520 -------------------
1521 -- Leading_Pound --
1522 -------------------
1524 -- This one is complex! A Leading_Pound can be fixed or floating,
1525 -- but in some cases the decision has to be deferred until we leave
1526 -- this procedure. Also note that Leading_Pound can be called in
1527 -- either State.
1529 -- It will set state to Okay only if a 9 or (second) # is
1530 -- encountered.
1532 -- One Last note: In ambiguous cases, the currency is treated as
1533 -- floating unless there is only one '#'.
1535 procedure Leading_Pound is
1537 Inserts : Boolean := False;
1538 -- Set to True if a '_', '0', '/', 'B', or 'b' is encountered
1540 Must_Float : Boolean := False;
1541 -- Set to true if a '#' occurs after an insert
1543 begin
1544 -- Treat as a floating currency. If it isn't, this will be
1545 -- overwritten later.
1547 Pic.Floater := '#';
1549 Pic.Start_Currency := Index;
1550 Pic.End_Currency := Index;
1551 Pic.Start_Float := Index;
1552 Pic.End_Float := Index;
1554 -- Don't increment Pic.Max_Leading_Digits, we need one "real"
1555 -- currency place.
1557 Pic.Max_Currency_Digits := 1; -- we've seen one.
1559 Skip; -- known '#'
1561 loop
1562 if At_End then
1563 return;
1564 end if;
1566 case Look is
1568 when '_' | '0' | '/' =>
1569 Pic.End_Float := Index;
1570 Inserts := True;
1571 Skip;
1573 when 'B' | 'b' =>
1574 Pic.Picture.Expanded (Index) := 'b';
1575 Pic.End_Float := Index;
1576 Inserts := True;
1577 Skip;
1579 when 'Z' | 'z' =>
1580 Pic.Picture.Expanded (Index) := 'Z'; -- consistency
1582 if Must_Float then
1583 raise Picture_Error;
1584 else
1585 Pic.Max_Leading_Digits := 0;
1587 -- Will overwrite Floater and Start_Float
1589 Zero_Suppression;
1590 end if;
1592 when '*' =>
1593 if Must_Float then
1594 raise Picture_Error;
1595 else
1596 Pic.Max_Leading_Digits := 0;
1598 -- Will overwrite Floater and Start_Float
1600 Star_Suppression;
1601 end if;
1603 when '#' =>
1604 if Inserts then
1605 Must_Float := True;
1606 end if;
1608 Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
1609 Pic.End_Float := Index;
1610 Pic.End_Currency := Index;
1611 Set_State (Okay);
1612 Skip;
1614 when '9' =>
1615 if State /= Okay then
1617 -- A single '#' doesn't float
1619 Pic.Floater := '!';
1620 Pic.Start_Float := Invalid_Position;
1621 Pic.End_Float := Invalid_Position;
1622 end if;
1624 Number_Completion;
1625 return;
1627 when 'V' | 'v' | '.' =>
1628 if State /= Okay then
1629 Pic.Floater := '!';
1630 Pic.Start_Float := Invalid_Position;
1631 Pic.End_Float := Invalid_Position;
1632 end if;
1634 -- Only one pound before the sign is okay, but doesn't
1635 -- float.
1637 Pic.Radix_Position := Index;
1638 Skip;
1639 Number_Fraction_Or_Pound;
1640 return;
1642 when others =>
1643 return;
1644 end case;
1645 end loop;
1646 end Leading_Pound;
1648 ----------
1649 -- Look --
1650 ----------
1652 function Look return Character is
1653 begin
1654 if At_End then
1655 raise Picture_Error;
1656 end if;
1658 return Pic.Picture.Expanded (Index);
1659 end Look;
1661 ------------
1662 -- Number --
1663 ------------
1665 procedure Number is
1666 begin
1667 loop
1669 case Look is
1670 when '_' | '0' | '/' =>
1671 Skip;
1673 when 'B' | 'b' =>
1674 Pic.Picture.Expanded (Index) := 'b';
1675 Skip;
1677 when '9' =>
1678 Computed_BWZ := False;
1679 Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
1680 Set_State (Okay);
1681 Skip;
1683 when '.' | 'V' | 'v' =>
1684 Pic.Radix_Position := Index;
1685 Skip;
1686 Number_Fraction;
1687 return;
1689 when others =>
1690 return;
1692 end case;
1694 if At_End then
1695 return;
1696 end if;
1698 -- Will return in Okay state if a '9' was seen
1700 end loop;
1701 end Number;
1703 -----------------------
1704 -- Number_Completion --
1705 -----------------------
1707 procedure Number_Completion is
1708 begin
1709 while not At_End loop
1710 case Look is
1712 when '_' | '0' | '/' =>
1713 Skip;
1715 when 'B' | 'b' =>
1716 Pic.Picture.Expanded (Index) := 'b';
1717 Skip;
1719 when '9' =>
1720 Computed_BWZ := False;
1721 Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
1722 Set_State (Okay);
1723 Skip;
1725 when 'V' | 'v' | '.' =>
1726 Pic.Radix_Position := Index;
1727 Skip;
1728 Number_Fraction;
1729 return;
1731 when others =>
1732 return;
1733 end case;
1734 end loop;
1735 end Number_Completion;
1737 ---------------------
1738 -- Number_Fraction --
1739 ---------------------
1741 procedure Number_Fraction is
1742 begin
1743 -- Note that number fraction can be called in either State.
1744 -- It will set state to Valid only if a 9 is encountered.
1746 loop
1747 if At_End then
1748 return;
1749 end if;
1751 case Look is
1752 when '_' | '0' | '/' =>
1753 Skip;
1755 when 'B' | 'b' =>
1756 Pic.Picture.Expanded (Index) := 'b';
1757 Skip;
1759 when '9' =>
1760 Computed_BWZ := False;
1761 Pic.Max_Trailing_Digits := Pic.Max_Trailing_Digits + 1;
1762 Set_State (Okay); Skip;
1764 when others =>
1765 return;
1766 end case;
1767 end loop;
1768 end Number_Fraction;
1770 --------------------------------
1771 -- Number_Fraction_Or_Bracket --
1772 --------------------------------
1774 procedure Number_Fraction_Or_Bracket is
1775 begin
1776 loop
1777 if At_End then
1778 return;
1779 end if;
1781 case Look is
1783 when '_' | '0' | '/' => Skip;
1785 when 'B' | 'b' =>
1786 Pic.Picture.Expanded (Index) := 'b';
1787 Skip;
1789 when '<' =>
1790 Pic.Max_Trailing_Digits := Pic.Max_Trailing_Digits + 1;
1791 Pic.End_Float := Index;
1792 Skip;
1794 loop
1795 if At_End then
1796 return;
1797 end if;
1799 case Look is
1800 when '_' | '0' | '/' =>
1801 Skip;
1803 when 'B' | 'b' =>
1804 Pic.Picture.Expanded (Index) := 'b';
1805 Skip;
1807 when '<' =>
1808 Pic.Max_Trailing_Digits :=
1809 Pic.Max_Trailing_Digits + 1;
1810 Pic.End_Float := Index;
1811 Skip;
1813 when others =>
1814 return;
1815 end case;
1816 end loop;
1818 when others =>
1819 Number_Fraction;
1820 return;
1821 end case;
1822 end loop;
1823 end Number_Fraction_Or_Bracket;
1825 -------------------------------
1826 -- Number_Fraction_Or_Dollar --
1827 -------------------------------
1829 procedure Number_Fraction_Or_Dollar is
1830 begin
1831 loop
1832 if At_End then
1833 return;
1834 end if;
1836 case Look is
1837 when '_' | '0' | '/' =>
1838 Skip;
1840 when 'B' | 'b' =>
1841 Pic.Picture.Expanded (Index) := 'b';
1842 Skip;
1844 when '$' =>
1845 Pic.Max_Trailing_Digits := Pic.Max_Trailing_Digits + 1;
1846 Pic.End_Float := Index;
1847 Skip;
1849 loop
1850 if At_End then
1851 return;
1852 end if;
1854 case Look is
1855 when '_' | '0' | '/' =>
1856 Skip;
1858 when 'B' | 'b' =>
1859 Pic.Picture.Expanded (Index) := 'b';
1860 Skip;
1862 when '$' =>
1863 Pic.Max_Trailing_Digits :=
1864 Pic.Max_Trailing_Digits + 1;
1865 Pic.End_Float := Index;
1866 Skip;
1868 when others =>
1869 return;
1870 end case;
1871 end loop;
1873 when others =>
1874 Number_Fraction;
1875 return;
1876 end case;
1877 end loop;
1878 end Number_Fraction_Or_Dollar;
1880 ------------------------------
1881 -- Number_Fraction_Or_Pound --
1882 ------------------------------
1884 procedure Number_Fraction_Or_Pound is
1885 begin
1886 loop
1887 if At_End then
1888 return;
1889 end if;
1891 case Look is
1893 when '_' | '0' | '/' =>
1894 Skip;
1896 when 'B' | 'b' =>
1897 Pic.Picture.Expanded (Index) := 'b';
1898 Skip;
1900 when '#' =>
1901 Pic.Max_Trailing_Digits := Pic.Max_Trailing_Digits + 1;
1902 Pic.End_Float := Index;
1903 Skip;
1905 loop
1906 if At_End then
1907 return;
1908 end if;
1910 case Look is
1912 when '_' | '0' | '/' =>
1913 Skip;
1915 when 'B' | 'b' =>
1916 Pic.Picture.Expanded (Index) := 'b';
1917 Skip;
1919 when '#' =>
1920 Pic.Max_Trailing_Digits :=
1921 Pic.Max_Trailing_Digits + 1;
1922 Pic.End_Float := Index;
1923 Skip;
1925 when others =>
1926 return;
1928 end case;
1929 end loop;
1931 when others =>
1932 Number_Fraction;
1933 return;
1935 end case;
1936 end loop;
1937 end Number_Fraction_Or_Pound;
1939 ----------------------------------
1940 -- Number_Fraction_Or_Star_Fill --
1941 ----------------------------------
1943 procedure Number_Fraction_Or_Star_Fill is
1944 begin
1945 loop
1946 if At_End then
1947 return;
1948 end if;
1950 case Look is
1952 when '_' | '0' | '/' =>
1953 Skip;
1955 when 'B' | 'b' =>
1956 Pic.Picture.Expanded (Index) := 'b';
1957 Skip;
1959 when '*' =>
1960 Pic.Star_Fill := True;
1961 Pic.Max_Trailing_Digits := Pic.Max_Trailing_Digits + 1;
1962 Pic.End_Float := Index;
1963 Skip;
1965 loop
1966 if At_End then
1967 return;
1968 end if;
1970 case Look is
1972 when '_' | '0' | '/' =>
1973 Skip;
1975 when 'B' | 'b' =>
1976 Pic.Picture.Expanded (Index) := 'b';
1977 Skip;
1979 when '*' =>
1980 Pic.Star_Fill := True;
1981 Pic.Max_Trailing_Digits :=
1982 Pic.Max_Trailing_Digits + 1;
1983 Pic.End_Float := Index;
1984 Skip;
1986 when others =>
1987 return;
1988 end case;
1989 end loop;
1991 when others =>
1992 Number_Fraction;
1993 return;
1995 end case;
1996 end loop;
1997 end Number_Fraction_Or_Star_Fill;
1999 -------------------------------
2000 -- Number_Fraction_Or_Z_Fill --
2001 -------------------------------
2003 procedure Number_Fraction_Or_Z_Fill is
2004 begin
2005 loop
2006 if At_End then
2007 return;
2008 end if;
2010 case Look is
2012 when '_' | '0' | '/' =>
2013 Skip;
2015 when 'B' | 'b' =>
2016 Pic.Picture.Expanded (Index) := 'b';
2017 Skip;
2019 when 'Z' | 'z' =>
2020 Pic.Max_Trailing_Digits := Pic.Max_Trailing_Digits + 1;
2021 Pic.End_Float := Index;
2022 Pic.Picture.Expanded (Index) := 'Z'; -- consistency
2024 Skip;
2026 loop
2027 if At_End then
2028 return;
2029 end if;
2031 case Look is
2033 when '_' | '0' | '/' =>
2034 Skip;
2036 when 'B' | 'b' =>
2037 Pic.Picture.Expanded (Index) := 'b';
2038 Skip;
2040 when 'Z' | 'z' =>
2041 Pic.Picture.Expanded (Index) := 'Z'; -- consistency
2043 Pic.Max_Trailing_Digits :=
2044 Pic.Max_Trailing_Digits + 1;
2045 Pic.End_Float := Index;
2046 Skip;
2048 when others =>
2049 return;
2050 end case;
2051 end loop;
2053 when others =>
2054 Number_Fraction;
2055 return;
2056 end case;
2057 end loop;
2058 end Number_Fraction_Or_Z_Fill;
2060 -----------------------
2061 -- Optional_RHS_Sign --
2062 -----------------------
2064 procedure Optional_RHS_Sign is
2065 begin
2066 if At_End then
2067 return;
2068 end if;
2070 case Look is
2072 when '+' | '-' =>
2073 Pic.Sign_Position := Index;
2074 Skip;
2075 return;
2077 when 'C' | 'c' =>
2078 Pic.Sign_Position := Index;
2079 Pic.Picture.Expanded (Index) := 'C';
2080 Skip;
2082 if Look = 'R' or else Look = 'r' then
2083 Pic.Second_Sign := Index;
2084 Pic.Picture.Expanded (Index) := 'R';
2085 Skip;
2087 else
2088 raise Picture_Error;
2089 end if;
2091 return;
2093 when 'D' | 'd' =>
2094 Pic.Sign_Position := Index;
2095 Pic.Picture.Expanded (Index) := 'D';
2096 Skip;
2098 if Look = 'B' or else Look = 'b' then
2099 Pic.Second_Sign := Index;
2100 Pic.Picture.Expanded (Index) := 'B';
2101 Skip;
2103 else
2104 raise Picture_Error;
2105 end if;
2107 return;
2109 when '>' =>
2110 if Pic.Picture.Expanded (Pic.Sign_Position) = '<' then
2111 Pic.Second_Sign := Index;
2112 Skip;
2114 else
2115 raise Picture_Error;
2116 end if;
2118 when others =>
2119 return;
2121 end case;
2122 end Optional_RHS_Sign;
2124 -------------
2125 -- Picture --
2126 -------------
2128 -- Note that Picture can be called in either State
2130 -- It will set state to Valid only if a 9 is encountered or floating
2131 -- currency is called.
2133 procedure Picture is
2134 begin
2135 loop
2136 if At_End then
2137 return;
2138 end if;
2140 case Look is
2142 when '_' | '0' | '/' =>
2143 Skip;
2145 when 'B' | 'b' =>
2146 Pic.Picture.Expanded (Index) := 'b';
2147 Skip;
2149 when '$' =>
2150 Leading_Dollar;
2151 return;
2153 when '#' =>
2154 Leading_Pound;
2155 return;
2157 when '9' =>
2158 Computed_BWZ := False;
2159 Set_State (Okay);
2160 Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
2161 Skip;
2163 when 'V' | 'v' | '.' =>
2164 Pic.Radix_Position := Index;
2165 Skip;
2166 Number_Fraction;
2167 Trailing_Currency;
2168 return;
2170 when others =>
2171 return;
2173 end case;
2174 end loop;
2175 end Picture;
2177 ---------------------
2178 -- Picture_Bracket --
2179 ---------------------
2181 procedure Picture_Bracket is
2182 begin
2183 Pic.Sign_Position := Index;
2184 Pic.Sign_Position := Index;
2186 -- Treat as a floating sign, and unwind otherwise
2188 Pic.Floater := '<';
2189 Pic.Start_Float := Index;
2190 Pic.End_Float := Index;
2192 -- Don't increment Pic.Max_Leading_Digits, we need one "real"
2193 -- sign place.
2195 Skip; -- Known Bracket
2197 loop
2198 case Look is
2200 when '_' | '0' | '/' =>
2201 Pic.End_Float := Index;
2202 Skip;
2204 when 'B' | 'b' =>
2205 Pic.End_Float := Index;
2206 Pic.Picture.Expanded (Index) := 'b';
2207 Skip;
2209 when '<' =>
2210 Set_State (Okay); -- "<<>" is enough.
2211 Floating_Bracket;
2212 Trailing_Currency;
2213 Trailing_Bracket;
2214 return;
2216 when '$' | '#' | '9' | '*' =>
2217 if State /= Okay then
2218 Pic.Floater := '!';
2219 Pic.Start_Float := Invalid_Position;
2220 Pic.End_Float := Invalid_Position;
2221 end if;
2223 Picture;
2224 Trailing_Bracket;
2225 Set_State (Okay);
2226 return;
2228 when '.' | 'V' | 'v' =>
2229 if State /= Okay then
2230 Pic.Floater := '!';
2231 Pic.Start_Float := Invalid_Position;
2232 Pic.End_Float := Invalid_Position;
2233 end if;
2235 -- Don't assume that state is okay, haven't seen a digit
2237 Picture;
2238 Trailing_Bracket;
2239 return;
2241 when others =>
2242 raise Picture_Error;
2244 end case;
2245 end loop;
2246 end Picture_Bracket;
2248 -------------------
2249 -- Picture_Minus --
2250 -------------------
2252 procedure Picture_Minus is
2253 begin
2254 Pic.Sign_Position := Index;
2256 -- Treat as a floating sign, and unwind otherwise
2258 Pic.Floater := '-';
2259 Pic.Start_Float := Index;
2260 Pic.End_Float := Index;
2262 -- Don't increment Pic.Max_Leading_Digits, we need one "real"
2263 -- sign place.
2265 Skip; -- Known Minus
2267 loop
2268 case Look is
2270 when '_' | '0' | '/' =>
2271 Pic.End_Float := Index;
2272 Skip;
2274 when 'B' | 'b' =>
2275 Pic.End_Float := Index;
2276 Pic.Picture.Expanded (Index) := 'b';
2277 Skip;
2279 when '-' =>
2280 Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
2281 Pic.End_Float := Index;
2282 Skip;
2283 Set_State (Okay); -- "-- " is enough
2284 Floating_Minus;
2285 Trailing_Currency;
2286 return;
2288 when '$' | '#' | '9' | '*' =>
2289 if State /= Okay then
2290 Pic.Floater := '!';
2291 Pic.Start_Float := Invalid_Position;
2292 Pic.End_Float := Invalid_Position;
2293 end if;
2295 Picture;
2296 Set_State (Okay);
2297 return;
2299 when 'Z' | 'z' =>
2301 -- Can't have Z and a floating sign
2303 if State = Okay then
2304 Set_State (Reject);
2305 end if;
2307 Pic.Picture.Expanded (Index) := 'Z'; -- consistency
2308 Zero_Suppression;
2309 Trailing_Currency;
2310 Optional_RHS_Sign;
2311 return;
2313 when '.' | 'V' | 'v' =>
2314 if State /= Okay then
2315 Pic.Floater := '!';
2316 Pic.Start_Float := Invalid_Position;
2317 Pic.End_Float := Invalid_Position;
2318 end if;
2320 -- Don't assume that state is okay, haven't seen a digit
2322 Picture;
2323 return;
2325 when others =>
2326 return;
2328 end case;
2329 end loop;
2330 end Picture_Minus;
2332 ------------------
2333 -- Picture_Plus --
2334 ------------------
2336 procedure Picture_Plus is
2337 begin
2338 Pic.Sign_Position := Index;
2340 -- Treat as a floating sign, and unwind otherwise
2342 Pic.Floater := '+';
2343 Pic.Start_Float := Index;
2344 Pic.End_Float := Index;
2346 -- Don't increment Pic.Max_Leading_Digits, we need one "real"
2347 -- sign place.
2349 Skip; -- Known Plus
2351 loop
2352 case Look is
2354 when '_' | '0' | '/' =>
2355 Pic.End_Float := Index;
2356 Skip;
2358 when 'B' | 'b' =>
2359 Pic.End_Float := Index;
2360 Pic.Picture.Expanded (Index) := 'b';
2361 Skip;
2363 when '+' =>
2364 Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
2365 Pic.End_Float := Index;
2366 Skip;
2367 Set_State (Okay); -- "++" is enough
2368 Floating_Plus;
2369 Trailing_Currency;
2370 return;
2372 when '$' | '#' | '9' | '*' =>
2373 if State /= Okay then
2374 Pic.Floater := '!';
2375 Pic.Start_Float := Invalid_Position;
2376 Pic.End_Float := Invalid_Position;
2377 end if;
2379 Picture;
2380 Set_State (Okay);
2381 return;
2383 when 'Z' | 'z' =>
2384 if State = Okay then
2385 Set_State (Reject);
2386 end if;
2388 -- Can't have Z and a floating sign
2390 Pic.Picture.Expanded (Index) := 'Z'; -- consistency
2392 -- '+Z' is acceptable
2394 Set_State (Okay);
2396 Zero_Suppression;
2397 Trailing_Currency;
2398 Optional_RHS_Sign;
2399 return;
2401 when '.' | 'V' | 'v' =>
2402 if State /= Okay then
2403 Pic.Floater := '!';
2404 Pic.Start_Float := Invalid_Position;
2405 Pic.End_Float := Invalid_Position;
2406 end if;
2408 -- Don't assume that state is okay, haven't seen a digit
2410 Picture;
2411 return;
2413 when others =>
2414 return;
2416 end case;
2417 end loop;
2418 end Picture_Plus;
2420 --------------------
2421 -- Picture_String --
2422 --------------------
2424 procedure Picture_String is
2425 begin
2426 while Is_Insert loop
2427 Skip;
2428 end loop;
2430 case Look is
2432 when '$' | '#' =>
2433 Picture;
2434 Optional_RHS_Sign;
2436 when '+' =>
2437 Picture_Plus;
2439 when '-' =>
2440 Picture_Minus;
2442 when '<' =>
2443 Picture_Bracket;
2445 when 'Z' | 'z' =>
2446 Pic.Picture.Expanded (Index) := 'Z'; -- consistency
2447 Zero_Suppression;
2448 Trailing_Currency;
2449 Optional_RHS_Sign;
2451 when '*' =>
2452 Star_Suppression;
2453 Trailing_Currency;
2454 Optional_RHS_Sign;
2456 when '9' | '.' | 'V' | 'v' =>
2457 Number;
2458 Trailing_Currency;
2459 Optional_RHS_Sign;
2461 when others =>
2462 raise Picture_Error;
2464 end case;
2466 -- Blank when zero either if the PIC does not contain a '9' or if
2467 -- requested by the user and no '*'.
2469 Pic.Blank_When_Zero :=
2470 (Computed_BWZ or else Pic.Blank_When_Zero)
2471 and then not Pic.Star_Fill;
2473 -- Star fill if '*' and no '9'
2475 Pic.Star_Fill := Pic.Star_Fill and then Computed_BWZ;
2477 if not At_End then
2478 Set_State (Reject);
2479 end if;
2481 end Picture_String;
2483 ---------------
2484 -- Set_State --
2485 ---------------
2487 procedure Set_State (L : Legality) is
2488 begin
2489 State := L;
2490 end Set_State;
2492 ----------
2493 -- Skip --
2494 ----------
2496 procedure Skip is
2497 begin
2498 Index := Index + 1;
2499 end Skip;
2501 ----------------------
2502 -- Star_Suppression --
2503 ----------------------
2505 procedure Star_Suppression is
2506 begin
2507 Pic.Floater := '*';
2508 Pic.Start_Float := Index;
2509 Pic.End_Float := Index;
2510 Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
2511 Set_State (Okay);
2513 -- Even a single * is a valid picture
2515 Pic.Star_Fill := True;
2516 Skip; -- Known *
2518 loop
2519 if At_End then
2520 return;
2521 end if;
2523 case Look is
2525 when '_' | '0' | '/' =>
2526 Pic.End_Float := Index;
2527 Skip;
2529 when 'B' | 'b' =>
2530 Pic.End_Float := Index;
2531 Pic.Picture.Expanded (Index) := 'b';
2532 Skip;
2534 when '*' =>
2535 Pic.End_Float := Index;
2536 Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
2537 Set_State (Okay); Skip;
2539 when '9' =>
2540 Set_State (Okay);
2541 Number_Completion;
2542 return;
2544 when '.' | 'V' | 'v' =>
2545 Pic.Radix_Position := Index;
2546 Skip;
2547 Number_Fraction_Or_Star_Fill;
2548 return;
2550 when '#' | '$' =>
2551 Trailing_Currency;
2552 Set_State (Okay);
2553 return;
2555 when others => raise Picture_Error;
2556 end case;
2557 end loop;
2558 end Star_Suppression;
2560 ----------------------
2561 -- Trailing_Bracket --
2562 ----------------------
2564 procedure Trailing_Bracket is
2565 begin
2566 if Look = '>' then
2567 Pic.Second_Sign := Index;
2568 Skip;
2569 else
2570 raise Picture_Error;
2571 end if;
2572 end Trailing_Bracket;
2574 -----------------------
2575 -- Trailing_Currency --
2576 -----------------------
2578 procedure Trailing_Currency is
2579 begin
2580 if At_End then
2581 return;
2582 end if;
2584 if Look = '$' then
2585 Pic.Start_Currency := Index;
2586 Pic.End_Currency := Index;
2587 Skip;
2589 else
2590 while not At_End and then Look = '#' loop
2591 if Pic.Start_Currency = Invalid_Position then
2592 Pic.Start_Currency := Index;
2593 end if;
2595 Pic.End_Currency := Index;
2596 Skip;
2597 end loop;
2598 end if;
2600 loop
2601 if At_End then
2602 return;
2603 end if;
2605 case Look is
2606 when '_' | '0' | '/' => Skip;
2608 when 'B' | 'b' =>
2609 Pic.Picture.Expanded (Index) := 'b';
2610 Skip;
2612 when others => return;
2613 end case;
2614 end loop;
2615 end Trailing_Currency;
2617 ----------------------
2618 -- Zero_Suppression --
2619 ----------------------
2621 procedure Zero_Suppression is
2622 begin
2623 Pic.Floater := 'Z';
2624 Pic.Start_Float := Index;
2625 Pic.End_Float := Index;
2626 Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
2627 Pic.Picture.Expanded (Index) := 'Z'; -- consistency
2629 Skip; -- Known Z
2631 loop
2632 -- Even a single Z is a valid picture
2634 if At_End then
2635 Set_State (Okay);
2636 return;
2637 end if;
2639 case Look is
2640 when '_' | '0' | '/' =>
2641 Pic.End_Float := Index;
2642 Skip;
2644 when 'B' | 'b' =>
2645 Pic.End_Float := Index;
2646 Pic.Picture.Expanded (Index) := 'b';
2647 Skip;
2649 when 'Z' | 'z' =>
2650 Pic.Picture.Expanded (Index) := 'Z'; -- consistency
2652 Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
2653 Pic.End_Float := Index;
2654 Set_State (Okay);
2655 Skip;
2657 when '9' =>
2658 Set_State (Okay);
2659 Number_Completion;
2660 return;
2662 when '.' | 'V' | 'v' =>
2663 Pic.Radix_Position := Index;
2664 Skip;
2665 Number_Fraction_Or_Z_Fill;
2666 return;
2668 when '#' | '$' =>
2669 Trailing_Currency;
2670 Set_State (Okay);
2671 return;
2673 when others =>
2674 return;
2675 end case;
2676 end loop;
2677 end Zero_Suppression;
2679 -- Start of processing for Precalculate
2681 begin
2682 Picture_String;
2684 if State = Reject then
2685 raise Picture_Error;
2686 end if;
2688 exception
2690 when Constraint_Error =>
2692 -- To deal with special cases like null strings
2694 raise Picture_Error;
2696 end Precalculate;
2698 ----------------
2699 -- To_Picture --
2700 ----------------
2702 function To_Picture
2703 (Pic_String : String;
2704 Blank_When_Zero : Boolean := False) return Picture
2706 Result : Picture;
2708 begin
2709 declare
2710 Item : constant String := Expand (Pic_String);
2712 begin
2713 Result.Contents.Picture := (Item'Length, Item);
2714 Result.Contents.Original_BWZ := Blank_When_Zero;
2715 Result.Contents.Blank_When_Zero := Blank_When_Zero;
2716 Precalculate (Result.Contents);
2717 return Result;
2718 end;
2720 exception
2721 when others =>
2722 raise Picture_Error;
2724 end To_Picture;
2726 -------------
2727 -- To_Wide --
2728 -------------
2730 function To_Wide (C : Character) return Wide_Character is
2731 begin
2732 return Wide_Character'Val (Character'Pos (C));
2733 end To_Wide;
2735 -----------
2736 -- Valid --
2737 -----------
2739 function Valid
2740 (Pic_String : String;
2741 Blank_When_Zero : Boolean := False) return Boolean
2743 begin
2744 declare
2745 Expanded_Pic : constant String := Expand (Pic_String);
2746 -- Raises Picture_Error if Item not well-formed
2748 Format_Rec : Format_Record;
2750 begin
2751 Format_Rec.Picture := (Expanded_Pic'Length, Expanded_Pic);
2752 Format_Rec.Blank_When_Zero := Blank_When_Zero;
2753 Format_Rec.Original_BWZ := Blank_When_Zero;
2754 Precalculate (Format_Rec);
2756 -- False only if Blank_When_0 is True but the pic string has a '*'
2758 return not Blank_When_Zero
2759 or else Strings_Fixed.Index (Expanded_Pic, "*") = 0;
2760 end;
2762 exception
2763 when others => return False;
2764 end Valid;
2766 end Ada.Wide_Text_IO.Editing;