Before this patch, on Windows, file with non-ASCII Latin1 names could be created
with Ada.Text_IO.Create by passing "encoding=8bits" through the Form
parameter and a Latin1-encoded string through the Name parameter,
but calling Ada.Text_IO.Delete on them raised an illegitimate exception.
This patch fixes this by making the wrappers of the unlink system function
aware of the encoding value passed through the Form parameter. It also
removes an unnecessary curly-brace block.
gcc/ada/
* adaint.c (__gnat_unlink): Add new parameter and fix text
conversion on Windows. Remove unnecessary curly braces.
* adaint.h (__gnat_unlink): Add new parameter.
* libgnat/i-cstrea.ads (unlink): Adapt to __gnat_unlink signature
change.
* libgnat/i-cstrea.adb (unlink): New Subprogram definition.
* libgnat/s-crtl.ads (unlink): Adapt to __gnat_unlink signature
change.
* libgnat/s-fileio.adb (Delete): Pass encoding argument to unlink.
/* Delete a file. */
int
-__gnat_unlink (char *path)
+__gnat_unlink (char *path, int encoding ATTRIBUTE_UNUSED)
{
#if defined (__MINGW32__) && ! defined (__vxworks) && ! defined (IS_CROSS)
- {
- TCHAR wpath[GNAT_MAX_PATH_LEN];
+ TCHAR wpath[GNAT_MAX_PATH_LEN];
+ if (encoding == Encoding_Unspecified)
S2WSC (wpath, path, GNAT_MAX_PATH_LEN);
- return _tunlink (wpath);
- }
+ else if (encoding == Encoding_UTF8)
+ S2WSU (wpath, path, GNAT_MAX_PATH_LEN);
+ else
+ S2WS (wpath, path, GNAT_MAX_PATH_LEN);
+
+ return _tunlink (wpath);
#else
return unlink (path);
#endif
extern int __gnat_mkdir (char *, int);
extern int __gnat_stat (char *,
GNAT_STRUCT_STAT *);
-extern int __gnat_unlink (char *);
+extern int __gnat_unlink (char *, int encoding);
extern int __gnat_rename (char *, char *);
extern int __gnat_chdir (char *);
extern int __gnat_rmdir (char *);
return C_setvbuf (stream, buffer, mode, size);
end setvbuf;
+ ------------
+ -- unlink --
+ ------------
+
+ function unlink (filename : chars) return int is
+ begin
+ return System.CRTL.unlink (filename);
+ end unlink;
+
end Interfaces.C_Streams;
function ungetc (c : int; stream : FILEs) return int
renames System.CRTL.ungetc;
- function unlink (filename : chars) return int
- renames System.CRTL.unlink;
+ function unlink (filename : chars) return int;
---------------------
-- Extra functions --
function ungetc (c : int; stream : FILEs) return int;
pragma Import (C, ungetc, "ungetc");
- function unlink (filename : chars) return int;
+ function unlink (filename : chars;
+ encoding : Filename_Encoding := Unspecified) return int;
pragma Import (C, unlink, "__gnat_unlink");
function open (filename : chars; oflag : int) return int;
declare
Filename : aliased constant String := File.Name.all;
Is_Temporary_File : constant Boolean := File.Is_Temporary_File;
+ Encoding : constant CRTL.Filename_Encoding := File.Encoding;
begin
Close (File_Ptr);
-- it's a temporary file, then closing it already unlinked it.
if not Is_Temporary_File then
- if unlink (Filename'Address) = -1 then
+ if System.CRTL.unlink (Filename'Address, Encoding) = -1 then
raise Use_Error with OS_Lib.Errno_Message;
end if;
end if;