TDME2 1.9.121
FileSystemInterface.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
9
11
12using std::string;
13using std::vector;
14
17
18/**
19 * File system interface
20 * @author Andreas Drewke
21 * @version $Id$
22 */
24{
25 /**
26 * Public destructor
27 */
29
30 /**
31 * Get file name
32 * @param pathName path name
33 * @param fileName file name
34 * @return complete filename with path and file
35 * @throws tdme::os::filesystem::FileSystemException
36 */
37 virtual const string getFileName(const string& pathName, const string& fileName) = 0;
38
39 /**
40 * Return file size of given file
41 * @param pathName path name
42 * @param fileName file name
43 * @return file size
44 */
45 virtual uint64_t getFileSize(const string& pathName, const string& fileName) = 0;
46
47 /**
48 * Get content as string
49 * @param pathName path name
50 * @param fileName file name
51 * @return string
52 * @throws tdme::os::filesystem::FileSystemException
53 */
54 virtual const string getContentAsString(const string& pathName, const string& fileName) = 0;
55
56 /**
57 * Set content from string
58 * @param pathName path name
59 * @param fileName file name
60 * @param content content string
61 * @throws tdme::os::filesystem::FileSystemException
62 */
63 virtual void setContentFromString(const string& pathName, const string& fileName, const string& content) = 0;
64
65 /**
66 * Get file content
67 * @param pathName path name
68 * @param fileName file name
69 * @param content content vector
70 * @throws tdme::os::filesystem::FileSystemException
71 */
72 virtual void getContent(const string& pathName, const string& fileName, vector<uint8_t>& content) = 0;
73
74 /**
75 * Set file content
76 * @param pathName path name
77 * @param fileName file name
78 * @param content content vector
79 * @throws tdme::os::filesystem::FileSystemException
80 */
81 virtual void setContent(const string& pathName, const string& fileName, const vector<uint8_t>& content) = 0;
82
83 /**
84 * Get file content as string array
85 * @param pathName path name
86 * @param fileName file name
87 * @param content content vector
88 * @throws tdme::os::filesystem::FileSystemException
89 */
90 virtual void getContentAsStringArray(const string& pathName, const string& fileName, vector<string>& content) = 0;
91
92 /**
93 * Set file content as string array
94 * @param pathName path name
95 * @param fileName file name
96 * @param content string array
97 * @return byte array
98 * @throws tdme::os::filesystem::FileSystemException
99 */
100 virtual void setContentFromStringArray(const string& pathName, const string& fileName, const vector<string>& content) = 0;
101
102 /**
103 * List files for given path and filter by a file name filter if not null
104 * @param pathName path name
105 * @param files files
106 * @param filter filter or null, this filter can be created on stack as ownership will not be taken over
107 * @param addDrives add drives to list(applies to Microsoft Windows only)
108 * @return file names
109 */
110 virtual void list(const string& pathName, vector<string>& files, FileNameFilter* filter = nullptr, bool addDrives = false) = 0;
111
112 /**
113 * Check if file is a path
114 * @param pathName path name
115 * @return if file is a path
116 */
117 virtual bool isPath(const string& pathName) = 0;
118
119 /**
120 * Check if file is a drive (applies to Microsoft Windows only)
121 * @param pathName path name
122 * @return if file is a drive
123 */
124 virtual bool isDrive(const string& pathName) = 0;
125
126 /**
127 * Check if file exists
128 * @param fileName file name
129 * @return bool if file exists
130 */
131 virtual bool fileExists(const string& fileName) = 0;
132
133 /**
134 * Returns if file is a executable file
135 * @param pathName path name
136 * @param fileName file name
137 * @return is executable
138 */
139 virtual bool isExecutable(const string& pathName, const string& fileName) = 0;
140
141 /**
142 * Set up file to be an executable file
143 * @param pathName path name
144 * @param fileName file name
145 * @return success
146 * @throws tdme::os::filesystem::FileSystemException
147 */
148 virtual void setExecutable(const string& pathName, const string& fileName) = 0;
149
150 /**
151 * Get canonical path name
152 * @param pathName path name
153 * @param fileName file name
154 * @return canonical path
155 */
156 virtual const string getCanonicalPath(const string& pathName, const string& fileName) = 0;
157
158 /**
159 * Get current working path name
160 * @return current working path
161 */
162 virtual const string getCurrentWorkingPathName() = 0;
163
164 /**
165 * Change path
166 * @param pathName path name
167 */
168 virtual void changePath(const string& pathName) = 0;
169
170 /**
171 * Get path name
172 * @param fileName file name
173 * @return canonical path
174 */
175 virtual const string getPathName(const string& fileName) = 0;
176
177 /**
178 * Get file name
179 * @param fileName file name
180 * @return canonical path
181 */
182 virtual const string getFileName(const string& fileName) = 0;
183
184 /**
185 * Create path
186 * @param pathName path name
187 */
188 virtual void createPath(const string& pathName) = 0;
189
190 /**
191 * Remove path
192 * @param pathName path name
193 * @param recursive remove recursive
194 * @return success
195 */
196 virtual void removePath(const string& pathName, bool recursive) = 0;
197
198 /**
199 * Remove file
200 * @param pathName path name
201 * @param fileName file name
202 * @return success
203 */
204 virtual void removeFile(const string& pathName, const string& fileName) = 0;
205
206 /**
207 * Reads a thumbnail attachment from binary file
208 * @param pathName path name
209 * @param fileName file name
210 * @param thumbnailAttachmentContent thumbnail attachment content
211 * @return attachment available
212 */
213 virtual bool getThumbnailAttachment(const string& pathName, const string& fileName, vector<uint8_t>& thumbnailAttachmentContent) = 0;
214
215 /**
216 * Reads a thumbnail attachment from data vector
217 * @param content content
218 * @param thumbnailAttachmentContent thumbnail attachment content
219 * @return attachment available
220 */
221 virtual bool getThumbnailAttachment(const vector<uint8_t>& content, vector<uint8_t>& thumbnailAttachmentContent) = 0;
222};
File system file name filter interface.
virtual bool isExecutable(const string &pathName, const string &fileName)=0
Returns if file is a executable file.
virtual bool isPath(const string &pathName)=0
Check if file is a path.
virtual void setContentFromStringArray(const string &pathName, const string &fileName, const vector< string > &content)=0
Set file content as string array.
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.
virtual void setExecutable(const string &pathName, const string &fileName)=0
Set up file to be an executable file.
virtual bool isDrive(const string &pathName)=0
Check if file is a drive (applies to Microsoft Windows only)
virtual void getContent(const string &pathName, const string &fileName, vector< uint8_t > &content)=0
Get file content.
virtual const string getContentAsString(const string &pathName, const string &fileName)=0
Get content as string.
virtual const string getPathName(const string &fileName)=0
Get path name.
virtual void setContent(const string &pathName, const string &fileName, const vector< uint8_t > &content)=0
Set file content.
virtual uint64_t getFileSize(const string &pathName, const string &fileName)=0
Return file size of given file.
virtual const string getFileName(const string &fileName)=0
Get file name.
virtual void changePath(const string &pathName)=0
Change path.
virtual void removeFile(const string &pathName, const string &fileName)=0
Remove file.
virtual ~FileSystemInterface()
Public destructor.
virtual void setContentFromString(const string &pathName, const string &fileName, const string &content)=0
Set content from string.
virtual void removePath(const string &pathName, bool recursive)=0
Remove path.
virtual const string getFileName(const string &pathName, const string &fileName)=0
Get file name.
virtual const string getCurrentWorkingPathName()=0
Get current working path name.
virtual void getContentAsStringArray(const string &pathName, const string &fileName, vector< string > &content)=0
Get file content as string array.
virtual bool getThumbnailAttachment(const string &pathName, const string &fileName, vector< uint8_t > &thumbnailAttachmentContent)=0
Reads a thumbnail attachment from binary file.
virtual void createPath(const string &pathName)=0
Create path.
virtual bool fileExists(const string &fileName)=0
Check if file exists.
virtual bool getThumbnailAttachment(const vector< uint8_t > &content, vector< uint8_t > &thumbnailAttachmentContent)=0
Reads a thumbnail attachment from data vector.
virtual const string getCanonicalPath(const string &pathName, const string &fileName)=0
Get canonical path name.