-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpath.cpp
More file actions
438 lines (350 loc) · 10.3 KB
/
Copy pathpath.cpp
File metadata and controls
438 lines (350 loc) · 10.3 KB
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
#include <odr/internal/common/path.hpp>
#include <stdexcept>
namespace odr::internal {
Path::Path() noexcept : Path("") {}
Path::Path(const char *c_string) : Path(std::string(c_string)) {}
Path::Path(const std::string &string) {
// TODO throw on illegal chars
// TODO remove forward slash
if (string.rfind("/..", 0) == 0) {
throw std::invalid_argument("path");
}
m_absolute = !string.empty() && (string[0] == '/');
m_path = m_absolute ? "/" : "";
m_upwards = 0;
m_downwards = 0;
for (auto it = Iterator(string, m_absolute ? 1 : 0); it != end(); ++it) {
join_(*it);
}
}
Path::Path(std::string_view string_view) : Path(std::string(string_view)) {}
Path::Path(const std::filesystem::path &path) : Path(path.string()) {}
void Path::parent_() {
if (m_downwards > 0) {
--m_downwards;
if (m_downwards == 0) {
if (m_absolute) {
m_path = "/";
} else {
m_path = "";
}
} else {
const auto pos = m_path.rfind('/');
m_path = m_path.substr(0, pos);
}
} else if (!m_absolute) {
if (m_upwards + m_downwards == 0) {
m_path = "..";
} else {
m_path = "../" + m_path;
}
++m_upwards;
} else {
throw std::invalid_argument("absolute path violation");
}
}
void Path::join_(const std::string &child) {
if (child == ".") {
return;
}
if (child == "..") {
parent_();
} else {
if (m_upwards + m_downwards == 0) {
m_path += child;
} else {
m_path += "/" + child;
}
++m_downwards;
}
}
bool Path::operator==(const Path &b) const noexcept {
if (m_absolute != b.m_absolute) {
return false;
}
if (!m_absolute && (m_upwards != b.m_upwards)) {
return false;
}
return (m_downwards == b.m_downwards) && (m_path == b.m_path);
}
bool Path::operator!=(const Path &b) const noexcept {
if (m_absolute != b.m_absolute) {
return true;
}
if (!m_absolute && (m_upwards != b.m_upwards)) {
return true;
}
return (m_downwards != b.m_downwards) || (m_path != b.m_path);
}
bool Path::operator<(const Path &b) const noexcept {
// TODO could be improved
return m_path < b.m_path;
}
bool Path::operator>(const Path &b) const noexcept {
// TODO could be improved
return m_path > b.m_path;
}
const std::string &Path::string() const noexcept { return m_path; }
std::filesystem::path Path::path() const noexcept { return m_path; }
std::size_t Path::hash() const noexcept {
return std::hash<std::string>{}(m_path);
}
bool Path::root() const noexcept {
return (m_upwards == 0) && (m_downwards == 0);
}
bool Path::absolute() const noexcept { return m_absolute; }
bool Path::relative() const noexcept { return !m_absolute; }
bool Path::visible() const noexcept { return m_absolute || (m_upwards == 0); }
bool Path::escaping() const noexcept { return !m_absolute && (m_upwards > 0); }
bool Path::child_of(const Path &b) const { return b.parent_of(*this); }
bool Path::parent_of(const Path &b) const {
if (m_absolute != b.m_absolute) {
throw std::invalid_argument("cannot compare absolute and relative path");
}
// TODO we need to check upwards as well
return (m_downwards + 1 == b.m_downwards) && (b.m_path.rfind(m_path, 0) == 0);
}
bool Path::ancestor_of(const Path &b) const { return b.descendant_of(*this); }
bool Path::descendant_of(const Path &b) const {
if (m_absolute != b.m_absolute) {
throw std::invalid_argument("cannot compare absolute and relative path");
}
// TODO we need to check upwards as well
return (m_downwards < b.m_downwards) && (b.m_path.rfind(m_path, 0) == 0);
}
AbsPath Path::as_absolute() const & { return AbsPath(*this); }
AbsPath Path::as_absolute() && { return AbsPath(std::move(*this)); }
RelPath Path::as_relative() const & { return RelPath(*this); }
RelPath Path::as_relative() && { return RelPath(std::move(*this)); }
AbsPath Path::make_absolute() const {
if (m_absolute) {
return AbsPath(*this);
}
if (m_upwards > 0) {
throw std::invalid_argument("cannot make relative path absolute");
}
return AbsPath("/" + m_path);
}
RelPath Path::make_relative() const {
if (!m_absolute) {
return RelPath(*this);
}
return RelPath(m_path.substr(1));
}
std::string Path::basename() const noexcept {
const auto find = m_path.rfind('/');
if (find == std::string::npos) {
return m_path;
}
return m_path.substr(find + 1);
}
std::string Path::extension() const noexcept {
auto bn = basename();
const auto pos = bn.find('.');
if (pos == std::string::npos) {
return "";
}
return bn.substr(pos + 1);
}
Path Path::parent() const {
Path result(*this);
result.parent_();
return result;
}
Path Path::join(const RelPath &b) const {
if (root()) {
return Path("/" + b.m_path);
}
// TODO could be done directly
return Path(m_path + "/" + b.m_path);
}
Path Path::rebase(const Path &b) const {
if (m_absolute != b.m_absolute) {
throw std::invalid_argument("cannot rebase absolute and relative path");
}
Path result = Path("");
auto common_root = this->common_root(b);
Path sub_a;
{
auto it_a = begin();
for (std::uint32_t i = 0;
i < common_root.m_upwards + common_root.m_downwards; ++i) {
++it_a;
}
for (; it_a != end(); ++it_a) {
sub_a.join_(*it_a);
}
}
Path sub_b;
{
auto it_b = b.begin();
for (std::uint32_t i = 0;
i < common_root.m_upwards + common_root.m_downwards; ++i) {
++it_b;
}
for (; it_b != b.end(); ++it_b) {
sub_b.join_(*it_b);
}
}
for (std::uint32_t i = 0; i < sub_b.m_downwards; ++i) {
result.join_("..");
}
for (const auto &part : sub_a) {
result.join_(part);
}
return result;
}
Path Path::common_root(const Path &b) const {
if (m_absolute != b.m_absolute) {
throw std::invalid_argument(
"no common root between absolute and relative path");
}
if (b.m_upwards > m_upwards) {
throw std::invalid_argument("parent directories unknown");
}
Path result = Path(m_absolute ? "/" : "");
auto it_a = begin();
auto it_b = b.begin();
while (true) {
if ((it_a == end()) || (it_b == b.end()) || (*it_a != *it_b)) {
break;
}
result.join_(*it_a);
++it_a;
++it_b;
}
return result;
}
Path::Iterator Path::begin() const { return Iterator(*this); }
Path::Iterator Path::end() const { return {}; }
Path::Iterator::Iterator() : m_path{nullptr}, m_begin{std::string::npos} {}
Path::Iterator::Iterator(const std::string &path) : Iterator(path, 0) {}
Path::Iterator::Iterator(const std::string &path, const std::size_t begin)
: m_path{&path}, m_begin{begin} {
fill_();
}
Path::Iterator::Iterator(const Path &path)
: Iterator(path.m_path, path.m_absolute ? 1 : 0) {}
void Path::Iterator::fill_() {
if (m_begin >= m_path->size()) {
m_begin = std::string::npos;
}
if (m_begin == std::string::npos) {
m_part = "";
return;
}
auto part_end = m_path->find('/', m_begin);
if (part_end == std::string::npos) {
part_end = m_path->size();
}
m_part = m_path->substr(m_begin, part_end - m_begin);
}
Path::Iterator::reference Path::Iterator::operator*() const { return m_part; }
Path::Iterator::pointer Path::Iterator::operator->() const { return &m_part; }
bool Path::Iterator::operator==(const Iterator &other) const {
return m_begin == other.m_begin;
}
bool Path::Iterator::operator!=(const Iterator &other) const {
return m_begin != other.m_begin;
}
Path::Iterator &Path::Iterator::operator++() {
m_begin = m_path->find('/', m_begin);
if (m_begin != std::string::npos) {
++m_begin;
}
fill_();
return *this;
}
Path::Iterator Path::Iterator::operator++(int) {
auto old = *this;
this->operator++();
return old;
}
AbsPath AbsPath::current_working_directory() {
return AbsPath(std::filesystem::current_path());
}
AbsPath::AbsPath() noexcept : Path("/") {}
AbsPath::AbsPath(const char *c_string) : Path(c_string) {
if (!absolute()) {
throw std::invalid_argument("not an absolute path");
}
}
AbsPath::AbsPath(const std::string &string) : Path(string) {
if (!absolute()) {
throw std::invalid_argument("not an absolute path");
}
}
AbsPath::AbsPath(std::string_view string_view) : Path(string_view) {
if (!absolute()) {
throw std::invalid_argument("not an absolute path");
}
}
AbsPath::AbsPath(const std::filesystem::path &path) : Path(path) {
if (!absolute()) {
throw std::invalid_argument("not an absolute path");
}
}
AbsPath::AbsPath(Path path) : Path(std::move(path)) {
if (!absolute()) {
throw std::invalid_argument("not an absolute path");
}
}
AbsPath AbsPath::parent() const { return Path::parent().as_absolute(); }
AbsPath AbsPath::join(const RelPath &other) const {
return Path::join(other).as_absolute();
}
RelPath AbsPath::rebase(const AbsPath &on) const {
return Path::rebase(on).as_relative();
}
AbsPath AbsPath::common_root(const AbsPath &other) const {
return Path::common_root(other).as_absolute();
}
RelPath::RelPath() noexcept : Path("") {}
RelPath::RelPath(const char *c_string) : Path(c_string) {
if (!relative()) {
throw std::invalid_argument("not a relative path");
}
}
RelPath::RelPath(const std::string &string) : Path(string) {
if (!relative()) {
throw std::invalid_argument("not a relative path");
}
}
RelPath::RelPath(std::string_view string_view) : Path(string_view) {
if (!relative()) {
throw std::invalid_argument("not a relative path");
}
}
RelPath::RelPath(const std::filesystem::path &path) : Path(path) {
if (!relative()) {
throw std::invalid_argument("not a relative path");
}
}
RelPath::RelPath(Path path) : Path(std::move(path)) {
if (!relative()) {
throw std::invalid_argument("not a relative path");
}
}
RelPath RelPath::parent() const { return Path::parent().as_relative(); }
RelPath RelPath::join(const RelPath &other) const {
return Path::join(other).as_relative();
}
RelPath RelPath::rebase(const RelPath &on) const {
return Path::rebase(on).as_relative();
}
RelPath RelPath::common_root(const RelPath &other) const {
return Path::common_root(other).as_relative();
}
} // namespace odr::internal
std::size_t std::hash<::odr::internal::Path>::operator()(
const ::odr::internal::Path &p) const {
return p.hash();
}
std::size_t std::hash<::odr::internal::AbsPath>::operator()(
const ::odr::internal::AbsPath &p) const {
return p.hash();
}
std::size_t std::hash<::odr::internal::RelPath>::operator()(
const ::odr::internal::RelPath &p) const {
return p.hash();
}