nix-super/src/libexpr/primops/fetchClosure.cc

70 lines
2 KiB
C++
Raw Normal View History

#include "primops.hh"
#include "store-api.hh"
namespace nix {
static void prim_fetchClosure(EvalState & state, const Pos & pos, Value * * args, Value & v)
{
state.forceAttrs(*args[0], pos);
2022-03-21 15:34:45 +02:00
std::optional<std::string> fromStoreUrl;
std::optional<StorePath> fromPath;
for (auto & attr : *args[0]->attrs) {
2022-03-21 15:34:45 +02:00
if (attr.name == "fromPath") {
PathSet context;
2022-03-21 15:34:45 +02:00
fromPath = state.coerceToStorePath(*attr.pos, *attr.value, context);
}
2022-03-21 15:34:45 +02:00
else if (attr.name == "fromStore")
fromStoreUrl = state.forceStringNoCtx(*attr.value, *attr.pos);
else
throw Error({
.msg = hintfmt("attribute '%s' isn't supported in call to 'fetchClosure'", attr.name),
.errPos = pos
});
}
2022-03-21 15:34:45 +02:00
if (!fromPath)
throw Error({
2022-03-21 15:34:45 +02:00
.msg = hintfmt("attribute '%s' is missing in call to 'fetchClosure'", "fromPath"),
.errPos = pos
});
2022-03-21 15:34:45 +02:00
if (!fromStoreUrl)
throw Error({
2022-03-21 15:34:45 +02:00
.msg = hintfmt("attribute '%s' is missing in call to 'fetchClosure'", "fromStore"),
.errPos = pos
});
// FIXME: only allow some "trusted" store types (like BinaryCacheStore).
2022-03-21 15:34:45 +02:00
auto fromStore = openStore(*fromStoreUrl);
2022-03-21 15:34:45 +02:00
copyClosure(*fromStore, *state.store, RealisedPath::Set { *fromPath });
/* In pure mode, require a CA path. */
if (evalSettings.pureEval) {
2022-03-21 15:34:45 +02:00
auto info = state.store->queryPathInfo(*fromPath);
if (!info->isContentAddressed(*state.store))
throw Error({
.msg = hintfmt("in pure mode, 'fetchClosure' requires a content-addressed path, which '%s' isn't",
2022-03-21 15:34:45 +02:00
state.store->printStorePath(*fromPath)),
.errPos = pos
});
}
2022-03-21 15:34:45 +02:00
auto fromPathS = state.store->printStorePath(*fromPath);
v.mkString(fromPathS, {fromPathS});
}
static RegisterPrimOp primop_fetchClosure({
.name = "__fetchClosure",
.args = {"args"},
.doc = R"(
)",
.fun = prim_fetchClosure,
});
}