mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 22:17:38 +03:00
2009-05-03 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Fixed the bug that read-only file with wrong file size will cause error because it cannot be truncated to the correct size. Now if file size is different than the expected one, re-open file in writable mode. * src/AbstractSingleDiskAdaptor.cc * src/AbstractSingleDiskAdaptor.h * src/BtCheckIntegrityEntry.cc * src/DiskAdaptor.h * src/MultiDiskAdaptor.h * src/RequestGroup.cc
This commit is contained in:
parent
ee229c6f00
commit
eeece05063
7 changed files with 47 additions and 8 deletions
|
@ -46,6 +46,7 @@ class AbstractSingleDiskAdaptor : public DiskAdaptor {
|
|||
protected:
|
||||
SharedHandle<DiskWriter> diskWriter;
|
||||
uint64_t totalLength;
|
||||
bool _readOnly;
|
||||
public:
|
||||
AbstractSingleDiskAdaptor();
|
||||
|
||||
|
@ -84,6 +85,8 @@ public:
|
|||
// Make sure that DiskWriter is set before calling this function.
|
||||
virtual void disableReadOnly();
|
||||
|
||||
virtual bool isReadOnlyEnabled() const { return _readOnly; }
|
||||
|
||||
virtual void cutTrailingGarbage();
|
||||
|
||||
virtual std::string getFilePath() = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue