serenity/AK/LexicalPath.h

70 lines
1.7 KiB
C
Raw Normal View History

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2021, Max Wipfli <max.wipfli@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/String.h>
#include <AK/Vector.h>
namespace AK {
class LexicalPath {
public:
LexicalPath() = default;
explicit LexicalPath(String);
2020-04-27 12:09:08 +00:00
bool is_absolute() const { return m_is_absolute; }
String const& string() const { return m_string; }
String const& dirname() const { return m_dirname; }
String const& basename() const { return m_basename; }
String const& title() const { return m_title; }
String const& extension() const { return m_extension; }
Vector<String> const& parts() const { return m_parts; }
bool has_extension(StringView const&) const;
void append(String const& component);
static String canonicalized_path(String);
static String relative_path(String absolute_path, String const& prefix);
template<typename... S>
static LexicalPath join(String const& first, S&&... rest)
{
StringBuilder builder;
builder.append(first);
((builder.append('/'), builder.append(forward<S>(rest))), ...);
return LexicalPath { builder.to_string() };
}
private:
void canonicalize();
Vector<String> m_parts;
String m_string;
2020-01-07 11:35:45 +00:00
String m_dirname;
String m_basename;
String m_title;
String m_extension;
2020-04-27 12:09:08 +00:00
bool m_is_absolute { false };
};
2020-10-08 12:09:38 +00:00
template<>
struct Formatter<LexicalPath> : Formatter<StringView> {
void format(FormatBuilder& builder, LexicalPath const& value)
2020-10-08 12:09:38 +00:00
{
Formatter<StringView>::format(builder, value.string());
2020-10-08 12:09:38 +00:00
}
};
};
using AK::LexicalPath;