-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathfilesystem.h
286 lines (234 loc) · 6.18 KB
/
filesystem.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
#ifndef __cplusplus
#error "C++ is required"
#endif
#ifndef TINY_RENDERR_FS_PATH_H
#define TINY_RENDERR_FS_PATH_H
#include <algorithm>
#include <fstream>
#include <sstream>
#include <string>
#include <vector>
#if defined(__linux__)
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#endif
namespace tr {
namespace fs {
class path {
public:
path() {}
path(const std::string& s) {
append(s, true);
}
path(const char* s) {
append(s, true);
}
path(const path& p) {
m_cached = p.m_cached;
m_dirty = p.m_dirty;
m_has_root = p.m_has_root;
m_parts = p.m_parts;
}
virtual ~path() {}
operator bool() const {
update_cache();
return m_cached.empty() ? false : true;
}
operator std::string() const {
return str();
}
bool operator==(const path& rhs) const {
return str() == rhs.str();
}
bool operator!=(const path& rhs) const {
return str() != rhs.str();
}
path& operator=(const path& rhs) {
if (this != &rhs) {
m_cached = rhs.m_cached;
m_dirty = rhs.m_dirty;
m_has_root = rhs.m_has_root;
m_parts = rhs.m_parts;
}
return *this;
}
path& operator=(const std::string& rhs) {
append(rhs, true);
return *this;
}
path& operator=(const char* rhs) {
append(rhs, true);
return *this;
}
path& operator/=(const path& rhs) {
append(rhs.str());
return *this;
}
path& operator/=(const std::string& rhs) {
append(rhs);
return *this;
}
path& operator/=(const char* rhs) {
append(rhs);
return *this;
}
path operator/(const path& rhs) const {
path r = *this;
r.append(rhs.str());
return r;
}
path operator/(const std::string& rhs) const {
path r = *this;
r.append(rhs);
return r;
}
path operator/(const char* rhs) const {
path r = *this;
r.append(rhs);
return r;
}
const std::string& str() const {
update_cache();
return m_cached;
}
const char* c_str() const {
update_cache();
return m_cached.c_str();
}
bool is_root() const {
update_cache();
return ((m_cached.size() == 1) && (m_cached[0] == '/')) ||
((m_cached.size() == 2) && (m_cached[1] == ':'));
}
fs::path parent() const {
fs::path r = *this;
if ((! r.is_root()) && (! r.m_parts.empty())) {
r.m_parts.pop_back();
}
r.m_cached.clear();
r.m_dirty = true;
return r;
}
/*! @fn extension
@return Returns the extension start from, and including, the last period.
file.ext - ".ext" is returned
file.other.ext - ".ext" is returned
*/
fs::path extension() const {
fs::path ext;
if (!m_parts.empty()) {
const std::string& s = m_parts.back();
std::string::size_type pos = s.rfind('.');
if (pos != std::string::npos) {
std::string::size_type len = s.length();
std::string s_ext = s.substr(pos, len - pos);
ext = fs::path(s_ext);
}
}
return ext;
}
/*! @fn full_extension
@return Returns the extension start from, and including, the last period.
file.ext - ".ext" is returned
file.other.ext - "other.ext" is returned
*/
fs::path full_extension() const {
fs::path ext;
if (!m_parts.empty()) {
const std::string& s = m_parts.back();
std::string::size_type pos = s.find('.');
if (pos != std::string::npos) {
std::string::size_type len = s.length();
std::string s_ext = s.substr(pos, len - pos);
ext = fs::path(s_ext);
}
}
return ext;
}
private:
void append(std::string s, bool reset = false) {
if (s.empty()) {
return;
}
if ((! reset) && (s[0] == '/')) {
throw std::runtime_error("cannot append path that contains root");
}
// Change all '\' to '/'
if (s.find('\\') != std::string::npos) {
std::transform(s.begin(),
s.end(),
s.begin(),
[](typename std::string::value_type c)
{ return (c == '\\') ? '/' : c; });
}
// Collapse repeating '/' to a single '/'
while (s.find("//") != std::string::npos) {
auto new_end = std::unique(s.begin(),
s.end(),
[](typename std::string::value_type lhs,
typename std::string::value_type rhs)
{ return (lhs == rhs) && (lhs == '/'); });
s.erase(new_end, s.end());
}
// Clear everything if this is a reset
if (reset) {
m_cached.clear();
m_dirty = false;
m_has_root = false;
m_parts.clear();
}
// Split string into components
m_has_root = (! s.empty()) && ((s[0] == '/') || ((s.size() > 1) && (s[1] == ':')));
if (s.find('/') != std::string::npos) {
std::istringstream is(s);
while (std::getline(is, s, '/')) {
m_parts.push_back(s);
}
} else {
m_parts.push_back(s);
}
// Mark dirty
m_dirty = true;
}
void update_cache() const {
if (! m_dirty) {
return;
}
m_cached.clear();
if (m_has_root && (! ((m_parts[0].size() > 1) && (m_parts[0][1] == ':')))) {
m_cached = "/";
}
if (! m_parts.empty()) {
auto iter = m_parts.begin();
m_cached = *(iter++);
while (iter != m_parts.end()) {
m_cached += '/';
m_cached += *(iter++);
}
}
m_dirty = false;
}
private:
mutable std::string m_cached;
mutable bool m_dirty = false;
mutable bool m_has_root = false;
std::vector<std::string> m_parts;
};
inline bool exists(const fs::path& p) {
struct stat info = {};
return 0 == stat(p.c_str(), &info);
}
inline bool is_file(const fs::path& p) {
struct stat info = {};
if (0 != stat(p.c_str(), &info)) { return false;}
return S_IFREG == (info.st_mode & S_IFREG);
}
inline bool is_directory(const fs::path& p) {
struct stat info = {};
if (0 != stat(p.c_str(), &info)) { return false;}
return S_IFDIR == (info.st_mode & S_IFDIR);
}
} // namespace fs
} // namespace tr
#endif // TINY_RENDERR_FS_PATH_H