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-10 13:58:30 +00:00
|
|
|
std::shared_ptr<Installable> parseInstallable(
|
|
|
|
SourceExprCommand & cmd, ref<Store> store, const std::string & installable,
|
|
|
|
bool useDefaultInstallables)
|
|
|
|
{
|
|
|
|
auto installables = parseInstallables(cmd, store, {installable}, false);
|
|
|
|
assert(installables.size() == 1);
|
|
|
|
return installables.front();
|
|
|
|
}
|
|
|
|
|
|
|
|
Buildables toBuildables(ref<Store> store, RealiseMode mode,
|
|
|
|
std::vector<std::shared_ptr<Installable>> installables)
|
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()) {
|
2017-09-10 13:58:30 +00:00
|
|
|
if (b.drvPath != "") {
|
|
|
|
StringSet outputNames;
|
|
|
|
for (auto & output : b.outputs)
|
|
|
|
outputNames.insert(output.first);
|
|
|
|
pathsToBuild.insert(
|
|
|
|
b.drvPath + "!" + concatStringsSep(",", outputNames));
|
2017-09-27 11:14:45 +00:00
|
|
|
} else
|
|
|
|
for (auto & output : b.outputs)
|
|
|
|
pathsToBuild.insert(output.second);
|
2017-09-06 14:03:22 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-09-10 13:58:30 +00:00
|
|
|
PathSet toStorePaths(ref<Store> store, RealiseMode mode,
|
|
|
|
std::vector<std::shared_ptr<Installable>> installables)
|
2017-09-06 14:03:22 +00:00
|
|
|
{
|
|
|
|
PathSet outPaths;
|
|
|
|
|
2017-09-10 13:58:30 +00:00
|
|
|
for (auto & b : toBuildables(store, mode, installables))
|
2017-09-06 14:03:22 +00:00
|
|
|
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-09-10 13:58:30 +00:00
|
|
|
Path toStorePath(ref<Store> store, RealiseMode mode,
|
|
|
|
std::shared_ptr<Installable> installable)
|
|
|
|
{
|
|
|
|
auto paths = toStorePaths(store, mode, {installable});
|
|
|
|
|
|
|
|
if (paths.size() != 1)
|
|
|
|
throw Error("argument '%s' should evaluate to one store path", installable->what());
|
|
|
|
|
|
|
|
return *paths.begin();
|
|
|
|
}
|
|
|
|
|
Add "nix show-derivation"
This debug command prints a store derivation in JSON format. For
example:
$ nix show-derivation nixpkgs.hello
{
"/nix/store/ayjwpwwiyy04nh9z71rsdgd3q7bra7ch-hello-2.10.drv": {
"outputs": {
"out": {
"path": "/nix/store/w5w4v29ql0qwqhczkdxs94ix2lh7ibgs-hello-2.10"
}
},
"inputSrcs": [
"/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh"
],
"inputDrvs": {
"/nix/store/13839aqdf6x4k3b785rw5f2l7857l6y3-bash-4.4-p12.drv": [
"out"
],
"/nix/store/vgdx7fdc7d4iirmnwj2py1nrvr5qwzj7-hello-2.10.tar.gz.drv": [
"out"
],
"/nix/store/x3kkd0vsqfflbvwf1055l9mr39bg0ms0-stdenv.drv": [
"out"
]
},
"platform": "x86_64-linux",
"builder": "/nix/store/qp5fw57d38bd1n07ss4zxh88zg67c3vg-bash-4.4-p12/bin/bash",
"args": [
"-e",
"/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh"
],
"env": {
"buildInputs": "",
"builder": "/nix/store/qp5fw57d38bd1n07ss4zxh88zg67c3vg-bash-4.4-p12/bin/bash",
"configureFlags": "",
"doCheck": "1",
"name": "hello-2.10",
"nativeBuildInputs": "",
"out": "/nix/store/w5w4v29ql0qwqhczkdxs94ix2lh7ibgs-hello-2.10",
"propagatedBuildInputs": "",
"propagatedNativeBuildInputs": "",
"src": "/nix/store/3x7dwzq014bblazs7kq20p9hyzz0qh8g-hello-2.10.tar.gz",
"stdenv": "/nix/store/6zngq1rdh0ans9qyckqimqibgnlvlfrm-stdenv",
"system": "x86_64-linux"
}
}
}
This removes the need for pp-aterm.
2017-09-25 11:43:35 +00:00
|
|
|
PathSet toDerivations(ref<Store> store,
|
|
|
|
std::vector<std::shared_ptr<Installable>> installables, bool useDeriver)
|
|
|
|
{
|
|
|
|
PathSet drvPaths;
|
|
|
|
|
|
|
|
for (auto & i : installables)
|
|
|
|
for (auto & b : i->toBuildables()) {
|
|
|
|
if (b.drvPath.empty()) {
|
|
|
|
if (!useDeriver)
|
|
|
|
throw Error("argument '%s' did not evaluate to a derivation", i->what());
|
|
|
|
for (auto & output : b.outputs) {
|
|
|
|
auto derivers = store->queryValidDerivers(output.second);
|
|
|
|
if (derivers.empty())
|
|
|
|
throw Error("'%s' does not have a known deriver", i->what());
|
|
|
|
// FIXME: use all derivers?
|
|
|
|
drvPaths.insert(*derivers.begin());
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
drvPaths.insert(b.drvPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
return drvPaths;
|
|
|
|
}
|
|
|
|
|
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()
|
|
|
|
{
|
2017-09-10 13:58:30 +00:00
|
|
|
installable = parseInstallable(*this, getStore(), _installable, false);
|
2016-02-09 20:34:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|