blob: 2a3a556d27ee7f5725b63b3c2a9729bd1fa82f8b (
plain)
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
|
#include "FileSystemPath.h"
#include "Vector.h"
#include "kstdio.h"
#include "StringBuilder.h"
namespace AK {
FileSystemPath::FileSystemPath(const String& s)
: m_string(s)
{
m_is_valid = canonicalize();
}
bool FileSystemPath::canonicalize(bool resolve_symbolic_links)
{
// FIXME: Implement "resolve_symbolic_links"
(void) resolve_symbolic_links;
auto parts = m_string.split('/');
Vector<String> canonical_parts;
for (auto& part : parts) {
if (part == ".")
continue;
if (part == "..") {
if (!canonical_parts.is_empty())
canonical_parts.take_last();
continue;
}
if (!part.is_empty())
canonical_parts.append(part);
}
if (canonical_parts.is_empty()) {
m_string = m_basename = "/";
return true;
}
m_basename = canonical_parts.last();
StringBuilder builder;
for (auto& cpart : canonical_parts) {
builder.append('/');
builder.append(cpart);
}
m_string = builder.to_string();
return true;
}
}
|