mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-08 12:19:37 +03:00
6e19ab2bbc
We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
48 lines
1.3 KiB
C++
48 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "ProjectConfig.h"
|
|
#include "ProjectFile.h"
|
|
#include <AK/LexicalPath.h>
|
|
#include <AK/Noncopyable.h>
|
|
#include <AK/OwnPtr.h>
|
|
#include <LibGUI/FileSystemModel.h>
|
|
|
|
namespace HackStudio {
|
|
|
|
class Project {
|
|
AK_MAKE_NONCOPYABLE(Project);
|
|
AK_MAKE_NONMOVABLE(Project);
|
|
|
|
public:
|
|
static OwnPtr<Project> open_with_root_path(DeprecatedString const& root_path);
|
|
|
|
GUI::FileSystemModel& model() { return *m_model; }
|
|
const GUI::FileSystemModel& model() const { return *m_model; }
|
|
DeprecatedString name() const { return LexicalPath::basename(m_root_path); }
|
|
DeprecatedString root_path() const { return m_root_path; }
|
|
|
|
NonnullRefPtr<ProjectFile> create_file(DeprecatedString const& path) const;
|
|
|
|
void for_each_text_file(Function<void(ProjectFile const&)>) const;
|
|
DeprecatedString to_absolute_path(DeprecatedString const&) const;
|
|
bool project_is_serenity() const;
|
|
|
|
static constexpr auto config_file_path = ".hackstudio/config.json"sv;
|
|
NonnullOwnPtr<ProjectConfig> config() const;
|
|
|
|
private:
|
|
explicit Project(DeprecatedString const& root_path);
|
|
|
|
RefPtr<GUI::FileSystemModel> m_model;
|
|
|
|
DeprecatedString m_root_path;
|
|
};
|
|
|
|
}
|