2017-04-25 10:06:32 +00:00
|
|
|
#include "command.hh"
|
2016-02-09 20:34:24 +00:00
|
|
|
#include "attr-path.hh"
|
|
|
|
#include "common-opts.hh"
|
|
|
|
#include "derivations.hh"
|
|
|
|
#include "eval-inline.hh"
|
|
|
|
#include "eval.hh"
|
|
|
|
#include "get-drvs.hh"
|
|
|
|
#include "store-api.hh"
|
2017-04-25 09:20:37 +00:00
|
|
|
#include "shared.hh"
|
|
|
|
|
|
|
|
#include <regex>
|
2016-02-09 20:34:24 +00:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2017-07-17 17:02:56 +00:00
|
|
|
Value * SourceExprCommand::getSourceExpr(EvalState & state)
|
2016-08-23 15:11:19 +00:00
|
|
|
{
|
2017-04-25 09:20:37 +00:00
|
|
|
if (vSourceExpr) return vSourceExpr;
|
|
|
|
|
2017-07-19 14:06:10 +00:00
|
|
|
auto sToplevel = state.symbols.create("_toplevel");
|
|
|
|
|
2017-04-25 09:20:37 +00:00
|
|
|
vSourceExpr = state.allocValue();
|
2016-08-23 15:11:19 +00:00
|
|
|
|
|
|
|
if (file != "") {
|
|
|
|
Expr * e = state.parseExprFromFile(resolveExprPath(lookupFileArg(state, file)));
|
2017-04-25 09:20:37 +00:00
|
|
|
state.eval(e, *vSourceExpr);
|
2016-08-23 15:11:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
|
|
|
|
/* Construct the installation source from $NIX_PATH. */
|
|
|
|
|
|
|
|
auto searchPath = state.getSearchPath();
|
|
|
|
|
2017-07-19 14:06:10 +00:00
|
|
|
state.mkAttrs(*vSourceExpr, searchPath.size() + 1);
|
|
|
|
|
|
|
|
mkBool(*state.allocAttr(*vSourceExpr, sToplevel), true);
|
2016-08-23 15:11:19 +00:00
|
|
|
|
|
|
|
std::unordered_set<std::string> seen;
|
|
|
|
|
|
|
|
for (auto & i : searchPath) {
|
|
|
|
if (i.first == "") continue;
|
|
|
|
if (seen.count(i.first)) continue;
|
|
|
|
seen.insert(i.first);
|
2017-04-25 09:20:37 +00:00
|
|
|
#if 0
|
|
|
|
auto res = state.resolveSearchPathElem(i);
|
|
|
|
if (!res.first) continue;
|
|
|
|
if (!pathExists(res.second)) continue;
|
|
|
|
mkApp(*state.allocAttr(*vSourceExpr, state.symbols.create(i.first)),
|
2016-08-23 15:11:19 +00:00
|
|
|
state.getBuiltin("import"),
|
2017-04-25 09:20:37 +00:00
|
|
|
mkString(*state.allocValue(), res.second));
|
|
|
|
#endif
|
|
|
|
Value * v1 = state.allocValue();
|
|
|
|
mkPrimOpApp(*v1, state.getBuiltin("findFile"), state.getBuiltin("nixPath"));
|
|
|
|
Value * v2 = state.allocValue();
|
|
|
|
mkApp(*v2, *v1, mkString(*state.allocValue(), i.first));
|
|
|
|
mkApp(*state.allocAttr(*vSourceExpr, state.symbols.create(i.first)),
|
|
|
|
state.getBuiltin("import"), *v2);
|
2016-08-23 15:11:19 +00:00
|
|
|
}
|
|
|
|
|
2017-04-25 09:20:37 +00:00
|
|
|
vSourceExpr->attrs->sort();
|
2016-08-23 15:11:19 +00:00
|
|
|
}
|
|
|
|
|
2017-04-25 09:20:37 +00:00
|
|
|
return vSourceExpr;
|
2016-08-23 15:11:19 +00:00
|
|
|
}
|
|
|
|
|
2017-07-17 17:02:56 +00:00
|
|
|
ref<EvalState> SourceExprCommand::getEvalState()
|
|
|
|
{
|
|
|
|
if (!evalState)
|
|
|
|
evalState = std::make_shared<EvalState>(Strings{}, getStore());
|
|
|
|
return ref<EvalState>(evalState);
|
|
|
|
}
|
|
|
|
|
2017-09-06 14:03:22 +00:00
|
|
|
Buildable Installable::toBuildable()
|
|
|
|
{
|
|
|
|
auto buildables = toBuildables();
|
|
|
|
if (buildables.size() != 1)
|
|
|
|
throw Error("installable '%s' evaluates to %d derivations, where only one is expected", what(), buildables.size());
|
|
|
|
return std::move(buildables[0]);
|
|
|
|
}
|
|
|
|
|
2017-04-25 09:20:37 +00:00
|
|
|
struct InstallableStoreDrv : Installable
|
|
|
|
{
|
2017-09-06 14:03:22 +00:00
|
|
|
Path drvPath;
|
2017-04-25 09:20:37 +00:00
|
|
|
|
2017-09-06 14:03:22 +00:00
|
|
|
InstallableStoreDrv(const Path & drvPath) : drvPath(drvPath) { }
|
2017-04-25 09:20:37 +00:00
|
|
|
|
2017-09-06 14:03:22 +00:00
|
|
|
std::string what() override { return drvPath; }
|
2017-04-25 09:20:37 +00:00
|
|
|
|
2017-09-06 14:03:22 +00:00
|
|
|
Buildables toBuildables() override
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
2017-09-06 14:03:22 +00:00
|
|
|
Buildable b = {drvPath};
|
|
|
|
// FIXME: add outputs?
|
|
|
|
return {b};
|
2017-04-25 09:20:37 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct InstallableStorePath : Installable
|
2016-02-09 20:34:24 +00:00
|
|
|
{
|
2017-04-25 09:20:37 +00:00
|
|
|
Path storePath;
|
|
|
|
|
|
|
|
InstallableStorePath(const Path & storePath) : storePath(storePath) { }
|
|
|
|
|
|
|
|
std::string what() override { return storePath; }
|
|
|
|
|
2017-09-06 14:03:22 +00:00
|
|
|
Buildables toBuildables() override
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
2017-09-06 14:03:22 +00:00
|
|
|
return {{"", {{"out", storePath}}}};
|
2017-04-25 09:20:37 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-08-29 14:18:00 +00:00
|
|
|
struct InstallableValue : Installable
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
2017-08-29 14:18:00 +00:00
|
|
|
SourceExprCommand & cmd;
|
2017-04-25 09:20:37 +00:00
|
|
|
|
2017-08-29 14:18:00 +00:00
|
|
|
InstallableValue(SourceExprCommand & cmd) : cmd(cmd) { }
|
2017-04-25 09:20:37 +00:00
|
|
|
|
2017-09-06 14:03:22 +00:00
|
|
|
Buildables toBuildables() override
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
2017-08-29 14:18:00 +00:00
|
|
|
auto state = cmd.getEvalState();
|
2017-04-25 09:20:37 +00:00
|
|
|
|
|
|
|
auto v = toValue(*state);
|
|
|
|
|
|
|
|
// FIXME
|
|
|
|
std::map<string, string> autoArgs_;
|
|
|
|
Bindings & autoArgs(*evalAutoArgs(*state, autoArgs_));
|
|
|
|
|
|
|
|
DrvInfos drvs;
|
|
|
|
getDerivations(*state, *v, "", autoArgs, drvs, false);
|
|
|
|
|
2017-07-14 15:10:13 +00:00
|
|
|
Buildables res;
|
2017-04-25 09:20:37 +00:00
|
|
|
|
2017-09-06 14:03:22 +00:00
|
|
|
PathSet drvPaths;
|
|
|
|
|
|
|
|
for (auto & drv : drvs) {
|
|
|
|
Buildable b{drv.queryDrvPath()};
|
|
|
|
drvPaths.insert(b.drvPath);
|
|
|
|
|
|
|
|
auto outputName = drv.queryOutputName();
|
|
|
|
if (outputName == "")
|
|
|
|
throw Error("derivation '%s' lacks an 'outputName' attribute", b.drvPath);
|
|
|
|
|
|
|
|
b.outputs.emplace(outputName, drv.queryOutPath());
|
2017-04-25 09:20:37 +00:00
|
|
|
|
2017-09-06 14:03:22 +00:00
|
|
|
res.push_back(std::move(b));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hack to recognize .all: if all drvs have the same drvPath,
|
|
|
|
// merge the buildables.
|
|
|
|
if (drvPaths.size() == 1) {
|
|
|
|
Buildable b{*drvPaths.begin()};
|
|
|
|
for (auto & b2 : res)
|
|
|
|
b.outputs.insert(b2.outputs.begin(), b2.outputs.end());
|
|
|
|
return {b};
|
|
|
|
} else
|
|
|
|
return res;
|
2017-04-25 09:20:37 +00:00
|
|
|
}
|
2017-08-29 14:18:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct InstallableExpr : InstallableValue
|
|
|
|
{
|
|
|
|
std::string text;
|
|
|
|
|
|
|
|
InstallableExpr(SourceExprCommand & cmd, const std::string & text)
|
|
|
|
: InstallableValue(cmd), text(text) { }
|
|
|
|
|
|
|
|
std::string what() override { return text; }
|
2017-04-25 09:20:37 +00:00
|
|
|
|
|
|
|
Value * toValue(EvalState & state) override
|
|
|
|
{
|
|
|
|
auto v = state.allocValue();
|
|
|
|
state.eval(state.parseExprFromString(text, absPath(".")), *v);
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-08-29 14:18:00 +00:00
|
|
|
struct InstallableAttrPath : InstallableValue
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
|
|
|
std::string attrPath;
|
|
|
|
|
2017-08-29 14:18:00 +00:00
|
|
|
InstallableAttrPath(SourceExprCommand & cmd, const std::string & attrPath)
|
|
|
|
: InstallableValue(cmd), attrPath(attrPath)
|
2017-04-25 09:20:37 +00:00
|
|
|
{ }
|
|
|
|
|
|
|
|
std::string what() override { return attrPath; }
|
|
|
|
|
|
|
|
Value * toValue(EvalState & state) override
|
|
|
|
{
|
2017-08-29 14:18:00 +00:00
|
|
|
auto source = cmd.getSourceExpr(state);
|
2017-04-25 09:20:37 +00:00
|
|
|
|
|
|
|
// FIXME
|
|
|
|
std::map<string, string> autoArgs_;
|
|
|
|
Bindings & autoArgs(*evalAutoArgs(state, autoArgs_));
|
|
|
|
|
|
|
|
Value * v = findAlongAttrPath(state, attrPath, autoArgs, *source);
|
|
|
|
state.forceValue(*v);
|
|
|
|
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// FIXME: extend
|
|
|
|
std::string attrRegex = R"([A-Za-z_][A-Za-z0-9-_+]*)";
|
|
|
|
static std::regex attrPathRegex(fmt(R"(%1%(\.%1%)*)", attrRegex));
|
|
|
|
|
2017-08-29 14:18:00 +00:00
|
|
|
static std::vector<std::shared_ptr<Installable>> parseInstallables(
|
|
|
|
SourceExprCommand & cmd, ref<Store> store, Strings ss, bool useDefaultInstallables)
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
|
|
|
std::vector<std::shared_ptr<Installable>> result;
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2017-08-29 14:18:00 +00:00
|
|
|
if (ss.empty() && useDefaultInstallables) {
|
|
|
|
if (cmd.file == "")
|
|
|
|
cmd.file = ".";
|
2017-05-02 13:28:35 +00:00
|
|
|
ss = Strings{""};
|
2017-04-25 13:18:05 +00:00
|
|
|
}
|
|
|
|
|
2017-05-02 13:28:35 +00:00
|
|
|
for (auto & s : ss) {
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2017-07-04 13:38:23 +00:00
|
|
|
if (s.compare(0, 1, "(") == 0)
|
2017-08-29 14:18:00 +00:00
|
|
|
result.push_back(std::make_shared<InstallableExpr>(cmd, s));
|
2017-07-04 13:38:23 +00:00
|
|
|
|
|
|
|
else if (s.find("/") != std::string::npos) {
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2017-05-02 13:28:35 +00:00
|
|
|
auto path = store->toStorePath(store->followLinksToStore(s));
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2017-04-25 12:09:01 +00:00
|
|
|
if (store->isStorePath(path)) {
|
|
|
|
if (isDerivation(path))
|
|
|
|
result.push_back(std::make_shared<InstallableStoreDrv>(path));
|
|
|
|
else
|
|
|
|
result.push_back(std::make_shared<InstallableStorePath>(path));
|
2016-02-09 20:34:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-02 13:28:35 +00:00
|
|
|
else if (s == "" || std::regex_match(s, attrPathRegex))
|
2017-08-29 14:18:00 +00:00
|
|
|
result.push_back(std::make_shared<InstallableAttrPath>(cmd, s));
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2017-04-25 09:20:37 +00:00
|
|
|
else
|
2017-07-30 11:27:57 +00:00
|
|
|
throw UsageError("don't know what to do with argument '%s'", s);
|
2017-04-25 09:20:37 +00:00
|
|
|
}
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2017-04-25 09:20:37 +00:00
|
|
|
return result;
|
|
|
|
}
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2017-09-06 14:03:22 +00:00
|
|
|
Buildables InstallablesCommand::toBuildables(ref<Store> store, RealiseMode mode)
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
2017-08-14 18:14:55 +00:00
|
|
|
if (mode != Build)
|
2017-07-14 15:10:13 +00:00
|
|
|
settings.readOnlyMode = true;
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2017-09-06 14:03:22 +00:00
|
|
|
Buildables buildables;
|
|
|
|
|
|
|
|
PathSet pathsToBuild;
|
2017-07-14 15:10:13 +00:00
|
|
|
|
2017-09-06 14:03:22 +00:00
|
|
|
for (auto & i : installables) {
|
|
|
|
for (auto & b : i->toBuildables()) {
|
|
|
|
if (b.drvPath != "")
|
|
|
|
pathsToBuild.insert(b.drvPath);
|
|
|
|
buildables.push_back(std::move(b));
|
2017-07-14 15:10:13 +00:00
|
|
|
}
|
2017-09-06 14:03:22 +00:00
|
|
|
}
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2017-07-14 12:23:38 +00:00
|
|
|
if (mode == DryRun)
|
2017-09-06 14:03:22 +00:00
|
|
|
printMissing(store, pathsToBuild, lvlError);
|
2017-07-14 12:23:38 +00:00
|
|
|
else if (mode == Build)
|
2017-09-06 14:03:22 +00:00
|
|
|
store->buildPaths(pathsToBuild);
|
|
|
|
|
|
|
|
return buildables;
|
|
|
|
}
|
|
|
|
|
|
|
|
PathSet InstallablesCommand::toStorePaths(ref<Store> store, RealiseMode mode)
|
|
|
|
{
|
|
|
|
PathSet outPaths;
|
|
|
|
|
|
|
|
for (auto & b : toBuildables(store, mode))
|
|
|
|
for (auto & output : b.outputs)
|
|
|
|
outPaths.insert(output.second);
|
2017-04-25 09:20:37 +00:00
|
|
|
|
2017-04-25 14:19:22 +00:00
|
|
|
return outPaths;
|
2017-04-25 09:20:37 +00:00
|
|
|
}
|
|
|
|
|
2017-04-25 10:06:32 +00:00
|
|
|
void InstallablesCommand::prepare()
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
2017-08-29 14:18:00 +00:00
|
|
|
installables = parseInstallables(*this, getStore(), _installables, useDefaultInstallables());
|
|
|
|
}
|
|
|
|
|
|
|
|
void InstallableCommand::prepare()
|
|
|
|
{
|
|
|
|
auto installables = parseInstallables(*this, getStore(), {_installable}, false);
|
|
|
|
assert(installables.size() == 1);
|
|
|
|
installable = installables.front();
|
2016-02-09 20:34:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|