1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME COMPONENTS --
5 -- S Y S T E M . F I L E _ I O --
9 -- Copyright (C) 1992-2014, 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
.Finalization
; use Ada
.Finalization
;
33 with Ada
.IO_Exceptions
; use Ada
.IO_Exceptions
;
34 with Ada
.Unchecked_Deallocation
;
37 with Interfaces
.C_Streams
; use Interfaces
.C_Streams
;
39 with System
.Case_Util
; use System
.Case_Util
;
42 with System
.Soft_Links
;
44 package body System
.File_IO
is
46 use System
.File_Control_Block
;
48 package SSL
renames System
.Soft_Links
;
51 use type Interfaces
.C
.int
;
53 ----------------------
54 -- Global Variables --
55 ----------------------
57 Open_Files
: AFCB_Ptr
;
58 -- This points to a list of AFCB's for all open files. This is a doubly
59 -- linked list, with the Prev pointer of the first entry, and the Next
60 -- pointer of the last entry containing null. Note that this global
61 -- variable must be properly protected to provide thread safety.
63 type Temp_File_Record
;
64 type Temp_File_Record_Ptr
is access all Temp_File_Record
;
66 type Temp_File_Record
is record
67 Name
: String (1 .. max_path_len
+ 1);
68 Next
: Temp_File_Record_Ptr
;
70 -- One of these is allocated for each temporary file created
72 Temp_Files
: Temp_File_Record_Ptr
;
73 -- Points to list of names of temporary files. Note that this global
74 -- variable must be properly protected to provide thread safety.
76 type File_IO_Clean_Up_Type
is new Limited_Controlled
with null record;
77 -- The closing of all open files and deletion of temporary files is an
78 -- action that takes place at the end of execution of the main program.
79 -- This action is implemented using a library level object which gets
80 -- finalized at the end of program execution. Note that the type is
81 -- limited, in order to stop the compiler optimizing away the declaration
82 -- which would be allowed in the non-limited case.
84 procedure Finalize
(V
: in out File_IO_Clean_Up_Type
);
85 -- This is the finalize operation that is used to do the cleanup
87 File_IO_Clean_Up_Object
: File_IO_Clean_Up_Type
;
88 pragma Warnings
(Off
, File_IO_Clean_Up_Object
);
89 -- This is the single object of the type that triggers the finalization
90 -- call. Since it is at the library level, this happens just before the
91 -- environment task is finalized.
93 text_translation_required
: Boolean;
94 for text_translation_required
'Size use Character'Size;
96 (C
, text_translation_required
, "__gnat_text_translation_required");
97 -- If true, add appropriate suffix to control string for Open
99 -----------------------
100 -- Local Subprograms --
101 -----------------------
103 procedure Free_String
is new Ada
.Unchecked_Deallocation
(String, Pstring
);
105 subtype Fopen_String
is String (1 .. 4);
106 -- Holds open string (longest is "w+b" & nul)
113 Fopstr
: out Fopen_String
);
114 -- Determines proper open mode for a file to be opened in the given Ada
115 -- mode. Text is true for a text file and false otherwise, and Creat is
116 -- true for a create call, and False for an open call. The value stored
117 -- in Fopstr is a nul-terminated string suitable for a call to fopen or
118 -- freopen. Amethod is the character designating the access method from
119 -- the Access_Method field of the FCB.
121 function Errno_Message
123 Errno
: Integer := OS_Lib
.Errno
) return String;
124 -- Return Errno_Message for Errno, with file name prepended
126 procedure Raise_Device_Error
128 Errno
: Integer := OS_Lib
.Errno
);
129 pragma No_Return
(Raise_Device_Error
);
130 -- Clear error indication on File and raise Device_Error with an exception
131 -- message providing errno information.
137 procedure Append_Set
(File
: AFCB_Ptr
) is
139 if File
.Mode
= Append_File
then
140 if fseek
(File
.Stream
, 0, SEEK_END
) /= 0 then
141 Raise_Device_Error
(File
);
150 procedure Chain_File
(File
: AFCB_Ptr
) is
152 -- Take a task lock, to protect the global data value Open_Files
156 -- Do the chaining operation locked
158 File
.Next
:= Open_Files
;
162 if File
.Next
/= null then
163 File
.Next
.Prev
:= File
;
174 ---------------------
175 -- Check_File_Open --
176 ---------------------
178 procedure Check_File_Open
(File
: AFCB_Ptr
) is
181 raise Status_Error
with "file not open";
185 -----------------------
186 -- Check_Read_Status --
187 -----------------------
189 procedure Check_Read_Status
(File
: AFCB_Ptr
) is
192 raise Status_Error
with "file not open";
193 elsif File
.Mode
not in Read_File_Mode
then
194 raise Mode_Error
with "file not readable";
196 end Check_Read_Status
;
198 ------------------------
199 -- Check_Write_Status --
200 ------------------------
202 procedure Check_Write_Status
(File
: AFCB_Ptr
) is
205 raise Status_Error
with "file not open";
206 elsif File
.Mode
= In_File
then
207 raise Mode_Error
with "file not writable";
209 end Check_Write_Status
;
215 procedure Close
(File_Ptr
: access AFCB_Ptr
) is
216 Close_Status
: int
:= 0;
217 Dup_Strm
: Boolean := False;
218 File
: AFCB_Ptr
renames File_Ptr
.all;
219 Errno
: Integer := 0;
222 -- Take a task lock, to protect the global data value Open_Files
226 Check_File_Open
(File
);
229 -- Sever the association between the given file and its associated
230 -- external file. The given file is left closed. Do not perform system
231 -- closes on the standard input, output and error files and also do not
232 -- attempt to close a stream that does not exist (signalled by a null
233 -- stream value -- happens in some error situations).
235 if not File
.Is_System_File
and then File
.Stream
/= NULL_Stream
then
237 -- Do not do an fclose if this is a shared file and there is at least
238 -- one other instance of the stream that is open.
240 if File
.Shared_Status
= Yes
then
247 if P
/= File
and then File
.Stream
= P
.Stream
then
257 -- Do the fclose unless this was a duplicate in the shared case
260 Close_Status
:= fclose
(File
.Stream
);
262 if Close_Status
/= 0 then
263 Errno
:= OS_Lib
.Errno
;
268 -- Dechain file from list of open files and then free the storage
270 if File
.Prev
= null then
271 Open_Files
:= File
.Next
;
273 File
.Prev
.Next
:= File
.Next
;
276 if File
.Next
/= null then
277 File
.Next
.Prev
:= File
.Prev
;
280 -- Deallocate some parts of the file structure that were kept in heap
281 -- storage with the exception of system files (standard input, output
282 -- and error) since they had some information allocated in the stack.
284 if not File
.Is_System_File
then
285 Free_String
(File
.Name
);
286 Free_String
(File
.Form
);
292 if Close_Status
/= 0 then
293 Raise_Device_Error
(null, Errno
);
308 procedure Delete
(File_Ptr
: access AFCB_Ptr
) is
309 File
: AFCB_Ptr
renames File_Ptr
.all;
312 Check_File_Open
(File
);
314 if not File
.Is_Regular_File
then
315 raise Use_Error
with "cannot delete non-regular file";
319 Filename
: aliased constant String := File
.Name
.all;
324 -- Now unlink the external file. Note that we use the full name in
325 -- this unlink, because the working directory may have changed since
326 -- we did the open, and we want to unlink the right file.
328 if unlink
(Filename
'Address) = -1 then
329 raise Use_Error
with OS_Lib
.Errno_Message
;
338 function End_Of_File
(File
: AFCB_Ptr
) return Boolean is
340 Check_File_Open
(File
);
342 if feof
(File
.Stream
) /= 0 then
346 Check_Read_Status
(File
);
348 if ungetc
(fgetc
(File
.Stream
), File
.Stream
) = EOF
then
349 clearerr
(File
.Stream
);
361 function Errno_Message
363 Errno
: Integer := OS_Lib
.Errno
) return String
366 return Name
& ": " & OS_Lib
.Errno_Message
(Err
=> Errno
);
373 procedure Finalize
(V
: in out File_IO_Clean_Up_Type
) is
374 pragma Warnings
(Off
, V
);
376 Fptr1
: aliased AFCB_Ptr
;
382 -- Take a lock to protect global Open_Files data structure
386 -- First close all open files (the slightly complex form of this loop is
387 -- required because Close as a side effect nulls out its argument).
390 while Fptr1
/= null loop
392 Close
(Fptr1
'Access);
396 -- Now unlink all temporary files. We do not bother to free the blocks
397 -- because we are just about to terminate the program. We also ignore
398 -- any errors while attempting these unlink operations.
400 while Temp_Files
/= null loop
401 Discard
:= unlink
(Temp_Files
.Name
'Address);
402 Temp_Files
:= Temp_Files
.Next
;
417 procedure Flush
(File
: AFCB_Ptr
) is
419 Check_Write_Status
(File
);
421 if fflush
(File
.Stream
) /= 0 then
422 Raise_Device_Error
(File
);
430 -- The fopen mode to be used is shown by the following table:
433 -- Append_File "r+" "w+"
435 -- Out_File (Direct_IO) "r+" "w"
436 -- Out_File (all others) "w" "w"
437 -- Inout_File "r+" "w+"
439 -- Note: we do not use "a" or "a+" for Append_File, since this would not
440 -- work in the case of stream files, where even if in append file mode,
441 -- you can reset to earlier points in the file. The caller must use the
442 -- Append_Set routine to deal with the necessary positioning.
444 -- Note: in several cases, the fopen mode used allows reading and writing,
445 -- but the setting of the Ada mode is more restrictive. For instance,
446 -- Create in In_File mode uses "w+" which allows writing, but the Ada mode
447 -- In_File will cause any write operations to be rejected with Mode_Error
450 -- Note: for the Out_File/Open cases for other than the Direct_IO case, an
451 -- initial call will be made by the caller to first open the file in "r"
452 -- mode to be sure that it exists. The real open, in "w" mode, will then
453 -- destroy this file. This is peculiar, but that's what Ada semantics
454 -- require and the ACATS tests insist on.
456 -- If text file translation is required, then either "b" or "t" is appended
457 -- to the mode, depending on the setting of Text.
464 Fopstr
: out Fopen_String
)
481 if Amethod
= 'D' and then not Creat
then
490 when Inout_File | Append_File
=>
491 Fopstr
(1) := (if Creat
then 'w' else 'r');
496 -- If text_translation_required is true then we need to append either a
497 -- "t" or "b" to the string to get the right mode.
499 if text_translation_required
then
500 Fopstr
(Fptr
) := (if Text
then 't' else 'b');
504 Fopstr
(Fptr
) := ASCII
.NUL
;
511 function Form
(File
: AFCB_Ptr
) return String is
514 raise Status_Error
with "Form: file not open";
516 return File
.Form
.all (1 .. File
.Form
'Length - 1);
524 function Form_Boolean
527 Default
: Boolean) return Boolean
530 pragma Unreferenced
(V2
);
533 Form_Parameter
(Form
, Keyword
, V1
, V2
);
537 elsif Form
(V1
) = 'y' then
539 elsif Form
(V1
) = 'n' then
542 raise Use_Error
with "invalid Form";
550 function Form_Integer
553 Default
: Integer) return Integer
559 Form_Parameter
(Form
, Keyword
, V1
, V2
);
567 for J
in V1
.. V2
loop
568 if Form
(J
) not in '0' .. '9' then
569 raise Use_Error
with "invalid Form";
571 V
:= V
* 10 + Character'Pos (Form
(J
)) - Character'Pos ('0');
575 raise Use_Error
with "invalid Form";
587 procedure Form_Parameter
593 Klen
: constant Integer := Keyword
'Length;
596 for J
in Form
'First + Klen
.. Form
'Last - 1 loop
598 and then Form
(J
- Klen
.. J
- 1) = Keyword
602 while Form
(Stop
+ 1) /= ASCII
.NUL
603 and then Form
(Stop
+ 1) /= ','
620 function Is_Open
(File
: AFCB_Ptr
) return Boolean is
622 -- We return True if the file is open, and the underlying file stream is
623 -- usable. In particular on Windows an application linked with -mwindows
624 -- option set does not have a console attached. In this case standard
625 -- files (Current_Output, Current_Error, Current_Input) are not created.
626 -- We want Is_Open (Current_Output) to return False in this case.
628 return File
/= null and then fileno
(File
.Stream
) /= -1;
635 procedure Make_Buffered
637 Buf_Siz
: Interfaces
.C_Streams
.size_t
)
640 pragma Unreferenced
(status
);
643 status
:= setvbuf
(File
.Stream
, Null_Address
, IOFBF
, Buf_Siz
);
646 ------------------------
647 -- Make_Line_Buffered --
648 ------------------------
650 procedure Make_Line_Buffered
652 Line_Siz
: Interfaces
.C_Streams
.size_t
)
655 pragma Unreferenced
(status
);
658 status
:= setvbuf
(File
.Stream
, Null_Address
, IOLBF
, Line_Siz
);
659 -- No error checking???
660 end Make_Line_Buffered
;
662 ---------------------
663 -- Make_Unbuffered --
664 ---------------------
666 procedure Make_Unbuffered
(File
: AFCB_Ptr
) is
668 pragma Unreferenced
(status
);
671 status
:= setvbuf
(File
.Stream
, Null_Address
, IONBF
, 0);
672 -- No error checking???
679 function Mode
(File
: AFCB_Ptr
) return File_Mode
is
682 raise Status_Error
with "Mode: file not open";
692 function Name
(File
: AFCB_Ptr
) return String is
695 raise Status_Error
with "Name: file not open";
697 return File
.Name
.all (1 .. File
.Name
'Length - 1);
706 (File_Ptr
: in out AFCB_Ptr
;
707 Dummy_FCB
: AFCB
'Class;
714 C_Stream
: FILEs
:= NULL_Stream
)
716 pragma Warnings
(Off
, Dummy_FCB
);
717 -- Yes we know this is never assigned a value. That's intended, since
718 -- all we ever use of this value is the tag for dispatching purposes.
720 procedure Tmp_Name
(Buffer
: Address
);
721 pragma Import
(C
, Tmp_Name
, "__gnat_tmp_name");
722 -- Set buffer (a String address) with a temporary filename
724 function Get_Case_Sensitive
return Integer;
725 pragma Import
(C
, Get_Case_Sensitive
,
726 "__gnat_get_file_names_case_sensitive");
728 procedure Record_AFCB
;
729 -- Create and record new AFCB into the runtime, note that the
730 -- implementation uses the variables below which corresponds to the
731 -- status of the opened file.
733 File_Names_Case_Sensitive
: constant Boolean := Get_Case_Sensitive
/= 0;
734 -- Set to indicate whether the operating system convention is for file
735 -- names to be case sensitive (e.g., in Unix, set True), or not case
736 -- sensitive (e.g., in Windows, set False). Declared locally to avoid
737 -- breaking the Preelaborate rule that disallows function calls at the
740 Stream
: FILEs
:= C_Stream
;
741 -- Stream which we open in response to this request
743 Shared
: Shared_Status_Type
;
744 -- Setting of Shared_Status field for file
746 Fopstr
: aliased Fopen_String
;
747 -- Mode string used in fopen call
749 Formstr
: aliased String (1 .. Form
'Length + 1);
750 -- Form string with ASCII.NUL appended, folded to lower case
752 Text_Encoding
: Content_Encoding
;
754 Tempfile
: constant Boolean := (Name
'Length = 0);
755 -- Indicates temporary file case
757 Namelen
: constant Integer := max_path_len
;
758 -- Length required for file name, not including final ASCII.NUL.
759 -- Note that we used to reference L_tmpnam here, which is not reliable
760 -- since __gnat_tmp_name does not always use tmpnam.
762 Namestr
: aliased String (1 .. Namelen
+ 1);
763 -- Name as given or temporary file name with ASCII.NUL appended
765 Fullname
: aliased String (1 .. max_path_len
+ 1);
766 -- Full name (as required for Name function, and as stored in the
767 -- control block in the Name field) with ASCII.NUL appended.
769 Full_Name_Len
: Integer;
770 -- Length of name actually stored in Fullname
772 Encoding
: CRTL
.Filename_Encoding
;
773 -- Filename encoding specified into the form parameter
779 procedure Record_AFCB
is
781 File_Ptr
:= AFCB_Allocate
(Dummy_FCB
);
783 -- Note that we cannot use an aggregate here as File_Ptr is a
784 -- class-wide access to a limited type (Root_Stream_Type).
786 File_Ptr
.Is_Regular_File
:= is_regular_file
(fileno
(Stream
)) /= 0;
787 File_Ptr
.Is_System_File
:= False;
788 File_Ptr
.Text_Encoding
:= Text_Encoding
;
789 File_Ptr
.Shared_Status
:= Shared
;
790 File_Ptr
.Access_Method
:= Amethod
;
791 File_Ptr
.Stream
:= Stream
;
792 File_Ptr
.Form
:= new String'(Formstr);
793 File_Ptr.Name := new String'(Fullname
794 (1 .. Full_Name_Len
));
795 File_Ptr
.Mode
:= Mode
;
796 File_Ptr
.Is_Temporary_File
:= Tempfile
;
797 File_Ptr
.Encoding
:= Encoding
;
799 Chain_File
(File_Ptr
);
800 Append_Set
(File_Ptr
);
803 -- Start of processing for Open
806 if File_Ptr
/= null then
807 raise Status_Error
with "file already open";
810 -- Acquire form string, setting required NUL terminator
812 Formstr
(1 .. Form
'Length) := Form
;
813 Formstr
(Formstr
'Last) := ASCII
.NUL
;
815 -- Convert form string to lower case
817 for J
in Formstr
'Range loop
818 if Formstr
(J
) in 'A' .. 'Z' then
819 Formstr
(J
) := Character'Val (Character'Pos (Formstr
(J
)) + 32);
823 -- Acquire setting of shared parameter
829 Form_Parameter
(Formstr
, "shared", V1
, V2
);
833 elsif Formstr
(V1
.. V2
) = "yes" then
835 elsif Formstr
(V1
.. V2
) = "no" then
838 raise Use_Error
with "invalid Form";
842 -- Acquire setting of encoding parameter
848 Form_Parameter
(Formstr
, "encoding", V1
, V2
);
851 Encoding
:= CRTL
.Unspecified
;
852 elsif Formstr
(V1
.. V2
) = "utf8" then
853 Encoding
:= CRTL
.UTF8
;
854 elsif Formstr
(V1
.. V2
) = "8bits" then
855 Encoding
:= CRTL
.ASCII_8bits
;
857 raise Use_Error
with "invalid Form";
861 -- Acquire setting of text_translation parameter. Only needed if this is
862 -- a [Wide_[Wide_]]Text_IO file, in which case we default to True, but
863 -- if the Form says Text_Translation=No, we use binary mode, so new-line
864 -- will be just LF, even on Windows.
867 Text_Encoding
:= Default_Text
;
869 Text_Encoding
:= None
;
872 if Text_Encoding
in Text_Content_Encoding
then
877 Form_Parameter
(Formstr
, "text_translation", V1
, V2
);
881 elsif Formstr
(V1
.. V2
) = "no" then
882 Text_Encoding
:= None
;
883 elsif Formstr
(V1
.. V2
) = "text"
884 or else Formstr
(V1
.. V2
) = "yes"
886 Text_Encoding
:= Interfaces
.C_Streams
.Text
;
887 elsif Formstr
(V1
.. V2
) = "wtext" then
888 Text_Encoding
:= Wtext
;
889 elsif Formstr
(V1
.. V2
) = "u8text" then
890 Text_Encoding
:= U8text
;
891 elsif Formstr
(V1
.. V2
) = "u16text" then
892 Text_Encoding
:= U16text
;
894 raise Use_Error
with "invalid Form";
899 -- If we were given a stream (call from xxx.C_Streams.Open), then set
900 -- the full name to the given one, and skip to end of processing.
902 if Stream
/= NULL_Stream
then
903 Full_Name_Len
:= Name
'Length + 1;
904 Fullname
(1 .. Full_Name_Len
- 1) := Name
;
905 Fullname
(Full_Name_Len
) := ASCII
.NUL
;
907 -- Normal case of Open or Create
910 -- If temporary file case, get temporary file name and add to the
911 -- list of temporary files to be deleted on exit.
915 raise Name_Error
with "opening temp file without creating it";
918 Tmp_Name
(Namestr
'Address);
920 if Namestr
(1) = ASCII
.NUL
then
921 raise Use_Error
with "invalid temp file name";
924 -- Chain to temp file list, ensuring thread safety with a lock
929 new Temp_File_Record
'(Name => Namestr, Next => Temp_Files);
938 -- Normal case of non-null name given
941 if Name'Length > Namelen then
942 raise Name_Error with "file name too long";
945 Namestr (1 .. Name'Length) := Name;
946 Namestr (Name'Length + 1) := ASCII.NUL;
949 -- Get full name in accordance with the advice of RM A.8.2(22)
951 full_name (Namestr'Address, Fullname'Address);
953 if Fullname (1) = ASCII.NUL then
954 raise Use_Error with Errno_Message (Name);
958 while Full_Name_Len < Fullname'Last
959 and then Fullname (Full_Name_Len) /= ASCII.NUL
961 Full_Name_Len := Full_Name_Len + 1;
964 -- Fullname is generated by calling system's full_name. The problem
965 -- is, full_name does nothing about the casing, so a file name
966 -- comparison may generally speaking not be valid on non-case-
967 -- sensitive systems, and in particular we get unexpected failures
968 -- on Windows/Vista because of this. So we use s-casuti to force
969 -- the name to lower case.
971 if not File_Names_Case_Sensitive then
972 To_Lower (Fullname (1 .. Full_Name_Len));
975 -- If Shared=None or Shared=Yes, then check for the existence of
976 -- another file with exactly the same full name.
983 -- Take a task lock to protect Open_Files
987 -- Search list of open files
991 if Fullname (1 .. Full_Name_Len) = P.Name.all then
993 -- If we get a match, and either file has Shared=None,
994 -- then raise Use_Error, since we don't allow two files
995 -- of the same name to be opened unless they specify the
996 -- required sharing mode.
999 or else P.Shared_Status = None
1001 raise Use_Error with "reopening shared file";
1003 -- If both files have Shared=Yes, then we acquire the
1004 -- stream from the located file to use as our stream.
1007 and then P.Shared_Status = Yes
1015 -- Otherwise one of the files has Shared=Yes and one has
1016 -- Shared=No. If the current file has Shared=No then all
1017 -- is well but we don't want to share any other file's
1018 -- stream. If the current file has Shared=Yes, we would
1019 -- like to share a stream, but not from a file that has
1020 -- Shared=No, so either way, we just continue the search.
1030 SSL.Unlock_Task.all;
1034 SSL.Unlock_Task.all;
1039 -- Open specified file if we did not find an existing stream,
1040 -- otherwise we just return as there is nothing more to be done.
1042 if Stream /= NULL_Stream then
1047 (Mode, Text_Encoding in Text_Content_Encoding,
1048 Creat, Amethod, Fopstr);
1050 -- A special case, if we are opening (OPEN case) a file and the
1051 -- mode returned by Fopen_Mode is not "r" or "r+", then we first
1052 -- make sure that the file exists as required by Ada semantics.
1054 if not Creat and then Fopstr (1) /= 'r
' then
1055 if file_exists (Namestr'Address) = 0 then
1056 raise Name_Error with Errno_Message (Name);
1060 -- Now open the file. Note that we use the name as given in the
1061 -- original Open call for this purpose, since that seems the
1062 -- clearest implementation of the intent. It would presumably
1063 -- work to use the full name here, but if there is any difference,
1064 -- then we should use the name used in the call.
1066 -- Note: for a corresponding delete, we will use the full name,
1067 -- since by the time of the delete, the current working directory
1068 -- may have changed and we do not want to delete a different file.
1071 fopen (Namestr'Address, Fopstr'Address, Encoding);
1073 if Stream = NULL_Stream then
1075 -- Raise Name_Error if trying to open a non-existent file.
1076 -- Otherwise raise Use_Error.
1078 -- Should we raise Device_Error for ENOSPC???
1081 function Is_File_Not_Found_Error
1082 (Errno_Value : Integer) return Integer;
1084 (C, Is_File_Not_Found_Error,
1085 "__gnat_is_file_not_found_error");
1086 -- Non-zero when the given errno value indicates a non-
1089 Errno : constant Integer := OS_Lib.Errno;
1090 Message : constant String := Errno_Message (Name, Errno);
1093 if Is_File_Not_Found_Error (Errno) /= 0 then
1094 raise Name_Error with Message;
1096 raise Use_Error with Message;
1103 -- Stream has been successfully located or opened, so now we are
1104 -- committed to completing the opening of the file. Allocate block on
1105 -- heap and fill in its fields.
1110 ------------------------
1111 -- Raise_Device_Error --
1112 ------------------------
1114 procedure Raise_Device_Error
1116 Errno : Integer := OS_Lib.Errno)
1119 -- Clear error status so that the same error is not reported twice
1121 if File /= null then
1122 clearerr (File.Stream);
1125 raise Device_Error with OS_Lib.Errno_Message (Err => Errno);
1126 end Raise_Device_Error;
1132 procedure Read_Buf (File : AFCB_Ptr; Buf : Address; Siz : size_t) is
1136 Nread := fread (Buf, 1, Siz, File.Stream);
1141 elsif ferror (File.Stream) /= 0 then
1142 Raise_Device_Error (File);
1144 elsif Nread = 0 then
1147 else -- 0 < Nread < Siz
1148 raise Data_Error with "not enough data read";
1155 Siz : Interfaces.C_Streams.size_t;
1156 Count : out Interfaces.C_Streams.size_t)
1159 Count := fread (Buf, 1, Siz, File.Stream);
1161 if Count = 0 and then ferror (File.Stream) /= 0 then
1162 Raise_Device_Error (File);
1170 -- The reset which does not change the mode simply does a rewind
1172 procedure Reset (File_Ptr : access AFCB_Ptr) is
1173 File : AFCB_Ptr renames File_Ptr.all;
1175 Check_File_Open (File);
1176 Reset (File_Ptr, File.Mode);
1179 -- The reset with a change in mode is done using freopen, and is not
1180 -- permitted except for regular files (since otherwise there is no name for
1181 -- the freopen, and in any case it seems meaningless).
1183 procedure Reset (File_Ptr : access AFCB_Ptr; Mode : File_Mode) is
1184 File : AFCB_Ptr renames File_Ptr.all;
1185 Fopstr : aliased Fopen_String;
1188 Check_File_Open (File);
1190 -- Change of mode not allowed for shared file or file with no name or
1191 -- file that is not a regular file, or for a system file. Note that we
1192 -- allow the "change" of mode if it is not in fact doing a change.
1194 if Mode /= File.Mode then
1195 if File.Shared_Status = Yes then
1196 raise Use_Error with "cannot change mode of shared file";
1197 elsif File.Name'Length <= 1 then
1198 raise Use_Error with "cannot change mode of temp file";
1199 elsif File.Is_System_File then
1200 raise Use_Error with "cannot change mode of system file";
1201 elsif not File.Is_Regular_File then
1202 raise Use_Error with "cannot change mode of non-regular file";
1206 -- For In_File or Inout_File for a regular file, we can just do a rewind
1207 -- if the mode is unchanged, which is more efficient than doing a full
1211 and then Mode in Read_File_Mode
1213 rewind (File.Stream);
1215 -- Here the change of mode is permitted, we do it by reopening the file
1216 -- in the new mode and replacing the stream with a new stream.
1220 (Mode, File.Text_Encoding in Text_Content_Encoding,
1221 False, File.Access_Method, Fopstr);
1223 File.Stream := freopen
1224 (File.Name.all'Address, Fopstr'Address, File.Stream,
1227 if File.Stream = NULL_Stream then
1241 procedure Write_Buf (File : AFCB_Ptr; Buf : Address; Siz : size_t) is
1243 -- Note: for most purposes, the Siz and 1 parameters in the fwrite call
1244 -- could be reversed, but we have encountered systems where this is a
1245 -- better choice, since for some file formats, reversing the parameters
1246 -- results in records of one byte each.
1248 SSL.Abort_Defer.all;
1250 if fwrite (Buf, Siz, 1, File.Stream) /= 1 then
1252 SSL.Abort_Undefer.all;
1253 Raise_Device_Error (File);
1257 SSL.Abort_Undefer.all;