49 void decompress(vector<uint8_t>& inContent, vector<uint8_t>& outContent);
70 void list(
const string& pathName, vector<string>& files,
FileNameFilter* filter =
nullptr,
bool addDrives =
false)
override;
71 bool isPath(
const string& pathName)
override;
72 bool isDrive(
const string& pathName)
override;
79 void getContent(
const string& pathName,
const string&
fileName, vector<uint8_t>& content)
override;
80 void setContent(
const string& pathName,
const string&
fileName,
const vector<uint8_t>& content)
override;
85 void changePath(
const string& pathName)
override;
88 void createPath(
const string& pathName)
override;
89 void removePath(
const string& pathName,
bool recursive)
override;
92 bool getThumbnailAttachment(
const vector<uint8_t>& content, vector<uint8_t>& thumbnailAttachmentContent)
override;
Archive file system implementation.
const string getPathName(const string &fileName) override
Get path name.
map< string, FileInformation > fileInformations
bool isPath(const string &pathName) override
Check if file is a path.
ArchiveFileSystem(const string &fileName="archive.ta")
Public constructor.
virtual ~ArchiveFileSystem()
Public destructor.
uint64_t getFileSize(const string &pathName, const string &fileName) override
Return file size of given file.
void setContent(const string &pathName, const string &fileName, const vector< uint8_t > &content) override
Set file content.
void removeFile(const string &pathName, const string &fileName) override
Remove file.
void removePath(const string &pathName, bool recursive) override
Remove path.
void decompress(vector< uint8_t > &inContent, vector< uint8_t > &outContent)
Decompress from archive.
void createPath(const string &pathName) override
Create path.
const string getCurrentWorkingPathName() override
Get current working path name.
const string getCanonicalPath(const string &pathName, const string &fileName) override
Get canonical path name.
void setExecutable(const string &pathName, const string &fileName) override
Set up file to be an executable file.
const string & getArchiveFileName()
void changePath(const string &pathName) override
Change path.
void setContentFromString(const string &pathName, const string &fileName, const string &content) override
Set content from string.
const string computeSHA256Hash()
Compute SHA256 hash.
void getContentAsStringArray(const string &pathName, const string &fileName, vector< string > &content) override
Get file content as string array.
void setContentFromStringArray(const string &pathName, const string &fileName, const vector< string > &content) override
Set file content as string array.
const string getFileName(const string &path, const string &fileName) override
Get file name.
bool fileExists(const string &fileName) override
Check if file exists.
bool isDrive(const string &pathName) override
Check if file is a drive (applies to Microsoft Windows only)
bool isExecutable(const string &pathName, const string &fileName) override
Returns if file is a executable file.
void list(const string &pathName, vector< string > &files, FileNameFilter *filter=nullptr, bool addDrives=false) override
List files for given path and filter by a file name filter if not null.
void getContent(const string &pathName, const string &fileName, vector< uint8_t > &content) override
Get file content.
bool getThumbnailAttachment(const string &pathName, const string &fileName, vector< uint8_t > &thumbnailAttachmentContent) override
Reads a thumbnail attachment from binary file.
const string getContentAsString(const string &pathName, const string &fileName) override
Get content as string.
File system file name filter interface.