2022-05-04 12:32:21 +00:00
|
|
|
#pragma once
|
2023-04-01 03:18:41 +00:00
|
|
|
///@file
|
2022-05-04 12:32:21 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <string_view>
|
|
|
|
#include <optional>
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
namespace git {
|
|
|
|
|
2023-03-27 01:12:25 +00:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2022-05-04 12:32:21 +00:00
|
|
|
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);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|