2018-10-28 10:54:20 +03:00
|
|
|
#include "FileSystemPath.h"
|
|
|
|
#include "Vector.h"
|
|
|
|
#include "kstdio.h"
|
|
|
|
#include "StringBuilder.h"
|
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
|
|
|
FileSystemPath::FileSystemPath(const String& s)
|
|
|
|
: m_string(s)
|
|
|
|
{
|
|
|
|
m_isValid = canonicalize();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FileSystemPath::canonicalize(bool resolveSymbolicLinks)
|
|
|
|
{
|
|
|
|
// FIXME: Implement "resolveSymbolicLinks"
|
2018-11-09 12:09:46 +03:00
|
|
|
(void) resolveSymbolicLinks;
|
2018-10-28 10:54:20 +03:00
|
|
|
auto parts = m_string.split('/');
|
|
|
|
Vector<String> canonicalParts;
|
|
|
|
|
|
|
|
for (auto& part : parts) {
|
|
|
|
if (part == ".")
|
|
|
|
continue;
|
|
|
|
if (part == "..") {
|
|
|
|
if (!canonicalParts.isEmpty())
|
|
|
|
canonicalParts.takeLast();
|
|
|
|
continue;
|
|
|
|
}
|
2018-11-10 17:46:39 +03:00
|
|
|
if (!part.isEmpty())
|
|
|
|
canonicalParts.append(part);
|
2018-10-28 10:54:20 +03:00
|
|
|
}
|
|
|
|
if (canonicalParts.isEmpty()) {
|
|
|
|
m_string = "/";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
StringBuilder builder;
|
|
|
|
for (auto& cpart : canonicalParts) {
|
|
|
|
builder.append('/');
|
|
|
|
builder.append(move(cpart));
|
|
|
|
}
|
|
|
|
m_string = builder.build();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|