1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
// --------------------------------------------------------------------------
//
// File
// Name: RaidFileWrite.h
// Purpose: Writing RAID like files
// Created: 2003/07/10
//
// --------------------------------------------------------------------------
#ifndef RAIDFILEWRITE__H
#define RAIDFILEWRITE__H
#include <string>
#include "IOStream.h"
class RaidFileDiscSet;
// --------------------------------------------------------------------------
//
// Class
// Name: RaidFileWrite
// Purpose: Writing RAID like files
// Created: 2003/07/10
//
// --------------------------------------------------------------------------
class RaidFileWrite : public IOStream
{
public:
// TODO FIXME we should remove this constructor, and ensure that
// anyone who writes to a RaidFile knows what the reference count
// is before doing so. That requires supporting regenerating the
// reference count database in BackupStoreCheck, and using a real
// database instead of an in-memory array in HousekeepStoreAccount,
// and supporting multiple databases at a time (old and new) in
// BackupStoreRefCountDatabase, and I don't have time to make those
// changes right now. We may even absolutely need to have a full
// reference database, not just reference counts, to implement
// snapshots.
RaidFileWrite(int SetNumber, const std::string &Filename);
RaidFileWrite(int SetNumber, const std::string &Filename, int refcount);
~RaidFileWrite();
private:
RaidFileWrite(const RaidFileWrite &rToCopy);
public:
// IOStream interface
virtual int Read(void *pBuffer, int NBytes, int Timeout = IOStream::TimeOutInfinite); // will exception
virtual void Write(const void *pBuffer, int NBytes,
int Timeout = IOStream::TimeOutInfinite);
virtual pos_type GetPosition() const;
virtual void Seek(pos_type Offset, int SeekType);
virtual void Close(); // will discard the file! Use commit instead.
virtual bool StreamDataLeft();
virtual bool StreamClosed();
// Extra bits
void Open(bool AllowOverwrite = false);
void Commit(bool ConvertToRaidNow = false);
void Discard();
void TransformToRaidStorage();
void Delete();
pos_type GetFileSize();
pos_type GetDiscUsageInBlocks();
static void CreateDirectory(int SetNumber, const std::string &rDirName, bool Recursive = false, int mode = 0777);
static void CreateDirectory(const RaidFileDiscSet &rSet, const std::string &rDirName, bool Recursive = false, int mode = 0777);
private:
int mSetNumber;
std::string mFilename, mTempFilename;
int mOSFileHandle;
int mRefCount;
};
#endif // RAIDFILEWRITE__H
|