2020-01-21 15:27:53 +00:00
|
|
|
|
#include "fetchers.hh"
|
|
|
|
|
#include "parse.hh"
|
|
|
|
|
#include "globals.hh"
|
|
|
|
|
#include "tarfile.hh"
|
|
|
|
|
#include "store-api.hh"
|
|
|
|
|
#include "regex.hh"
|
|
|
|
|
|
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
|
|
|
|
|
using namespace std::string_literals;
|
|
|
|
|
|
|
|
|
|
namespace nix::fetchers {
|
|
|
|
|
|
|
|
|
|
static Path getCacheInfoPathFor(const std::string & name, const Hash & rev)
|
|
|
|
|
{
|
|
|
|
|
Path cacheDir = getCacheDir() + "/nix/git-revs-v2";
|
|
|
|
|
std::string linkName =
|
|
|
|
|
name == "source"
|
|
|
|
|
? rev.gitRev()
|
|
|
|
|
: hashString(htSHA512, name + std::string("\0"s) + rev.gitRev()).to_string(Base32, false);
|
|
|
|
|
return cacheDir + "/" + linkName + ".link";
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-04 20:55:57 +00:00
|
|
|
|
static std::string readHead(const Path & path)
|
|
|
|
|
{
|
|
|
|
|
return chomp(runProgram("git", true, { "-C", path, "rev-parse", "--abbrev-ref", "HEAD" }));
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-01 22:54:20 +00:00
|
|
|
|
static void cacheGitInfo(
|
|
|
|
|
Store & store,
|
|
|
|
|
const std::string & name,
|
|
|
|
|
const Tree & tree,
|
|
|
|
|
const Hash & rev)
|
2020-01-21 15:27:53 +00:00
|
|
|
|
{
|
2020-03-16 12:20:32 +00:00
|
|
|
|
if (!tree.info.revCount || !tree.info.lastModified) return;
|
|
|
|
|
|
2020-01-21 15:27:53 +00:00
|
|
|
|
nlohmann::json json;
|
|
|
|
|
json["storePath"] = store.printStorePath(tree.storePath);
|
|
|
|
|
json["name"] = name;
|
2020-02-01 22:54:20 +00:00
|
|
|
|
json["rev"] = rev.gitRev();
|
2020-02-01 15:41:54 +00:00
|
|
|
|
json["revCount"] = *tree.info.revCount;
|
|
|
|
|
json["lastModified"] = *tree.info.lastModified;
|
2020-01-21 15:27:53 +00:00
|
|
|
|
|
2020-02-01 22:54:20 +00:00
|
|
|
|
auto cacheInfoPath = getCacheInfoPathFor(name, rev);
|
2020-01-21 15:27:53 +00:00
|
|
|
|
createDirs(dirOf(cacheInfoPath));
|
|
|
|
|
writeFile(cacheInfoPath, json.dump());
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-01 22:54:20 +00:00
|
|
|
|
static std::optional<std::pair<Hash, Tree>> lookupGitInfo(
|
2020-01-21 15:27:53 +00:00
|
|
|
|
ref<Store> store,
|
|
|
|
|
const std::string & name,
|
|
|
|
|
const Hash & rev)
|
|
|
|
|
{
|
|
|
|
|
try {
|
|
|
|
|
auto json = nlohmann::json::parse(readFile(getCacheInfoPathFor(name, rev)));
|
|
|
|
|
|
|
|
|
|
assert(json["name"] == name && Hash((std::string) json["rev"], htSHA1) == rev);
|
|
|
|
|
|
|
|
|
|
auto storePath = store->parseStorePath((std::string) json["storePath"]);
|
|
|
|
|
|
|
|
|
|
if (store->isValidPath(storePath)) {
|
2020-02-01 22:54:20 +00:00
|
|
|
|
return {{rev, Tree{
|
2020-02-02 11:28:56 +00:00
|
|
|
|
.actualPath = store->toRealPath(storePath),
|
2020-01-21 15:27:53 +00:00
|
|
|
|
.storePath = std::move(storePath),
|
2020-02-01 15:41:54 +00:00
|
|
|
|
.info = TreeInfo {
|
|
|
|
|
.revCount = json["revCount"],
|
|
|
|
|
.lastModified = json["lastModified"],
|
|
|
|
|
}
|
2020-02-01 22:54:20 +00:00
|
|
|
|
}}};
|
2020-01-21 15:27:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} catch (SysError & e) {
|
|
|
|
|
if (e.errNo != ENOENT) throw;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct GitInput : Input
|
|
|
|
|
{
|
|
|
|
|
ParsedURL url;
|
|
|
|
|
std::optional<std::string> ref;
|
|
|
|
|
std::optional<Hash> rev;
|
|
|
|
|
|
|
|
|
|
GitInput(const ParsedURL & url) : url(url)
|
2020-01-31 18:16:40 +00:00
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
std::string type() const override { return "git"; }
|
2020-01-21 15:27:53 +00:00
|
|
|
|
|
|
|
|
|
bool operator ==(const Input & other) const override
|
|
|
|
|
{
|
|
|
|
|
auto other2 = dynamic_cast<const GitInput *>(&other);
|
|
|
|
|
return
|
|
|
|
|
other2
|
2020-01-29 21:53:03 +00:00
|
|
|
|
&& url == other2->url
|
2020-01-21 15:27:53 +00:00
|
|
|
|
&& rev == other2->rev
|
|
|
|
|
&& ref == other2->ref;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool isImmutable() const override
|
|
|
|
|
{
|
|
|
|
|
return (bool) rev;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::optional<std::string> getRef() const override { return ref; }
|
|
|
|
|
|
|
|
|
|
std::optional<Hash> getRev() const override { return rev; }
|
|
|
|
|
|
|
|
|
|
std::string to_string() const override
|
|
|
|
|
{
|
|
|
|
|
ParsedURL url2(url);
|
2020-02-02 12:06:00 +00:00
|
|
|
|
if (url2.scheme != "git") url2.scheme = "git+" + url2.scheme;
|
2020-01-21 15:27:53 +00:00
|
|
|
|
if (rev) url2.query.insert_or_assign("rev", rev->gitRev());
|
|
|
|
|
if (ref) url2.query.insert_or_assign("ref", *ref);
|
|
|
|
|
return url2.to_string();
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-31 18:16:40 +00:00
|
|
|
|
Attrs toAttrsInternal() const override
|
|
|
|
|
{
|
|
|
|
|
Attrs attrs;
|
|
|
|
|
attrs.emplace("url", url.to_string());
|
|
|
|
|
if (ref)
|
|
|
|
|
attrs.emplace("ref", *ref);
|
|
|
|
|
if (rev)
|
|
|
|
|
attrs.emplace("rev", rev->gitRev());
|
|
|
|
|
return attrs;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-21 15:27:53 +00:00
|
|
|
|
void clone(const Path & destDir) const override
|
|
|
|
|
{
|
|
|
|
|
auto [isLocal, actualUrl] = getActualUrl();
|
|
|
|
|
|
|
|
|
|
Strings args = {"clone"};
|
|
|
|
|
|
|
|
|
|
args.push_back(actualUrl);
|
|
|
|
|
|
|
|
|
|
if (ref) {
|
|
|
|
|
args.push_back("--branch");
|
|
|
|
|
args.push_back(*ref);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (rev) throw Error("cloning a specific revision is not implemented");
|
|
|
|
|
|
|
|
|
|
args.push_back(destDir);
|
|
|
|
|
|
|
|
|
|
runProgram("git", true, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<const Input> applyOverrides(
|
|
|
|
|
std::optional<std::string> ref,
|
|
|
|
|
std::optional<Hash> rev) const override
|
|
|
|
|
{
|
|
|
|
|
if (!ref && !rev) return shared_from_this();
|
|
|
|
|
|
|
|
|
|
auto res = std::make_shared<GitInput>(*this);
|
|
|
|
|
|
|
|
|
|
if (ref) res->ref = ref;
|
|
|
|
|
if (rev) res->rev = rev;
|
|
|
|
|
|
|
|
|
|
if (!res->ref && res->rev)
|
|
|
|
|
throw Error("Git input '%s' has a commit hash but no branch/tag name", res->to_string());
|
|
|
|
|
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-22 20:26:19 +00:00
|
|
|
|
std::optional<Path> getSourcePath() const override
|
2020-01-21 15:27:53 +00:00
|
|
|
|
{
|
2020-02-02 12:06:00 +00:00
|
|
|
|
if (url.scheme == "file" && !ref && !rev)
|
2020-01-21 15:27:53 +00:00
|
|
|
|
return url.path;
|
|
|
|
|
return {};
|
|
|
|
|
}
|
2020-03-16 12:20:32 +00:00
|
|
|
|
|
2020-02-05 13:48:49 +00:00
|
|
|
|
void markChangedFile(std::string_view file, std::optional<std::string> commitMsg) const override
|
2020-02-02 15:32:46 +00:00
|
|
|
|
{
|
|
|
|
|
auto sourcePath = getSourcePath();
|
|
|
|
|
assert(sourcePath);
|
2020-02-05 13:48:49 +00:00
|
|
|
|
|
2020-02-02 15:32:46 +00:00
|
|
|
|
runProgram("git", true,
|
2020-02-05 13:48:49 +00:00
|
|
|
|
{ "-C", *sourcePath, "add", "--force", "--intent-to-add", std::string(file) });
|
|
|
|
|
|
|
|
|
|
if (commitMsg)
|
|
|
|
|
runProgram("git", true,
|
|
|
|
|
{ "-C", *sourcePath, "commit", std::string(file), "-m", *commitMsg });
|
2020-02-02 15:32:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-21 15:27:53 +00:00
|
|
|
|
std::pair<bool, std::string> getActualUrl() const
|
|
|
|
|
{
|
2020-02-02 12:06:00 +00:00
|
|
|
|
// Don't clone file:// URIs (but otherwise treat them the
|
2020-01-21 15:27:53 +00:00
|
|
|
|
// same as remote URIs, i.e. don't use the working tree or
|
|
|
|
|
// HEAD).
|
|
|
|
|
static bool forceHttp = getEnv("_NIX_FORCE_HTTP") == "1"; // for testing
|
2020-02-02 12:06:00 +00:00
|
|
|
|
bool isLocal = url.scheme == "file" && !forceHttp;
|
|
|
|
|
return {isLocal, isLocal ? url.path : url.base};
|
2020-01-21 15:27:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::pair<Tree, std::shared_ptr<const Input>> fetchTreeInternal(nix::ref<Store> store) const override
|
|
|
|
|
{
|
|
|
|
|
auto name = "source";
|
|
|
|
|
|
|
|
|
|
auto input = std::make_shared<GitInput>(*this);
|
|
|
|
|
|
|
|
|
|
assert(!rev || rev->type == htSHA1);
|
|
|
|
|
|
|
|
|
|
if (rev) {
|
2020-02-01 22:54:20 +00:00
|
|
|
|
if (auto tree = lookupGitInfo(store, name, *rev)) {
|
|
|
|
|
input->rev = tree->first;
|
|
|
|
|
return {std::move(tree->second), input};
|
|
|
|
|
}
|
2020-01-21 15:27:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-22 20:26:19 +00:00
|
|
|
|
auto [isLocal, actualUrl_] = getActualUrl();
|
|
|
|
|
auto actualUrl = actualUrl_; // work around clang bug
|
2020-01-21 15:27:53 +00:00
|
|
|
|
|
|
|
|
|
// If this is a local directory and no ref or revision is
|
|
|
|
|
// given, then allow the use of an unclean working tree.
|
|
|
|
|
if (!input->ref && !input->rev && isLocal) {
|
|
|
|
|
bool clean = false;
|
|
|
|
|
|
|
|
|
|
/* Check whether this repo has any commits. There are
|
|
|
|
|
probably better ways to do this. */
|
2019-11-15 12:04:42 +00:00
|
|
|
|
auto gitDir = actualUrl + "/.git";
|
|
|
|
|
auto commonGitDir = chomp(runProgram(
|
|
|
|
|
"git",
|
|
|
|
|
true,
|
|
|
|
|
{ "-C", actualUrl, "rev-parse", "--git-common-dir" }
|
|
|
|
|
));
|
|
|
|
|
if (commonGitDir != ".git")
|
|
|
|
|
gitDir = commonGitDir;
|
|
|
|
|
|
|
|
|
|
bool haveCommits = !readDirectory(gitDir + "/refs/heads").empty();
|
2020-01-21 15:27:53 +00:00
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
if (haveCommits) {
|
|
|
|
|
runProgram("git", true, { "-C", actualUrl, "diff-index", "--quiet", "HEAD", "--" });
|
|
|
|
|
clean = true;
|
|
|
|
|
}
|
|
|
|
|
} catch (ExecError & e) {
|
|
|
|
|
if (!WIFEXITED(e.status) || WEXITSTATUS(e.status) != 1) throw;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!clean) {
|
|
|
|
|
|
|
|
|
|
/* This is an unclean working tree. So copy all tracked files. */
|
|
|
|
|
|
|
|
|
|
if (!settings.allowDirty)
|
|
|
|
|
throw Error("Git tree '%s' is dirty", actualUrl);
|
|
|
|
|
|
|
|
|
|
if (settings.warnDirty)
|
|
|
|
|
warn("Git tree '%s' is dirty", actualUrl);
|
|
|
|
|
|
|
|
|
|
auto files = tokenizeString<std::set<std::string>>(
|
|
|
|
|
runProgram("git", true, { "-C", actualUrl, "ls-files", "-z" }), "\0"s);
|
|
|
|
|
|
|
|
|
|
PathFilter filter = [&](const Path & p) -> bool {
|
|
|
|
|
assert(hasPrefix(p, actualUrl));
|
|
|
|
|
std::string file(p, actualUrl.size() + 1);
|
|
|
|
|
|
|
|
|
|
auto st = lstat(p);
|
|
|
|
|
|
|
|
|
|
if (S_ISDIR(st.st_mode)) {
|
|
|
|
|
auto prefix = file + "/";
|
|
|
|
|
auto i = files.lower_bound(prefix);
|
|
|
|
|
return i != files.end() && hasPrefix(*i, prefix);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return files.count(file);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
auto storePath = store->addToStore("source", actualUrl, true, htSHA256, filter);
|
|
|
|
|
|
|
|
|
|
auto tree = Tree {
|
|
|
|
|
.actualPath = store->printStorePath(storePath),
|
|
|
|
|
.storePath = std::move(storePath),
|
2020-02-01 15:41:54 +00:00
|
|
|
|
.info = TreeInfo {
|
|
|
|
|
// FIXME: maybe we should use the timestamp of the last
|
|
|
|
|
// modified dirty file?
|
|
|
|
|
.lastModified = haveCommits ? std::stoull(runProgram("git", true, { "-C", actualUrl, "log", "-1", "--format=%ct", "HEAD" })) : 0,
|
|
|
|
|
}
|
2020-01-21 15:27:53 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return {std::move(tree), input};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-04 20:55:57 +00:00
|
|
|
|
if (!input->ref) input->ref = isLocal ? readHead(actualUrl) : "master";
|
2020-01-21 15:27:53 +00:00
|
|
|
|
|
|
|
|
|
Path repoDir;
|
|
|
|
|
|
|
|
|
|
if (isLocal) {
|
|
|
|
|
|
|
|
|
|
if (!input->rev)
|
|
|
|
|
input->rev = Hash(chomp(runProgram("git", true, { "-C", actualUrl, "rev-parse", *input->ref })), htSHA1);
|
|
|
|
|
|
|
|
|
|
repoDir = actualUrl;
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
Path cacheDir = getCacheDir() + "/nix/gitv3/" + hashString(htSHA256, actualUrl).to_string(Base32, false);
|
|
|
|
|
repoDir = cacheDir;
|
|
|
|
|
|
|
|
|
|
if (!pathExists(cacheDir)) {
|
|
|
|
|
createDirs(dirOf(cacheDir));
|
|
|
|
|
runProgram("git", true, { "init", "--bare", repoDir });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Path localRefFile =
|
|
|
|
|
input->ref->compare(0, 5, "refs/") == 0
|
|
|
|
|
? cacheDir + "/" + *input->ref
|
|
|
|
|
: cacheDir + "/refs/heads/" + *input->ref;
|
|
|
|
|
|
|
|
|
|
bool doFetch;
|
|
|
|
|
time_t now = time(0);
|
|
|
|
|
|
|
|
|
|
/* If a rev was specified, we need to fetch if it's not in the
|
|
|
|
|
repo. */
|
|
|
|
|
if (input->rev) {
|
|
|
|
|
try {
|
|
|
|
|
runProgram("git", true, { "-C", repoDir, "cat-file", "-e", input->rev->gitRev() });
|
|
|
|
|
doFetch = false;
|
|
|
|
|
} catch (ExecError & e) {
|
|
|
|
|
if (WIFEXITED(e.status)) {
|
|
|
|
|
doFetch = true;
|
|
|
|
|
} else {
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
/* If the local ref is older than ‘tarball-ttl’ seconds, do a
|
|
|
|
|
git fetch to update the local ref to the remote ref. */
|
|
|
|
|
struct stat st;
|
|
|
|
|
doFetch = stat(localRefFile.c_str(), &st) != 0 ||
|
|
|
|
|
(uint64_t) st.st_mtime + settings.tarballTtl <= (uint64_t) now;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (doFetch) {
|
|
|
|
|
Activity act(*logger, lvlTalkative, actUnknown, fmt("fetching Git repository '%s'", actualUrl));
|
|
|
|
|
|
|
|
|
|
// FIXME: git stderr messes up our progress indicator, so
|
|
|
|
|
// we're using --quiet for now. Should process its stderr.
|
|
|
|
|
try {
|
|
|
|
|
runProgram("git", true, { "-C", repoDir, "fetch", "--quiet", "--force", "--", actualUrl, fmt("%s:%s", *input->ref, *input->ref) });
|
|
|
|
|
} catch (Error & e) {
|
|
|
|
|
if (!pathExists(localRefFile)) throw;
|
|
|
|
|
warn("could not update local clone of Git repository '%s'; continuing with the most recent version", actualUrl);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct timeval times[2];
|
|
|
|
|
times[0].tv_sec = now;
|
|
|
|
|
times[0].tv_usec = 0;
|
|
|
|
|
times[1].tv_sec = now;
|
|
|
|
|
times[1].tv_usec = 0;
|
|
|
|
|
|
|
|
|
|
utimes(localRefFile.c_str(), times);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!input->rev)
|
|
|
|
|
input->rev = Hash(chomp(readFile(localRefFile)), htSHA1);
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-16 12:20:32 +00:00
|
|
|
|
bool isShallow = chomp(runProgram("git", true, { "-C", repoDir, "rev-parse", "--is-shallow-repository" })) == "true";
|
|
|
|
|
|
2020-02-01 22:54:20 +00:00
|
|
|
|
if (auto tree = lookupGitInfo(store, name, *input->rev)) {
|
|
|
|
|
assert(*input->rev == tree->first);
|
2020-03-16 12:20:32 +00:00
|
|
|
|
if (isShallow) tree->second.info.revCount.reset();
|
2020-02-01 22:54:20 +00:00
|
|
|
|
return {std::move(tree->second), input};
|
|
|
|
|
}
|
2020-01-21 15:27:53 +00:00
|
|
|
|
|
|
|
|
|
// FIXME: check whether rev is an ancestor of ref.
|
|
|
|
|
|
|
|
|
|
printTalkative("using revision %s of repo '%s'", input->rev->gitRev(), actualUrl);
|
|
|
|
|
|
|
|
|
|
// FIXME: should pipe this, or find some better way to extract a
|
|
|
|
|
// revision.
|
|
|
|
|
auto source = sinkToSource([&](Sink & sink) {
|
|
|
|
|
RunOptions gitOptions("git", { "-C", repoDir, "archive", input->rev->gitRev() });
|
|
|
|
|
gitOptions.standardOut = &sink;
|
|
|
|
|
runProgram2(gitOptions);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
Path tmpDir = createTempDir();
|
|
|
|
|
AutoDelete delTmpDir(tmpDir, true);
|
|
|
|
|
|
|
|
|
|
unpackTarfile(*source, tmpDir);
|
|
|
|
|
|
|
|
|
|
auto storePath = store->addToStore(name, tmpDir);
|
2020-03-16 12:20:32 +00:00
|
|
|
|
|
2020-01-21 15:27:53 +00:00
|
|
|
|
auto lastModified = std::stoull(runProgram("git", true, { "-C", repoDir, "log", "-1", "--format=%ct", input->rev->gitRev() }));
|
|
|
|
|
|
|
|
|
|
auto tree = Tree {
|
2020-02-02 11:28:56 +00:00
|
|
|
|
.actualPath = store->toRealPath(storePath),
|
2020-01-21 15:27:53 +00:00
|
|
|
|
.storePath = std::move(storePath),
|
2020-02-01 15:41:54 +00:00
|
|
|
|
.info = TreeInfo {
|
2020-03-16 12:20:32 +00:00
|
|
|
|
.revCount =
|
|
|
|
|
!isShallow
|
|
|
|
|
? std::optional(std::stoull(runProgram("git", true, { "-C", repoDir, "rev-list", "--count", input->rev->gitRev() })))
|
|
|
|
|
: std::nullopt,
|
2020-02-01 15:41:54 +00:00
|
|
|
|
.lastModified = lastModified
|
|
|
|
|
}
|
2020-01-21 15:27:53 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-01 22:54:20 +00:00
|
|
|
|
cacheGitInfo(*store, name, tree, *input->rev);
|
2020-01-21 15:27:53 +00:00
|
|
|
|
|
|
|
|
|
return {std::move(tree), input};
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct GitInputScheme : InputScheme
|
|
|
|
|
{
|
|
|
|
|
std::unique_ptr<Input> inputFromURL(const ParsedURL & url) override
|
|
|
|
|
{
|
|
|
|
|
if (url.scheme != "git" &&
|
|
|
|
|
url.scheme != "git+http" &&
|
|
|
|
|
url.scheme != "git+https" &&
|
|
|
|
|
url.scheme != "git+ssh" &&
|
|
|
|
|
url.scheme != "git+file") return nullptr;
|
|
|
|
|
|
2020-01-31 18:35:28 +00:00
|
|
|
|
auto url2(url);
|
2020-02-02 12:06:00 +00:00
|
|
|
|
if (hasPrefix(url2.scheme, "git+")) url2.scheme = std::string(url2.scheme, 4);
|
2020-01-31 18:35:28 +00:00
|
|
|
|
url2.query.clear();
|
2020-01-21 15:27:53 +00:00
|
|
|
|
|
2020-01-31 18:35:28 +00:00
|
|
|
|
Input::Attrs attrs;
|
|
|
|
|
attrs.emplace("type", "git");
|
2020-01-29 21:53:03 +00:00
|
|
|
|
|
2020-01-21 15:27:53 +00:00
|
|
|
|
for (auto &[name, value] : url.query) {
|
2020-01-31 18:35:28 +00:00
|
|
|
|
if (name == "rev" || name == "ref")
|
|
|
|
|
attrs.emplace(name, value);
|
|
|
|
|
else
|
|
|
|
|
url2.query.emplace(name, value);
|
2020-01-21 15:27:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-31 18:35:28 +00:00
|
|
|
|
attrs.emplace("url", url2.to_string());
|
|
|
|
|
|
|
|
|
|
return inputFromAttrs(attrs);
|
2020-01-21 15:27:53 +00:00
|
|
|
|
}
|
2020-01-31 18:16:40 +00:00
|
|
|
|
|
|
|
|
|
std::unique_ptr<Input> inputFromAttrs(const Input::Attrs & attrs) override
|
|
|
|
|
{
|
|
|
|
|
if (maybeGetStrAttr(attrs, "type") != "git") return {};
|
2020-01-31 18:35:28 +00:00
|
|
|
|
|
|
|
|
|
for (auto & [name, value] : attrs)
|
|
|
|
|
if (name != "type" && name != "url" && name != "ref" && name != "rev")
|
|
|
|
|
throw Error("unsupported Git input attribute '%s'", name);
|
|
|
|
|
|
2020-01-31 18:16:40 +00:00
|
|
|
|
auto input = std::make_unique<GitInput>(parseURL(getStrAttr(attrs, "url")));
|
2020-01-31 18:35:28 +00:00
|
|
|
|
if (auto ref = maybeGetStrAttr(attrs, "ref")) {
|
|
|
|
|
if (!std::regex_match(*ref, refRegex))
|
|
|
|
|
throw BadURL("invalid Git branch/tag name '%s'", *ref);
|
|
|
|
|
input->ref = *ref;
|
|
|
|
|
}
|
2020-01-31 18:16:40 +00:00
|
|
|
|
if (auto rev = maybeGetStrAttr(attrs, "rev"))
|
|
|
|
|
input->rev = Hash(*rev, htSHA1);
|
|
|
|
|
return input;
|
|
|
|
|
}
|
2020-01-21 15:27:53 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static auto r1 = OnStartup([] { registerInputScheme(std::make_unique<GitInputScheme>()); });
|
|
|
|
|
|
|
|
|
|
}
|