2017-10-30 10:49:03 +00:00
|
|
|
|
#include "fetchgit.hh"
|
2016-04-29 18:14:44 +00:00
|
|
|
|
#include "primops.hh"
|
|
|
|
|
#include "eval-inline.hh"
|
|
|
|
|
#include "download.hh"
|
|
|
|
|
#include "store-api.hh"
|
2017-07-27 14:16:08 +00:00
|
|
|
|
#include "pathlocks.hh"
|
2016-04-29 18:14:44 +00:00
|
|
|
|
|
2017-07-27 15:15:09 +00:00
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
2017-07-27 16:08:23 +00:00
|
|
|
|
#include <regex>
|
|
|
|
|
|
2017-10-30 10:49:03 +00:00
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
|
2017-10-30 08:57:38 +00:00
|
|
|
|
using namespace std::string_literals;
|
|
|
|
|
|
2016-04-29 18:14:44 +00:00
|
|
|
|
namespace nix {
|
|
|
|
|
|
2017-10-30 10:49:03 +00:00
|
|
|
|
GitInfo exportGit(ref<Store> store, const std::string & uri,
|
2017-10-30 08:57:38 +00:00
|
|
|
|
const std::string & ref, const std::string & rev,
|
|
|
|
|
const std::string & name)
|
2016-04-29 19:04:40 +00:00
|
|
|
|
{
|
2017-07-27 16:08:23 +00:00
|
|
|
|
if (rev != "") {
|
|
|
|
|
std::regex revRegex("^[0-9a-fA-F]{40}$");
|
|
|
|
|
if (!std::regex_match(rev, revRegex))
|
2017-07-30 11:27:57 +00:00
|
|
|
|
throw Error("invalid Git revision '%s'", rev);
|
2017-07-27 16:08:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-29 19:04:40 +00:00
|
|
|
|
Path cacheDir = getCacheDir() + "/nix/git";
|
|
|
|
|
|
|
|
|
|
if (!pathExists(cacheDir)) {
|
|
|
|
|
createDirs(cacheDir);
|
|
|
|
|
runProgram("git", true, { "init", "--bare", cacheDir });
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-27 16:08:23 +00:00
|
|
|
|
std::string localRef = hashString(htSHA256, fmt("%s-%s", uri, ref)).to_string(Base32, false);
|
2017-07-27 15:02:25 +00:00
|
|
|
|
|
2016-04-29 19:04:40 +00:00
|
|
|
|
Path localRefFile = cacheDir + "/refs/heads/" + localRef;
|
|
|
|
|
|
2017-07-27 15:15:09 +00:00
|
|
|
|
/* If the local ref is older than ‘tarball-ttl’ seconds, do a git
|
|
|
|
|
fetch to update the local ref to the remote ref. */
|
|
|
|
|
time_t now = time(0);
|
|
|
|
|
struct stat st;
|
|
|
|
|
if (stat(localRefFile.c_str(), &st) != 0 ||
|
|
|
|
|
st.st_mtime < now - settings.tarballTtl)
|
|
|
|
|
{
|
2017-10-30 09:05:43 +00:00
|
|
|
|
Activity act(*logger, lvlTalkative, actUnknown, fmt("fetching Git repository '%s'", uri));
|
|
|
|
|
|
|
|
|
|
// FIXME: git stderr messes up our progress indicator, so
|
|
|
|
|
// we're using --quiet for now. Should process its stderr.
|
|
|
|
|
runProgram("git", true, { "-C", cacheDir, "fetch", "--quiet", "--force", "--", uri, ref + ":" + localRef });
|
2017-07-27 15:15:09 +00:00
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
2016-04-29 19:04:40 +00:00
|
|
|
|
|
2017-07-27 16:08:23 +00:00
|
|
|
|
// FIXME: check whether rev is an ancestor of ref.
|
2017-10-30 10:49:03 +00:00
|
|
|
|
GitInfo gitInfo;
|
|
|
|
|
gitInfo.rev = rev != "" ? rev : chomp(readFile(localRefFile));
|
|
|
|
|
gitInfo.shortRev = std::string(gitInfo.rev, 0, 7);
|
2016-04-29 19:04:40 +00:00
|
|
|
|
|
2017-10-30 10:49:03 +00:00
|
|
|
|
printTalkative("using revision %s of repo '%s'", uri, gitInfo.rev);
|
2017-07-27 14:16:08 +00:00
|
|
|
|
|
2017-10-30 10:49:03 +00:00
|
|
|
|
std::string storeLinkName = hashString(htSHA512, name + std::string("\0"s) + gitInfo.rev).to_string(Base32, false);
|
2017-10-30 08:57:38 +00:00
|
|
|
|
Path storeLink = cacheDir + "/" + storeLinkName + ".link";
|
2017-07-30 11:27:57 +00:00
|
|
|
|
PathLocks storeLinkLock({storeLink}, fmt("waiting for lock on '%1%'...", storeLink));
|
2017-07-27 14:16:08 +00:00
|
|
|
|
|
2017-10-30 10:49:03 +00:00
|
|
|
|
try {
|
|
|
|
|
// FIXME: doesn't handle empty lines
|
|
|
|
|
auto json = nlohmann::json::parse(readFile(storeLink));
|
|
|
|
|
|
|
|
|
|
assert(json["uri"] == uri && json["name"] == name && json["rev"] == gitInfo.rev);
|
|
|
|
|
|
|
|
|
|
gitInfo.storePath = json["storePath"];
|
|
|
|
|
|
|
|
|
|
if (store->isValidPath(gitInfo.storePath)) {
|
|
|
|
|
gitInfo.revCount = json["revCount"];
|
|
|
|
|
return gitInfo;
|
2017-07-27 14:16:08 +00:00
|
|
|
|
}
|
2017-10-30 10:49:03 +00:00
|
|
|
|
|
|
|
|
|
} catch (SysError & e) {
|
|
|
|
|
if (e.errNo != ENOENT) throw;
|
2017-07-27 14:16:08 +00:00
|
|
|
|
}
|
2016-04-29 19:04:40 +00:00
|
|
|
|
|
|
|
|
|
// FIXME: should pipe this, or find some better way to extract a
|
|
|
|
|
// revision.
|
2017-10-30 10:49:03 +00:00
|
|
|
|
auto tar = runProgram("git", true, { "-C", cacheDir, "archive", gitInfo.rev });
|
2016-04-29 19:04:40 +00:00
|
|
|
|
|
|
|
|
|
Path tmpDir = createTempDir();
|
|
|
|
|
AutoDelete delTmpDir(tmpDir, true);
|
|
|
|
|
|
|
|
|
|
runProgram("tar", true, { "x", "-C", tmpDir }, tar);
|
|
|
|
|
|
2017-10-30 10:49:03 +00:00
|
|
|
|
gitInfo.storePath = store->addToStore(name, tmpDir);
|
|
|
|
|
|
|
|
|
|
gitInfo.revCount = std::stoull(runProgram("git", true, { "-C", cacheDir, "rev-list", "--count", gitInfo.rev }));
|
|
|
|
|
|
|
|
|
|
nlohmann::json json;
|
|
|
|
|
json["storePath"] = gitInfo.storePath;
|
|
|
|
|
json["uri"] = uri;
|
|
|
|
|
json["name"] = name;
|
|
|
|
|
json["rev"] = gitInfo.rev;
|
|
|
|
|
json["revCount"] = gitInfo.revCount;
|
2017-07-27 14:16:08 +00:00
|
|
|
|
|
2017-10-30 10:49:03 +00:00
|
|
|
|
writeFile(storeLink, json.dump());
|
2017-07-27 14:16:08 +00:00
|
|
|
|
|
2017-10-30 10:49:03 +00:00
|
|
|
|
return gitInfo;
|
2016-04-29 19:04:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-30 09:25:08 +00:00
|
|
|
|
static void prim_fetchGit(EvalState & state, const Pos & pos, Value * * args, Value & v)
|
2016-04-29 18:14:44 +00:00
|
|
|
|
{
|
|
|
|
|
// FIXME: cut&paste from fetch().
|
2017-10-30 09:25:08 +00:00
|
|
|
|
if (state.restricted) throw Error("'fetchGit' is not allowed in restricted mode");
|
2016-04-29 18:14:44 +00:00
|
|
|
|
|
|
|
|
|
std::string url;
|
2017-07-27 16:08:23 +00:00
|
|
|
|
std::string ref = "master";
|
|
|
|
|
std::string rev;
|
2017-10-30 08:57:38 +00:00
|
|
|
|
std::string name = "source";
|
2016-04-29 18:14:44 +00:00
|
|
|
|
|
|
|
|
|
state.forceValue(*args[0]);
|
|
|
|
|
|
|
|
|
|
if (args[0]->type == tAttrs) {
|
|
|
|
|
|
|
|
|
|
state.forceAttrs(*args[0], pos);
|
|
|
|
|
|
|
|
|
|
for (auto & attr : *args[0]->attrs) {
|
2017-10-30 08:57:38 +00:00
|
|
|
|
string n(attr.name);
|
|
|
|
|
if (n == "url") {
|
2017-03-02 10:46:28 +00:00
|
|
|
|
PathSet context;
|
|
|
|
|
url = state.coerceToString(*attr.pos, *attr.value, context, false, false);
|
|
|
|
|
if (hasPrefix(url, "/")) url = "file://" + url;
|
2017-07-27 16:08:23 +00:00
|
|
|
|
}
|
2017-10-30 08:57:38 +00:00
|
|
|
|
else if (n == "ref")
|
2017-07-27 16:08:23 +00:00
|
|
|
|
ref = state.forceStringNoCtx(*attr.value, *attr.pos);
|
2017-10-30 08:57:38 +00:00
|
|
|
|
else if (n == "rev")
|
2016-04-29 18:14:44 +00:00
|
|
|
|
rev = state.forceStringNoCtx(*attr.value, *attr.pos);
|
2017-10-30 08:57:38 +00:00
|
|
|
|
else if (n == "name")
|
|
|
|
|
name = state.forceStringNoCtx(*attr.value, *attr.pos);
|
2016-04-29 18:14:44 +00:00
|
|
|
|
else
|
2017-10-30 09:25:08 +00:00
|
|
|
|
throw EvalError("unsupported argument '%s' to 'fetchGit', at %s", attr.name, *attr.pos);
|
2016-04-29 18:14:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (url.empty())
|
2017-07-30 11:27:57 +00:00
|
|
|
|
throw EvalError(format("'url' argument required, at %1%") % pos);
|
2016-04-29 18:14:44 +00:00
|
|
|
|
|
|
|
|
|
} else
|
|
|
|
|
url = state.forceStringNoCtx(*args[0], pos);
|
|
|
|
|
|
2017-10-30 10:49:03 +00:00
|
|
|
|
auto gitInfo = exportGit(state.store, url, ref, rev, name);
|
2016-04-29 18:14:44 +00:00
|
|
|
|
|
2017-10-30 10:49:03 +00:00
|
|
|
|
state.mkAttrs(v, 8);
|
|
|
|
|
mkString(*state.allocAttr(v, state.sOutPath), gitInfo.storePath, PathSet({gitInfo.storePath}));
|
|
|
|
|
mkString(*state.allocAttr(v, state.symbols.create("rev")), gitInfo.rev);
|
|
|
|
|
mkString(*state.allocAttr(v, state.symbols.create("shortRev")), gitInfo.shortRev);
|
|
|
|
|
mkInt(*state.allocAttr(v, state.symbols.create("revCount")), gitInfo.revCount);
|
|
|
|
|
v.attrs->sort();
|
2016-04-29 18:14:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-30 09:25:08 +00:00
|
|
|
|
static RegisterPrimOp r("fetchGit", 1, prim_fetchGit);
|
2016-04-29 18:14:44 +00:00
|
|
|
|
|
|
|
|
|
}
|