2016-04-29 21:14:44 +03:00
|
|
|
|
#include "primops.hh"
|
|
|
|
|
#include "eval-inline.hh"
|
|
|
|
|
#include "download.hh"
|
|
|
|
|
#include "store-api.hh"
|
2017-07-27 17:16:08 +03:00
|
|
|
|
#include "pathlocks.hh"
|
2016-04-29 21:14:44 +03:00
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
2016-04-29 22:04:40 +03:00
|
|
|
|
Path exportGit(ref<Store> store, const std::string & uri, const std::string & rev)
|
|
|
|
|
{
|
|
|
|
|
if (!isUri(uri))
|
2016-11-26 01:37:43 +02:00
|
|
|
|
throw EvalError(format("‘%s’ is not a valid URI") % uri);
|
2016-04-29 22:04:40 +03:00
|
|
|
|
|
|
|
|
|
Path cacheDir = getCacheDir() + "/nix/git";
|
|
|
|
|
|
|
|
|
|
if (!pathExists(cacheDir)) {
|
|
|
|
|
createDirs(cacheDir);
|
|
|
|
|
runProgram("git", true, { "init", "--bare", cacheDir });
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-16 17:09:57 +03:00
|
|
|
|
//Activity act(*logger, lvlInfo, format("fetching Git repository ‘%s’") % uri);
|
2016-04-29 22:04:40 +03:00
|
|
|
|
|
2017-07-27 18:02:25 +03:00
|
|
|
|
std::string localRef = hashString(htSHA256, fmt("%s-%s", uri, rev)).to_string(Base32, false);
|
|
|
|
|
|
2016-04-29 22:04:40 +03:00
|
|
|
|
Path localRefFile = cacheDir + "/refs/heads/" + localRef;
|
|
|
|
|
|
2017-07-27 18:02:25 +03:00
|
|
|
|
runProgram("git", true, { "-C", cacheDir, "fetch", "--force", uri, rev + ":" + localRef });
|
2016-04-29 22:04:40 +03:00
|
|
|
|
|
|
|
|
|
std::string commitHash = chomp(readFile(localRefFile));
|
|
|
|
|
|
2017-07-27 17:16:08 +03:00
|
|
|
|
printTalkative("using revision %s of repo ‘%s’", uri, commitHash);
|
|
|
|
|
|
|
|
|
|
Path storeLink = cacheDir + "/" + commitHash + ".link";
|
|
|
|
|
PathLocks storeLinkLock({storeLink}, fmt("waiting for lock on ‘%1%’...", storeLink));
|
|
|
|
|
|
|
|
|
|
if (pathExists(storeLink)) {
|
|
|
|
|
auto storePath = readLink(storeLink);
|
|
|
|
|
store->addTempRoot(storePath);
|
|
|
|
|
if (store->isValidPath(storePath)) {
|
|
|
|
|
return storePath;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-04-29 22:04:40 +03:00
|
|
|
|
|
|
|
|
|
// FIXME: should pipe this, or find some better way to extract a
|
|
|
|
|
// revision.
|
|
|
|
|
auto tar = runProgram("git", true, { "-C", cacheDir, "archive", commitHash });
|
|
|
|
|
|
|
|
|
|
Path tmpDir = createTempDir();
|
|
|
|
|
AutoDelete delTmpDir(tmpDir, true);
|
|
|
|
|
|
|
|
|
|
runProgram("tar", true, { "x", "-C", tmpDir }, tar);
|
|
|
|
|
|
2017-07-27 17:16:08 +03:00
|
|
|
|
auto storePath = store->addToStore("git-export", tmpDir);
|
|
|
|
|
|
|
|
|
|
replaceSymlink(storePath, storeLink);
|
|
|
|
|
|
|
|
|
|
return storePath;
|
2016-04-29 22:04:40 +03:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-29 21:14:44 +03:00
|
|
|
|
static void prim_fetchgit(EvalState & state, const Pos & pos, Value * * args, Value & v)
|
|
|
|
|
{
|
|
|
|
|
// FIXME: cut&paste from fetch().
|
2016-11-26 01:37:43 +02:00
|
|
|
|
if (state.restricted) throw Error("‘fetchgit’ is not allowed in restricted mode");
|
2016-04-29 21:14:44 +03:00
|
|
|
|
|
|
|
|
|
std::string url;
|
|
|
|
|
std::string rev = "master";
|
|
|
|
|
|
|
|
|
|
state.forceValue(*args[0]);
|
|
|
|
|
|
|
|
|
|
if (args[0]->type == tAttrs) {
|
|
|
|
|
|
|
|
|
|
state.forceAttrs(*args[0], pos);
|
|
|
|
|
|
|
|
|
|
for (auto & attr : *args[0]->attrs) {
|
|
|
|
|
string name(attr.name);
|
2017-03-02 12:46:28 +02:00
|
|
|
|
if (name == "url") {
|
|
|
|
|
PathSet context;
|
|
|
|
|
url = state.coerceToString(*attr.pos, *attr.value, context, false, false);
|
|
|
|
|
if (hasPrefix(url, "/")) url = "file://" + url;
|
|
|
|
|
} else if (name == "rev")
|
2016-04-29 21:14:44 +03:00
|
|
|
|
rev = state.forceStringNoCtx(*attr.value, *attr.pos);
|
|
|
|
|
else
|
2017-03-02 12:40:11 +02:00
|
|
|
|
throw EvalError("unsupported argument ‘%s’ to ‘fetchgit’, at %s", attr.name, *attr.pos);
|
2016-04-29 21:14:44 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (url.empty())
|
2016-11-26 01:37:43 +02:00
|
|
|
|
throw EvalError(format("‘url’ argument required, at %1%") % pos);
|
2016-04-29 21:14:44 +03:00
|
|
|
|
|
|
|
|
|
} else
|
|
|
|
|
url = state.forceStringNoCtx(*args[0], pos);
|
|
|
|
|
|
2016-04-29 22:04:40 +03:00
|
|
|
|
Path storePath = exportGit(state.store, url, rev);
|
2016-04-29 21:14:44 +03:00
|
|
|
|
|
|
|
|
|
mkString(v, storePath, PathSet({storePath}));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static RegisterPrimOp r("__fetchgit", 1, prim_fetchgit);
|
|
|
|
|
|
|
|
|
|
}
|