mirror of
https://github.com/ksherlock/profuse.git
synced 2024-12-23 11:31:43 +00:00
d46406ff84
git-svn-id: https://profuse.googlecode.com/svn/branches/v2@297 aa027e90-d47c-11dd-86d7-074df07e0730
42 lines
692 B
C++
42 lines
692 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 UniversalDiskImage *Create(const char *name, size_t blocks);
|
|
static UniversalDiskImage *Open(MappedFile *);
|
|
|
|
virtual bool readOnly();
|
|
|
|
virtual BlockCache *createBlockCache();
|
|
|
|
|
|
private:
|
|
|
|
UniversalDiskImage();
|
|
|
|
UniversalDiskImage(MappedFile *);
|
|
static void Validate(MappedFile *);
|
|
|
|
uint32_t _format;
|
|
uint32_t _flags;
|
|
uint32_t _blocks;
|
|
uint32_t _dataOffset;
|
|
uint32_t _dataLength;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|