serenity/AK/LexicalPath.h

59 lines
1.4 KiB
C
Raw Normal View History

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@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);
2018-12-03 00:38:22 +00:00
bool is_valid() const { return m_is_valid; }
2020-04-27 12:09:08 +00:00
bool is_absolute() const { return m_is_absolute; }
const String& string() const { return m_string; }
2020-01-07 11:35:45 +00:00
const String& dirname() const { return m_dirname; }
const String& basename() const { return m_basename; }
const String& title() const { return m_title; }
const String& extension() const { return m_extension; }
const Vector<String>& parts() const { return m_parts; }
bool has_extension(const StringView&) const;
static String canonicalized_path(String);
static String relative_path(String absolute_path, String const& prefix);
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;
2018-12-03 00:38:22 +00:00
bool m_is_valid { false };
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, const LexicalPath& 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;