mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-13 14:42:51 +00:00
LexicalPath is a 'heavier' object than a String that is mainly used for path parsing and validation, we don't actually need any of that in GitRepo and its related files, so let's move to String :^) I've also done some east-const conversion in the files that I was editing for the string change.
130 lines
3.1 KiB
C++
130 lines
3.1 KiB
C++
/*
|
|
* Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "GitRepo.h"
|
|
#include <LibCore/Command.h>
|
|
|
|
namespace HackStudio {
|
|
|
|
GitRepo::CreateResult GitRepo::try_to_create(String const& repository_root)
|
|
{
|
|
if (!git_is_installed()) {
|
|
return { CreateResult::Type::GitProgramNotFound, nullptr };
|
|
}
|
|
if (!git_repo_exists(repository_root)) {
|
|
return { CreateResult::Type::NoGitRepo, nullptr };
|
|
}
|
|
|
|
return { CreateResult::Type::Success, adopt_ref(*new GitRepo(repository_root)) };
|
|
}
|
|
|
|
RefPtr<GitRepo> GitRepo::initialize_repository(String const& repository_root)
|
|
{
|
|
auto res = command_wrapper({ "init" }, repository_root);
|
|
if (res.is_null())
|
|
return {};
|
|
|
|
VERIFY(git_repo_exists(repository_root));
|
|
return adopt_ref(*new GitRepo(repository_root));
|
|
}
|
|
|
|
Vector<String> GitRepo::unstaged_files() const
|
|
{
|
|
auto modified = modified_files();
|
|
auto untracked = untracked_files();
|
|
modified.extend(move(untracked));
|
|
return modified;
|
|
}
|
|
//
|
|
Vector<String> GitRepo::staged_files() const
|
|
{
|
|
auto raw_result = command({ "diff", "--cached", "--name-only" });
|
|
if (raw_result.is_null())
|
|
return {};
|
|
return parse_files_list(raw_result);
|
|
}
|
|
|
|
Vector<String> GitRepo::modified_files() const
|
|
{
|
|
auto raw_result = command({ "ls-files", "--modified", "--exclude-standard" });
|
|
if (raw_result.is_null())
|
|
return {};
|
|
return parse_files_list(raw_result);
|
|
}
|
|
|
|
Vector<String> GitRepo::untracked_files() const
|
|
{
|
|
auto raw_result = command({ "ls-files", "--others", "--exclude-standard" });
|
|
if (raw_result.is_null())
|
|
return {};
|
|
return parse_files_list(raw_result);
|
|
}
|
|
|
|
Vector<String> GitRepo::parse_files_list(String const& raw_result)
|
|
{
|
|
auto lines = raw_result.split('\n');
|
|
Vector<String> files;
|
|
for (auto const& line : lines) {
|
|
files.empend(line);
|
|
}
|
|
return files;
|
|
}
|
|
|
|
String GitRepo::command(Vector<String> const& command_parts) const
|
|
{
|
|
return command_wrapper(command_parts, m_repository_root);
|
|
}
|
|
|
|
String GitRepo::command_wrapper(Vector<String> const& command_parts, String const& chdir)
|
|
{
|
|
return Core::command("git", command_parts, LexicalPath(chdir));
|
|
}
|
|
|
|
bool GitRepo::git_is_installed()
|
|
{
|
|
return !command_wrapper({ "--help" }, "/").is_null();
|
|
}
|
|
|
|
bool GitRepo::git_repo_exists(String const& repo_root)
|
|
{
|
|
return !command_wrapper({ "status" }, repo_root).is_null();
|
|
}
|
|
|
|
bool GitRepo::stage(String const& file)
|
|
{
|
|
return !command({ "add", file }).is_null();
|
|
}
|
|
|
|
bool GitRepo::unstage(String const& file)
|
|
{
|
|
return !command({ "reset", "HEAD", "--", file }).is_null();
|
|
}
|
|
|
|
bool GitRepo::commit(String const& message)
|
|
{
|
|
return !command({ "commit", "-m", message }).is_null();
|
|
}
|
|
|
|
Optional<String> GitRepo::original_file_content(String const& file) const
|
|
{
|
|
return command({ "show", String::formatted("HEAD:{}", file) });
|
|
}
|
|
|
|
Optional<String> GitRepo::unstaged_diff(String const& file) const
|
|
{
|
|
return command({ "diff", file.characters() });
|
|
}
|
|
|
|
bool GitRepo::is_tracked(String const& file) const
|
|
{
|
|
auto res = command({ "ls-files", file });
|
|
if (res.is_null())
|
|
return false;
|
|
|
|
return !res.is_empty();
|
|
}
|
|
|
|
}
|