Hadley Wickham
2018-May-08 15:15 UTC
[Rd] download.file does not process gz files correctly (truncates them?)
On Thu, May 3, 2018 at 11:34 PM, Tomas Kalibera <tomas.kalibera at gmail.com> wrote:> On 05/03/2018 11:14 PM, Henrik Bengtsson wrote: >> >> Also, as mentioned in my >> https://stat.ethz.ch/pipermail/r-devel/2012-August/064739.html, when >> not specifying the mode argument, the default on Windows is mode = "w" >> *except* for certain, case-sensitive, filename extensions: >> >> if(missing(mode) && length(grep("\\.(gz|bz2|xz|tgz|zip|rda|RData)$", >> url))) >> mode <- "wb" >> >> Just like the need for mode = "wb" on Windows, the above >> special-file-extension-hack is only happening on Windows, and is only >> documented in ?download.file if you're on Windows; so someone who's on >> Linux/macOS trying to help someone on Windows may not be aware of >> this. This adds to even more confusions, e.g. "works for me". > > If we were designing the API today, it would probably make more sense not to > convert any line endings by default. Today's editors _usually_ can cope with > different line endings and it is probably easier to detect that a text file > has incorrect line endings rather than detecting that a binary file has been > corrupted by an attempt to convert line endings. But whether to change > existing, documented behavior is a different question. In order to help > users and programmers who do not read the documentation carefully we would > create problems for users and programmers who do. The current heuristic/hack > is in line with the compatibility approach: it detects files that are > obviously binary, so it changes the default behavior only for cases when it > would obviously cause damage.>From a purely utilitarian standpoint, there are far more users who donot carefully read the documentation than users who do ;) (I'd also argue that basing the decision on the file extension is suboptimal, and it would be better to use the mime type if provided by the server) Hadley -- http://hadley.nz
Hadley Wickham
2018-May-08 20:47 UTC
[Rd] download.file does not process gz files correctly (truncates them?)
On Tue, May 8, 2018 at 8:15 AM, Hadley Wickham <h.wickham at gmail.com> wrote:> On Thu, May 3, 2018 at 11:34 PM, Tomas Kalibera > <tomas.kalibera at gmail.com> wrote: >> On 05/03/2018 11:14 PM, Henrik Bengtsson wrote: >>> >>> Also, as mentioned in my >>> https://stat.ethz.ch/pipermail/r-devel/2012-August/064739.html, when >>> not specifying the mode argument, the default on Windows is mode = "w" >>> *except* for certain, case-sensitive, filename extensions: >>> >>> if(missing(mode) && length(grep("\\.(gz|bz2|xz|tgz|zip|rda|RData)$", >>> url))) >>> mode <- "wb" >>> >>> Just like the need for mode = "wb" on Windows, the above >>> special-file-extension-hack is only happening on Windows, and is only >>> documented in ?download.file if you're on Windows; so someone who's on >>> Linux/macOS trying to help someone on Windows may not be aware of >>> this. This adds to even more confusions, e.g. "works for me". >> >> If we were designing the API today, it would probably make more sense not to >> convert any line endings by default. Today's editors _usually_ can cope with >> different line endings and it is probably easier to detect that a text file >> has incorrect line endings rather than detecting that a binary file has been >> corrupted by an attempt to convert line endings. But whether to change >> existing, documented behavior is a different question. In order to help >> users and programmers who do not read the documentation carefully we would >> create problems for users and programmers who do. The current heuristic/hack >> is in line with the compatibility approach: it detects files that are >> obviously binary, so it changes the default behavior only for cases when it >> would obviously cause damage. > > From a purely utilitarian standpoint, there are far more users who do > not carefully read the documentation than users who do ;) > > (I'd also argue that basing the decision on the file extension is > suboptimal, and it would be better to use the mime type if provided by > the server)Also note that MS just announced support for unix line endings in notepad https://blogs.msdn.microsoft.com/commandline/2018/05/08/extended-eol-in-notepad/ Hadley -- http://hadley.nz
Tomas Kalibera
2018-May-09 08:37 UTC
[Rd] download.file does not process gz files correctly (truncates them?)
On 05/08/2018 05:15 PM, Hadley Wickham wrote:> On Thu, May 3, 2018 at 11:34 PM, Tomas Kalibera > <tomas.kalibera at gmail.com> wrote: >> On 05/03/2018 11:14 PM, Henrik Bengtsson wrote: >>> Also, as mentioned in my >>> https://stat.ethz.ch/pipermail/r-devel/2012-August/064739.html, when >>> not specifying the mode argument, the default on Windows is mode = "w" >>> *except* for certain, case-sensitive, filename extensions: >>> >>> if(missing(mode) && length(grep("\\.(gz|bz2|xz|tgz|zip|rda|RData)$", >>> url))) >>> mode <- "wb" >>> >>> Just like the need for mode = "wb" on Windows, the above >>> special-file-extension-hack is only happening on Windows, and is only >>> documented in ?download.file if you're on Windows; so someone who's on >>> Linux/macOS trying to help someone on Windows may not be aware of >>> this. This adds to even more confusions, e.g. "works for me". >> If we were designing the API today, it would probably make more sense not to >> convert any line endings by default. Today's editors _usually_ can cope with >> different line endings and it is probably easier to detect that a text file >> has incorrect line endings rather than detecting that a binary file has been >> corrupted by an attempt to convert line endings. But whether to change >> existing, documented behavior is a different question. In order to help >> users and programmers who do not read the documentation carefully we would >> create problems for users and programmers who do. The current heuristic/hack >> is in line with the compatibility approach: it detects files that are >> obviously binary, so it changes the default behavior only for cases when it >> would obviously cause damage. > From a purely utilitarian standpoint, there are far more users who do > not carefully read the documentation than users who do ;)And for that reason the behavior should be as intuitive as possible when designed. What was intuitive 15-20 years ago may not be intuitive now, but that should probably not be a justification for a change in documented behavior.> (I'd also argue that basing the decision on the file extension is > suboptimal, and it would be better to use the mime type if provided by > the server)Yes, that would be nice. Also some binary files could be detected via magic numbers (yet not all, e.g. RDS do not have them). It won't be as trivial as decoding the URL, though. Tomas> > Hadley >
Duncan Murdoch
2018-May-09 12:52 UTC
[Rd] download.file does not process gz files correctly (truncates them?)
On 08/05/2018 4:47 PM, Hadley Wickham wrote:> On Tue, May 8, 2018 at 8:15 AM, Hadley Wickham <h.wickham at gmail.com> wrote: >> On Thu, May 3, 2018 at 11:34 PM, Tomas Kalibera >> <tomas.kalibera at gmail.com> wrote: >>> On 05/03/2018 11:14 PM, Henrik Bengtsson wrote: >>>> >>>> Also, as mentioned in my >>>> https://stat.ethz.ch/pipermail/r-devel/2012-August/064739.html, when >>>> not specifying the mode argument, the default on Windows is mode = "w" >>>> *except* for certain, case-sensitive, filename extensions: >>>> >>>> if(missing(mode) && length(grep("\\.(gz|bz2|xz|tgz|zip|rda|RData)$", >>>> url))) >>>> mode <- "wb" >>>> >>>> Just like the need for mode = "wb" on Windows, the above >>>> special-file-extension-hack is only happening on Windows, and is only >>>> documented in ?download.file if you're on Windows; so someone who's on >>>> Linux/macOS trying to help someone on Windows may not be aware of >>>> this. This adds to even more confusions, e.g. "works for me". >>> >>> If we were designing the API today, it would probably make more sense not to >>> convert any line endings by default. Today's editors _usually_ can cope with >>> different line endings and it is probably easier to detect that a text file >>> has incorrect line endings rather than detecting that a binary file has been >>> corrupted by an attempt to convert line endings. But whether to change >>> existing, documented behavior is a different question. In order to help >>> users and programmers who do not read the documentation carefully we would >>> create problems for users and programmers who do. The current heuristic/hack >>> is in line with the compatibility approach: it detects files that are >>> obviously binary, so it changes the default behavior only for cases when it >>> would obviously cause damage. >> >> From a purely utilitarian standpoint, there are far more users who do >> not carefully read the documentation than users who do ;) >> >> (I'd also argue that basing the decision on the file extension is >> suboptimal, and it would be better to use the mime type if provided by >> the server) > > Also note that MS just announced support for unix line endings in notepad > > https://blogs.msdn.microsoft.com/commandline/2018/05/08/extended-eol-in-notepad/Perhaps soon RStudio will follow Notepad's lead, and not convert line endings when it saves a non-native file. Duncan Murdoch
peter dalgaard
2018-May-09 13:09 UTC
[Rd] download.file does not process gz files correctly (truncates them?)
There was a hint in the Twitterverse that Excel has issues with line endings in .csv. Can anyone elaborate on that? Then again, Excel goes belly-up on comma separators in central European locales anyway... -pd> On 8 May 2018, at 22:47 , Hadley Wickham <h.wickham at gmail.com> wrote: > > > Also note that MS just announced support for unix line endings in notepad > > https://blogs.msdn.microsoft.com/commandline/2018/05/08/extended-eol-in-notepad/ > > Hadley >-- Peter Dalgaard, Professor, Center for Statistics, Copenhagen Business School Solbjerg Plads 3, 2000 Frederiksberg, Denmark Phone: (+45)38153501 Office: A 4.23 Email: pd.mes at cbs.dk Priv: PDalgd at gmail.com
Dirk Eddelbuettel
2018-May-09 13:47 UTC
[Rd] download.file does not process gz files correctly (truncates them?)
On 9 May 2018 at 10:37, Tomas Kalibera wrote: | And for that reason the behavior should be as intuitive as possible when | designed. What was intuitive 15-20 years ago may not be intuitive now, | but that should probably not be a justification for a change in | documented behavior. Time for downloadFile() (or download_file()) to complement the existing download.file() but providing what we now think of as intuitive behaviour? Dirk -- http://dirk.eddelbuettel.com | @eddelbuettel | edd at debian.org
Maybe Matching Threads
- download.file does not process gz files correctly (truncates them?)
- download.file does not process gz files correctly (truncates them?)
- download.file does not process gz files correctly (truncates them?)
- download.file does not process gz files correctly (truncates them?)
- download.file does not process gz files correctly (truncates them?)