2019-02-12 19:23:11 +02:00
|
|
|
#include "flake.hh"
|
2018-11-29 20:18:36 +02:00
|
|
|
#include "primops.hh"
|
|
|
|
#include "eval-inline.hh"
|
|
|
|
#include "fetchGit.hh"
|
|
|
|
#include "download.hh"
|
|
|
|
|
|
|
|
#include <queue>
|
2018-11-30 17:11:15 +02:00
|
|
|
#include <regex>
|
2018-11-29 20:18:36 +02:00
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2019-02-12 19:23:11 +02:00
|
|
|
const FlakeRegistry & EvalState::getFlakeRegistry()
|
2018-11-29 20:18:36 +02:00
|
|
|
{
|
|
|
|
std::call_once(_flakeRegistryInit, [&]()
|
|
|
|
{
|
|
|
|
_flakeRegistry = std::make_unique<FlakeRegistry>();
|
|
|
|
|
2019-02-11 14:01:39 +02:00
|
|
|
#if 0
|
2019-02-12 21:35:03 +02:00
|
|
|
auto registryUri = "file:///home/eelco/Dev/gists/nix-flakes/registry.json";
|
2018-11-29 20:18:36 +02:00
|
|
|
|
2019-02-12 21:35:03 +02:00
|
|
|
auto registryFile = getDownloader()->download(DownloadRequest(registryUri));
|
2019-02-11 14:01:39 +02:00
|
|
|
#endif
|
2018-11-29 20:18:36 +02:00
|
|
|
|
2019-02-12 21:35:03 +02:00
|
|
|
auto registryFile = readFile(settings.nixDataDir + "/nix/flake-registry.json");
|
2019-02-11 14:01:39 +02:00
|
|
|
|
2019-02-12 21:35:03 +02:00
|
|
|
auto json = nlohmann::json::parse(registryFile);
|
2018-11-29 20:18:36 +02:00
|
|
|
|
2019-02-12 21:35:03 +02:00
|
|
|
auto version = json.value("version", 0);
|
|
|
|
if (version != 1)
|
|
|
|
throw Error("flake registry '%s' has unsupported version %d", registryFile, version);
|
2018-11-29 20:18:36 +02:00
|
|
|
|
2019-02-12 21:35:03 +02:00
|
|
|
auto flakes = json["flakes"];
|
|
|
|
for (auto i = flakes.begin(); i != flakes.end(); ++i) {
|
|
|
|
FlakeRegistry::Entry entry{FlakeRef(i->value("uri", ""))};
|
|
|
|
_flakeRegistry->entries.emplace(i.key(), entry);
|
2018-11-29 20:18:36 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return *_flakeRegistry;
|
|
|
|
}
|
|
|
|
|
2019-02-12 22:55:43 +02:00
|
|
|
Value * makeFlakeRegistryValue(EvalState & state)
|
2018-11-29 20:18:36 +02:00
|
|
|
{
|
2019-02-12 22:55:43 +02:00
|
|
|
auto v = state.allocValue();
|
2019-02-12 21:35:03 +02:00
|
|
|
|
2019-02-12 22:55:43 +02:00
|
|
|
auto registry = state.getFlakeRegistry();
|
2018-11-29 20:18:36 +02:00
|
|
|
|
2019-02-12 22:55:43 +02:00
|
|
|
state.mkAttrs(*v, registry.entries.size());
|
2018-11-29 20:18:36 +02:00
|
|
|
|
|
|
|
for (auto & entry : registry.entries) {
|
2019-02-12 22:55:43 +02:00
|
|
|
auto vEntry = state.allocAttr(*v, entry.first);
|
|
|
|
state.mkAttrs(*vEntry, 2);
|
|
|
|
mkString(*state.allocAttr(*vEntry, state.symbols.create("uri")), entry.second.ref.to_string());
|
2018-11-29 20:18:36 +02:00
|
|
|
vEntry->attrs->sort();
|
|
|
|
}
|
|
|
|
|
2019-02-12 21:35:03 +02:00
|
|
|
v->attrs->sort();
|
2018-11-29 20:18:36 +02:00
|
|
|
|
2019-02-12 21:35:03 +02:00
|
|
|
return v;
|
|
|
|
}
|
2018-11-29 20:18:36 +02:00
|
|
|
|
2019-02-12 19:23:11 +02:00
|
|
|
static FlakeRef lookupFlake(EvalState & state, const FlakeRef & flakeRef)
|
|
|
|
{
|
|
|
|
if (auto refData = std::get_if<FlakeRef::IsFlakeId>(&flakeRef.data)) {
|
|
|
|
auto registry = state.getFlakeRegistry();
|
|
|
|
auto i = registry.entries.find(refData->id);
|
|
|
|
if (i == registry.entries.end())
|
|
|
|
throw Error("cannot find flake '%s' in the flake registry", refData->id);
|
|
|
|
auto newRef = FlakeRef(i->second.ref);
|
|
|
|
if (!newRef.isDirect())
|
|
|
|
throw Error("found indirect flake URI '%s' in the flake registry", i->second.ref.to_string());
|
|
|
|
return newRef;
|
|
|
|
} else
|
|
|
|
return flakeRef;
|
|
|
|
}
|
|
|
|
|
2018-11-29 20:18:36 +02:00
|
|
|
struct Flake
|
|
|
|
{
|
2019-02-12 19:23:11 +02:00
|
|
|
FlakeId id;
|
2018-11-29 20:18:36 +02:00
|
|
|
std::string description;
|
|
|
|
Path path;
|
|
|
|
std::set<std::string> requires;
|
|
|
|
Value * vProvides; // FIXME: gc
|
2019-02-12 19:23:11 +02:00
|
|
|
// commit hash
|
|
|
|
// date
|
|
|
|
// content hash
|
2018-11-29 20:18:36 +02:00
|
|
|
};
|
|
|
|
|
2019-02-12 19:23:11 +02:00
|
|
|
static Path fetchFlake(EvalState & state, const FlakeRef & flakeRef)
|
2018-11-29 20:18:36 +02:00
|
|
|
{
|
2019-02-12 19:23:11 +02:00
|
|
|
assert(flakeRef.isDirect());
|
2018-12-12 14:20:59 +02:00
|
|
|
|
2019-02-12 19:23:11 +02:00
|
|
|
if (auto refData = std::get_if<FlakeRef::IsGitHub>(&flakeRef.data)) {
|
2018-12-12 14:20:59 +02:00
|
|
|
// FIXME: require hash in pure mode.
|
|
|
|
|
|
|
|
// FIXME: use regular /archive URLs instead? api.github.com
|
|
|
|
// might have stricter rate limits.
|
2019-02-12 19:23:11 +02:00
|
|
|
|
|
|
|
// FIXME: support passing auth tokens for private repos.
|
|
|
|
|
2018-12-12 14:20:59 +02:00
|
|
|
auto storePath = getDownloader()->downloadCached(state.store,
|
2019-02-12 19:23:11 +02:00
|
|
|
fmt("https://api.github.com/repos/%s/%s/tarball/%s",
|
|
|
|
refData->owner, refData->repo,
|
|
|
|
refData->rev
|
|
|
|
? refData->rev->to_string(Base16, false)
|
|
|
|
: refData->ref
|
|
|
|
? *refData->ref
|
|
|
|
: "master"),
|
2018-12-12 14:20:59 +02:00
|
|
|
true, "source");
|
|
|
|
|
|
|
|
// FIXME: extract revision hash from ETag.
|
|
|
|
|
|
|
|
return storePath;
|
|
|
|
}
|
|
|
|
|
2019-02-12 19:23:11 +02:00
|
|
|
else if (auto refData = std::get_if<FlakeRef::IsGit>(&flakeRef.data)) {
|
|
|
|
auto gitInfo = exportGit(state.store, refData->uri, refData->ref,
|
|
|
|
refData->rev ? refData->rev->to_string(Base16, false) : "", "source");
|
2018-11-30 17:11:15 +02:00
|
|
|
return gitInfo.storePath;
|
|
|
|
}
|
2018-11-29 20:18:36 +02:00
|
|
|
|
2019-02-12 19:23:11 +02:00
|
|
|
else abort();
|
2018-11-30 17:11:15 +02:00
|
|
|
}
|
|
|
|
|
2019-02-12 19:23:11 +02:00
|
|
|
static Flake getFlake(EvalState & state, const FlakeRef & flakeRef)
|
2018-11-30 17:11:15 +02:00
|
|
|
{
|
2019-02-12 19:23:11 +02:00
|
|
|
auto flakePath = fetchFlake(state, flakeRef);
|
2018-11-30 17:11:15 +02:00
|
|
|
state.store->assertStorePath(flakePath);
|
|
|
|
|
2019-02-12 21:35:03 +02:00
|
|
|
if (state.allowedPaths)
|
|
|
|
state.allowedPaths->insert(flakePath);
|
|
|
|
|
2018-11-30 17:11:15 +02:00
|
|
|
Flake flake;
|
2018-11-29 20:18:36 +02:00
|
|
|
|
|
|
|
Value vInfo;
|
2018-11-30 17:11:15 +02:00
|
|
|
state.evalFile(flakePath + "/flake.nix", vInfo);
|
2018-11-29 20:18:36 +02:00
|
|
|
|
|
|
|
state.forceAttrs(vInfo);
|
|
|
|
|
|
|
|
if (auto name = vInfo.attrs->get(state.sName))
|
2019-02-12 19:23:11 +02:00
|
|
|
flake.id = state.forceStringNoCtx(*(**name).value, *(**name).pos);
|
2018-11-29 20:18:36 +02:00
|
|
|
else
|
|
|
|
throw Error("flake lacks attribute 'name'");
|
|
|
|
|
|
|
|
if (auto description = vInfo.attrs->get(state.sDescription))
|
|
|
|
flake.description = state.forceStringNoCtx(*(**description).value, *(**description).pos);
|
|
|
|
|
|
|
|
if (auto requires = vInfo.attrs->get(state.symbols.create("requires"))) {
|
|
|
|
state.forceList(*(**requires).value, *(**requires).pos);
|
|
|
|
for (unsigned int n = 0; n < (**requires).value->listSize(); ++n)
|
|
|
|
flake.requires.insert(state.forceStringNoCtx(
|
|
|
|
*(**requires).value->listElems()[n], *(**requires).pos));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (auto provides = vInfo.attrs->get(state.symbols.create("provides"))) {
|
|
|
|
state.forceFunction(*(**provides).value, *(**provides).pos);
|
|
|
|
flake.vProvides = (**provides).value;
|
|
|
|
} else
|
|
|
|
throw Error("flake lacks attribute 'provides'");
|
|
|
|
|
|
|
|
return flake;
|
|
|
|
}
|
|
|
|
|
2019-02-12 22:05:44 +02:00
|
|
|
/* Given a flake reference, recursively fetch it and its
|
2019-02-12 22:55:43 +02:00
|
|
|
dependencies.
|
|
|
|
FIXME: this should return a graph of flakes.
|
|
|
|
*/
|
|
|
|
static std::tuple<FlakeId, std::map<FlakeId, Flake>> resolveFlake(EvalState & state,
|
2019-02-12 22:05:44 +02:00
|
|
|
const FlakeRef & topRef, bool impureTopRef)
|
2018-11-29 20:18:36 +02:00
|
|
|
{
|
2019-02-12 19:23:11 +02:00
|
|
|
std::map<FlakeId, Flake> done;
|
2019-02-12 22:05:44 +02:00
|
|
|
std::queue<std::tuple<FlakeRef, bool>> todo;
|
2019-02-12 22:55:43 +02:00
|
|
|
std::optional<FlakeId> topFlakeId; /// FIXME: ambiguous
|
|
|
|
todo.push({topRef, true});
|
2018-11-29 20:18:36 +02:00
|
|
|
|
|
|
|
while (!todo.empty()) {
|
2019-02-12 22:55:43 +02:00
|
|
|
auto [flakeRef, toplevel] = todo.front();
|
2018-11-29 20:18:36 +02:00
|
|
|
todo.pop();
|
|
|
|
|
2019-02-12 19:23:11 +02:00
|
|
|
if (auto refData = std::get_if<FlakeRef::IsFlakeId>(&flakeRef.data)) {
|
|
|
|
if (done.count(refData->id)) continue; // optimization
|
|
|
|
flakeRef = lookupFlake(state, flakeRef);
|
|
|
|
}
|
|
|
|
|
2019-02-12 22:55:43 +02:00
|
|
|
if (evalSettings.pureEval && !flakeRef.isImmutable() && (!toplevel || !impureTopRef))
|
2019-02-12 22:05:44 +02:00
|
|
|
throw Error("mutable flake '%s' is not allowed in pure mode; use --no-pure-eval to disable", flakeRef.to_string());
|
|
|
|
|
2019-02-12 19:23:11 +02:00
|
|
|
auto flake = getFlake(state, flakeRef);
|
|
|
|
|
|
|
|
if (done.count(flake.id)) continue;
|
2018-11-29 20:18:36 +02:00
|
|
|
|
2019-02-12 22:55:43 +02:00
|
|
|
if (toplevel) topFlakeId = flake.id;
|
|
|
|
|
2018-11-30 17:11:15 +02:00
|
|
|
for (auto & require : flake.requires)
|
2019-02-12 22:05:44 +02:00
|
|
|
todo.push({require, false});
|
2018-11-29 20:18:36 +02:00
|
|
|
|
2019-02-12 19:23:11 +02:00
|
|
|
done.emplace(flake.id, flake);
|
2018-11-29 20:18:36 +02:00
|
|
|
}
|
|
|
|
|
2019-02-12 22:55:43 +02:00
|
|
|
assert(topFlakeId);
|
|
|
|
return {*topFlakeId, done};
|
2018-11-29 20:18:36 +02:00
|
|
|
}
|
|
|
|
|
2019-02-12 22:55:43 +02:00
|
|
|
Value * makeFlakeValue(EvalState & state, std::string flakeUri, Value & v)
|
2018-11-29 20:18:36 +02:00
|
|
|
{
|
2019-02-12 22:05:44 +02:00
|
|
|
// FIXME: temporary hack to make the default installation source
|
|
|
|
// work.
|
|
|
|
bool impure = false;
|
|
|
|
if (hasPrefix(flakeUri, "impure:")) {
|
|
|
|
flakeUri = std::string(flakeUri, 7);
|
|
|
|
impure = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto flakeRef = FlakeRef(flakeUri);
|
2018-11-29 20:18:36 +02:00
|
|
|
|
2019-02-12 22:55:43 +02:00
|
|
|
auto [topFlakeId, flakes] = resolveFlake(state, flakeUri, impure);
|
|
|
|
|
|
|
|
// FIXME: we should call each flake with only its dependencies
|
|
|
|
// (rather than the closure of the top-level flake).
|
2018-11-29 20:18:36 +02:00
|
|
|
|
|
|
|
auto vResult = state.allocValue();
|
|
|
|
|
|
|
|
state.mkAttrs(*vResult, flakes.size());
|
|
|
|
|
2019-02-12 22:55:43 +02:00
|
|
|
Value * vTop = 0;
|
|
|
|
|
2018-11-29 20:18:36 +02:00
|
|
|
for (auto & flake : flakes) {
|
2019-02-12 19:23:11 +02:00
|
|
|
auto vFlake = state.allocAttr(*vResult, flake.second.id);
|
2019-02-12 22:55:43 +02:00
|
|
|
if (topFlakeId == flake.second.id) vTop = vFlake;
|
2018-11-29 20:18:36 +02:00
|
|
|
state.mkAttrs(*vFlake, 2);
|
|
|
|
mkString(*state.allocAttr(*vFlake, state.sDescription), flake.second.description);
|
|
|
|
auto vProvides = state.allocAttr(*vFlake, state.symbols.create("provides"));
|
|
|
|
mkApp(*vProvides, *flake.second.vProvides, *vResult);
|
|
|
|
vFlake->attrs->sort();
|
|
|
|
}
|
|
|
|
|
|
|
|
vResult->attrs->sort();
|
|
|
|
|
|
|
|
v = *vResult;
|
2019-02-12 22:55:43 +02:00
|
|
|
|
|
|
|
assert(vTop);
|
|
|
|
return vTop;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void prim_getFlake(EvalState & state, const Pos & pos, Value * * args, Value & v)
|
|
|
|
{
|
|
|
|
makeFlakeValue(state, state.forceStringNoCtx(*args[0], pos), v);
|
2018-11-29 20:18:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static RegisterPrimOp r2("getFlake", 1, prim_getFlake);
|
|
|
|
|
|
|
|
}
|