mirror of
https://github.com/ksherlock/profuse.git
synced 2024-10-31 17:04:27 +00:00
5ab8fd3d87
git-svn-id: https://profuse.googlecode.com/svn/branches/profuse_interim@376 aa027e90-d47c-11dd-86d7-074df07e0730
45 lines
762 B
C++
45 lines
762 B
C++
#ifndef __UNIVERSALDISKIMAGE_H__
|
|
#define __UNIVERSALDISKIMAGE_H__
|
|
|
|
|
|
#include <Device/BlockDevice.h>
|
|
#include <Device/DiskImage.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace Device {
|
|
|
|
class UniversalDiskImage : public DiskImage {
|
|
public:
|
|
|
|
|
|
|
|
static BlockDevicePointer Create(const char *name, size_t blocks);
|
|
static BlockDevicePointer Open(MappedFile *);
|
|
|
|
virtual bool readOnly();
|
|
|
|
virtual BlockCachePointer createBlockCache();
|
|
|
|
|
|
static bool Validate(MappedFile *, const std::nothrow_t &);
|
|
static bool Validate(MappedFile *);
|
|
|
|
|
|
private:
|
|
|
|
UniversalDiskImage();
|
|
|
|
UniversalDiskImage(MappedFile *);
|
|
|
|
uint32_t _format;
|
|
uint32_t _flags;
|
|
uint32_t _blocks;
|
|
uint32_t _dataOffset;
|
|
uint32_t _dataLength;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|