mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
e68676e6c8
Since a26be9f3b8
, the same parser is used
to parse the result of sourcehut’s `HEAD` endpoint (coming from [git
dumb protocol]) and the output of `git ls-remote`. However, they are very
slightly different (the former doesn’t specify the current reference
since it’s implied to be `HEAD`).
Unify both, and make the parser a bit more robust and understandable (by
making it more typed and adding tests for it)
[git dumb protocol]: https://git-scm.com/book/en/v2/Git-Internals-Transfer-Protocols#_the_dumb_protocol
40 lines
739 B
C++
40 lines
739 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <string_view>
|
|
#include <optional>
|
|
|
|
namespace nix {
|
|
|
|
namespace git {
|
|
|
|
// A line from the output of `git ls-remote --symref`.
|
|
//
|
|
// These can be of two kinds:
|
|
//
|
|
// - Symbolic references of the form
|
|
//
|
|
// ref: {target} {reference}
|
|
//
|
|
// where {target} is itself a reference and {reference} is optional
|
|
//
|
|
// - Object references of the form
|
|
//
|
|
// {target} {reference}
|
|
//
|
|
// where {target} is a commit id and {reference} is mandatory
|
|
struct LsRemoteRefLine {
|
|
enum struct Kind {
|
|
Symbolic,
|
|
Object
|
|
};
|
|
Kind kind;
|
|
std::string target;
|
|
std::optional<std::string> reference;
|
|
};
|
|
|
|
std::optional<LsRemoteRefLine> parseLsRemoteLine(std::string_view line);
|
|
|
|
}
|
|
|
|
}
|