mirror of
https://github.com/ksherlock/profuse.git
synced 2025-02-06 15:30:08 +00:00
42 lines
830 B
C++
42 lines
830 B
C++
#ifndef __DAVEXDISKIMAGE_H__
|
|
#define __DAVEXDISKIMAGE_H__
|
|
|
|
#include <string>
|
|
#include <new>
|
|
|
|
#include <Device/BlockDevice.h>
|
|
#include <Device/DiskImage.h>
|
|
|
|
|
|
namespace Device {
|
|
|
|
// only supports 1 file; may be split over multiple files.
|
|
|
|
class DavexDiskImage : public DiskImage {
|
|
public:
|
|
|
|
virtual ~DavexDiskImage();
|
|
|
|
static BlockDevicePointer Create(const char *name, size_t blocks);
|
|
static BlockDevicePointer Create(const char *name, size_t blocks, const char *vname);
|
|
static BlockDevicePointer Open(MappedFile *);
|
|
|
|
virtual BlockCachePointer createBlockCache();
|
|
|
|
static bool Validate(MappedFile *, const std::nothrow_t &);
|
|
static bool Validate(MappedFile *);
|
|
|
|
|
|
DavexDiskImage(MappedFile *);
|
|
private:
|
|
DavexDiskImage();
|
|
|
|
bool _changed;
|
|
std::string _volumeName;
|
|
};
|
|
|
|
|
|
}
|
|
|
|
#endif
|