mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 01:59:14 +03:00
50 lines
1.1 KiB
C++
50 lines
1.1 KiB
C++
#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_parts = move(canonical_parts);
|
|
m_string = builder.to_string();
|
|
return true;
|
|
}
|
|
|
|
}
|
|
|