2019-02-21 05:53:01 +00:00
|
|
|
#include "eval.hh"
|
2016-02-09 20:34:24 +00:00
|
|
|
#include "command.hh"
|
|
|
|
#include "common-args.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "store-api.hh"
|
2020-10-09 20:18:08 +00:00
|
|
|
#include "local-fs-store.hh"
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2020-10-23 04:59:01 +00:00
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
2016-02-09 20:34:24 +00:00
|
|
|
using namespace nix;
|
|
|
|
|
2020-10-23 04:59:01 +00:00
|
|
|
struct CmdBuild : InstallablesCommand, MixDryRun, MixJSON, MixProfile
|
2016-02-09 20:34:24 +00:00
|
|
|
{
|
2017-09-06 14:20:34 +00:00
|
|
|
Path outLink = "result";
|
2020-06-29 08:05:44 +00:00
|
|
|
BuildMode buildMode = bmNormal;
|
2017-09-06 14:20:34 +00:00
|
|
|
|
2016-02-09 20:34:24 +00:00
|
|
|
CmdBuild()
|
|
|
|
{
|
2020-05-04 20:40:19 +00:00
|
|
|
addFlag({
|
|
|
|
.longName = "out-link",
|
|
|
|
.shortName = 'o',
|
2021-01-13 13:18:04 +00:00
|
|
|
.description = "Use *path* as prefix for the symlinks to the build results. It defaults to `result`.",
|
2020-05-04 20:40:19 +00:00
|
|
|
.labels = {"path"},
|
|
|
|
.handler = {&outLink},
|
2020-05-10 19:35:07 +00:00
|
|
|
.completer = completePath
|
2020-05-04 20:40:19 +00:00
|
|
|
});
|
2017-09-06 14:20:34 +00:00
|
|
|
|
2020-05-04 20:40:19 +00:00
|
|
|
addFlag({
|
|
|
|
.longName = "no-link",
|
2021-01-13 13:18:04 +00:00
|
|
|
.description = "Do not create symlinks to the build results.",
|
2020-05-04 20:40:19 +00:00
|
|
|
.handler = {&outLink, Path("")},
|
|
|
|
});
|
2020-06-29 08:05:44 +00:00
|
|
|
|
|
|
|
addFlag({
|
|
|
|
.longName = "rebuild",
|
2021-01-13 13:18:04 +00:00
|
|
|
.description = "Rebuild an already built package and compare the result to the existing store paths.",
|
2020-06-29 08:05:44 +00:00
|
|
|
.handler = {&buildMode, bmCheck},
|
|
|
|
});
|
2016-02-09 20:34:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "build a derivation or fetch a store path";
|
|
|
|
}
|
|
|
|
|
2020-12-08 13:19:36 +00:00
|
|
|
std::string doc() override
|
2017-09-07 18:14:04 +00:00
|
|
|
{
|
2020-12-08 13:19:36 +00:00
|
|
|
return
|
|
|
|
#include "build.md"
|
|
|
|
;
|
2017-09-07 18:14:04 +00:00
|
|
|
}
|
|
|
|
|
2016-02-09 20:34:24 +00:00
|
|
|
void run(ref<Store> store) override
|
|
|
|
{
|
2021-07-16 14:04:47 +00:00
|
|
|
auto buildables = build(
|
|
|
|
getEvalStore(), store,
|
2020-07-03 12:21:31 +00:00
|
|
|
dryRun ? Realise::Derivation : Realise::Outputs,
|
2021-07-16 14:04:47 +00:00
|
|
|
installables, buildMode);
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2021-04-27 08:44:29 +00:00
|
|
|
if (json) logger->cout("%s", derivedPathsWithHintsToJSON(buildables, store).dump());
|
|
|
|
|
2018-02-07 20:58:38 +00:00
|
|
|
if (dryRun) return;
|
|
|
|
|
2020-07-23 19:02:57 +00:00
|
|
|
if (outLink != "")
|
|
|
|
if (auto store2 = store.dynamic_pointer_cast<LocalFSStore>())
|
2021-01-21 09:29:51 +00:00
|
|
|
for (const auto & [_i, buildable] : enumerate(buildables)) {
|
|
|
|
auto i = _i;
|
2020-07-23 19:02:57 +00:00
|
|
|
std::visit(overloaded {
|
2021-09-30 21:31:21 +00:00
|
|
|
[&](const BuiltPath::Opaque & bo) {
|
2020-07-23 19:02:57 +00:00
|
|
|
std::string symlink = outLink;
|
|
|
|
if (i) symlink += fmt("-%d", i);
|
2020-09-03 09:26:36 +00:00
|
|
|
store2->addPermRoot(bo.path, absPath(symlink));
|
2020-07-23 19:02:57 +00:00
|
|
|
},
|
2021-09-30 21:31:21 +00:00
|
|
|
[&](const BuiltPath::Built & bfd) {
|
2021-06-21 13:47:47 +00:00
|
|
|
for (auto & output : bfd.outputs) {
|
2020-07-23 19:02:57 +00:00
|
|
|
std::string symlink = outLink;
|
|
|
|
if (i) symlink += fmt("-%d", i);
|
|
|
|
if (output.first != "out") symlink += fmt("-%s", output.first);
|
2020-09-03 09:26:36 +00:00
|
|
|
store2->addPermRoot(output.second, absPath(symlink));
|
2020-07-23 19:02:57 +00:00
|
|
|
}
|
|
|
|
},
|
2021-04-05 14:05:21 +00:00
|
|
|
}, buildable.raw());
|
2021-01-18 21:50:39 +00:00
|
|
|
}
|
2019-07-12 13:32:17 +00:00
|
|
|
|
|
|
|
updateProfile(buildables);
|
2016-02-09 20:34:24 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-10-06 11:36:55 +00:00
|
|
|
static auto rCmdBuild = registerCommand<CmdBuild>("build");
|