2017-03-13 13:38:29 +01:00
|
|
|
#include "command.hh"
|
|
|
|
#include "common-args.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "store-api.hh"
|
2017-08-29 16:18:00 +02:00
|
|
|
#include "progress-bar.hh"
|
2017-03-13 13:38:29 +01:00
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
2017-08-29 16:18:00 +02:00
|
|
|
struct CmdLog : InstallableCommand
|
2017-03-13 13:38:29 +01:00
|
|
|
{
|
|
|
|
std::string description() override
|
|
|
|
{
|
2017-09-07 20:18:29 +02:00
|
|
|
return "show the build log of the specified packages or paths, if available";
|
|
|
|
}
|
|
|
|
|
|
|
|
Examples examples() override
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
Example{
|
|
|
|
"To get the build log of GNU Hello:",
|
2020-07-15 20:28:16 +02:00
|
|
|
"nix log nixpkgs#hello"
|
2017-09-07 20:18:29 +02:00
|
|
|
},
|
|
|
|
Example{
|
|
|
|
"To get the build log of a specific path:",
|
|
|
|
"nix log /nix/store/lmngj4wcm9rkv3w4dfhzhcyij3195hiq-thunderbird-52.2.1"
|
|
|
|
},
|
|
|
|
Example{
|
|
|
|
"To get a build log from a specific binary cache:",
|
2020-07-15 20:28:16 +02:00
|
|
|
"nix log --store https://cache.nixos.org nixpkgs#hello"
|
2017-09-07 20:18:29 +02:00
|
|
|
},
|
|
|
|
};
|
2017-03-13 13:38:29 +01:00
|
|
|
}
|
|
|
|
|
2020-05-05 15:18:23 +02:00
|
|
|
Category category() override { return catSecondary; }
|
|
|
|
|
2017-03-13 13:38:29 +01:00
|
|
|
void run(ref<Store> store) override
|
|
|
|
{
|
2017-09-06 16:03:22 +02:00
|
|
|
settings.readOnlyMode = true;
|
|
|
|
|
2017-03-13 13:38:29 +01:00
|
|
|
auto subs = getDefaultSubstituters();
|
|
|
|
|
|
|
|
subs.push_front(store);
|
|
|
|
|
2017-09-06 16:03:22 +02:00
|
|
|
auto b = installable->toBuildable();
|
|
|
|
|
2018-01-12 21:45:05 +01:00
|
|
|
RunPager pager;
|
2017-09-06 16:03:22 +02:00
|
|
|
for (auto & sub : subs) {
|
2019-12-05 19:11:09 +01:00
|
|
|
auto log = b.drvPath ? sub->getBuildLog(*b.drvPath) : nullptr;
|
2017-09-06 16:03:22 +02:00
|
|
|
for (auto & output : b.outputs) {
|
|
|
|
if (log) break;
|
|
|
|
log = sub->getBuildLog(output.second);
|
2017-03-13 13:38:29 +01:00
|
|
|
}
|
2017-09-06 16:03:22 +02:00
|
|
|
if (!log) continue;
|
|
|
|
stopProgressBar();
|
|
|
|
printInfo("got build log for '%s' from '%s'", installable->what(), sub->getUri());
|
|
|
|
std::cout << *log;
|
|
|
|
return;
|
2017-03-13 13:38:29 +01:00
|
|
|
}
|
2017-08-29 16:18:00 +02:00
|
|
|
|
|
|
|
throw Error("build log of '%s' is not available", installable->what());
|
2017-03-13 13:38:29 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-06-18 16:01:35 +02:00
|
|
|
static auto r1 = registerCommand<CmdLog>("log");
|