mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
AK: Move path canonicalization into LexicalPath::canonicalized_path
This moves the path canonicalization from the LexicalPath constructor to canonicalized_path. This allows canonicalized path to no longer construct a LexicalPath object and initialize all its member variables.
This commit is contained in:
parent
d8be530397
commit
dde888a3d4
Notes:
sideshowbarker
2024-07-18 11:13:20 +09:00
Author: https://github.com/MaxWipfli Commit: https://github.com/SerenityOS/serenity/commit/dde888a3d44 Pull-request: https://github.com/SerenityOS/serenity/pull/8320 Reviewed-by: https://github.com/alimpfard Reviewed-by: https://github.com/awesomekling
2 changed files with 56 additions and 57 deletions
|
@ -14,24 +14,9 @@ namespace AK {
|
||||||
|
|
||||||
char s_single_dot = '.';
|
char s_single_dot = '.';
|
||||||
|
|
||||||
LexicalPath::LexicalPath(String s)
|
LexicalPath::LexicalPath(String path)
|
||||||
: m_string(move(s))
|
: m_string(canonicalized_path(move(path)))
|
||||||
{
|
{
|
||||||
canonicalize();
|
|
||||||
}
|
|
||||||
|
|
||||||
Vector<String> LexicalPath::parts() const
|
|
||||||
{
|
|
||||||
Vector<String> vector;
|
|
||||||
vector.ensure_capacity(m_parts.size());
|
|
||||||
for (auto& part : m_parts)
|
|
||||||
vector.unchecked_append(part);
|
|
||||||
return vector;
|
|
||||||
}
|
|
||||||
|
|
||||||
void LexicalPath::canonicalize()
|
|
||||||
{
|
|
||||||
// NOTE: We never allow an empty m_string, if it's empty, we just set it to '.'.
|
|
||||||
if (m_string.is_empty()) {
|
if (m_string.is_empty()) {
|
||||||
m_string = ".";
|
m_string = ".";
|
||||||
m_dirname = m_string;
|
m_dirname = m_string;
|
||||||
|
@ -42,43 +27,6 @@ void LexicalPath::canonicalize()
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// NOTE: If there are no dots, no '//' and the path doesn't end with a slash, it is already canonical.
|
|
||||||
if (m_string.contains("."sv) || m_string.contains("//"sv) || m_string.ends_with('/')) {
|
|
||||||
auto parts = m_string.split_view('/');
|
|
||||||
size_t approximate_canonical_length = 0;
|
|
||||||
Vector<String> canonical_parts;
|
|
||||||
|
|
||||||
for (auto& part : parts) {
|
|
||||||
if (part == ".")
|
|
||||||
continue;
|
|
||||||
if (part == "..") {
|
|
||||||
if (canonical_parts.is_empty()) {
|
|
||||||
if (is_absolute()) {
|
|
||||||
// At the root, .. does nothing.
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (canonical_parts.last() != "..") {
|
|
||||||
// A .. and a previous non-.. part cancel each other.
|
|
||||||
canonical_parts.take_last();
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
approximate_canonical_length += part.length() + 1;
|
|
||||||
canonical_parts.append(part);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (canonical_parts.is_empty() && !is_absolute())
|
|
||||||
canonical_parts.append(".");
|
|
||||||
|
|
||||||
StringBuilder builder(approximate_canonical_length);
|
|
||||||
if (is_absolute())
|
|
||||||
builder.append('/');
|
|
||||||
builder.join('/', canonical_parts);
|
|
||||||
m_string = builder.to_string();
|
|
||||||
}
|
|
||||||
|
|
||||||
m_parts = m_string.split_view('/');
|
m_parts = m_string.split_view('/');
|
||||||
|
|
||||||
auto last_slash_index = m_string.view().find_last_of('/');
|
auto last_slash_index = m_string.view().find_last_of('/');
|
||||||
|
@ -110,6 +58,15 @@ void LexicalPath::canonicalize()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Vector<String> LexicalPath::parts() const
|
||||||
|
{
|
||||||
|
Vector<String> vector;
|
||||||
|
vector.ensure_capacity(m_parts.size());
|
||||||
|
for (auto& part : m_parts)
|
||||||
|
vector.unchecked_append(part);
|
||||||
|
return vector;
|
||||||
|
}
|
||||||
|
|
||||||
bool LexicalPath::has_extension(StringView const& extension) const
|
bool LexicalPath::has_extension(StringView const& extension) const
|
||||||
{
|
{
|
||||||
return m_string.ends_with(extension, CaseSensitivity::CaseInsensitive);
|
return m_string.ends_with(extension, CaseSensitivity::CaseInsensitive);
|
||||||
|
@ -117,7 +74,51 @@ bool LexicalPath::has_extension(StringView const& extension) const
|
||||||
|
|
||||||
String LexicalPath::canonicalized_path(String path)
|
String LexicalPath::canonicalized_path(String path)
|
||||||
{
|
{
|
||||||
return LexicalPath(move(path)).string();
|
if (path.is_null())
|
||||||
|
return {};
|
||||||
|
|
||||||
|
// NOTE: We never allow an empty m_string, if it's empty, we just set it to '.'.
|
||||||
|
if (path.is_empty())
|
||||||
|
return ".";
|
||||||
|
|
||||||
|
// NOTE: If there are no dots, no '//' and the path doesn't end with a slash, it is already canonical.
|
||||||
|
if (!path.contains("."sv) && !path.contains("//"sv) && !path.ends_with('/'))
|
||||||
|
return path;
|
||||||
|
|
||||||
|
auto is_absolute = path[0] == '/';
|
||||||
|
auto parts = path.split_view('/');
|
||||||
|
size_t approximate_canonical_length = 0;
|
||||||
|
Vector<String> canonical_parts;
|
||||||
|
|
||||||
|
for (auto& part : parts) {
|
||||||
|
if (part == ".")
|
||||||
|
continue;
|
||||||
|
if (part == "..") {
|
||||||
|
if (canonical_parts.is_empty()) {
|
||||||
|
if (is_absolute) {
|
||||||
|
// At the root, .. does nothing.
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (canonical_parts.last() != "..") {
|
||||||
|
// A .. and a previous non-.. part cancel each other.
|
||||||
|
canonical_parts.take_last();
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
approximate_canonical_length += part.length() + 1;
|
||||||
|
canonical_parts.append(part);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (canonical_parts.is_empty() && !is_absolute)
|
||||||
|
canonical_parts.append(".");
|
||||||
|
|
||||||
|
StringBuilder builder(approximate_canonical_length);
|
||||||
|
if (is_absolute)
|
||||||
|
builder.append('/');
|
||||||
|
builder.join('/', canonical_parts);
|
||||||
|
return builder.to_string();
|
||||||
}
|
}
|
||||||
|
|
||||||
String LexicalPath::relative_path(String absolute_path, String const& prefix)
|
String LexicalPath::relative_path(String absolute_path, String const& prefix)
|
||||||
|
|
|
@ -70,8 +70,6 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void canonicalize();
|
|
||||||
|
|
||||||
Vector<StringView> m_parts;
|
Vector<StringView> m_parts;
|
||||||
String m_string;
|
String m_string;
|
||||||
StringView m_dirname;
|
StringView m_dirname;
|
||||||
|
|
Loading…
Reference in a new issue