TDME2 1.9.121
|
Archive file system implementation. More...
#include <tdme/os/filesystem/ArchiveFileSystem.h>
Classes | |
struct | FileInformation |
Public Member Functions | |
ArchiveFileSystem (const string &fileName="archive.ta") | |
Public constructor. More... | |
virtual | ~ArchiveFileSystem () |
Public destructor. More... | |
const string & | getArchiveFileName () |
const string | getFileName (const string &path, const string &fileName) override |
Get file name. More... | |
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. More... | |
bool | isPath (const string &pathName) override |
Check if file is a path. More... | |
bool | isDrive (const string &pathName) override |
Check if file is a drive (applies to Microsoft Windows only) More... | |
bool | fileExists (const string &fileName) override |
Check if file exists. More... | |
bool | isExecutable (const string &pathName, const string &fileName) override |
Returns if file is a executable file. More... | |
void | setExecutable (const string &pathName, const string &fileName) override |
Set up file to be an executable file. More... | |
uint64_t | getFileSize (const string &pathName, const string &fileName) override |
Return file size of given file. More... | |
const string | getContentAsString (const string &pathName, const string &fileName) override |
Get content as string. More... | |
void | setContentFromString (const string &pathName, const string &fileName, const string &content) override |
Set content from string. More... | |
void | getContent (const string &pathName, const string &fileName, vector< uint8_t > &content) override |
Get file content. More... | |
void | setContent (const string &pathName, const string &fileName, const vector< uint8_t > &content) override |
Set file content. More... | |
void | getContentAsStringArray (const string &pathName, const string &fileName, vector< string > &content) override |
Get file content as string array. More... | |
void | setContentFromStringArray (const string &pathName, const string &fileName, const vector< string > &content) override |
Set file content as string array. More... | |
const string | getCanonicalPath (const string &pathName, const string &fileName) override |
Get canonical path name. More... | |
const string | getCurrentWorkingPathName () override |
Get current working path name. More... | |
void | changePath (const string &pathName) override |
Change path. More... | |
const string | getPathName (const string &fileName) override |
Get path name. More... | |
const string | getFileName (const string &fileName) override |
Get file name. More... | |
void | createPath (const string &pathName) override |
Create path. More... | |
void | removePath (const string &pathName, bool recursive) override |
Remove path. More... | |
void | removeFile (const string &pathName, const string &fileName) override |
Remove file. More... | |
bool | getThumbnailAttachment (const string &pathName, const string &fileName, vector< uint8_t > &thumbnailAttachmentContent) override |
Reads a thumbnail attachment from binary file. More... | |
bool | getThumbnailAttachment (const vector< uint8_t > &content, vector< uint8_t > &thumbnailAttachmentContent) override |
Reads a thumbnail attachment from data vector. More... | |
const string | computeSHA256Hash () |
Compute SHA256 hash. More... | |
![]() | |
virtual | ~FileSystemInterface () |
Public destructor. More... | |
virtual const string | getFileName (const string &pathName, const string &fileName)=0 |
Get file name. More... | |
virtual uint64_t | getFileSize (const string &pathName, const string &fileName)=0 |
Return file size of given file. More... | |
virtual const string | getContentAsString (const string &pathName, const string &fileName)=0 |
Get content as string. More... | |
virtual void | setContentFromString (const string &pathName, const string &fileName, const string &content)=0 |
Set content from string. More... | |
virtual void | getContent (const string &pathName, const string &fileName, vector< uint8_t > &content)=0 |
Get file content. More... | |
virtual void | setContent (const string &pathName, const string &fileName, const vector< uint8_t > &content)=0 |
Set file content. More... | |
virtual void | getContentAsStringArray (const string &pathName, const string &fileName, vector< string > &content)=0 |
Get file content as string array. More... | |
virtual void | setContentFromStringArray (const string &pathName, const string &fileName, const vector< string > &content)=0 |
Set file content as string array. More... | |
virtual void | list (const string &pathName, vector< string > &files, FileNameFilter *filter=nullptr, bool addDrives=false)=0 |
List files for given path and filter by a file name filter if not null. More... | |
virtual bool | isPath (const string &pathName)=0 |
Check if file is a path. More... | |
virtual bool | isDrive (const string &pathName)=0 |
Check if file is a drive (applies to Microsoft Windows only) More... | |
virtual bool | fileExists (const string &fileName)=0 |
Check if file exists. More... | |
virtual bool | isExecutable (const string &pathName, const string &fileName)=0 |
Returns if file is a executable file. More... | |
virtual void | setExecutable (const string &pathName, const string &fileName)=0 |
Set up file to be an executable file. More... | |
virtual const string | getCanonicalPath (const string &pathName, const string &fileName)=0 |
Get canonical path name. More... | |
virtual const string | getCurrentWorkingPathName ()=0 |
Get current working path name. More... | |
virtual void | changePath (const string &pathName)=0 |
Change path. More... | |
virtual const string | getPathName (const string &fileName)=0 |
Get path name. More... | |
virtual const string | getFileName (const string &fileName)=0 |
Get file name. More... | |
virtual void | createPath (const string &pathName)=0 |
Create path. More... | |
virtual void | removePath (const string &pathName, bool recursive)=0 |
Remove path. More... | |
virtual void | removeFile (const string &pathName, const string &fileName)=0 |
Remove file. More... | |
virtual bool | getThumbnailAttachment (const string &pathName, const string &fileName, vector< uint8_t > &thumbnailAttachmentContent)=0 |
Reads a thumbnail attachment from binary file. More... | |
virtual bool | getThumbnailAttachment (const vector< uint8_t > &content, vector< uint8_t > &thumbnailAttachmentContent)=0 |
Reads a thumbnail attachment from data vector. More... | |
Private Member Functions | |
void | decompress (vector< uint8_t > &inContent, vector< uint8_t > &outContent) |
Decompress from archive. More... | |
Private Attributes | |
string | fileName |
Mutex | ifsMutex |
ifstream | ifs |
map< string, FileInformation > | fileInformations |
Archive file system implementation.
Definition at line 27 of file ArchiveFileSystem.h.
ArchiveFileSystem | ( | const string & | fileName = "archive.ta" | ) |
Public constructor.
fileName | archive file name |
Definition at line 39 of file ArchiveFileSystem.cpp.
|
virtual |
Public destructor.
Definition at line 73 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Change path.
pathName | path name |
Implements FileSystemInterface.
Definition at line 391 of file ArchiveFileSystem.cpp.
const string computeSHA256Hash | ( | ) |
Compute SHA256 hash.
Definition at line 428 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Create path.
pathName | path name |
Implements FileSystemInterface.
Definition at line 408 of file ArchiveFileSystem.cpp.
|
private |
Decompress from archive.
inContent | compressed content |
outContent | uncompressed out content |
tdme::os::filesystem::FileSystemException |
Definition at line 160 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Check if file exists.
fileName | file name |
Implements FileSystemInterface.
Definition at line 117 of file ArchiveFileSystem.cpp.
const string & getArchiveFileName | ( | ) |
Definition at line 78 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Get canonical path name.
pathName | path name |
fileName | file name |
Implements FileSystemInterface.
Definition at line 329 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Get file content.
pathName | path name |
fileName | file name |
content | content vector |
tdme::os::filesystem::FileSystemException |
Implements FileSystemInterface.
Definition at line 275 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Get content as string.
pathName | path name |
fileName | file name |
tdme::os::filesystem::FileSystemException |
Implements FileSystemInterface.
Definition at line 230 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Get file content as string array.
pathName | path name |
fileName | file name |
content | content vector |
tdme::os::filesystem::FileSystemException |
Implements FileSystemInterface.
Definition at line 313 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Get current working path name.
Implements FileSystemInterface.
Definition at line 387 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Get file name.
fileName | file name |
Implements FileSystemInterface.
Definition at line 401 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Get file name.
pathName | path name |
fileName | file name |
tdme::os::filesystem::FileSystemException |
Implements FileSystemInterface.
Definition at line 82 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Return file size of given file.
pathName | path name |
fileName | file name |
Implements FileSystemInterface.
Definition at line 145 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Get path name.
fileName | file name |
Implements FileSystemInterface.
Definition at line 394 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Reads a thumbnail attachment from binary file.
pathName | path name |
fileName | file name |
thumbnailAttachmentContent | thumbnail attachment content |
Implements FileSystemInterface.
Definition at line 420 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Reads a thumbnail attachment from data vector.
content | content |
thumbnailAttachmentContent | thumbnail attachment content |
Implements FileSystemInterface.
Definition at line 424 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Check if file is a drive (applies to Microsoft Windows only)
pathName | path name |
Implements FileSystemInterface.
Definition at line 113 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Returns if file is a executable file.
pathName | path name |
fileName | file name |
Implements FileSystemInterface.
Definition at line 126 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Check if file is a path.
pathName | path name |
Implements FileSystemInterface.
Definition at line 109 of file ArchiveFileSystem.cpp.
|
overridevirtual |
List files for given path and filter by a file name filter if not null.
pathName | path name |
files | files |
filter | filter or null, this filter can be created on stack as ownership will not be taken over |
addDrives | add drives to list(applies to Microsoft Windows only) |
Implements FileSystemInterface.
Definition at line 86 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Remove file.
pathName | path name |
fileName | file name |
Implements FileSystemInterface.
Definition at line 416 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Remove path.
pathName | path name |
recursive | remove recursive |
Implements FileSystemInterface.
Definition at line 412 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Set file content.
pathName | path name |
fileName | file name |
content | content vector |
tdme::os::filesystem::FileSystemException |
Implements FileSystemInterface.
Definition at line 309 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Set content from string.
pathName | path name |
fileName | file name |
content | content string |
tdme::os::filesystem::FileSystemException |
Implements FileSystemInterface.
Definition at line 271 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Set file content as string array.
pathName | path name |
fileName | file name |
content | string array |
tdme::os::filesystem::FileSystemException |
Implements FileSystemInterface.
Definition at line 324 of file ArchiveFileSystem.cpp.
|
overridevirtual |
Set up file to be an executable file.
pathName | path name |
fileName | file name |
tdme::os::filesystem::FileSystemException |
Implements FileSystemInterface.
Definition at line 141 of file ArchiveFileSystem.cpp.
|
private |
Definition at line 41 of file ArchiveFileSystem.h.
|
private |
Definition at line 38 of file ArchiveFileSystem.h.
|
private |
Definition at line 40 of file ArchiveFileSystem.h.
|
private |
Definition at line 39 of file ArchiveFileSystem.h.