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:
Tatsuhiro Tsujikawa 2009-05-03 11:00:39 +00:00
parent ee229c6f00
commit eeece05063
7 changed files with 47 additions and 8 deletions

View file

@ -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;