summaryrefslogtreecommitdiff
path: root/AK/FileSystemPath.cpp
blob: defdd1a9d6cd4417878bf9c8b80f071d876d858c (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.build();
    return true;
}

}