TDME2 1.9.121
ArchiveFileSystem.h
Go to the documentation of this file.
1#pragma once
2
3#include <fstream>
4#include <map>
5#include <string>
6#include <vector>
7
8#include <tdme/tdme.h>
13
14using std::ifstream;
15using std::map;
16using std::string;
17using std::vector;
18
22
23/**
24 * Archive file system implementation
25 * @author Andreas Drewke
26 */
28{
29private:
31 string name;
32 uint64_t bytes;
33 uint8_t compressed;
35 uint64_t offset;
37 };
38 string fileName;
40 ifstream ifs;
41 map<string, FileInformation> fileInformations;
42
43 /**
44 * Decompress from archive
45 * @param inContent compressed content
46 * @param outContent uncompressed out content
47 * @throws tdme::os::filesystem::FileSystemException
48 */
49 void decompress(vector<uint8_t>& inContent, vector<uint8_t>& outContent);
50
51public:
52 /**
53 * Public constructor
54 * @param fileName archive file name
55 */
56 ArchiveFileSystem(const string& fileName = "archive.ta");
57
58 /**
59 * Public destructor
60 */
61 virtual ~ArchiveFileSystem();
62
63 /**
64 * @return Returns underlying TDME2 archive file name
65 */
66 const string& getArchiveFileName();
67
68 // overridden methods
69 const string getFileName(const string& path, const string& fileName) override;
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;
73 bool fileExists(const string& fileName) override;
74 bool isExecutable(const string& pathName, const string& fileName) override;
75 void setExecutable(const string& pathName, const string& fileName) override;
76 uint64_t getFileSize(const string& pathName, const string& fileName) override;
77 const string getContentAsString(const string& pathName, const string& fileName) override;
78 void setContentFromString(const string& pathName, const string& fileName, const string& content) 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;
81 void getContentAsStringArray(const string& pathName, const string& fileName, vector<string>& content) override;
82 void setContentFromStringArray(const string& pathName, const string& fileName, const vector<string>& content) override;
83 const string getCanonicalPath(const string& pathName, const string& fileName) override;
84 const string getCurrentWorkingPathName() override;
85 void changePath(const string& pathName) override;
86 const string getPathName(const string& fileName) override;
87 const string getFileName(const string& fileName) override;
88 void createPath(const string& pathName) override;
89 void removePath(const string& pathName, bool recursive) override;
90 void removeFile(const string& pathName, const string& fileName) override;
91 bool getThumbnailAttachment(const string& pathName, const string& fileName, vector<uint8_t>& thumbnailAttachmentContent) override;
92 bool getThumbnailAttachment(const vector<uint8_t>& content, vector<uint8_t>& thumbnailAttachmentContent) override;
93
94 /**
95 * Compute SHA256 hash
96 */
97 const string computeSHA256Hash();
98};
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.
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.
Mutex implementation.
Definition: Mutex.h:27
File system file name filter interface.