From 65dd7e4f2bee7f55c52c02e8d5e6e2175ae9cd4b Mon Sep 17 00:00:00 2001 From: vng Date: Tue, 30 Oct 2012 16:47:43 +0300 Subject: [PATCH] Don't do space reserving in downloader. It's too slow on a device. --- platform/http_request.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/platform/http_request.cpp b/platform/http_request.cpp index 8c4f503065..4b1924a136 100644 --- a/platform/http_request.cpp +++ b/platform/http_request.cpp @@ -279,7 +279,7 @@ public: { // Check that resume information is correct with existing file. uint64_t size; - if (my::GetFileSize(filePath + DOWNLOADING_FILE_EXTENSION, size) && size == fileSize) + if (my::GetFileSize(filePath + DOWNLOADING_FILE_EXTENSION, size) && size <= fileSize) openMode = FileWriter::OP_WRITE_EXISTING; else m_strategy.InitChunks(fileSize, chunkSize); @@ -287,7 +287,8 @@ public: // Create file and reserve needed size. scoped_ptr writer(new FileWriter(filePath + DOWNLOADING_FILE_EXTENSION, openMode)); - writer->Reserve(fileSize); + // Reserving disk space is very slow on a device. + //writer->Reserve(fileSize); // Assign here, because previous functions can throw an exception. m_writer.swap(writer);