1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME COMPONENTS --
5 -- A D A . T E X T _ I O --
9 -- Copyright (C) 1992-2016, Free Software Foundation, Inc. --
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. --
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. --
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/>. --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 with Ada
.Streams
; use Ada
.Streams
;
33 with Interfaces
.C_Streams
; use Interfaces
.C_Streams
;
37 with System
.WCh_Cnv
; use System
.WCh_Cnv
;
38 with System
.WCh_Con
; use System
.WCh_Con
;
40 with Ada
.Unchecked_Conversion
;
41 with Ada
.Unchecked_Deallocation
;
43 pragma Elaborate_All
(System
.File_IO
);
44 -- Needed because of calls to Chain_File in package body elaboration
46 package body Ada
.Text_IO
is
48 package FIO
renames System
.File_IO
;
50 subtype AP
is FCB
.AFCB_Ptr
;
52 function To_FCB
is new Ada
.Unchecked_Conversion
(File_Mode
, FCB
.File_Mode
);
53 function To_TIO
is new Ada
.Unchecked_Conversion
(FCB
.File_Mode
, File_Mode
);
54 use type FCB
.File_Mode
;
56 use type System
.CRTL
.size_t
;
58 WC_Encoding
: Character;
59 pragma Import
(C
, WC_Encoding
, "__gl_wc_encoding");
60 -- Default wide character encoding
62 Err_Name
: aliased String := "*stderr" & ASCII
.NUL
;
63 In_Name
: aliased String := "*stdin" & ASCII
.NUL
;
64 Out_Name
: aliased String := "*stdout" & ASCII
.NUL
;
65 -- Names of standard files
67 -- Use "preallocated" strings to avoid calling "new" during the elaboration
68 -- of the run time. This is needed in the tasking case to avoid calling
69 -- Task_Lock too early. A filename is expected to end with a null character
70 -- in the runtime, here the null characters are added just to have a
71 -- correct filename length.
73 -- Note: the names for these files are bogus, and probably it would be
74 -- better for these files to have no names, but the ACVC tests insist.
75 -- We use names that are bound to fail in open etc.
77 Null_Str
: aliased constant String := "";
78 -- Used as form string for standard files
80 -----------------------
81 -- Local Subprograms --
82 -----------------------
84 function Get_Upper_Half_Char
86 File
: File_Type
) return Character;
87 -- This function is shared by Get and Get_Immediate to extract an encoded
88 -- upper half character value from the given File. The first byte has
89 -- already been read and is passed in C. The character value is returned as
90 -- the result, and the file pointer is bumped past the character.
91 -- Constraint_Error is raised if the encoded value is outside the bounds of
94 function Get_Upper_Half_Char_Immed
96 File
: File_Type
) return Character;
97 -- This routine is identical to Get_Upper_Half_Char, except that the reads
98 -- are done in Get_Immediate mode (i.e. without waiting for a line return).
100 function Getc
(File
: File_Type
) return int
;
101 -- Gets next character from file, which has already been checked for being
102 -- in read status, and returns the character read if no error occurs. The
103 -- result is EOF if the end of file was read.
105 function Getc_Immed
(File
: File_Type
) return int
;
106 -- This routine is identical to Getc, except that the read is done in
107 -- Get_Immediate mode (i.e. without waiting for a line return).
109 function Has_Upper_Half_Character
(Item
: String) return Boolean;
110 -- Returns True if any of the characters is in the range 16#80#-16#FF#
112 function Nextc
(File
: File_Type
) return int
;
113 -- Returns next character from file without skipping past it (i.e. it is a
114 -- combination of Getc followed by an Ungetc).
116 procedure Put_Encoded
(File
: File_Type
; Char
: Character);
117 -- Called to output a character Char to the given File, when the encoding
118 -- method for the file is other than brackets, and Char is upper half.
120 procedure Putc
(ch
: int
; File
: File_Type
);
121 -- Outputs the given character to the file, which has already been checked
122 -- for being in output status. Device_Error is raised if the character
123 -- cannot be written.
125 procedure Set_WCEM
(File
: in out File_Type
);
126 -- Called by Open and Create to set the wide character encoding method for
127 -- the file, processing a WCEM form parameter if one is present. File is
128 -- IN OUT because it may be closed in case of an error.
130 procedure Terminate_Line
(File
: File_Type
);
131 -- If the file is in Write_File or Append_File mode, and the current line
132 -- is not terminated, then a line terminator is written using New_Line.
133 -- Note that there is no Terminate_Page routine, because the page mark at
134 -- the end of the file is implied if necessary.
136 procedure Ungetc
(ch
: int
; File
: File_Type
);
137 -- Pushes back character into stream, using ungetc. The caller has checked
138 -- that the file is in read status. Device_Error is raised if the character
139 -- cannot be pushed back. An attempt to push back and end of file character
146 function AFCB_Allocate
(Control_Block
: Text_AFCB
) return FCB
.AFCB_Ptr
is
147 pragma Unreferenced
(Control_Block
);
149 return new Text_AFCB
;
156 procedure AFCB_Close
(File
: not null access Text_AFCB
) is
158 -- If the file being closed is one of the current files, then close
159 -- the corresponding current file. It is not clear that this action
160 -- is required (RM A.10.3(23)) but it seems reasonable, and besides
161 -- ACVC test CE3208A expects this behavior.
163 if File_Type
(File
) = Current_In
then
165 elsif File_Type
(File
) = Current_Out
then
167 elsif File_Type
(File
) = Current_Err
then
171 Terminate_Line
(File_Type
(File
));
178 procedure AFCB_Free
(File
: not null access Text_AFCB
) is
179 type FCB_Ptr
is access all Text_AFCB
;
180 FT
: FCB_Ptr
:= FCB_Ptr
(File
);
182 procedure Free
is new Ada
.Unchecked_Deallocation
(Text_AFCB
, FCB_Ptr
);
192 procedure Close
(File
: in out File_Type
) is
194 FIO
.Close
(AP
(File
)'Unrestricted_Access);
201 -- Note: we assume that it is impossible in practice for the column
202 -- to exceed the value of Count'Last, i.e. no check is required for
203 -- overflow raising layout error.
205 function Col
(File
: File_Type
) return Positive_Count
is
207 FIO
.Check_File_Open
(AP
(File
));
211 function Col
return Positive_Count
is
213 return Col
(Current_Out
);
221 (File
: in out File_Type
;
222 Mode
: File_Mode
:= Out_File
;
226 Dummy_File_Control_Block
: Text_AFCB
;
227 pragma Warnings
(Off
, Dummy_File_Control_Block
);
228 -- Yes, we know this is never assigned a value, only the tag
229 -- is used for dispatching purposes, so that's expected.
232 FIO
.Open
(File_Ptr
=> AP
(File
),
233 Dummy_FCB
=> Dummy_File_Control_Block
,
234 Mode
=> To_FCB
(Mode
),
249 function Current_Error
return File_Type
is
254 function Current_Error
return File_Access
is
256 return Current_Err
.Self
'Access;
263 function Current_Input
return File_Type
is
268 function Current_Input
return File_Access
is
270 return Current_In
.Self
'Access;
277 function Current_Output
return File_Type
is
282 function Current_Output
return File_Access
is
284 return Current_Out
.Self
'Access;
291 procedure Delete
(File
: in out File_Type
) is
293 FIO
.Delete
(AP
(File
)'Unrestricted_Access);
300 function End_Of_File
(File
: File_Type
) return Boolean is
304 FIO
.Check_Read_Status
(AP
(File
));
306 if File
.Before_Upper_Half_Character
then
309 elsif File
.Before_LM
then
310 if File
.Before_LM_PM
then
311 return Nextc
(File
) = EOF
;
325 File
.Before_LM
:= True;
329 -- Here we are just past the line mark with Before_LM set so that we
330 -- do not have to try to back up past the LM, thus avoiding the need
331 -- to back up more than one character.
338 elsif ch
= PM
and then File
.Is_Regular_File
then
339 File
.Before_LM_PM
:= True;
340 return Nextc
(File
) = EOF
;
342 -- Here if neither EOF nor PM followed end of line
351 function End_Of_File
return Boolean is
353 return End_Of_File
(Current_In
);
360 function End_Of_Line
(File
: File_Type
) return Boolean is
364 FIO
.Check_Read_Status
(AP
(File
));
366 if File
.Before_Upper_Half_Character
then
369 elsif File
.Before_LM
then
385 function End_Of_Line
return Boolean is
387 return End_Of_Line
(Current_In
);
394 function End_Of_Page
(File
: File_Type
) return Boolean is
398 FIO
.Check_Read_Status
(AP
(File
));
400 if not File
.Is_Regular_File
then
403 elsif File
.Before_Upper_Half_Character
then
406 elsif File
.Before_LM
then
407 if File
.Before_LM_PM
then
422 File
.Before_LM
:= True;
426 -- Here we are just past the line mark with Before_LM set so that we
427 -- do not have to try to back up past the LM, thus avoiding the need
428 -- to back up more than one character.
432 return ch
= PM
or else ch
= EOF
;
435 function End_Of_Page
return Boolean is
437 return End_Of_Page
(Current_In
);
444 function EOF_Char
return Integer is
453 procedure Flush
(File
: File_Type
) is
455 FIO
.Flush
(AP
(File
));
467 function Form
(File
: File_Type
) return String is
469 return FIO
.Form
(AP
(File
));
478 Item
: out Character)
483 FIO
.Check_Read_Status
(AP
(File
));
485 if File
.Before_Upper_Half_Character
then
486 File
.Before_Upper_Half_Character
:= False;
487 Item
:= File
.Saved_Upper_Half_Character
;
489 elsif File
.Before_LM
then
490 File
.Before_LM
:= False;
493 if File
.Before_LM_PM
then
495 File
.Page
:= File
.Page
+ 1;
496 File
.Before_LM_PM
:= False;
498 File
.Line
:= File
.Line
+ 1;
509 File
.Line
:= File
.Line
+ 1;
512 elsif ch
= PM
and then File
.Is_Regular_File
then
513 File
.Page
:= File
.Page
+ 1;
517 Item
:= Character'Val (ch
);
518 File
.Col
:= File
.Col
+ 1;
524 procedure Get
(Item
: out Character) is
526 Get
(Current_In
, Item
);
537 FIO
.Check_Read_Status
(AP
(File
));
539 if File
.Before_LM
then
540 File
.Before_LM
:= False;
541 File
.Before_LM_PM
:= False;
544 if File
.Before_LM_PM
then
546 File
.Page
:= File
.Page
+ 1;
547 File
.Before_LM_PM
:= False;
550 File
.Line
:= File
.Line
+ 1;
555 while J
<= Item
'Last loop
562 File
.Line
:= File
.Line
+ 1;
565 elsif ch
= PM
and then File
.Is_Regular_File
then
566 File
.Page
:= File
.Page
+ 1;
570 Item
(J
) := Character'Val (ch
);
572 File
.Col
:= File
.Col
+ 1;
577 procedure Get
(Item
: out String) is
579 Get
(Current_In
, Item
);
586 procedure Get_Immediate
588 Item
: out Character)
593 FIO
.Check_Read_Status
(AP
(File
));
595 if File
.Before_Upper_Half_Character
then
596 File
.Before_Upper_Half_Character
:= False;
597 Item
:= File
.Saved_Upper_Half_Character
;
599 elsif File
.Before_LM
then
600 File
.Before_LM
:= False;
601 File
.Before_LM_PM
:= False;
602 Item
:= Character'Val (LM
);
605 ch
:= Getc_Immed
(File
);
611 (if not Is_Start_Of_Encoding
(Character'Val (ch
), File
.WC_Method
)
612 then Character'Val (ch
)
613 else Get_Upper_Half_Char_Immed
(Character'Val (ch
), File
));
618 procedure Get_Immediate
619 (Item
: out Character)
622 Get_Immediate
(Current_In
, Item
);
625 procedure Get_Immediate
627 Item
: out Character;
628 Available
: out Boolean)
634 procedure getc_immediate_nowait
637 end_of_file
: out int
;
639 pragma Import
(C
, getc_immediate_nowait
, "getc_immediate_nowait");
642 FIO
.Check_Read_Status
(AP
(File
));
645 if File
.Before_Upper_Half_Character
then
646 File
.Before_Upper_Half_Character
:= False;
647 Item
:= File
.Saved_Upper_Half_Character
;
649 elsif File
.Before_LM
then
650 File
.Before_LM
:= False;
651 File
.Before_LM_PM
:= False;
652 Item
:= Character'Val (LM
);
655 getc_immediate_nowait
(File
.Stream
, ch
, end_of_file
, avail
);
657 if ferror
(File
.Stream
) /= 0 then
660 elsif end_of_file
/= 0 then
671 (if not Is_Start_Of_Encoding
(Character'Val (ch
), File
.WC_Method
)
672 then Character'Val (ch
)
673 else Get_Upper_Half_Char_Immed
(Character'Val (ch
), File
));
679 procedure Get_Immediate
680 (Item
: out Character;
681 Available
: out Boolean)
684 Get_Immediate
(Current_In
, Item
, Available
);
694 Last
: out Natural) is separate;
695 -- The implementation of Ada.Text_IO.Get_Line is split into a subunit so
696 -- that different implementations can be used on different systems.
703 Get_Line
(Current_In
, Item
, Last
);
706 function Get_Line
(File
: File_Type
) return String is
707 function Get_Rest
(S
: String) return String;
708 -- This is a recursive function that reads the rest of the line and
709 -- returns it. S is the part read so far.
715 function Get_Rest
(S
: String) return String is
717 -- The first time we allocate a buffer of size 500. Each following
718 -- time we allocate a buffer the same size as what we have read so
719 -- far. This limits us to a logarithmic number of calls to Get_Rest
720 -- and also ensures only a linear use of stack space.
722 Buffer
: String (1 .. Integer'Max (500, S
'Length));
726 Get_Line
(File
, Buffer
, Last
);
729 R
: constant String := S
& Buffer
(1 .. Last
);
731 if Last
< Buffer
'Last then
735 pragma Assert
(Last
= Buffer
'Last);
737 -- If the String has the same length as the buffer, and there
738 -- is no end of line, check whether we are at the end of file,
739 -- in which case we have the full String in the buffer.
741 if End_Of_File
(File
) then
751 -- Start of processing for Get_Line
754 return Get_Rest
("");
757 function Get_Line
return String is
759 return Get_Line
(Current_In
);
762 -------------------------
763 -- Get_Upper_Half_Char --
764 -------------------------
766 function Get_Upper_Half_Char
768 File
: File_Type
) return Character
770 Result
: Wide_Character;
772 function In_Char
return Character;
773 -- Function used to obtain additional characters it the wide character
774 -- sequence is more than one character long.
776 function WC_In
is new Char_Sequence_To_Wide_Char
(In_Char
);
782 function In_Char
return Character is
783 ch
: constant Integer := Getc
(File
);
788 return Character'Val (ch
);
792 -- Start of processing for Get_Upper_Half_Char
795 Result
:= WC_In
(C
, File
.WC_Method
);
797 if Wide_Character'Pos (Result
) > 16#FF#
then
798 raise Constraint_Error
with
799 "invalid wide character in Text_'I'O input";
801 return Character'Val (Wide_Character'Pos (Result
));
803 end Get_Upper_Half_Char
;
805 -------------------------------
806 -- Get_Upper_Half_Char_Immed --
807 -------------------------------
809 function Get_Upper_Half_Char_Immed
811 File
: File_Type
) return Character
813 Result
: Wide_Character;
815 function In_Char
return Character;
816 -- Function used to obtain additional characters it the wide character
817 -- sequence is more than one character long.
819 function WC_In
is new Char_Sequence_To_Wide_Char
(In_Char
);
825 function In_Char
return Character is
826 ch
: constant Integer := Getc_Immed
(File
);
831 return Character'Val (ch
);
835 -- Start of processing for Get_Upper_Half_Char_Immed
838 Result
:= WC_In
(C
, File
.WC_Method
);
840 if Wide_Character'Pos (Result
) > 16#FF#
then
841 raise Constraint_Error
with
842 "invalid wide character in Text_'I'O input";
844 return Character'Val (Wide_Character'Pos (Result
));
846 end Get_Upper_Half_Char_Immed
;
852 function Getc
(File
: File_Type
) return int
is
856 ch
:= fgetc
(File
.Stream
);
858 if ch
= EOF
and then ferror
(File
.Stream
) /= 0 then
869 function Getc_Immed
(File
: File_Type
) return int
is
873 procedure getc_immediate
874 (stream
: FILEs
; ch
: out int
; end_of_file
: out int
);
875 pragma Import
(C
, getc_immediate
, "getc_immediate");
878 FIO
.Check_Read_Status
(AP
(File
));
880 if File
.Before_LM
then
881 File
.Before_LM
:= False;
882 File
.Before_LM_PM
:= False;
886 getc_immediate
(File
.Stream
, ch
, end_of_file
);
888 if ferror
(File
.Stream
) /= 0 then
890 elsif end_of_file
/= 0 then
898 ------------------------------
899 -- Has_Upper_Half_Character --
900 ------------------------------
902 function Has_Upper_Half_Character
(Item
: String) return Boolean is
904 for J
in Item
'Range loop
905 if Character'Pos (Item
(J
)) >= 16#
80#
then
911 end Has_Upper_Half_Character
;
913 -------------------------------
914 -- Initialize_Standard_Files --
915 -------------------------------
917 procedure Initialize_Standard_Files
is
919 Standard_Err
.Stream
:= stderr
;
920 Standard_Err
.Name
:= Err_Name
'Access;
921 Standard_Err
.Form
:= Null_Str
'Unrestricted_Access;
922 Standard_Err
.Mode
:= FCB
.Out_File
;
923 Standard_Err
.Is_Regular_File
:= is_regular_file
(fileno
(stderr
)) /= 0;
924 Standard_Err
.Is_Temporary_File
:= False;
925 Standard_Err
.Is_System_File
:= True;
926 Standard_Err
.Text_Encoding
:= Default_Text
;
927 Standard_Err
.Access_Method
:= 'T';
928 Standard_Err
.Self
:= Standard_Err
;
929 Standard_Err
.WC_Method
:= Default_WCEM
;
931 Standard_In
.Stream
:= stdin
;
932 Standard_In
.Name
:= In_Name
'Access;
933 Standard_In
.Form
:= Null_Str
'Unrestricted_Access;
934 Standard_In
.Mode
:= FCB
.In_File
;
935 Standard_In
.Is_Regular_File
:= is_regular_file
(fileno
(stdin
)) /= 0;
936 Standard_In
.Is_Temporary_File
:= False;
937 Standard_In
.Is_System_File
:= True;
938 Standard_In
.Text_Encoding
:= Default_Text
;
939 Standard_In
.Access_Method
:= 'T';
940 Standard_In
.Self
:= Standard_In
;
941 Standard_In
.WC_Method
:= Default_WCEM
;
943 Standard_Out
.Stream
:= stdout
;
944 Standard_Out
.Name
:= Out_Name
'Access;
945 Standard_Out
.Form
:= Null_Str
'Unrestricted_Access;
946 Standard_Out
.Mode
:= FCB
.Out_File
;
947 Standard_Out
.Is_Regular_File
:= is_regular_file
(fileno
(stdout
)) /= 0;
948 Standard_Out
.Is_Temporary_File
:= False;
949 Standard_Out
.Is_System_File
:= True;
950 Standard_Out
.Text_Encoding
:= Default_Text
;
951 Standard_Out
.Access_Method
:= 'T';
952 Standard_Out
.Self
:= Standard_Out
;
953 Standard_Out
.WC_Method
:= Default_WCEM
;
955 FIO
.Make_Unbuffered
(AP
(Standard_Out
));
956 FIO
.Make_Unbuffered
(AP
(Standard_Err
));
957 end Initialize_Standard_Files
;
963 function Is_Open
(File
: File_Type
) return Boolean is
965 return FIO
.Is_Open
(AP
(File
));
972 -- Note: we assume that it is impossible in practice for the line
973 -- to exceed the value of Count'Last, i.e. no check is required for
974 -- overflow raising layout error.
976 function Line
(File
: File_Type
) return Positive_Count
is
978 FIO
.Check_File_Open
(AP
(File
));
982 function Line
return Positive_Count
is
984 return Line
(Current_Out
);
991 function Line_Length
(File
: File_Type
) return Count
is
993 FIO
.Check_Write_Status
(AP
(File
));
994 return File
.Line_Length
;
997 function Line_Length
return Count
is
999 return Line_Length
(Current_Out
);
1006 procedure Look_Ahead
1008 Item
: out Character;
1009 End_Of_Line
: out Boolean)
1014 FIO
.Check_Read_Status
(AP
(File
));
1016 -- If we are logically before a line mark, we can return immediately
1018 if File
.Before_LM
then
1019 End_Of_Line
:= True;
1022 -- If we are before an upper half character just return it (this can
1023 -- happen if there are two calls to Look_Ahead in a row).
1025 elsif File
.Before_Upper_Half_Character
then
1026 End_Of_Line
:= False;
1027 Item
:= File
.Saved_Upper_Half_Character
;
1029 -- Otherwise we must read a character from the input stream
1036 or else (ch
= PM
and then File
.Is_Regular_File
)
1038 End_Of_Line
:= True;
1042 -- Case where character obtained does not represent the start of an
1043 -- encoded sequence so it stands for itself and we can unget it with
1046 elsif not Is_Start_Of_Encoding
1047 (Character'Val (ch
), File
.WC_Method
)
1049 End_Of_Line
:= False;
1051 Item
:= Character'Val (ch
);
1053 -- For the start of an encoding, we read the character using the
1054 -- Get_Upper_Half_Char routine. It will occupy more than one byte
1055 -- so we can't put it back with ungetc. Instead we save it in the
1056 -- control block, setting a flag that everyone interested in reading
1057 -- characters must test before reading the stream.
1060 Item
:= Get_Upper_Half_Char
(Character'Val (ch
), File
);
1061 End_Of_Line
:= False;
1062 File
.Saved_Upper_Half_Character
:= Item
;
1063 File
.Before_Upper_Half_Character
:= True;
1068 procedure Look_Ahead
1069 (Item
: out Character;
1070 End_Of_Line
: out Boolean)
1073 Look_Ahead
(Current_In
, Item
, End_Of_Line
);
1080 function Mode
(File
: File_Type
) return File_Mode
is
1082 return To_TIO
(FIO
.Mode
(AP
(File
)));
1089 function Name
(File
: File_Type
) return String is
1091 return FIO
.Name
(AP
(File
));
1100 Spacing
: Positive_Count
:= 1)
1103 -- Raise Constraint_Error if out of range value. The reason for this
1104 -- explicit test is that we don't want junk values around, even if
1105 -- checks are off in the caller.
1107 if not Spacing
'Valid then
1108 raise Constraint_Error
;
1111 FIO
.Check_Write_Status
(AP
(File
));
1113 for K
in 1 .. Spacing
loop
1115 File
.Line
:= File
.Line
+ 1;
1117 if File
.Page_Length
/= 0
1118 and then File
.Line
> File
.Page_Length
1122 File
.Page
:= File
.Page
+ 1;
1129 procedure New_Line
(Spacing
: Positive_Count
:= 1) is
1131 New_Line
(Current_Out
, Spacing
);
1138 procedure New_Page
(File
: File_Type
) is
1140 FIO
.Check_Write_Status
(AP
(File
));
1142 if File
.Col
/= 1 or else File
.Line
= 1 then
1147 File
.Page
:= File
.Page
+ 1;
1152 procedure New_Page
is
1154 New_Page
(Current_Out
);
1161 function Nextc
(File
: File_Type
) return int
is
1165 ch
:= fgetc
(File
.Stream
);
1168 if ferror
(File
.Stream
) /= 0 then
1173 if ungetc
(ch
, File
.Stream
) = EOF
then
1186 (File
: in out File_Type
;
1189 Form
: String := "")
1191 Dummy_File_Control_Block
: Text_AFCB
;
1192 pragma Warnings
(Off
, Dummy_File_Control_Block
);
1193 -- Yes, we know this is never assigned a value, only the tag
1194 -- is used for dispatching purposes, so that's expected.
1197 FIO
.Open
(File_Ptr
=> AP
(File
),
1198 Dummy_FCB
=> Dummy_File_Control_Block
,
1199 Mode
=> To_FCB
(Mode
),
1214 -- Note: we assume that it is impossible in practice for the page
1215 -- to exceed the value of Count'Last, i.e. no check is required for
1216 -- overflow raising layout error.
1218 function Page
(File
: File_Type
) return Positive_Count
is
1220 FIO
.Check_File_Open
(AP
(File
));
1224 function Page
return Positive_Count
is
1226 return Page
(Current_Out
);
1233 function Page_Length
(File
: File_Type
) return Count
is
1235 FIO
.Check_Write_Status
(AP
(File
));
1236 return File
.Page_Length
;
1239 function Page_Length
return Count
is
1241 return Page_Length
(Current_Out
);
1253 FIO
.Check_Write_Status
(AP
(File
));
1255 if File
.Line_Length
/= 0 and then File
.Col
> File
.Line_Length
then
1259 -- If lower half character, or brackets encoding, output directly
1261 if Character'Pos (Item
) < 16#
80#
1262 or else File
.WC_Method
= WCEM_Brackets
1264 if fputc
(Character'Pos (Item
), File
.Stream
) = EOF
then
1268 -- Case of upper half character with non-brackets encoding
1271 Put_Encoded
(File
, Item
);
1274 File
.Col
:= File
.Col
+ 1;
1277 procedure Put
(Item
: Character) is
1279 Put
(Current_Out
, Item
);
1291 FIO
.Check_Write_Status
(AP
(File
));
1293 -- Only have something to do if string is non-null
1295 if Item
'Length > 0 then
1297 -- If we have bounded lines, or if the file encoding is other than
1298 -- Brackets and the string has at least one upper half character,
1299 -- then output the string character by character.
1301 if File
.Line_Length
/= 0
1302 or else (File
.WC_Method
/= WCEM_Brackets
1303 and then Has_Upper_Half_Character
(Item
))
1305 for J
in Item
'Range loop
1306 Put
(File
, Item
(J
));
1309 -- Otherwise we can output the entire string at once. Note that if
1310 -- there are LF or FF characters in the string, we do not bother to
1311 -- count them as line or page terminators.
1314 FIO
.Write_Buf
(AP
(File
), Item
'Address, Item
'Length);
1315 File
.Col
:= File
.Col
+ Item
'Length;
1320 procedure Put
(Item
: String) is
1322 Put
(Current_Out
, Item
);
1329 procedure Put_Encoded
(File
: File_Type
; Char
: Character) is
1330 procedure Out_Char
(C
: Character);
1331 -- Procedure to output one character of an upper half encoded sequence
1333 procedure WC_Out
is new Wide_Char_To_Char_Sequence
(Out_Char
);
1339 procedure Out_Char
(C
: Character) is
1341 Putc
(Character'Pos (C
), File
);
1344 -- Start of processing for Put_Encoded
1347 WC_Out
(Wide_Character'Val (Character'Pos (Char
)), File
.WC_Method
);
1358 Ilen
: Natural := Item
'Length;
1359 Istart
: Natural := Item
'First;
1362 FIO
.Check_Write_Status
(AP
(File
));
1364 -- If we have bounded lines, or if the file encoding is other than
1365 -- Brackets and the string has at least one upper half character, then
1366 -- output the string character by character.
1368 if File
.Line_Length
/= 0
1369 or else (File
.WC_Method
/= WCEM_Brackets
1370 and then Has_Upper_Half_Character
(Item
))
1372 for J
in Item
'Range loop
1373 Put
(File
, Item
(J
));
1380 -- Normal case where we do not need to output character by character
1382 -- We setup a single string that has the necessary terminators and
1383 -- then write it with a single call. The reason for doing this is
1384 -- that it gives better behavior for the use of Put_Line in multi-
1385 -- tasking programs, since often the OS will treat the entire put
1386 -- operation as an atomic operation.
1388 -- We only do this if the message is 512 characters or less in length,
1389 -- since otherwise Put_Line would use an unbounded amount of stack
1390 -- space and could cause undetected stack overflow. If we have a
1391 -- longer string, then output the first part separately to avoid this.
1394 FIO
.Write_Buf
(AP
(File
), Item
'Address, size_t
(Ilen
- 512));
1395 Istart
:= Istart
+ Ilen
- 512;
1399 -- Now prepare the string with its terminator
1402 Buffer
: String (1 .. Ilen
+ 2);
1406 Buffer
(1 .. Ilen
) := Item
(Istart
.. Item
'Last);
1407 Buffer
(Ilen
+ 1) := Character'Val (LM
);
1409 if File
.Page_Length
/= 0
1410 and then File
.Line
> File
.Page_Length
1412 Buffer
(Ilen
+ 2) := Character'Val (PM
);
1413 Plen
:= size_t
(Ilen
) + 2;
1415 File
.Page
:= File
.Page
+ 1;
1418 Plen
:= size_t
(Ilen
) + 1;
1419 File
.Line
:= File
.Line
+ 1;
1422 FIO
.Write_Buf
(AP
(File
), Buffer
'Address, Plen
);
1428 procedure Put_Line
(Item
: String) is
1430 Put_Line
(Current_Out
, Item
);
1437 procedure Putc
(ch
: int
; File
: File_Type
) is
1439 if fputc
(ch
, File
.Stream
) = EOF
then
1448 -- This is the primitive Stream Read routine, used when a Text_IO file
1449 -- is treated directly as a stream using Text_IO.Streams.Stream.
1452 (File
: in out Text_AFCB
;
1453 Item
: out Stream_Element_Array
;
1454 Last
: out Stream_Element_Offset
)
1457 pragma Warnings
(Off
, Discard_ch
);
1460 -- Need to deal with Before_Upper_Half_Character ???
1462 if File
.Mode
/= FCB
.In_File
then
1466 -- Deal with case where our logical and physical position do not match
1467 -- because of being after an LM or LM-PM sequence when in fact we are
1468 -- logically positioned before it.
1470 if File
.Before_LM
then
1472 -- If we are before a PM, then it is possible for a stream read
1473 -- to leave us after the LM and before the PM, which is a bit
1474 -- odd. The easiest way to deal with this is to unget the PM,
1475 -- so we are indeed positioned between the characters. This way
1476 -- further stream read operations will work correctly, and the
1477 -- effect on text processing is a little weird, but what can
1478 -- be expected if stream and text input are mixed this way?
1480 if File
.Before_LM_PM
then
1481 Discard_ch
:= ungetc
(PM
, File
.Stream
);
1482 File
.Before_LM_PM
:= False;
1485 File
.Before_LM
:= False;
1487 Item
(Item
'First) := Stream_Element
(Character'Pos (ASCII
.LF
));
1489 if Item
'Length = 1 then
1495 Stream_Element_Offset
1496 (fread
(buffer
=> Item
'Address,
1497 index
=> size_t
(Item
'First + 1),
1499 count
=> Item
'Length - 1,
1500 stream
=> File
.Stream
));
1506 -- Now we do the read. Since this is a text file, it is normally in
1507 -- text mode, but stream data must be read in binary mode, so we
1508 -- temporarily set binary mode for the read, resetting it after.
1509 -- These calls have no effect in a system (like Unix) where there is
1510 -- no distinction between text and binary files.
1512 set_binary_mode
(fileno
(File
.Stream
));
1516 Stream_Element_Offset
1517 (fread
(Item
'Address, 1, Item
'Length, File
.Stream
)) - 1;
1519 if Last
< Item
'Last then
1520 if ferror
(File
.Stream
) /= 0 then
1525 set_text_mode
(fileno
(File
.Stream
));
1533 (File
: in out File_Type
;
1537 -- Don't allow change of mode for current file (RM A.10.2(5))
1539 if (File
= Current_In
or else
1540 File
= Current_Out
or else
1541 File
= Current_Error
)
1542 and then To_FCB
(Mode
) /= File
.Mode
1547 Terminate_Line
(File
);
1548 FIO
.Reset
(AP
(File
)'Unrestricted_Access, To_FCB
(Mode
));
1552 File
.Line_Length
:= 0;
1553 File
.Page_Length
:= 0;
1554 File
.Before_LM
:= False;
1555 File
.Before_LM_PM
:= False;
1558 procedure Reset
(File
: in out File_Type
) is
1560 Terminate_Line
(File
);
1561 FIO
.Reset
(AP
(File
)'Unrestricted_Access);
1565 File
.Line_Length
:= 0;
1566 File
.Page_Length
:= 0;
1567 File
.Before_LM
:= False;
1568 File
.Before_LM_PM
:= False;
1577 To
: Positive_Count
)
1582 -- Raise Constraint_Error if out of range value. The reason for this
1583 -- explicit test is that we don't want junk values around, even if
1584 -- checks are off in the caller.
1586 if not To
'Valid then
1587 raise Constraint_Error
;
1590 FIO
.Check_File_Open
(AP
(File
));
1594 if Mode
(File
) >= Out_File
then
1596 -- Error if we attempt to set Col to a value greater than the
1597 -- maximum permissible line length.
1599 if File
.Line_Length
/= 0 and then To
> File
.Line_Length
then
1603 -- If we are behind current position, then go to start of new line
1605 if To
< File
.Col
then
1609 -- Loop to output blanks till we are at the required column
1611 while File
.Col
< To
loop
1618 -- If we are logically before a LM, but physically after it, the
1619 -- file position still reflects the position before the LM, so eat
1620 -- it now and adjust the file position appropriately.
1622 if File
.Before_LM
then
1623 File
.Before_LM
:= False;
1624 File
.Before_LM_PM
:= False;
1625 File
.Line
:= File
.Line
+ 1;
1629 -- Loop reading characters till we get one at the required Col value
1632 -- Read next character. The reason we have to read ahead is to
1633 -- skip formatting characters, the effect of Set_Col is to set
1634 -- us to a real character with the right Col value, and format
1635 -- characters don't count.
1639 -- Error if we hit an end of file
1644 -- If line mark, eat it and adjust file position
1647 File
.Line
:= File
.Line
+ 1;
1650 -- If recognized page mark, eat it, and adjust file position
1652 elsif ch
= PM
and then File
.Is_Regular_File
then
1653 File
.Page
:= File
.Page
+ 1;
1657 -- Otherwise this is the character we are looking for, so put it
1658 -- back in the input stream (we have not adjusted the file
1659 -- position yet, so everything is set right after this ungetc).
1661 elsif To
= File
.Col
then
1665 -- Keep skipping characters if we are not there yet, updating the
1666 -- file position past the skipped character.
1669 File
.Col
:= File
.Col
+ 1;
1675 procedure Set_Col
(To
: Positive_Count
) is
1677 Set_Col
(Current_Out
, To
);
1684 procedure Set_Error
(File
: File_Type
) is
1686 FIO
.Check_Write_Status
(AP
(File
));
1687 Current_Err
:= File
;
1694 procedure Set_Input
(File
: File_Type
) is
1696 FIO
.Check_Read_Status
(AP
(File
));
1706 To
: Positive_Count
)
1709 -- Raise Constraint_Error if out of range value. The reason for this
1710 -- explicit test is that we don't want junk values around, even if
1711 -- checks are off in the caller.
1713 if not To
'Valid then
1714 raise Constraint_Error
;
1717 FIO
.Check_File_Open
(AP
(File
));
1719 if To
= File
.Line
then
1723 if Mode
(File
) >= Out_File
then
1724 if File
.Page_Length
/= 0 and then To
> File
.Page_Length
then
1728 if To
< File
.Line
then
1732 while File
.Line
< To
loop
1737 while To
/= File
.Line
loop
1743 procedure Set_Line
(To
: Positive_Count
) is
1745 Set_Line
(Current_Out
, To
);
1748 ---------------------
1749 -- Set_Line_Length --
1750 ---------------------
1752 procedure Set_Line_Length
(File
: File_Type
; To
: Count
) is
1754 -- Raise Constraint_Error if out of range value. The reason for this
1755 -- explicit test is that we don't want junk values around, even if
1756 -- checks are off in the caller.
1758 if not To
'Valid then
1759 raise Constraint_Error
;
1762 FIO
.Check_Write_Status
(AP
(File
));
1763 File
.Line_Length
:= To
;
1764 end Set_Line_Length
;
1766 procedure Set_Line_Length
(To
: Count
) is
1768 Set_Line_Length
(Current_Out
, To
);
1769 end Set_Line_Length
;
1775 procedure Set_Output
(File
: File_Type
) is
1777 FIO
.Check_Write_Status
(AP
(File
));
1778 Current_Out
:= File
;
1781 ---------------------
1782 -- Set_Page_Length --
1783 ---------------------
1785 procedure Set_Page_Length
(File
: File_Type
; To
: Count
) is
1787 -- Raise Constraint_Error if out of range value. The reason for this
1788 -- explicit test is that we don't want junk values around, even if
1789 -- checks are off in the caller.
1791 if not To
'Valid then
1792 raise Constraint_Error
;
1795 FIO
.Check_Write_Status
(AP
(File
));
1796 File
.Page_Length
:= To
;
1797 end Set_Page_Length
;
1799 procedure Set_Page_Length
(To
: Count
) is
1801 Set_Page_Length
(Current_Out
, To
);
1802 end Set_Page_Length
;
1808 procedure Set_WCEM
(File
: in out File_Type
) is
1813 File
.WC_Method
:= WCEM_Brackets
;
1814 FIO
.Form_Parameter
(File
.Form
.all, "wcem", Start
, Stop
);
1817 File
.WC_Method
:= WCEM_Brackets
;
1820 if Stop
= Start
then
1821 for J
in WC_Encoding_Letters
'Range loop
1822 if File
.Form
(Start
) = WC_Encoding_Letters
(J
) then
1823 File
.WC_Method
:= J
;
1830 raise Use_Error
with "invalid WCEM form parameter";
1840 Spacing
: Positive_Count
:= 1)
1845 -- Raise Constraint_Error if out of range value. The reason for this
1846 -- explicit test is that we don't want junk values around, even if
1847 -- checks are off in the caller.
1849 if not Spacing
'Valid then
1850 raise Constraint_Error
;
1853 FIO
.Check_Read_Status
(AP
(File
));
1855 for L
in 1 .. Spacing
loop
1856 if File
.Before_LM
then
1857 File
.Before_LM
:= False;
1859 -- Note that if File.Before_LM_PM is currently set, we also have
1860 -- to reset it (because it makes sense for Before_LM_PM to be set
1861 -- only when Before_LM is also set). This is done later on in this
1862 -- subprogram, as soon as Before_LM_PM has been taken into account
1863 -- for the purpose of page and line counts.
1868 -- If at end of file now, then immediately raise End_Error. Note
1869 -- that we can never be positioned between a line mark and a page
1870 -- mark, so if we are at the end of file, we cannot logically be
1871 -- before the implicit page mark that is at the end of the file.
1873 -- For the same reason, we do not need an explicit check for a
1874 -- page mark. If there is a FF in the middle of a line, the file
1875 -- is not in canonical format and we do not care about the page
1876 -- numbers for files other than ones in canonical format.
1882 -- If not at end of file, then loop till we get to an LM or EOF.
1883 -- The latter case happens only in non-canonical files where the
1884 -- last line is not terminated by LM, but we don't want to blow
1885 -- up for such files, so we assume an implicit LM in this case.
1888 exit when ch
= LM
or else ch
= EOF
;
1893 -- We have got past a line mark, now, for a regular file only,
1894 -- see if a page mark immediately follows this line mark and
1895 -- if so, skip past the page mark as well. We do not do this
1896 -- for non-regular files, since it would cause an undesirable
1897 -- wait for an additional character.
1900 File
.Line
:= File
.Line
+ 1;
1902 if File
.Before_LM_PM
then
1903 File
.Page
:= File
.Page
+ 1;
1905 File
.Before_LM_PM
:= False;
1907 elsif File
.Is_Regular_File
then
1910 -- Page mark can be explicit, or implied at the end of the file
1912 if (ch
= PM
or else ch
= EOF
)
1913 and then File
.Is_Regular_File
1915 File
.Page
:= File
.Page
+ 1;
1923 File
.Before_Upper_Half_Character
:= False;
1926 procedure Skip_Line
(Spacing
: Positive_Count
:= 1) is
1928 Skip_Line
(Current_In
, Spacing
);
1935 procedure Skip_Page
(File
: File_Type
) is
1939 FIO
.Check_Read_Status
(AP
(File
));
1941 -- If at page mark already, just skip it
1943 if File
.Before_LM_PM
then
1944 File
.Before_LM
:= False;
1945 File
.Before_LM_PM
:= False;
1946 File
.Page
:= File
.Page
+ 1;
1952 -- This is a bit tricky, if we are logically before an LM then
1953 -- it is not an error if we are at an end of file now, since we
1954 -- are not really at it.
1956 if File
.Before_LM
then
1957 File
.Before_LM
:= False;
1958 File
.Before_LM_PM
:= False;
1961 -- Otherwise we do raise End_Error if we are at the end of file now
1971 -- Now we can just rumble along to the next page mark, or to the
1972 -- end of file, if that comes first. The latter case happens when
1973 -- the page mark is implied at the end of file.
1977 or else (ch
= PM
and then File
.Is_Regular_File
);
1981 File
.Page
:= File
.Page
+ 1;
1984 File
.Before_Upper_Half_Character
:= False;
1987 procedure Skip_Page
is
1989 Skip_Page
(Current_In
);
1992 --------------------
1993 -- Standard_Error --
1994 --------------------
1996 function Standard_Error
return File_Type
is
1998 return Standard_Err
;
2001 function Standard_Error
return File_Access
is
2003 return Standard_Err
'Access;
2006 --------------------
2007 -- Standard_Input --
2008 --------------------
2010 function Standard_Input
return File_Type
is
2015 function Standard_Input
return File_Access
is
2017 return Standard_In
'Access;
2020 ---------------------
2021 -- Standard_Output --
2022 ---------------------
2024 function Standard_Output
return File_Type
is
2026 return Standard_Out
;
2027 end Standard_Output
;
2029 function Standard_Output
return File_Access
is
2031 return Standard_Out
'Access;
2032 end Standard_Output
;
2034 --------------------
2035 -- Terminate_Line --
2036 --------------------
2038 procedure Terminate_Line
(File
: File_Type
) is
2040 FIO
.Check_File_Open
(AP
(File
));
2042 -- For file other than In_File, test for needing to terminate last line
2044 if Mode
(File
) /= In_File
then
2046 -- If not at start of line definition need new line
2048 if File
.Col
/= 1 then
2051 -- For files other than standard error and standard output, we
2052 -- make sure that an empty file has a single line feed, so that
2053 -- it is properly formatted. We avoid this for the standard files
2054 -- because it is too much of a nuisance to have these odd line
2055 -- feeds when nothing has been written to the file.
2057 -- We also avoid this for files opened in append mode, in
2058 -- accordance with (RM A.8.2(10))
2060 elsif (File
/= Standard_Err
and then File
/= Standard_Out
)
2061 and then (File
.Line
= 1 and then File
.Page
= 1)
2062 and then Mode
(File
) = Out_File
2073 procedure Ungetc
(ch
: int
; File
: File_Type
) is
2076 if ungetc
(ch
, File
.Stream
) = EOF
then
2086 -- This is the primitive Stream Write routine, used when a Text_IO file
2087 -- is treated directly as a stream using Text_IO.Streams.Stream.
2090 (File
: in out Text_AFCB
;
2091 Item
: Stream_Element_Array
)
2093 pragma Warnings
(Off
, File
);
2094 -- Because in this implementation we don't need IN OUT, we only read
2096 function Has_Translated_Characters
return Boolean;
2097 -- return True if Item array contains a character which will be
2098 -- translated under the text file mode. There is only one such
2099 -- character under DOS based systems which is character 10.
2101 text_translation_required
: Boolean;
2102 for text_translation_required
'Size use Character'Size;
2103 pragma Import
(C
, text_translation_required
,
2104 "__gnat_text_translation_required");
2106 Siz
: constant size_t
:= Item
'Length;
2108 -------------------------------
2109 -- Has_Translated_Characters --
2110 -------------------------------
2112 function Has_Translated_Characters
return Boolean is
2114 for K
in Item
'Range loop
2115 if Item
(K
) = 10 then
2120 end Has_Translated_Characters
;
2122 Needs_Binary_Write
: constant Boolean :=
2123 text_translation_required
and then Has_Translated_Characters
;
2125 -- Start of processing for Write
2128 if File
.Mode
= FCB
.In_File
then
2132 -- Now we do the write. Since this is a text file, it is normally in
2133 -- text mode, but stream data must be written in binary mode, so we
2134 -- temporarily set binary mode for the write, resetting it after. This
2135 -- is done only if needed (i.e. there is some characters in Item which
2136 -- needs to be written using the binary mode).
2137 -- These calls have no effect in a system (like Unix) where there is
2138 -- no distinction between text and binary files.
2140 -- Since the character translation is done at the time the buffer is
2141 -- written (this is true under Windows) we first flush current buffer
2142 -- with text mode if needed.
2144 if Needs_Binary_Write
then
2145 if fflush
(File
.Stream
) = -1 then
2149 set_binary_mode
(fileno
(File
.Stream
));
2152 if fwrite
(Item
'Address, 1, Siz
, File
.Stream
) /= Siz
then
2156 -- At this point we need to flush the buffer using the binary mode then
2157 -- we reset to text mode.
2159 if Needs_Binary_Write
then
2160 if fflush
(File
.Stream
) = -1 then
2164 set_text_mode
(fileno
(File
.Stream
));
2169 -- Initialize Standard Files
2171 for J
in WC_Encoding_Method
loop
2172 if WC_Encoding
= WC_Encoding_Letters
(J
) then
2177 Initialize_Standard_Files
;
2179 FIO
.Chain_File
(AP
(Standard_In
));
2180 FIO
.Chain_File
(AP
(Standard_Out
));
2181 FIO
.Chain_File
(AP
(Standard_Err
));