* fhandler.cc (fhandler_base::open): Don't set binmode if already set. Don't
check for file. Files should already be set. Report on binary mode for debugging. (fhandler_base::fhandler_base): Don't set default binmode here. That's for later. * fhandler_console.cc (fhandler_console::output_tcsetattr): Don't set binmode, ever, for console. * fhandler_disk_file.cc (fhandler_disk_file::open): Always set the binary mode to the value derived from mount table. * path.cc (mount_info::conv_to_win32_path): Default to binmode if path does not translate into anything in the mount table.
This commit is contained in:
parent
e6cd2312d6
commit
e02f1e9c81
|
@ -1,3 +1,17 @@
|
||||||
|
2002-06-03 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
|
* fhandler.cc (fhandler_base::open): Don't set binmode if already set.
|
||||||
|
Don't check for file. Files should already be set. Report on binary
|
||||||
|
mode for debugging.
|
||||||
|
(fhandler_base::fhandler_base): Don't set default binmode here. That's
|
||||||
|
for later.
|
||||||
|
* fhandler_console.cc (fhandler_console::output_tcsetattr): Don't set
|
||||||
|
binmode, ever, for console.
|
||||||
|
* fhandler_disk_file.cc (fhandler_disk_file::open): Always set the
|
||||||
|
binary mode to the value derived from mount table.
|
||||||
|
* path.cc (mount_info::conv_to_win32_path): Default to binmode if path
|
||||||
|
does not translate into anything in the mount table.
|
||||||
|
|
||||||
2002-06-03 Corinna Vinschen <corinna@vinschen.de>
|
2002-06-03 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* external.cc (cygwin_internal): Add CW_EXTRACT_DOMAIN_AND_USER
|
* external.cc (cygwin_internal): Add CW_EXTRACT_DOMAIN_AND_USER
|
||||||
|
|
|
@ -424,6 +424,10 @@ fhandler_base::open (path_conv *pc, int flags, mode_t mode)
|
||||||
set_file_attribute (has_acls (), get_win32_name (), mode);
|
set_file_attribute (has_acls (), get_win32_name (), mode);
|
||||||
|
|
||||||
set_io_handle (x);
|
set_io_handle (x);
|
||||||
|
if (get_w_binset () && get_r_binset ())
|
||||||
|
syscall_printf ("filemode already set to %d/%d", get_r_binary (), get_w_binary ());
|
||||||
|
else
|
||||||
|
{
|
||||||
int bin;
|
int bin;
|
||||||
int fmode;
|
int fmode;
|
||||||
if ((bin = flags & (O_BINARY | O_TEXT)))
|
if ((bin = flags & (O_BINARY | O_TEXT)))
|
||||||
|
@ -432,8 +436,6 @@ fhandler_base::open (path_conv *pc, int flags, mode_t mode)
|
||||||
bin = O_BINARY;
|
bin = O_BINARY;
|
||||||
else if (fmode & O_TEXT)
|
else if (fmode & O_TEXT)
|
||||||
bin = O_TEXT;
|
bin = O_TEXT;
|
||||||
else if (get_device () == FH_DISK)
|
|
||||||
bin = get_w_binary () || get_r_binary () || 1;
|
|
||||||
else
|
else
|
||||||
bin = get_w_binary () || get_r_binary () || (binmode != O_TEXT);
|
bin = get_w_binary () || get_r_binary () || (binmode != O_TEXT);
|
||||||
|
|
||||||
|
@ -445,6 +447,7 @@ fhandler_base::open (path_conv *pc, int flags, mode_t mode)
|
||||||
set_r_binary (bin);
|
set_r_binary (bin);
|
||||||
set_w_binary (bin);
|
set_w_binary (bin);
|
||||||
syscall_printf ("filemode set to %s", bin ? "binary" : "text");
|
syscall_printf ("filemode set to %s", bin ? "binary" : "text");
|
||||||
|
}
|
||||||
|
|
||||||
res = 1;
|
res = 1;
|
||||||
set_open_status ();
|
set_open_status ();
|
||||||
|
@ -859,7 +862,7 @@ fhandler_base::init (HANDLE f, DWORD a, mode_t bin)
|
||||||
oflags = O_RDWR;
|
oflags = O_RDWR;
|
||||||
set_flags (oflags | (bin ? O_BINARY : O_TEXT));
|
set_flags (oflags | (bin ? O_BINARY : O_TEXT));
|
||||||
set_open_status ();
|
set_open_status ();
|
||||||
debug_printf ("created new fhandler_base for handle %p", f);
|
debug_printf ("created new fhandler_base for handle %p, bin %d", f, get_r_binary ());
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -1019,6 +1022,7 @@ fhandler_base::fhandler_base (DWORD devtype, int unit):
|
||||||
win32_path_name (NULL),
|
win32_path_name (NULL),
|
||||||
open_status (0)
|
open_status (0)
|
||||||
{
|
{
|
||||||
|
#if 0
|
||||||
int bin = __fmode & O_TEXT ? 0 : 1;
|
int bin = __fmode & O_TEXT ? 0 : 1;
|
||||||
if (status != FH_DISK && status != FH_CONSOLE)
|
if (status != FH_DISK && status != FH_CONSOLE)
|
||||||
{
|
{
|
||||||
|
@ -1027,6 +1031,7 @@ fhandler_base::fhandler_base (DWORD devtype, int unit):
|
||||||
if (!get_w_binset ())
|
if (!get_w_binset ())
|
||||||
set_w_binary (bin);
|
set_w_binary (bin);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Normal I/O destructor */
|
/* Normal I/O destructor */
|
||||||
|
|
|
@ -719,8 +719,10 @@ fhandler_console::output_tcsetattr (int, struct termios const *t)
|
||||||
/* Ignore the optional_actions stuff, since all output is emitted
|
/* Ignore the optional_actions stuff, since all output is emitted
|
||||||
instantly */
|
instantly */
|
||||||
|
|
||||||
|
#if 0
|
||||||
/* Enable/disable LF -> CRLF conversions */
|
/* Enable/disable LF -> CRLF conversions */
|
||||||
set_w_binary ((t->c_oflag & ONLCR) ? 0 : 1);
|
set_w_binary ((t->c_oflag & ONLCR) ? 0 : 1);
|
||||||
|
#endif
|
||||||
|
|
||||||
/* All the output bits we can ignore */
|
/* All the output bits we can ignore */
|
||||||
|
|
||||||
|
|
|
@ -339,11 +339,8 @@ fhandler_disk_file::open (path_conv *real_path, int flags, mode_t mode)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (real_path->isbinary ())
|
set_r_binary (real_path->isbinary ());
|
||||||
{
|
set_w_binary (real_path->isbinary ());
|
||||||
set_r_binary (1);
|
|
||||||
set_w_binary (1);
|
|
||||||
}
|
|
||||||
|
|
||||||
set_has_acls (real_path->has_acls ());
|
set_has_acls (real_path->has_acls ());
|
||||||
set_isremote (real_path->isremote ());
|
set_isremote (real_path->isremote ());
|
||||||
|
|
|
@ -1508,7 +1508,7 @@ mount_info::conv_to_win32_path (const char *src_path, char *dst,
|
||||||
if (i >= nmounts)
|
if (i >= nmounts)
|
||||||
{
|
{
|
||||||
backslashify (pathbuf, dst, 0); /* just convert */
|
backslashify (pathbuf, dst, 0); /* just convert */
|
||||||
*flags = 0;
|
*flags = PATH_BINARY; /* Default to binmode */
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue