mirror of
https://github.com/ksherlock/profuse.git
synced 2024-12-25 23:33:15 +00:00
188 lines
3.7 KiB
C++
188 lines
3.7 KiB
C++
#ifndef __FILE_H__
|
|
#define __FILE_H__
|
|
|
|
#include <Pascal/Date.h>
|
|
|
|
#include <vector>
|
|
|
|
namespace ProFUSE {
|
|
class BlockDevice;
|
|
class AbstractBlockCache;
|
|
}
|
|
|
|
namespace LittleEndian {
|
|
class IOBuffer;
|
|
}
|
|
|
|
namespace Pascal {
|
|
|
|
|
|
enum {
|
|
kUntypedFile,
|
|
kBadBlockFile,
|
|
kCodeFile,
|
|
kTextFile,
|
|
kInfoFile,
|
|
kDataFile,
|
|
kGrafFile,
|
|
kFotoFile,
|
|
kSecureDir
|
|
};
|
|
|
|
class FileEntry;
|
|
class VolumeEntry;
|
|
|
|
class Entry {
|
|
|
|
public:
|
|
|
|
virtual ~Entry();
|
|
|
|
unsigned blocks() const { return _lastBlock - _firstBlock; }
|
|
|
|
unsigned firstBlock() const { return _firstBlock; }
|
|
unsigned lastBlock() const { return _lastBlock; }
|
|
|
|
unsigned fileKind() const { return _fileKind; }
|
|
|
|
unsigned inode() const { return _inode; }
|
|
void setInode(unsigned inode) { _inode = inode; }
|
|
|
|
VolumeEntry *parent() { return _parent; }
|
|
|
|
|
|
protected:
|
|
|
|
static unsigned ValidName(const char *name, unsigned maxSize);
|
|
|
|
virtual void writeDirectoryEntry(LittleEndian::IOBuffer *);
|
|
|
|
Entry();
|
|
Entry(void *);
|
|
void init(void *);
|
|
|
|
unsigned _firstBlock;
|
|
unsigned _lastBlock;
|
|
unsigned _fileKind;
|
|
|
|
unsigned _inode;
|
|
|
|
private:
|
|
friend class VolumeEntry;
|
|
VolumeEntry *_parent;
|
|
|
|
};
|
|
|
|
|
|
class VolumeEntry : public Entry {
|
|
|
|
public:
|
|
|
|
// create new
|
|
VolumeEntry(const char *name, Device::BlockDevice *);
|
|
|
|
// open existing
|
|
VolumeEntry(Device::BlockDevice *);
|
|
virtual ~VolumeEntry();
|
|
|
|
const char *name() const { return _fileName; }
|
|
unsigned fileCount() const { return _fileCount; }
|
|
unsigned volumeBlocks() const { return _lastVolumeBlock; }
|
|
|
|
Pascal::Date lastBoot() const { return _lastBoot; }
|
|
|
|
FileEntry *fileAtIndex(unsigned i) const;
|
|
|
|
void addChild(FileEntry *child, unsigned blocks);
|
|
|
|
|
|
|
|
void *loadBlock(unsigned block);
|
|
void unloadBlock(unsigned block, bool dirty = false);
|
|
|
|
void readBlock(unsigned block, void *);
|
|
void writeBlock(unsigned block, void *);
|
|
|
|
|
|
unsigned static ValidName(const char *);
|
|
|
|
protected:
|
|
virtual void writeDirectoryEntry(LittleEndian::IOBuffer *);
|
|
|
|
private:
|
|
VolumeEntry();
|
|
|
|
void init(void *);
|
|
|
|
unsigned _fileNameLength;
|
|
char _fileName[8];
|
|
unsigned _lastVolumeBlock;
|
|
unsigned _fileCount;
|
|
unsigned _accessTime;
|
|
Pascal::Date _lastBoot;
|
|
|
|
std::vector<FileEntry *> _files;
|
|
unsigned _inodeGenerator;
|
|
|
|
Device::BlockDevice *_device;
|
|
Device::AbstractBlockCache *_cache;
|
|
};
|
|
|
|
|
|
class FileEntry : public Entry {
|
|
public:
|
|
|
|
FileEntry(const char *name, unsigned fileKind);
|
|
FileEntry(void *vp);
|
|
virtual ~FileEntry();
|
|
|
|
unsigned fileSize();
|
|
|
|
unsigned lastByte() const { return _lastByte; }
|
|
|
|
int read(uint8_t *buffer, unsigned size, unsigned offset);
|
|
int write(uint8_t *buffer, unsigned size, unsigned offset);
|
|
|
|
const char *name() const { return _fileName; }
|
|
Date modification() const { return _modification; }
|
|
|
|
unsigned static ValidName(const char *);
|
|
|
|
|
|
protected:
|
|
|
|
virtual void writeDirectoryEntry(LittleEndian::IOBuffer *);
|
|
|
|
private:
|
|
|
|
unsigned _status;
|
|
|
|
unsigned _fileNameLength;
|
|
char _fileName[16];
|
|
|
|
unsigned _lastByte;
|
|
Date _modification;
|
|
|
|
// non-text files
|
|
unsigned dataFileSize();
|
|
int dataRead(uint8_t *buffer, unsigned size, unsigned offset);
|
|
|
|
// for text files.
|
|
void textInit();
|
|
unsigned textFileSize();
|
|
int textRead(uint8_t *buffer, unsigned size, unsigned offset);
|
|
|
|
unsigned textReadPage(unsigned block, uint8_t *in);
|
|
unsigned textDecodePage(unsigned block, uint8_t *out);
|
|
|
|
std::vector<unsigned> *_pageSize;
|
|
unsigned _fileSize;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|