mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
2010-09-13 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Fixed the bug that error occurs when downloading zero-length file. * src/FtpNegotiationCommand.cc * src/HttpResponseCommand.cc
This commit is contained in:
parent
5bf8a53b3f
commit
97953dd1ae
3 changed files with 28 additions and 15 deletions
|
@ -375,8 +375,21 @@ bool HttpResponseCommand::handleOtherEncoding
|
|||
return prepareForRetry(0);
|
||||
}
|
||||
|
||||
// In this context, knowsTotalLength() is true only when the file is
|
||||
// really zero-length.
|
||||
|
||||
SharedHandle<StreamFilter> streamFilter =
|
||||
getTransferEncodingStreamFilter
|
||||
(httpResponse,
|
||||
getContentEncodingStreamFilter(httpResponse));
|
||||
// If chunked transfer-encoding is specified, we have to read end of
|
||||
// chunk markers(0\r\n\r\n, for example).
|
||||
bool chunkedUsed = !streamFilter.isNull() &&
|
||||
streamFilter->getName() == ChunkedDecodingStreamFilter::NAME;
|
||||
|
||||
// For zero-length file, check existing file comparing its size
|
||||
if(getRequestGroup()->downloadFinishedByFileLength()) {
|
||||
if(!chunkedUsed && getDownloadContext()->knowsTotalLength() &&
|
||||
getRequestGroup()->downloadFinishedByFileLength()) {
|
||||
getRequestGroup()->initPieceStorage();
|
||||
getPieceStorage()->markAllPiecesDone();
|
||||
// This is zero-size file, so hash check is no use.
|
||||
|
@ -392,19 +405,11 @@ bool HttpResponseCommand::handleOtherEncoding
|
|||
getRequestGroup()->initPieceStorage();
|
||||
getPieceStorage()->getDiskAdaptor()->initAndOpenFile();
|
||||
|
||||
SharedHandle<StreamFilter> streamFilter =
|
||||
getTransferEncodingStreamFilter
|
||||
(httpResponse,
|
||||
getContentEncodingStreamFilter(httpResponse));
|
||||
|
||||
// In this context, knowsTotalLength() is true only when the file is
|
||||
// really zero-length.
|
||||
if(getDownloadContext()->knowsTotalLength() &&
|
||||
(streamFilter.isNull() ||
|
||||
streamFilter->getName() != ChunkedDecodingStreamFilter::NAME)) {
|
||||
// If chunked transfer-encoding is specified, we have to read end
|
||||
// of chunk markers(0\r\n\r\n, for example), so cannot pool
|
||||
// connection here.
|
||||
// Local file size becomes zero when DiskAdaptor::initAndOpenFile()
|
||||
// is called. So zero-length file is complete if chunked encoding is
|
||||
// not used.
|
||||
if(!chunkedUsed && getDownloadContext()->knowsTotalLength()) {
|
||||
getRequestGroup()->getPieceStorage()->markAllPiecesDone();
|
||||
poolConnection();
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue