felix_0.2.0_7409bde6/src/stantext.adb

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
------------------------------------------------------------------------------
--  Copyright (c) 2021, Lev Kujawski.
--
--  Permission is hereby granted, free of charge, to any person obtaining a
--  copy of this software and associated documentation files (the "Software")
--  to deal in the Software without restriction, including without limitation
--  the rights to use, copy, modify, merge, publish, distribute, sublicense,
--  and sell copies of the Software, and to permit persons to whom the
--  Software is furnished to do so.
--
--  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
--  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
--  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
--  THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
--  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
--  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
--  DEALINGS IN THE SOFTWARE.
--
--  SPDX-License-Identifier: MIT-0
--
--  File:          stantext.adb (Ada Package Body)
--  Language:      Ada (1995) [1]
--  Author:        Lev Kujawski
--  Description:   Type-safe printf() emulation for string localization
--
--  References:
--  [1] Information technology - Programming languages - Ada,
--      ISO/IEC 8652:1995(E), 15 Feb. 1995.
------------------------------------------------------------------------------

with Ada.Strings.Unbounded;
with Ada.Unchecked_Conversion;
with C_Standard_IO;

package body Standard_Text is

   package CIO renames C_Standard_IO;
   package NLS renames Native_Language_System;

   Address_Octet_Size : constant := Standard'Address_Size / 8;
   type Address_Octets_T is
     new Octet_Array_T (1 .. Address_Octet_Size);
   for Address_Octets_T'Size use Standard'Address_Size;

   function Address_To_Octets is new
     Ada.Unchecked_Conversion (Source => System.Address,
                               Target => Address_Octets_T);

   function Octets_To_Address is new
     Ada.Unchecked_Conversion (Source => Address_Octets_T,
                               Target => System.Address);

   Long_Float_Octet_Size : constant := Long_Float'Size / 8;
   type Long_Float_Octets_T is
     new Octet_Array_T (1 .. Long_Float_Octet_Size);
   for Long_Float_Octets_T'Size use Long_Float'Size;

   function Long_Float_To_Octets is new
     Ada.Unchecked_Conversion (Source => Long_Float,
                               Target => Long_Float_Octets_T);

   function Octets_To_Long_Float is new
     Ada.Unchecked_Conversion (Source => Long_Float_Octets_T,
                               Target => Long_Float);

   Long_Long_Float_Octet_Size : constant := Long_Long_Float'Size / 8;
   type Long_Long_Float_Octets_T is
     new Octet_Array_T (1 .. Long_Long_Float_Octet_Size);
   for Long_Long_Float_Octets_T'Size use Long_Long_Float'Size;

   function Long_Long_Float_To_Octets is new
     Ada.Unchecked_Conversion (Source => Long_Long_Float,
                               Target => Long_Long_Float_Octets_T);

   function Octets_To_Long_Long_Float is new
     Ada.Unchecked_Conversion (Source => Long_Long_Float_Octets_T,
                               Target => Long_Long_Float);

   Integer_Octet_Size : constant := Integer'Size / 8;
   type Integer_Octets_T is
     new Octet_Array_T (1 .. Integer_Octet_Size);
   for Integer_Octets_T'Size use Integer'Size;

   function Integer_To_Octets is new
     Ada.Unchecked_Conversion (Source => Integer,
                               Target => Integer_Octets_T);

   function Octets_To_Integer is new
     Ada.Unchecked_Conversion (Source => Integer_Octets_T,
                               Target => Integer);

   Long_Integer_Octet_Size : constant := Long_Integer'Size / 8;
   type Long_Integer_Octets_T is
     new Octet_Array_T (1 .. Long_Integer_Octet_Size);
   for Long_Integer_Octets_T'Size use Long_Integer'Size;

   function Long_Integer_To_Octets is new
     Ada.Unchecked_Conversion (Source => Long_Integer,
                               Target => Long_Integer_Octets_T);

   function Octets_To_Long_Integer is new
     Ada.Unchecked_Conversion (Source => Long_Integer_Octets_T,
                               Target => Long_Integer);

   Flags_Unchanged : constant Settings_T := (others => Unchanged);

   procedure Append
     (The_String : in     String;
      To_String  : in out String;
      At_Index   : in out Positive)
   is
   begin
      To_String (At_Index .. At_Index + (The_String'Length - 1)) :=
        The_String;
      At_Index := At_Index + The_String'Length;
   end Append;

   function Trim
     (Source : in String) return String
   is
   begin
      for I in Source'Range loop
         if Source (I) /= ' ' then
            declare
               Normalized : constant String (1 .. Source'Last - (I - 1)) :=
                 Source (I .. Source'Last);
            begin
               return Normalized;
            end;
         end if;
      end loop;

      return "";
   end Trim;

   function Integer_Image
     (Value : in Integer) return String
   is
   begin
      return Trim (Integer'Image (Value));
   end Integer_Image;

   function Is_Digit
     (This : in Character) return Boolean
   is
   begin
      return This in '0' .. '9';
   end Is_Digit;

   procedure Read_Integer
     (Source : in     String;
      From   : in     Positive;
      Value  :    out Integer;
      Last   :    out Natural)
   is
      Result : Integer  := 0;
      Index  : Natural  := From;
   begin
      loop
         if not Is_Digit (Source (Index)) then
            Index := Index - 1;
            exit;
         end if;

         Result := Result * 10 +
           Character'Pos (Source (Index)) - Character'Pos ('0');

         exit when Index = Source'Last;
         Index := Index + 1;
      end loop;

      Value := Result;
      Last  := Index;
   end Read_Integer;

   function Text return Text_T
   is
   begin
      return Text_T'(Index_Last    => 0,
                     Format_Last   => 0,
                     Argument_Last => 0,
                     Attribute     =>
                       Attributes_T'(Flag      => (others => False),
                                     Precision => 0),
                     Types         => (others => Argument_T'First),
                     Indices       => (others => Positive'First),
                     Format        => (others => Character'First),
                     Arguments     => (others => Octet_T'First));
   end Text;

   function Precision
     (Number_of_Digits : in Natural) return Modifier_T
   is
      Flags : Settings_T := Flags_Unchanged;
   begin
      Flags (Precision) := On;
      return Modifier_T'(Setting   => Flags,
                         Precision => Number_of_Digits);
   end Precision;

   function Positive_Sign return Modifier_T
   is
      Flags : Settings_T := Flags_Unchanged;
   begin
      Flags (Positive_Sign) := On;
      return Modifier_T'(Setting   => Flags,
                         Precision => 0);
   end Positive_Sign;

   function No_Positive_Sign return Modifier_T
   is
      Flags : Settings_T := Flags_Unchanged;
   begin
      Flags (Positive_Sign) := Off;
      return Modifier_T'(Setting   => Flags,
                         Precision => 0);
   end No_Positive_Sign;

   function Thousands_Grouping return Modifier_T
   is
      Flags : Settings_T := Flags_Unchanged;
   begin
      Flags (Thousands_Grouping) := On;
      return Modifier_T'(Setting   => Flags,
                         Precision => 0);
   end Thousands_Grouping;

   function No_Thousands_Grouping return Modifier_T
   is
      Flags : Settings_T := Flags_Unchanged;
   begin
      Flags (Thousands_Grouping) := Off;
      return Modifier_T'(Setting   => Flags,
                         Precision => 0);
   end No_Thousands_Grouping;

   function "&" (Left  : in Text_T;
                 Right : in Modifier_T) return Text_T
   is
      Combined : Text_T := Left;
   begin
      for J in Right.Setting'Range loop
         case Right.Setting (J) is
            when On =>
               Combined.Attribute.Flag (J) := True;
               if J = Precision then
                  Combined.Attribute.Precision := Right.Precision;
               end if;
            when Off =>
               Combined.Attribute.Flag (J) := False;
               if J = Precision then
                  Combined.Attribute.Precision := 0;
               end if;
            when Unchanged =>
               null;
         end case;
      end loop;

      return Combined;
   end "&";

   function "&" (Left  : in Text_T;
                 Right : in String) return Text_T
   is
      Escape : Natural := 0;
   begin
      for I in Positive range Right'Range loop
         if Right (I) = '%' then
            Escape := Escape + 1;
         end if;
      end loop;

      declare
         subtype Escape_Index_T is Positive range 1 .. Right'Length + Escape;
         Escaped : String (Escape_Index_T);
         Index   : Natural := 0;
      begin
         for I in Positive range Right'Range loop
            Index := Index + 1;

            if Right (I) = '%' then
               Escaped (Index) := Right (I);
               Index           := Index + 1;
               Escaped (Index) := Right (I);
            else
               Escaped (Index) := Right (I);
            end if;
         end loop;

         return Text_T'
           (Index_Last    => Left.Index_Last,
            Format_Last   => Left.Format_Last + Right'Length,
            Argument_Last => Left.Argument_Last,
            Attribute     => Left.Attribute,
            Indices       => Left.Indices,
            Types         => Left.Types,
            Format        => Left.Format & Escaped,
            Arguments     => Left.Arguments);
      end;
   end "&";

   function "&" (Left  : in Text_T;
                 Right : in Character) return Text_T
   is
   begin
      if Right = '%' then
         return Text_T'
           (Index_Last    => Left.Index_Last,
            Format_Last   => Left.Format_Last + 2,
            Argument_Last => Left.Argument_Last,
            Attribute     => Left.Attribute,
            Indices       => Left.Indices,
            Types         => Left.Types,
            Format        => Left.Format & Right & Right,
            Arguments     => Left.Arguments);
      else
         return Text_T'
           (Index_Last    => Left.Index_Last,
            Format_Last   => Left.Format_Last + 1,
            Argument_Last => Left.Argument_Last,
            Attribute     => Left.Attribute,
            Indices       => Left.Indices,
            Types         => Left.Types,
            Format        => Left.Format & Right,
            Arguments     => Left.Arguments);
      end if;
   end "&";

   function "&" (Left  : in Text_T;
                 Right : in Integer) return Text_T
   is
      Octets : constant Integer_Octets_T := Integer_To_Octets (Right);
   begin
      return Left & Element_T'(Argument_Last => Octets'Last,
                               Kind          => Integer_Regular,
                               Argument      => Octet_Array_T (Octets));
   end "&";

   function "&" (Left  : in Text_T;
                 Right : in Long_Long_Float) return Text_T
   is
      Octets : constant Long_Long_Float_Octets_T :=
        Long_Long_Float_To_Octets (Right);
   begin
      return Left & Element_T'(Argument_Last => Octets'Last,
                               Kind          => Float_Long_Long,
                               Argument      => Octet_Array_T (Octets));
   end "&";

   function "&" (Left  : in Text_T;
                 Right : in System.Address) return Text_T
   is
      Octets : constant Address_Octets_T := Address_To_Octets (Right);
   begin
      return Left & Element_T'(Argument_Last => Octets'Last,
                               Kind          => Address,
                               Argument      => Octet_Array_T (Octets));
   end "&";

   function Conversion_To_Format
     (Conversion : in Argument_T;
      Argument   : in Positive;
      Attribute  : in Attributes_T) return String
   is
      function Is_Numeric return Boolean
      is
         Result : Boolean;
      begin
         case Conversion is
            when Address =>
               Result := False;
            when Float_Long =>
               Result := True;
            when Float_Long_Long =>
               Result := True;
            when Integer_Long =>
               Result := True;
            when Integer_Regular =>
               Result := True;
            when Raw_String =>
               Result := False;
         end case;

         return Result;
      end Is_Numeric;

      subtype Format_Index_T is Positive range 1 .. 256;
      Format_String : String (Format_Index_T);
      Format_Index  : Format_Index_T := Format_Index_T'First;
   begin  --  Conversion_To_Format
      Append ('%' & Integer_Image (Argument) & '$',
              Format_String, Format_Index);
      if Is_Numeric then
         if Attribute.Flag (Precision) then
            Append ("." & Integer_Image (Attribute.Precision),
                    Format_String, Format_Index);
         end if;
         if Attribute.Flag (Thousands_Grouping) then
            Append ("'", Format_String, Format_Index);
         end if;
         if Attribute.Flag (Positive_Sign) then
            Append ("+", Format_String, Format_Index);
         end if;
      end if;

      case Conversion is
         when Address =>
            Append ("p", Format_String, Format_Index);
         when Float_Long =>
            Append ("f", Format_String, Format_Index);
         when Float_Long_Long =>
            Append ("Lf", Format_String, Format_Index);
         when Integer_Long =>
            Append ("ld", Format_String, Format_Index);
         when Integer_Regular =>
            Append ("d", Format_String, Format_Index);
         when Raw_String =>
            Append ("s", Format_String, Format_Index);
      end case;

      return Format_String (Format_String'First .. Format_Index - 1);
   end Conversion_To_Format;

   function "&" (Left  : in Text_T;
                 Right : in Element_T) return Text_T
   is
      Format_String : constant String := Conversion_To_Format
        (Right.Kind, Left.Index_Last + 1, Left.Attribute);
   begin
      return Text_T'
        (Index_Last    => Left.Index_Last + 1,
         Format_Last   => Left.Format_Last + Format_String'Length,
         Argument_Last => Left.Argument_Last + Right.Argument'Length,
         Attribute     => Left.Attribute,
         Indices       => Left.Indices & (1 => Left.Argument_Last + 1),
         Types         => Left.Types & (1 => Right.Kind),
         Format        => Left.Format & Format_String,
         Arguments     => Left.Arguments & Right.Argument);
   end "&";

   function Float_L (Value : in Long_Float) return Element_T
   is
      Octets : constant Long_Float_Octets_T := Long_Float_To_Octets (Value);
   begin
      return Element_T'(Argument_Last => Octets'Last,
                        Kind          => Float_Long,
                        Argument      => Octet_Array_T (Octets));
   end Float_L;

   function Integer_L (Value : in Long_Integer) return Element_T
   is
      Octets : constant Long_Integer_Octets_T :=
        Long_Integer_To_Octets (Value);
   begin
      return Element_T'(Argument_Last => Octets'Last,
                        Kind          => Integer_Long,
                        Argument      => Octet_Array_T (Octets));
   end Integer_L;

   function Raw (From_String : in String) return Element_T
   is
      subtype Octets_Index_T is Positive range 1 .. From_String'Length;
      Octets : Octet_Array_T (Octets_Index_T);
      for Octets'Address use From_String (From_String'First)'Address;
   begin
      return Element_T'(Argument_Last => Octets'Length,
                        Kind          => Raw_String,
                        Argument      => Octets);
   end Raw;

   function New_Line return String
   is
   begin
      return (1 => ASCII.LF);
   end New_Line;

   function Format_Of
     (The_Text : in Text_T) return String
   is
   begin
      return The_Text.Format;
   end Format_Of;

   function String_Of
     (The_Text    : in Text_T;
      With_Format : in String) return String
   is
      Null_File      : CIO.File_T;
      Conv_First     : Positive;
      Argument_Type  : Argument_T;
      Argument       : Positive    := The_Text.Indices'First;
      Positional     : Boolean     := False;
      Format_Index   : Positive    := With_Format'First;
      Output         : Ada.Strings.Unbounded.Unbounded_String;

      procedure C_Print
      is
         C_Format_String : String :=
           With_Format (Conv_First .. Format_Index - 1) & ASCII.NUL;
      begin
         --  We need to remove any remnant of the argument number.
         C_Format_String (C_Format_String'First) := '%';

         case Argument_Type is
            when Address =>
               Ada.Strings.Unbounded.Append
                 (Output, CIO.Address_Image
                    (Value  => Octets_To_Address (Address_Octets_T
   (The_Text.Arguments (The_Text.Indices (Argument) ..
      The_Text.Indices (Argument) + Address_Octet_Size - 1))),
                     Format => C_Format_String));
            when Integer_Regular =>
               Ada.Strings.Unbounded.Append
                 (Output, CIO.Integer_Image
                    (Value  => Octets_To_Integer (Integer_Octets_T
   (The_Text.Arguments (The_Text.Indices (Argument) ..
      The_Text.Indices (Argument) + Integer_Octet_Size - 1))),
                     Format => C_Format_String));
            when Integer_Long =>
               Ada.Strings.Unbounded.Append
                 (Output, CIO.Long_Integer_Image
                    (Value  => Octets_To_Long_Integer (Long_Integer_Octets_T
   (The_Text.Arguments (The_Text.Indices (Argument) ..
      The_Text.Indices (Argument) + Long_Integer_Octet_Size - 1))),
                     Format => C_Format_String));
            when Float_Long =>
               Ada.Strings.Unbounded.Append
                 (Output, CIO.Long_Float_Image
                    (Value  => Octets_To_Long_Float (Long_Float_Octets_T
   (The_Text.Arguments (The_Text.Indices (Argument) ..
      The_Text.Indices (Argument) + Long_Float_Octet_Size - 1))),
                     Format => C_Format_String));
            when Float_Long_Long =>
               Ada.Strings.Unbounded.Append
                 (Output, CIO.Long_Long_Float_Image
                    (Value  => Octets_To_Long_Long_Float
                       (Long_Long_Float_Octets_T
   (The_Text.Arguments (The_Text.Indices (Argument) ..
      The_Text.Indices (Argument) + Long_Long_Float_Octet_Size - 1))),
                     Format => C_Format_String));
            when Raw_String =>
               raise Error;
         end case;
      end C_Print;

      function Argument_Length return Natural
      is
         Result : Natural;
      begin
         if Argument = The_Text.Index_Last then
            Result := The_Text.Argument_Last -
              (The_Text.Indices (Argument) - 1);
         else
            Result := The_Text.Indices (Argument + 1) -
              The_Text.Indices (Argument);
         end if;

         return Result;
      end Argument_Length;

      procedure Print
      is
      begin
         if Argument_Type = Raw_String then
            --  Handle strings directly
            declare
               String_View : String (1 .. Argument_Length);
               for String_View'Address use The_Text.Arguments
                 (The_Text.Indices (Argument))'Address;
            begin
               Ada.Strings.Unbounded.Append (Output, String_View);
            end;
         else
            C_Print;
         end if;
      end Print;

      --  Page 213 of C435 (the Unix 95 standard)
      procedure Parse_Conversion_Specification
      is
         Argument_Number : Integer;
         Position        : Natural;

         function Is_Flag (This : in Character) return Boolean
         is
            Result : Boolean;
         begin
            case This is
               when ''' =>
                  Result := True;
               when '+' =>
                  Result := True;
               when others =>
                  Result := False;
            end case;

            return Result;
         end Is_Flag;

      begin  --  Parse_Conversion_Specification
         Read_Integer (With_Format, Format_Index, Argument_Number, Position);

         if Position >= Format_Index
           and then Argument_Number > 0
           and then With_Format (Format_Index + 1) = '$'
         then
            Conv_First   := Format_Index + 1;
            Positional   := True;
            Argument     := Argument_Number;
            Format_Index := Format_Index + 2;
         end if;

         --  Skip precision
         if With_Format (Format_Index) = '.' then
            Format_Index := Format_Index + 1;

            while Is_Digit (With_Format (Format_Index)) loop
               Format_Index := Format_Index + 1;
            end loop;
         end if;

         --  Skip flags
         while Is_Flag (With_Format (Format_Index)) loop
            Format_Index := Format_Index + 1;
         end loop;

         case With_Format (Format_Index) is
            when 'L' =>
               Argument_Type := Float_Long_Long;
               Format_Index  := Format_Index + 1;

               if With_Format (Format_Index) /= 'f' then
                  raise Usage_Error;
               end if;
            when 'c' =>
               Argument_Type := Integer_Regular;
            when 'd' | 'i' =>
               Argument_Type := Integer_Regular;
            when 'l' =>
               Argument_Type := Integer_Long;
               Format_Index  := Format_Index + 1;

               if With_Format (Format_Index) /= 'd' then
                  raise Usage_Error;
               end if;
            when 'o' =>
               raise Usage_Error;
            when 'u' =>
               raise Usage_Error;
            when 'x' | 'X' =>
               raise Usage_Error;
            when 'f' =>
               Argument_Type := Float_Long;
            when 'e' | 'E' =>
               Argument_Type := Float_Long;
            when 'g' | 'G' =>
               Argument_Type := Float_Long;
            when 's' =>
               Argument_Type := Raw_String;
            when 'p' =>
               Argument_Type := Address;
            when others =>
               raise Usage_Error;
         end case;

         Format_Index := Format_Index + 1;
      end Parse_Conversion_Specification;

      procedure Verify_Type
      is
      begin
         if Argument_Type /= The_Text.Types (Argument) then
            raise Usage_Error;
         end if;
      end Verify_Type;

   begin  --  String_Of
      CIO.Open_Null (Null_File);

      while Format_Index <= With_Format'Last loop
         if With_Format (Format_Index) = '%' then
            Conv_First   := Format_Index;
            Format_Index := Format_Index + 1;
            if With_Format (Format_Index) = '%' then
               --  Escaped '%'.
               Ada.Strings.Unbounded.Append
                 (Output, With_Format (Format_Index));
               Format_Index := Format_Index + 1;
            else
               Parse_Conversion_Specification;
               Verify_Type;
               Print;

               if not Positional then
                  Argument := Argument + 1;
               end if;
            end if;
         else
            Ada.Strings.Unbounded.Append
              (Output, With_Format (Format_Index));
            Format_Index := Format_Index + 1;
         end if;
      end loop;

      CIO.Close_File (Null_File);
      return Ada.Strings.Unbounded.To_String (Output);
   exception
      when others =>
         CIO.Close_File (Null_File);
         raise;
   end String_Of;

   function String_Of
     (The_Text : in Text_T) return String
   is
   begin
      return String_Of (The_Text    => The_Text,
                        With_Format => The_Text.Format);
   end String_Of;

   function Message
     (From_Catalog    : in NLS.Catalog_T;
      Set_Number      : in Positive;
      Message_Number  : in Positive;
      Default_Message : in Text_T) return String
   is
      Localized_Format : constant String :=
        NLS.Message (From_Catalog, Set_Number, Message_Number);
   begin  --  Message
      if Localized_Format = "" then
         return String_Of (The_Text => Default_Message);
      else
         return String_Of (The_Text    => Default_Message,
                           With_Format => Localized_Format);
      end if;
   end Message;

end Standard_Text;