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 Errno
: Integer := 0;
220 File
: AFCB_Ptr
renames File_Ptr
.all;
223 -- Take a task lock, to protect the global data value Open_Files
227 Check_File_Open
(File
);
230 -- Sever the association between the given file and its associated
231 -- external file. The given file is left closed. Do not perform system
232 -- closes on the standard input, output and error files and also do not
233 -- attempt to close a stream that does not exist (signalled by a null
234 -- stream value -- happens in some error situations).
236 if not File
.Is_System_File
and then File
.Stream
/= NULL_Stream
then
238 -- Do not do an fclose if this is a shared file and there is at least
239 -- one other instance of the stream that is open.
241 if File
.Shared_Status
= Yes
then
248 if P
/= File
and then File
.Stream
= P
.Stream
then
258 -- Do the fclose unless this was a duplicate in the shared case
261 Close_Status
:= fclose
(File
.Stream
);
263 if Close_Status
/= 0 then
264 Errno
:= OS_Lib
.Errno
;
269 -- Dechain file from list of open files and then free the storage
271 if File
.Prev
= null then
272 Open_Files
:= File
.Next
;
274 File
.Prev
.Next
:= File
.Next
;
277 if File
.Next
/= null then
278 File
.Next
.Prev
:= File
.Prev
;
281 -- Deallocate some parts of the file structure that were kept in heap
282 -- storage with the exception of system files (standard input, output
283 -- and error) since they had some information allocated in the stack.
285 if not File
.Is_System_File
then
286 Free_String
(File
.Name
);
287 Free_String
(File
.Form
);
293 if Close_Status
/= 0 then
294 Raise_Device_Error
(null, Errno
);
309 procedure Delete
(File_Ptr
: access AFCB_Ptr
) is
310 File
: AFCB_Ptr
renames File_Ptr
.all;
313 Check_File_Open
(File
);
315 if not File
.Is_Regular_File
then
316 raise Use_Error
with "cannot delete non-regular file";
320 Filename
: aliased constant String := File
.Name
.all;
325 -- Now unlink the external file. Note that we use the full name in
326 -- this unlink, because the working directory may have changed since
327 -- we did the open, and we want to unlink the right file.
329 if unlink
(Filename
'Address) = -1 then
330 raise Use_Error
with OS_Lib
.Errno_Message
;
339 function End_Of_File
(File
: AFCB_Ptr
) return Boolean is
341 Check_File_Open
(File
);
343 if feof
(File
.Stream
) /= 0 then
347 Check_Read_Status
(File
);
349 if ungetc
(fgetc
(File
.Stream
), File
.Stream
) = EOF
then
350 clearerr
(File
.Stream
);
362 function Errno_Message
364 Errno
: Integer := OS_Lib
.Errno
) return String
367 return Name
& ": " & OS_Lib
.Errno_Message
(Err
=> Errno
);
374 procedure Finalize
(V
: in out File_IO_Clean_Up_Type
) is
375 pragma Warnings
(Off
, V
);
377 Fptr1
: aliased AFCB_Ptr
;
383 -- Take a lock to protect global Open_Files data structure
387 -- First close all open files (the slightly complex form of this loop is
388 -- required because Close as a side effect nulls out its argument).
391 while Fptr1
/= null loop
393 Close
(Fptr1
'Access);
397 -- Now unlink all temporary files. We do not bother to free the blocks
398 -- because we are just about to terminate the program. We also ignore
399 -- any errors while attempting these unlink operations.
401 while Temp_Files
/= null loop
402 Discard
:= unlink
(Temp_Files
.Name
'Address);
403 Temp_Files
:= Temp_Files
.Next
;
418 procedure Flush
(File
: AFCB_Ptr
) is
420 Check_Write_Status
(File
);
422 if fflush
(File
.Stream
) /= 0 then
423 Raise_Device_Error
(File
);
431 -- The fopen mode to be used is shown by the following table:
434 -- Append_File "r+" "w+"
436 -- Out_File (Direct_IO) "r+" "w"
437 -- Out_File (all others) "w" "w"
438 -- Inout_File "r+" "w+"
440 -- Note: we do not use "a" or "a+" for Append_File, since this would not
441 -- work in the case of stream files, where even if in append file mode,
442 -- you can reset to earlier points in the file. The caller must use the
443 -- Append_Set routine to deal with the necessary positioning.
445 -- Note: in several cases, the fopen mode used allows reading and writing,
446 -- but the setting of the Ada mode is more restrictive. For instance,
447 -- Create in In_File mode uses "w+" which allows writing, but the Ada mode
448 -- In_File will cause any write operations to be rejected with Mode_Error
451 -- Note: for the Out_File/Open cases for other than the Direct_IO case, an
452 -- initial call will be made by the caller to first open the file in "r"
453 -- mode to be sure that it exists. The real open, in "w" mode, will then
454 -- destroy this file. This is peculiar, but that's what Ada semantics
455 -- require and the ACATS tests insist on.
457 -- If text file translation is required, then either "b" or "t" is appended
458 -- to the mode, depending on the setting of Text.
465 Fopstr
: out Fopen_String
)
482 if Amethod
= 'D' and then not Creat
then
491 when Inout_File | Append_File
=>
492 Fopstr
(1) := (if Creat
then 'w' else 'r');
497 -- If text_translation_required is true then we need to append either a
498 -- "t" or "b" to the string to get the right mode.
500 if text_translation_required
then
501 Fopstr
(Fptr
) := (if Text
then 't' else 'b');
505 Fopstr
(Fptr
) := ASCII
.NUL
;
512 function Form
(File
: AFCB_Ptr
) return String is
515 raise Status_Error
with "Form: file not open";
517 return File
.Form
.all (1 .. File
.Form
'Length - 1);
525 function Form_Boolean
528 Default
: Boolean) return Boolean
531 pragma Unreferenced
(V2
);
534 Form_Parameter
(Form
, Keyword
, V1
, V2
);
538 elsif Form
(V1
) = 'y' then
540 elsif Form
(V1
) = 'n' then
543 raise Use_Error
with "invalid Form";
551 function Form_Integer
554 Default
: Integer) return Integer
560 Form_Parameter
(Form
, Keyword
, V1
, V2
);
568 for J
in V1
.. V2
loop
569 if Form
(J
) not in '0' .. '9' then
570 raise Use_Error
with "invalid Form";
572 V
:= V
* 10 + Character'Pos (Form
(J
)) - Character'Pos ('0');
576 raise Use_Error
with "invalid Form";
588 procedure Form_Parameter
594 Klen
: constant Integer := Keyword
'Length;
597 for J
in Form
'First + Klen
.. Form
'Last - 1 loop
599 and then Form
(J
- Klen
.. J
- 1) = Keyword
603 while Form
(Stop
+ 1) /= ASCII
.NUL
604 and then Form
(Stop
+ 1) /= ','
621 function Is_Open
(File
: AFCB_Ptr
) return Boolean is
623 -- We return True if the file is open, and the underlying file stream is
624 -- usable. In particular on Windows an application linked with -mwindows
625 -- option set does not have a console attached. In this case standard
626 -- files (Current_Output, Current_Error, Current_Input) are not created.
627 -- We want Is_Open (Current_Output) to return False in this case.
629 return File
/= null and then fileno
(File
.Stream
) /= -1;
636 procedure Make_Buffered
638 Buf_Siz
: Interfaces
.C_Streams
.size_t
)
641 pragma Unreferenced
(status
);
644 status
:= setvbuf
(File
.Stream
, Null_Address
, IOFBF
, Buf_Siz
);
647 ------------------------
648 -- Make_Line_Buffered --
649 ------------------------
651 procedure Make_Line_Buffered
653 Line_Siz
: Interfaces
.C_Streams
.size_t
)
656 pragma Unreferenced
(status
);
659 status
:= setvbuf
(File
.Stream
, Null_Address
, IOLBF
, Line_Siz
);
660 -- No error checking???
661 end Make_Line_Buffered
;
663 ---------------------
664 -- Make_Unbuffered --
665 ---------------------
667 procedure Make_Unbuffered
(File
: AFCB_Ptr
) is
669 pragma Unreferenced
(status
);
672 status
:= setvbuf
(File
.Stream
, Null_Address
, IONBF
, 0);
673 -- No error checking???
680 function Mode
(File
: AFCB_Ptr
) return File_Mode
is
683 raise Status_Error
with "Mode: file not open";
693 function Name
(File
: AFCB_Ptr
) return String is
696 raise Status_Error
with "Name: file not open";
698 return File
.Name
.all (1 .. File
.Name
'Length - 1);
707 (File_Ptr
: in out AFCB_Ptr
;
708 Dummy_FCB
: AFCB
'Class;
715 C_Stream
: FILEs
:= NULL_Stream
)
717 pragma Warnings
(Off
, Dummy_FCB
);
718 -- Yes we know this is never assigned a value. That's intended, since
719 -- all we ever use of this value is the tag for dispatching purposes.
721 procedure Tmp_Name
(Buffer
: Address
);
722 pragma Import
(C
, Tmp_Name
, "__gnat_tmp_name");
723 -- Set buffer (a String address) with a temporary filename
725 function Get_Case_Sensitive
return Integer;
726 pragma Import
(C
, Get_Case_Sensitive
,
727 "__gnat_get_file_names_case_sensitive");
729 procedure Record_AFCB
;
730 -- Create and record new AFCB into the runtime, note that the
731 -- implementation uses the variables below which corresponds to the
732 -- status of the opened file.
734 File_Names_Case_Sensitive
: constant Boolean := Get_Case_Sensitive
/= 0;
735 -- Set to indicate whether the operating system convention is for file
736 -- names to be case sensitive (e.g., in Unix, set True), or not case
737 -- sensitive (e.g., in Windows, set False). Declared locally to avoid
738 -- breaking the Preelaborate rule that disallows function calls at the
741 Stream
: FILEs
:= C_Stream
;
742 -- Stream which we open in response to this request
744 Shared
: Shared_Status_Type
;
745 -- Setting of Shared_Status field for file
747 Fopstr
: aliased Fopen_String
;
748 -- Mode string used in fopen call
750 Formstr
: aliased String (1 .. Form
'Length + 1);
751 -- Form string with ASCII.NUL appended, folded to lower case
753 Text_Encoding
: Content_Encoding
;
755 Tempfile
: constant Boolean := (Name
'Length = 0);
756 -- Indicates temporary file case
758 Namelen
: constant Integer := max_path_len
;
759 -- Length required for file name, not including final ASCII.NUL.
760 -- Note that we used to reference L_tmpnam here, which is not reliable
761 -- since __gnat_tmp_name does not always use tmpnam.
763 Namestr
: aliased String (1 .. Namelen
+ 1);
764 -- Name as given or temporary file name with ASCII.NUL appended
766 Fullname
: aliased String (1 .. max_path_len
+ 1);
767 -- Full name (as required for Name function, and as stored in the
768 -- control block in the Name field) with ASCII.NUL appended.
770 Full_Name_Len
: Integer;
771 -- Length of name actually stored in Fullname
773 Encoding
: CRTL
.Filename_Encoding
;
774 -- Filename encoding specified into the form parameter
780 procedure Record_AFCB
is
782 File_Ptr
:= AFCB_Allocate
(Dummy_FCB
);
784 -- Note that we cannot use an aggregate here as File_Ptr is a
785 -- class-wide access to a limited type (Root_Stream_Type).
787 File_Ptr
.Is_Regular_File
:= is_regular_file
(fileno
(Stream
)) /= 0;
788 File_Ptr
.Is_System_File
:= False;
789 File_Ptr
.Text_Encoding
:= Text_Encoding
;
790 File_Ptr
.Shared_Status
:= Shared
;
791 File_Ptr
.Access_Method
:= Amethod
;
792 File_Ptr
.Stream
:= Stream
;
793 File_Ptr
.Form
:= new String'(Formstr);
794 File_Ptr.Name := new String'(Fullname
795 (1 .. Full_Name_Len
));
796 File_Ptr
.Mode
:= Mode
;
797 File_Ptr
.Is_Temporary_File
:= Tempfile
;
798 File_Ptr
.Encoding
:= Encoding
;
800 Chain_File
(File_Ptr
);
801 Append_Set
(File_Ptr
);
804 -- Start of processing for Open
807 if File_Ptr
/= null then
808 raise Status_Error
with "file already open";
811 -- Acquire form string, setting required NUL terminator
813 Formstr
(1 .. Form
'Length) := Form
;
814 Formstr
(Formstr
'Last) := ASCII
.NUL
;
816 -- Convert form string to lower case
818 for J
in Formstr
'Range loop
819 if Formstr
(J
) in 'A' .. 'Z' then
820 Formstr
(J
) := Character'Val (Character'Pos (Formstr
(J
)) + 32);
824 -- Acquire setting of shared parameter
830 Form_Parameter
(Formstr
, "shared", V1
, V2
);
834 elsif Formstr
(V1
.. V2
) = "yes" then
836 elsif Formstr
(V1
.. V2
) = "no" then
839 raise Use_Error
with "invalid Form";
843 -- Acquire setting of encoding parameter
849 Form_Parameter
(Formstr
, "encoding", V1
, V2
);
852 Encoding
:= CRTL
.Unspecified
;
853 elsif Formstr
(V1
.. V2
) = "utf8" then
854 Encoding
:= CRTL
.UTF8
;
855 elsif Formstr
(V1
.. V2
) = "8bits" then
856 Encoding
:= CRTL
.ASCII_8bits
;
858 raise Use_Error
with "invalid Form";
862 -- Acquire setting of text_translation parameter. Only needed if this is
863 -- a [Wide_[Wide_]]Text_IO file, in which case we default to True, but
864 -- if the Form says Text_Translation=No, we use binary mode, so new-line
865 -- will be just LF, even on Windows.
868 Text_Encoding
:= Default_Text
;
870 Text_Encoding
:= None
;
873 if Text_Encoding
in Text_Content_Encoding
then
878 Form_Parameter
(Formstr
, "text_translation", V1
, V2
);
882 elsif Formstr
(V1
.. V2
) = "no" then
883 Text_Encoding
:= None
;
884 elsif Formstr
(V1
.. V2
) = "text"
885 or else Formstr
(V1
.. V2
) = "yes"
887 Text_Encoding
:= Interfaces
.C_Streams
.Text
;
888 elsif Formstr
(V1
.. V2
) = "wtext" then
889 Text_Encoding
:= Wtext
;
890 elsif Formstr
(V1
.. V2
) = "u8text" then
891 Text_Encoding
:= U8text
;
892 elsif Formstr
(V1
.. V2
) = "u16text" then
893 Text_Encoding
:= U16text
;
895 raise Use_Error
with "invalid Form";
900 -- If we were given a stream (call from xxx.C_Streams.Open), then set
901 -- the full name to the given one, and skip to end of processing.
903 if Stream
/= NULL_Stream
then
904 Full_Name_Len
:= Name
'Length + 1;
905 Fullname
(1 .. Full_Name_Len
- 1) := Name
;
906 Fullname
(Full_Name_Len
) := ASCII
.NUL
;
908 -- Normal case of Open or Create
911 -- If temporary file case, get temporary file name and add to the
912 -- list of temporary files to be deleted on exit.
916 raise Name_Error
with "opening temp file without creating it";
919 Tmp_Name
(Namestr
'Address);
921 if Namestr
(1) = ASCII
.NUL
then
922 raise Use_Error
with "invalid temp file name";
925 -- Chain to temp file list, ensuring thread safety with a lock
930 new Temp_File_Record
'(Name => Namestr, Next => Temp_Files);
939 -- Normal case of non-null name given
942 if Name'Length > Namelen then
943 raise Name_Error with "file name too long";
946 Namestr (1 .. Name'Length) := Name;
947 Namestr (Name'Length + 1) := ASCII.NUL;
950 -- Get full name in accordance with the advice of RM A.8.2(22)
952 full_name (Namestr'Address, Fullname'Address);
954 if Fullname (1) = ASCII.NUL then
955 raise Use_Error with Errno_Message (Name);
959 while Full_Name_Len < Fullname'Last
960 and then Fullname (Full_Name_Len) /= ASCII.NUL
962 Full_Name_Len := Full_Name_Len + 1;
965 -- Fullname is generated by calling system's full_name. The problem
966 -- is, full_name does nothing about the casing, so a file name
967 -- comparison may generally speaking not be valid on non-case-
968 -- sensitive systems, and in particular we get unexpected failures
969 -- on Windows/Vista because of this. So we use s-casuti to force
970 -- the name to lower case.
972 if not File_Names_Case_Sensitive then
973 To_Lower (Fullname (1 .. Full_Name_Len));
976 -- If Shared=None or Shared=Yes, then check for the existence of
977 -- another file with exactly the same full name.
984 -- Take a task lock to protect Open_Files
988 -- Search list of open files
992 if Fullname (1 .. Full_Name_Len) = P.Name.all then
994 -- If we get a match, and either file has Shared=None,
995 -- then raise Use_Error, since we don't allow two files
996 -- of the same name to be opened unless they specify the
997 -- required sharing mode.
1000 or else P.Shared_Status = None
1002 raise Use_Error with "reopening shared file";
1004 -- If both files have Shared=Yes, then we acquire the
1005 -- stream from the located file to use as our stream.
1008 and then P.Shared_Status = Yes
1016 -- Otherwise one of the files has Shared=Yes and one has
1017 -- Shared=No. If the current file has Shared=No then all
1018 -- is well but we don't want to share any other file's
1019 -- stream. If the current file has Shared=Yes, we would
1020 -- like to share a stream, but not from a file that has
1021 -- Shared=No, so either way, we just continue the search.
1031 SSL.Unlock_Task.all;
1035 SSL.Unlock_Task.all;
1040 -- Open specified file if we did not find an existing stream,
1041 -- otherwise we just return as there is nothing more to be done.
1043 if Stream /= NULL_Stream then
1048 (Mode, Text_Encoding in Text_Content_Encoding,
1049 Creat, Amethod, Fopstr);
1051 -- A special case, if we are opening (OPEN case) a file and the
1052 -- mode returned by Fopen_Mode is not "r" or "r+", then we first
1053 -- make sure that the file exists as required by Ada semantics.
1055 if not Creat and then Fopstr (1) /= 'r
' then
1056 if file_exists (Namestr'Address) = 0 then
1057 raise Name_Error with Errno_Message (Name);
1061 -- Now open the file. Note that we use the name as given in the
1062 -- original Open call for this purpose, since that seems the
1063 -- clearest implementation of the intent. It would presumably
1064 -- work to use the full name here, but if there is any difference,
1065 -- then we should use the name used in the call.
1067 -- Note: for a corresponding delete, we will use the full name,
1068 -- since by the time of the delete, the current working directory
1069 -- may have changed and we do not want to delete a different file.
1072 fopen (Namestr'Address, Fopstr'Address, Encoding);
1074 if Stream = NULL_Stream then
1076 -- Raise Name_Error if trying to open a non-existent file.
1077 -- Otherwise raise Use_Error.
1079 -- Should we raise Device_Error for ENOSPC???
1082 function Is_File_Not_Found_Error
1083 (Errno_Value : Integer) return Integer;
1085 (C, Is_File_Not_Found_Error,
1086 "__gnat_is_file_not_found_error");
1087 -- Non-zero when the given errno value indicates a non-
1090 Errno : constant Integer := OS_Lib.Errno;
1091 Message : constant String := Errno_Message (Name, Errno);
1094 if Is_File_Not_Found_Error (Errno) /= 0 then
1095 raise Name_Error with Message;
1097 raise Use_Error with Message;
1104 -- Stream has been successfully located or opened, so now we are
1105 -- committed to completing the opening of the file. Allocate block on
1106 -- heap and fill in its fields.
1111 ------------------------
1112 -- Raise_Device_Error --
1113 ------------------------
1115 procedure Raise_Device_Error
1117 Errno : Integer := OS_Lib.Errno)
1120 -- Clear error status so that the same error is not reported twice
1122 if File /= null then
1123 clearerr (File.Stream);
1126 raise Device_Error with OS_Lib.Errno_Message (Err => Errno);
1127 end Raise_Device_Error;
1133 procedure Read_Buf (File : AFCB_Ptr; Buf : Address; Siz : size_t) is
1137 Nread := fread (Buf, 1, Siz, File.Stream);
1142 elsif ferror (File.Stream) /= 0 then
1143 Raise_Device_Error (File);
1145 elsif Nread = 0 then
1148 else -- 0 < Nread < Siz
1149 raise Data_Error with "not enough data read";
1156 Siz : Interfaces.C_Streams.size_t;
1157 Count : out Interfaces.C_Streams.size_t)
1160 Count := fread (Buf, 1, Siz, File.Stream);
1162 if Count = 0 and then ferror (File.Stream) /= 0 then
1163 Raise_Device_Error (File);
1171 -- The reset which does not change the mode simply does a rewind
1173 procedure Reset (File_Ptr : access AFCB_Ptr) is
1174 File : AFCB_Ptr renames File_Ptr.all;
1176 Check_File_Open (File);
1177 Reset (File_Ptr, File.Mode);
1180 -- The reset with a change in mode is done using freopen, and is not
1181 -- permitted except for regular files (since otherwise there is no name for
1182 -- the freopen, and in any case it seems meaningless).
1184 procedure Reset (File_Ptr : access AFCB_Ptr; Mode : File_Mode) is
1185 File : AFCB_Ptr renames File_Ptr.all;
1186 Fopstr : aliased Fopen_String;
1189 Check_File_Open (File);
1191 -- Change of mode not allowed for shared file or file with no name or
1192 -- file that is not a regular file, or for a system file. Note that we
1193 -- allow the "change" of mode if it is not in fact doing a change.
1195 if Mode /= File.Mode then
1196 if File.Shared_Status = Yes then
1197 raise Use_Error with "cannot change mode of shared file";
1198 elsif File.Name'Length <= 1 then
1199 raise Use_Error with "cannot change mode of temp file";
1200 elsif File.Is_System_File then
1201 raise Use_Error with "cannot change mode of system file";
1202 elsif not File.Is_Regular_File then
1203 raise Use_Error with "cannot change mode of non-regular file";
1207 -- For In_File or Inout_File for a regular file, we can just do a rewind
1208 -- if the mode is unchanged, which is more efficient than doing a full
1212 and then Mode in Read_File_Mode
1214 rewind (File.Stream);
1216 -- Here the change of mode is permitted, we do it by reopening the file
1217 -- in the new mode and replacing the stream with a new stream.
1221 (Mode, File.Text_Encoding in Text_Content_Encoding,
1222 False, File.Access_Method, Fopstr);
1224 File.Stream := freopen
1225 (File.Name.all'Address, Fopstr'Address, File.Stream,
1228 if File.Stream = NULL_Stream then
1242 procedure Write_Buf (File : AFCB_Ptr; Buf : Address; Siz : size_t) is
1244 -- Note: for most purposes, the Siz and 1 parameters in the fwrite call
1245 -- could be reversed, but we have encountered systems where this is a
1246 -- better choice, since for some file formats, reversing the parameters
1247 -- results in records of one byte each.
1249 SSL.Abort_Defer.all;
1251 if fwrite (Buf, Siz, 1, File.Stream) /= 1 then
1253 SSL.Abort_Undefer.all;
1254 Raise_Device_Error (File);
1258 SSL.Abort_Undefer.all;