Don't fail multiple concurrent dl same file if auto-file-renaming is enabled

This commit is contained in:
Tatsuhiro Tsujikawa 2013-11-08 00:59:57 +09:00
parent 2aa8e01836
commit e1e6bb1ec5
4 changed files with 27 additions and 33 deletions

View file

@ -74,6 +74,7 @@
#include "uri.h"
#include "SocketRecvBuffer.h"
#include "MetalinkHttpEntry.h"
#include "NullProgressInfoFile.h"
#ifdef ENABLE_MESSAGE_DIGEST
# include "Checksum.h"
# include "ChecksumCheckIntegrityEntry.h"
@ -258,11 +259,6 @@ bool HttpResponseCommand::executeInternal()
}
fe->setContentType(httpResponse->getContentType());
grp->preDownloadProcessing();
if (getDownloadEngine()->getRequestGroupMan()->isSameFileBeingDownloaded(grp)) {
throw DOWNLOAD_FAILURE_EXCEPTION2(fmt(EX_DUPLICATE_FILE_DOWNLOAD,
grp->getFirstFilePath().c_str()),
error_code::DUPLICATE_DOWNLOAD);
}
// update last modified time
updateLastModifiedTime(httpResponse->getLastModifiedTime());
@ -451,7 +447,7 @@ bool HttpResponseCommand::handleOtherEncoding(
return true;
}
getRequestGroup()->shouldCancelDownloadForSafety();
getRequestGroup()->adjustFilename(std::make_shared<NullProgressInfoFile>());
getRequestGroup()->initPieceStorage();
getPieceStorage()->getDiskAdaptor()->initAndOpenFile();