2020-11-29 14:33:55 +00:00
|
|
|
#include <map>
|
|
|
|
#include <iostream>
|
|
|
|
#include <thread>
|
2022-09-20 18:12:55 +00:00
|
|
|
#include <filesystem>
|
2020-11-29 14:33:55 +00:00
|
|
|
|
|
|
|
#include <nix/config.h>
|
2020-11-29 20:32:04 +00:00
|
|
|
#include <nix/shared.hh>
|
|
|
|
#include <nix/store-api.hh>
|
|
|
|
#include <nix/eval.hh>
|
|
|
|
#include <nix/eval-inline.hh>
|
|
|
|
#include <nix/util.hh>
|
|
|
|
#include <nix/get-drvs.hh>
|
|
|
|
#include <nix/globals.hh>
|
|
|
|
#include <nix/common-eval-args.hh>
|
|
|
|
#include <nix/flake/flakeref.hh>
|
|
|
|
#include <nix/flake/flake.hh>
|
|
|
|
#include <nix/attr-path.hh>
|
|
|
|
#include <nix/derivations.hh>
|
|
|
|
#include <nix/local-fs-store.hh>
|
2022-01-07 07:20:41 +00:00
|
|
|
#include <nix/logging.hh>
|
|
|
|
#include <nix/error.hh>
|
2022-11-04 15:10:54 +00:00
|
|
|
#include <nix/installables.hh>
|
2023-01-18 15:38:38 +00:00
|
|
|
#include <nix/path-with-outputs.hh>
|
2023-03-09 21:18:00 +00:00
|
|
|
#include <nix/installable-flake.hh>
|
2020-11-29 14:33:55 +00:00
|
|
|
|
2021-08-23 23:29:04 +00:00
|
|
|
#include <nix/value-to-json.hh>
|
|
|
|
|
2020-11-29 14:33:55 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
|
|
|
using namespace nix;
|
2022-04-26 05:11:17 +00:00
|
|
|
using namespace nlohmann;
|
2020-11-29 14:33:55 +00:00
|
|
|
|
2022-04-21 17:02:05 +00:00
|
|
|
// Safe to ignore - the args will be static.
|
2022-04-25 15:53:17 +00:00
|
|
|
#ifdef __GNUC__
|
2022-04-21 17:02:05 +00:00
|
|
|
#pragma GCC diagnostic ignored "-Wnon-virtual-dtor"
|
2022-04-25 15:53:17 +00:00
|
|
|
#elif __clang__
|
2022-04-21 17:02:05 +00:00
|
|
|
#pragma clang diagnostic ignored "-Wnon-virtual-dtor"
|
2022-04-25 15:53:17 +00:00
|
|
|
#endif
|
2022-04-26 09:15:56 +00:00
|
|
|
struct MyArgs : MixEvalArgs, MixCommonArgs {
|
2022-08-17 06:38:37 +00:00
|
|
|
std::string releaseExpr;
|
2021-03-21 17:37:15 +00:00
|
|
|
Path gcRootsDir;
|
2020-11-29 14:33:55 +00:00
|
|
|
bool flake = false;
|
2022-08-17 06:38:37 +00:00
|
|
|
bool fromArgs = false;
|
2022-01-06 00:19:15 +00:00
|
|
|
bool meta = false;
|
2022-01-07 07:20:41 +00:00
|
|
|
bool showTrace = false;
|
2022-08-17 06:38:37 +00:00
|
|
|
bool impure = false;
|
2022-10-18 00:56:45 +00:00
|
|
|
bool forceRecurse = false;
|
2022-09-09 11:24:53 +00:00
|
|
|
bool checkCacheStatus = false;
|
2020-11-29 14:33:55 +00:00
|
|
|
size_t nrWorkers = 1;
|
|
|
|
size_t maxMemorySize = 4096;
|
|
|
|
|
2022-04-26 09:15:56 +00:00
|
|
|
MyArgs() : MixCommonArgs("nix-eval-jobs") {
|
2020-11-29 14:33:55 +00:00
|
|
|
addFlag({
|
|
|
|
.longName = "help",
|
|
|
|
.description = "show usage information",
|
|
|
|
.handler = {[&]() {
|
2021-08-24 18:13:04 +00:00
|
|
|
printf("USAGE: nix-eval-jobs [options] expr\n\n");
|
2022-04-26 09:15:56 +00:00
|
|
|
for (const auto &[name, flag] : longFlags) {
|
2021-03-14 22:16:57 +00:00
|
|
|
if (hiddenCategories.count(flag->category)) {
|
|
|
|
continue;
|
|
|
|
}
|
2022-04-26 09:15:56 +00:00
|
|
|
printf(" --%-20s %s\n", name.c_str(),
|
|
|
|
flag->description.c_str());
|
2021-03-14 22:16:57 +00:00
|
|
|
}
|
2021-03-21 17:38:56 +00:00
|
|
|
::exit(0);
|
2021-03-14 22:16:57 +00:00
|
|
|
}},
|
2020-11-29 14:33:55 +00:00
|
|
|
});
|
|
|
|
|
2022-08-17 06:38:37 +00:00
|
|
|
addFlag({.longName = "impure",
|
|
|
|
.description = "allow impure expressions",
|
|
|
|
.handler = {&impure, true}});
|
2021-03-21 18:05:11 +00:00
|
|
|
|
2022-10-18 00:56:45 +00:00
|
|
|
addFlag(
|
|
|
|
{.longName = "force-recurse",
|
|
|
|
.description = "force recursion (don't respect recurseIntoAttrs)",
|
|
|
|
.handler = {&forceRecurse, true}});
|
|
|
|
|
2022-04-26 09:15:56 +00:00
|
|
|
addFlag({.longName = "gc-roots-dir",
|
|
|
|
.description = "garbage collector roots directory",
|
|
|
|
.labels = {"path"},
|
|
|
|
.handler = {&gcRootsDir}});
|
2020-11-29 14:33:55 +00:00
|
|
|
|
2022-04-26 09:15:56 +00:00
|
|
|
addFlag(
|
|
|
|
{.longName = "workers",
|
|
|
|
.description = "number of evaluate workers",
|
|
|
|
.labels = {"workers"},
|
|
|
|
.handler = {[=](std::string s) { nrWorkers = std::stoi(s); }}});
|
2020-11-29 14:33:55 +00:00
|
|
|
|
2023-04-13 17:29:18 +00:00
|
|
|
addFlag(
|
|
|
|
{.longName = "max-memory-size",
|
|
|
|
.description =
|
|
|
|
"maximum evaluation memory size (4GiB per worker by default)",
|
|
|
|
.labels = {"size"},
|
|
|
|
.handler = {
|
|
|
|
[=](std::string s) { maxMemorySize = std::stoi(s); }}});
|
2020-11-29 14:33:55 +00:00
|
|
|
|
2022-04-26 09:15:56 +00:00
|
|
|
addFlag({.longName = "flake",
|
|
|
|
.description = "build a flake",
|
|
|
|
.handler = {&flake, true}});
|
2020-11-29 14:33:55 +00:00
|
|
|
|
2022-04-26 09:15:56 +00:00
|
|
|
addFlag({.longName = "meta",
|
|
|
|
.description = "include derivation meta field in output",
|
|
|
|
.handler = {&meta, true}});
|
2022-01-06 00:19:15 +00:00
|
|
|
|
2022-09-09 11:24:53 +00:00
|
|
|
addFlag(
|
|
|
|
{.longName = "check-cache-status",
|
|
|
|
.description =
|
|
|
|
"Check if the derivations are present locally or in "
|
|
|
|
"any configured substituters (i.e. binary cache). The "
|
|
|
|
"information "
|
|
|
|
"will be exposed in the `isCached` field of the JSON output.",
|
|
|
|
.handler = {&checkCacheStatus, true}});
|
|
|
|
|
2022-04-26 09:15:56 +00:00
|
|
|
addFlag({.longName = "show-trace",
|
|
|
|
.description =
|
|
|
|
"print out a stack trace in case of evaluation errors",
|
|
|
|
.handler = {&showTrace, true}});
|
2022-01-07 07:20:41 +00:00
|
|
|
|
2022-08-17 06:38:37 +00:00
|
|
|
addFlag({.longName = "expr",
|
|
|
|
.shortName = 'E',
|
|
|
|
.description = "treat the argument as a Nix expression",
|
|
|
|
.handler = {&fromArgs, true}});
|
|
|
|
|
2020-11-29 14:33:55 +00:00
|
|
|
expectArg("expr", &releaseExpr);
|
|
|
|
}
|
|
|
|
};
|
2022-04-25 15:53:17 +00:00
|
|
|
#ifdef __GNUC__
|
|
|
|
#pragma GCC diagnostic ignored "-Wnon-virtual-dtor"
|
|
|
|
#elif __clang__
|
|
|
|
#pragma clang diagnostic ignored "-Wnon-virtual-dtor"
|
|
|
|
#endif
|
2020-11-29 14:33:55 +00:00
|
|
|
|
|
|
|
static MyArgs myArgs;
|
|
|
|
|
2022-04-26 09:15:56 +00:00
|
|
|
static Value *releaseExprTopLevelValue(EvalState &state, Bindings &autoArgs) {
|
2020-11-29 14:33:55 +00:00
|
|
|
Value vTop;
|
|
|
|
|
2022-08-17 06:38:37 +00:00
|
|
|
if (myArgs.fromArgs) {
|
2023-06-10 11:28:57 +00:00
|
|
|
Expr *e = state.parseExprFromString(
|
|
|
|
myArgs.releaseExpr, state.rootPath(CanonPath::fromCwd()));
|
2022-08-17 06:38:37 +00:00
|
|
|
state.eval(e, vTop);
|
|
|
|
} else {
|
|
|
|
state.evalFile(lookupFileArg(state, myArgs.releaseExpr), vTop);
|
|
|
|
}
|
2022-04-21 18:34:49 +00:00
|
|
|
|
|
|
|
auto vRoot = state.allocValue();
|
|
|
|
|
|
|
|
state.autoCallFunction(autoArgs, vTop, *vRoot);
|
2020-11-29 14:33:55 +00:00
|
|
|
|
2022-04-21 18:34:49 +00:00
|
|
|
return vRoot;
|
|
|
|
}
|
2020-11-29 14:33:55 +00:00
|
|
|
|
2022-11-04 15:10:54 +00:00
|
|
|
Value *topLevelValue(EvalState &state, Bindings &autoArgs,
|
|
|
|
std::optional<InstallableFlake> flake) {
|
|
|
|
return flake.has_value() ? flake.value().toValue(state).first
|
|
|
|
: releaseExprTopLevelValue(state, autoArgs);
|
2022-04-21 18:41:31 +00:00
|
|
|
}
|
|
|
|
|
2022-09-09 11:24:53 +00:00
|
|
|
bool queryIsCached(Store &store, std::map<std::string, std::string> &outputs) {
|
|
|
|
uint64_t downloadSize, narSize;
|
|
|
|
StorePathSet willBuild, willSubstitute, unknown;
|
|
|
|
|
|
|
|
std::vector<StorePathWithOutputs> paths;
|
|
|
|
for (auto const &[key, val] : outputs) {
|
|
|
|
paths.push_back(followLinksToStorePathWithOutputs(store, val));
|
|
|
|
}
|
|
|
|
|
|
|
|
store.queryMissing(toDerivedPaths(paths), willBuild, willSubstitute,
|
|
|
|
unknown, downloadSize, narSize);
|
|
|
|
return willBuild.empty() && unknown.empty();
|
|
|
|
}
|
|
|
|
|
2022-04-13 22:41:51 +00:00
|
|
|
/* The fields of a derivation that are printed in json form */
|
|
|
|
struct Drv {
|
|
|
|
std::string name;
|
|
|
|
std::string system;
|
|
|
|
std::string drvPath;
|
2022-09-09 11:24:53 +00:00
|
|
|
bool isCached;
|
2022-04-13 22:41:51 +00:00
|
|
|
std::map<std::string, std::string> outputs;
|
2023-04-24 17:33:02 +00:00
|
|
|
std::map<std::string, std::set<std::string>> inputDrvs;
|
2022-04-13 22:41:51 +00:00
|
|
|
std::optional<nlohmann::json> meta;
|
|
|
|
|
2022-04-26 09:15:56 +00:00
|
|
|
Drv(EvalState &state, DrvInfo &drvInfo) {
|
2022-04-13 22:41:51 +00:00
|
|
|
if (drvInfo.querySystem() == "unknown")
|
|
|
|
throw EvalError("derivation must have a 'system' attribute");
|
|
|
|
|
|
|
|
auto localStore = state.store.dynamic_pointer_cast<LocalFSStore>();
|
|
|
|
|
2023-01-02 04:20:13 +00:00
|
|
|
try {
|
|
|
|
for (auto out : drvInfo.queryOutputs(true)) {
|
|
|
|
if (out.second)
|
|
|
|
outputs[out.first] =
|
|
|
|
localStore->printStorePath(*out.second);
|
|
|
|
}
|
|
|
|
} catch (const std::exception &e) {
|
|
|
|
throw EvalError("derivation must have valid outputs: %s", e.what());
|
2022-04-13 22:41:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (myArgs.meta) {
|
|
|
|
nlohmann::json meta_;
|
2022-09-17 08:48:25 +00:00
|
|
|
for (auto &metaName : drvInfo.queryMetaNames()) {
|
2023-06-10 11:28:57 +00:00
|
|
|
NixStringContext context;
|
2022-04-13 22:41:51 +00:00
|
|
|
std::stringstream ss;
|
|
|
|
|
2022-09-17 08:48:25 +00:00
|
|
|
auto metaValue = drvInfo.queryMeta(metaName);
|
2022-04-13 22:41:51 +00:00
|
|
|
// Skip non-serialisable types
|
|
|
|
// TODO: Fix serialisation of derivations to store paths
|
|
|
|
if (metaValue == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
printValueAsJSON(state, true, *metaValue, noPos, ss, context);
|
|
|
|
|
2022-09-17 08:48:25 +00:00
|
|
|
meta_[metaName] = nlohmann::json::parse(ss.str());
|
2022-04-13 22:41:51 +00:00
|
|
|
}
|
|
|
|
meta = meta_;
|
|
|
|
}
|
2022-09-09 11:24:53 +00:00
|
|
|
if (myArgs.checkCacheStatus) {
|
|
|
|
isCached = queryIsCached(*localStore, outputs);
|
|
|
|
}
|
2022-04-13 22:41:51 +00:00
|
|
|
|
|
|
|
name = drvInfo.queryName();
|
|
|
|
system = drvInfo.querySystem();
|
|
|
|
drvPath = localStore->printStorePath(drvInfo.requireDrvPath());
|
2023-04-24 17:33:02 +00:00
|
|
|
|
|
|
|
auto drv = localStore->readDerivation(drvInfo.requireDrvPath());
|
|
|
|
for (auto &input : drv.inputDrvs) {
|
|
|
|
inputDrvs[localStore->printStorePath(input.first)] = input.second;
|
|
|
|
}
|
2022-04-13 22:41:51 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-04-26 09:15:56 +00:00
|
|
|
static void to_json(nlohmann::json &json, const Drv &drv) {
|
2022-09-09 11:24:53 +00:00
|
|
|
json = nlohmann::json{{"name", drv.name},
|
|
|
|
{"system", drv.system},
|
|
|
|
{"drvPath", drv.drvPath},
|
2023-04-24 17:33:02 +00:00
|
|
|
{"outputs", drv.outputs},
|
|
|
|
{"inputDrvs", drv.inputDrvs}};
|
2022-09-09 11:24:53 +00:00
|
|
|
|
|
|
|
if (drv.meta.has_value()) {
|
2022-04-13 22:41:51 +00:00
|
|
|
json["meta"] = drv.meta.value();
|
2022-09-09 11:24:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (myArgs.checkCacheStatus) {
|
|
|
|
json["isCached"] = drv.isCached;
|
|
|
|
}
|
2022-04-13 22:41:51 +00:00
|
|
|
}
|
|
|
|
|
2022-04-26 05:11:17 +00:00
|
|
|
std::string attrPathJoin(json input) {
|
|
|
|
return std::accumulate(input.begin(), input.end(), std::string(),
|
|
|
|
[](std::string ss, std::string s) {
|
|
|
|
// Escape token if containing dots
|
|
|
|
if (s.find(".") != std::string::npos) {
|
|
|
|
s = "\"" + s + "\"";
|
|
|
|
}
|
|
|
|
return ss.empty() ? s : ss + "." + s;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-01-22 09:28:47 +00:00
|
|
|
static void worker(ref<EvalState> state, Bindings &autoArgs, AutoCloseFD &to,
|
2022-04-26 09:15:56 +00:00
|
|
|
AutoCloseFD &from) {
|
2022-11-04 15:10:54 +00:00
|
|
|
|
|
|
|
std::optional<InstallableFlake> flake;
|
|
|
|
if (myArgs.flake) {
|
|
|
|
auto [flakeRef, fragment, outputSpec] =
|
2023-01-18 15:38:38 +00:00
|
|
|
parseFlakeRefWithFragmentAndExtendedOutputsSpec(myArgs.releaseExpr,
|
|
|
|
absPath("."));
|
2022-11-04 15:10:54 +00:00
|
|
|
|
2023-01-22 09:28:47 +00:00
|
|
|
flake.emplace(InstallableFlake({}, state, std::move(flakeRef), fragment,
|
2022-11-04 15:10:54 +00:00
|
|
|
outputSpec, {}, {},
|
|
|
|
flake::LockFlags{
|
|
|
|
.updateLockFile = false,
|
|
|
|
.useRegistries = false,
|
2023-01-18 15:38:38 +00:00
|
|
|
.allowUnlocked = false,
|
2022-11-04 15:10:54 +00:00
|
|
|
}));
|
|
|
|
};
|
|
|
|
|
2023-01-22 09:28:47 +00:00
|
|
|
auto vRoot = topLevelValue(*state, autoArgs, flake);
|
2020-11-29 14:33:55 +00:00
|
|
|
|
|
|
|
while (true) {
|
2022-04-21 04:01:02 +00:00
|
|
|
/* Wait for the collector to send us a job name. */
|
2020-11-29 14:33:55 +00:00
|
|
|
writeLine(to.get(), "next");
|
|
|
|
|
|
|
|
auto s = readLine(from.get());
|
2022-04-26 09:15:56 +00:00
|
|
|
if (s == "exit")
|
|
|
|
break;
|
|
|
|
if (!hasPrefix(s, "do "))
|
|
|
|
abort();
|
2022-04-26 05:11:17 +00:00
|
|
|
auto path = json::parse(s.substr(3));
|
|
|
|
auto attrPathS = attrPathJoin(path);
|
2020-11-29 14:33:55 +00:00
|
|
|
|
2022-04-26 05:11:17 +00:00
|
|
|
debug("worker process %d at '%s'", getpid(), path);
|
2020-11-29 14:33:55 +00:00
|
|
|
|
2022-04-21 04:01:02 +00:00
|
|
|
/* Evaluate it and send info back to the collector. */
|
2022-04-26 09:15:56 +00:00
|
|
|
json reply = json{{"attr", attrPathS}, {"attrPath", path}};
|
2020-11-29 14:33:55 +00:00
|
|
|
try {
|
2022-04-26 09:15:56 +00:00
|
|
|
auto vTmp =
|
2023-01-22 09:28:47 +00:00
|
|
|
findAlongAttrPath(*state, attrPathS, autoArgs, *vRoot).first;
|
2020-11-29 14:33:55 +00:00
|
|
|
|
2023-01-22 09:28:47 +00:00
|
|
|
auto v = state->allocValue();
|
|
|
|
state->autoCallFunction(autoArgs, *vTmp, *v);
|
2020-11-29 14:33:55 +00:00
|
|
|
|
2022-09-09 11:26:15 +00:00
|
|
|
if (v->type() == nAttrs) {
|
2023-01-22 09:28:47 +00:00
|
|
|
if (auto drvInfo = getDerivation(*state, *v, false)) {
|
|
|
|
auto drv = Drv(*state, *drvInfo);
|
2022-09-09 11:26:15 +00:00
|
|
|
reply.update(drv);
|
|
|
|
|
|
|
|
/* Register the derivation as a GC root. !!! This
|
|
|
|
registers roots for jobs that we may have already
|
|
|
|
done. */
|
|
|
|
if (myArgs.gcRootsDir != "") {
|
|
|
|
Path root = myArgs.gcRootsDir + "/" +
|
|
|
|
std::string(baseNameOf(drv.drvPath));
|
|
|
|
if (!pathExists(root)) {
|
|
|
|
auto localStore =
|
2023-01-22 09:28:47 +00:00
|
|
|
state->store
|
2022-09-09 11:26:15 +00:00
|
|
|
.dynamic_pointer_cast<LocalFSStore>();
|
|
|
|
auto storePath =
|
|
|
|
localStore->parseStorePath(drv.drvPath);
|
|
|
|
localStore->addPermRoot(storePath, root);
|
|
|
|
}
|
2022-04-21 18:22:29 +00:00
|
|
|
}
|
2022-09-09 11:26:15 +00:00
|
|
|
} else {
|
|
|
|
auto attrs = nlohmann::json::array();
|
|
|
|
bool recurse =
|
2022-10-18 00:56:45 +00:00
|
|
|
myArgs.forceRecurse ||
|
2022-09-09 11:26:15 +00:00
|
|
|
path.size() == 0; // Dont require `recurseForDerivations
|
|
|
|
// = true;` for top-level attrset
|
|
|
|
|
|
|
|
for (auto &i :
|
2023-01-22 09:28:47 +00:00
|
|
|
v->attrs->lexicographicOrder(state->symbols)) {
|
|
|
|
const std::string &name = state->symbols[i->name];
|
2022-09-09 11:26:15 +00:00
|
|
|
attrs.push_back(name);
|
|
|
|
|
2023-04-24 15:08:57 +00:00
|
|
|
if (name == "recurseForDerivations" &&
|
|
|
|
!myArgs.forceRecurse) {
|
2022-09-09 11:26:15 +00:00
|
|
|
auto attrv =
|
2023-01-22 09:28:47 +00:00
|
|
|
v->attrs->get(state->sRecurseForDerivations);
|
2023-03-09 21:18:00 +00:00
|
|
|
recurse = state->forceBool(
|
|
|
|
*attrv->value, attrv->pos,
|
|
|
|
"while evaluating recurseForDerivations");
|
2022-09-09 11:26:15 +00:00
|
|
|
}
|
2022-04-25 09:23:06 +00:00
|
|
|
}
|
2022-09-09 11:26:15 +00:00
|
|
|
if (recurse)
|
|
|
|
reply["attrs"] = std::move(attrs);
|
|
|
|
else
|
|
|
|
reply["attrs"] = nlohmann::json::array();
|
2020-11-29 14:33:55 +00:00
|
|
|
}
|
2022-09-09 11:26:15 +00:00
|
|
|
} else {
|
|
|
|
// We ignore everything that cannot be build
|
|
|
|
reply["attrs"] = nlohmann::json::array();
|
2020-11-29 14:33:55 +00:00
|
|
|
}
|
2022-04-26 09:15:56 +00:00
|
|
|
} catch (EvalError &e) {
|
2022-01-07 07:20:41 +00:00
|
|
|
auto err = e.info();
|
|
|
|
std::ostringstream oss;
|
|
|
|
showErrorInfo(oss, err, loggerSettings.showTrace.get());
|
|
|
|
auto msg = oss.str();
|
|
|
|
|
2020-11-29 14:33:55 +00:00
|
|
|
// Transmits the error we got from the previous evaluation
|
|
|
|
// in the JSON output.
|
2021-03-14 22:16:57 +00:00
|
|
|
reply["error"] = filterANSIEscapes(msg, true);
|
2020-11-29 14:33:55 +00:00
|
|
|
// Don't forget to print it into the STDERR log, this is
|
|
|
|
// what's shown in the Hydra UI.
|
2022-01-07 07:20:41 +00:00
|
|
|
printError(e.msg());
|
2020-11-29 14:33:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
writeLine(to.get(), reply.dump());
|
|
|
|
|
2022-04-21 04:01:02 +00:00
|
|
|
/* If our RSS exceeds the maximum, exit. The collector will
|
2020-11-29 14:33:55 +00:00
|
|
|
start a new process. */
|
|
|
|
struct rusage r;
|
|
|
|
getrusage(RUSAGE_SELF, &r);
|
2022-04-26 09:15:56 +00:00
|
|
|
if ((size_t)r.ru_maxrss > myArgs.maxMemorySize * 1024)
|
|
|
|
break;
|
2020-11-29 14:33:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
writeLine(to.get(), "restart");
|
|
|
|
}
|
|
|
|
|
2023-01-22 09:28:47 +00:00
|
|
|
typedef std::function<void(ref<EvalState> state, Bindings &autoArgs,
|
2022-04-26 09:15:56 +00:00
|
|
|
AutoCloseFD &to, AutoCloseFD &from)>
|
2022-04-15 06:28:19 +00:00
|
|
|
Processor;
|
|
|
|
|
|
|
|
/* Auto-cleanup of fork's process and fds. */
|
|
|
|
struct Proc {
|
|
|
|
AutoCloseFD to, from;
|
|
|
|
Pid pid;
|
|
|
|
|
2022-04-26 09:15:56 +00:00
|
|
|
Proc(const Processor &proc) {
|
2022-04-15 06:28:19 +00:00
|
|
|
Pipe toPipe, fromPipe;
|
|
|
|
toPipe.create();
|
|
|
|
fromPipe.create();
|
|
|
|
auto p = startProcess(
|
|
|
|
[&,
|
|
|
|
to{std::make_shared<AutoCloseFD>(std::move(fromPipe.writeSide))},
|
2022-04-26 09:15:56 +00:00
|
|
|
from{
|
|
|
|
std::make_shared<AutoCloseFD>(std::move(toPipe.readSide))}]() {
|
2022-04-15 06:28:19 +00:00
|
|
|
debug("created worker process %d", getpid());
|
|
|
|
try {
|
2023-01-22 09:28:47 +00:00
|
|
|
auto state = std::make_shared<EvalState>(
|
|
|
|
myArgs.searchPath, openStore(*myArgs.evalStoreUrl));
|
|
|
|
Bindings &autoArgs = *myArgs.getAutoArgs(*state);
|
|
|
|
proc(ref<EvalState>(state), autoArgs, *to, *from);
|
2022-04-26 09:15:56 +00:00
|
|
|
} catch (Error &e) {
|
2022-04-15 06:28:19 +00:00
|
|
|
nlohmann::json err;
|
|
|
|
auto msg = e.msg();
|
|
|
|
err["error"] = filterANSIEscapes(msg, true);
|
|
|
|
printError(msg);
|
|
|
|
writeLine(to->get(), err.dump());
|
|
|
|
// Don't forget to print it into the STDERR log, this is
|
|
|
|
// what's shown in the Hydra UI.
|
|
|
|
writeLine(to->get(), "restart");
|
|
|
|
}
|
|
|
|
},
|
2022-04-26 09:15:56 +00:00
|
|
|
ProcessOptions{.allowVfork = false});
|
2022-04-15 06:28:19 +00:00
|
|
|
|
|
|
|
to = std::move(toPipe.writeSide);
|
|
|
|
from = std::move(fromPipe.readSide);
|
|
|
|
pid = p;
|
|
|
|
}
|
|
|
|
|
2022-04-26 09:15:56 +00:00
|
|
|
~Proc() {}
|
2022-04-15 06:28:19 +00:00
|
|
|
};
|
|
|
|
|
2022-04-26 09:15:56 +00:00
|
|
|
struct State {
|
|
|
|
std::set<json> todo = json::array({json::array()});
|
|
|
|
std::set<json> active;
|
|
|
|
std::exception_ptr exc;
|
2022-04-21 04:01:02 +00:00
|
|
|
};
|
|
|
|
|
2022-04-26 09:15:56 +00:00
|
|
|
std::function<void()> collector(Sync<State> &state_,
|
|
|
|
std::condition_variable &wakeup) {
|
2022-04-21 04:01:02 +00:00
|
|
|
return [&]() {
|
|
|
|
try {
|
|
|
|
std::optional<std::unique_ptr<Proc>> proc_;
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
|
2022-04-26 09:15:56 +00:00
|
|
|
auto proc = proc_.has_value() ? std::move(proc_.value())
|
|
|
|
: std::make_unique<Proc>(worker);
|
2022-04-21 04:01:02 +00:00
|
|
|
|
|
|
|
/* Check whether the existing worker process is still there. */
|
|
|
|
auto s = readLine(proc->from.get());
|
|
|
|
if (s == "restart") {
|
|
|
|
proc_ = std::nullopt;
|
|
|
|
continue;
|
|
|
|
} else if (s != "next") {
|
2022-04-26 05:11:17 +00:00
|
|
|
auto json = json::parse(s);
|
2022-04-26 09:15:56 +00:00
|
|
|
throw Error("worker error: %s", (std::string)json["error"]);
|
2022-04-21 04:01:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait for a job name to become available. */
|
2022-04-26 05:11:17 +00:00
|
|
|
json attrPath;
|
2022-04-21 04:01:02 +00:00
|
|
|
|
|
|
|
while (true) {
|
|
|
|
checkInterrupt();
|
|
|
|
auto state(state_.lock());
|
2022-04-26 09:15:56 +00:00
|
|
|
if ((state->todo.empty() && state->active.empty()) ||
|
|
|
|
state->exc) {
|
2022-04-21 04:01:02 +00:00
|
|
|
writeLine(proc->to.get(), "exit");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!state->todo.empty()) {
|
|
|
|
attrPath = *state->todo.begin();
|
|
|
|
state->todo.erase(state->todo.begin());
|
|
|
|
state->active.insert(attrPath);
|
|
|
|
break;
|
|
|
|
} else
|
|
|
|
state.wait(wakeup);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Tell the worker to evaluate it. */
|
2022-04-26 05:11:17 +00:00
|
|
|
writeLine(proc->to.get(), "do " + attrPath.dump());
|
2022-04-21 04:01:02 +00:00
|
|
|
|
|
|
|
/* Wait for the response. */
|
|
|
|
auto respString = readLine(proc->from.get());
|
2022-04-26 05:11:17 +00:00
|
|
|
auto response = json::parse(respString);
|
2022-04-21 04:01:02 +00:00
|
|
|
|
|
|
|
/* Handle the response. */
|
2022-04-26 05:11:17 +00:00
|
|
|
std::vector<json> newAttrs;
|
2022-04-21 04:01:02 +00:00
|
|
|
if (response.find("attrs") != response.end()) {
|
2022-04-26 09:15:56 +00:00
|
|
|
for (auto &i : response["attrs"]) {
|
|
|
|
json newAttr = json(response["attrPath"]);
|
|
|
|
newAttr.emplace_back(i);
|
|
|
|
newAttrs.push_back(newAttr);
|
2022-04-21 04:01:02 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
auto state(state_.lock());
|
|
|
|
std::cout << respString << "\n" << std::flush;
|
|
|
|
}
|
|
|
|
|
|
|
|
proc_ = std::move(proc);
|
|
|
|
|
|
|
|
/* Add newly discovered job names to the queue. */
|
|
|
|
{
|
|
|
|
auto state(state_.lock());
|
|
|
|
state->active.erase(attrPath);
|
2022-04-26 05:11:17 +00:00
|
|
|
for (auto p : newAttrs) {
|
|
|
|
state->todo.insert(p);
|
|
|
|
}
|
2022-04-21 04:01:02 +00:00
|
|
|
wakeup.notify_all();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (...) {
|
|
|
|
auto state(state_.lock());
|
|
|
|
state->exc = std::current_exception();
|
|
|
|
wakeup.notify_all();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-04-26 09:15:56 +00:00
|
|
|
int main(int argc, char **argv) {
|
2020-11-29 14:33:55 +00:00
|
|
|
/* Prevent undeclared dependencies in the evaluation via
|
|
|
|
$NIX_PATH. */
|
|
|
|
unsetenv("NIX_PATH");
|
|
|
|
|
2022-04-21 16:31:53 +00:00
|
|
|
/* We are doing the garbage collection by killing forks */
|
|
|
|
setenv("GC_DONT_GC", "1", 1);
|
|
|
|
|
2020-11-29 14:33:55 +00:00
|
|
|
return handleExceptions(argv[0], [&]() {
|
|
|
|
initNix();
|
|
|
|
initGC();
|
|
|
|
|
|
|
|
myArgs.parseCmdline(argvToStrings(argc, argv));
|
|
|
|
|
2022-04-26 09:15:56 +00:00
|
|
|
/* FIXME: The build hook in conjunction with import-from-derivation is
|
|
|
|
* causing "unexpected EOF" during eval */
|
2020-11-29 14:33:55 +00:00
|
|
|
settings.builders = "";
|
|
|
|
|
|
|
|
/* Prevent access to paths outside of the Nix search path and
|
|
|
|
to the environment. */
|
2021-03-14 22:32:36 +00:00
|
|
|
evalSettings.restrictEval = false;
|
2020-11-29 14:33:55 +00:00
|
|
|
|
|
|
|
/* When building a flake, use pure evaluation (no access to
|
|
|
|
'getEnv', 'currentSystem' etc. */
|
2022-08-17 06:38:37 +00:00
|
|
|
if (myArgs.impure) {
|
|
|
|
evalSettings.pureEval = false;
|
|
|
|
} else if (myArgs.flake) {
|
|
|
|
evalSettings.pureEval = true;
|
|
|
|
}
|
2020-11-29 14:33:55 +00:00
|
|
|
|
2022-04-26 09:15:56 +00:00
|
|
|
if (myArgs.releaseExpr == "")
|
|
|
|
throw UsageError("no expression specified");
|
2020-11-29 14:33:55 +00:00
|
|
|
|
2022-09-20 18:12:55 +00:00
|
|
|
if (myArgs.gcRootsDir == "") {
|
2022-04-26 09:15:56 +00:00
|
|
|
printMsg(lvlError, "warning: `--gc-roots-dir' not specified");
|
2022-09-20 18:12:55 +00:00
|
|
|
} else {
|
|
|
|
myArgs.gcRootsDir = std::filesystem::absolute(myArgs.gcRootsDir);
|
|
|
|
}
|
2020-11-29 14:33:55 +00:00
|
|
|
|
2022-01-07 07:20:41 +00:00
|
|
|
if (myArgs.showTrace) {
|
|
|
|
loggerSettings.showTrace.assign(true);
|
|
|
|
}
|
|
|
|
|
2020-11-29 14:33:55 +00:00
|
|
|
Sync<State> state_;
|
|
|
|
|
2022-04-21 04:01:02 +00:00
|
|
|
/* Start a collector thread per worker process. */
|
2020-11-29 14:33:55 +00:00
|
|
|
std::vector<std::thread> threads;
|
2022-04-21 04:01:02 +00:00
|
|
|
std::condition_variable wakeup;
|
2020-11-29 14:33:55 +00:00
|
|
|
for (size_t i = 0; i < myArgs.nrWorkers; i++)
|
2022-04-21 04:01:02 +00:00
|
|
|
threads.emplace_back(std::thread(collector(state_, wakeup)));
|
2020-11-29 14:33:55 +00:00
|
|
|
|
2022-04-26 09:15:56 +00:00
|
|
|
for (auto &thread : threads)
|
2020-11-29 14:33:55 +00:00
|
|
|
thread.join();
|
|
|
|
|
|
|
|
auto state(state_.lock());
|
|
|
|
|
|
|
|
if (state->exc)
|
|
|
|
std::rethrow_exception(state->exc);
|
|
|
|
});
|
|
|
|
}
|