2017-03-13 14:38:29 +02:00
|
|
|
#include "command.hh"
|
|
|
|
#include "common-args.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "store-api.hh"
|
2017-08-29 17:18:00 +03:00
|
|
|
#include "progress-bar.hh"
|
2017-03-13 14:38:29 +02:00
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
2017-08-29 17:18:00 +03:00
|
|
|
struct CmdLog : InstallableCommand
|
2017-03-13 14:38:29 +02:00
|
|
|
{
|
|
|
|
std::string description() override
|
|
|
|
{
|
2017-09-07 21:18:29 +03:00
|
|
|
return "show the build log of the specified packages or paths, if available";
|
|
|
|
}
|
|
|
|
|
2020-12-09 14:41:47 +02:00
|
|
|
std::string doc() override
|
2017-09-07 21:18:29 +03:00
|
|
|
{
|
2020-12-09 14:41:47 +02:00
|
|
|
return
|
|
|
|
#include "log.md"
|
|
|
|
;
|
2017-03-13 14:38:29 +02:00
|
|
|
}
|
|
|
|
|
2020-05-05 16:18:23 +03:00
|
|
|
Category category() override { return catSecondary; }
|
|
|
|
|
2017-03-13 14:38:29 +02:00
|
|
|
void run(ref<Store> store) override
|
|
|
|
{
|
2017-09-06 17:03:22 +03:00
|
|
|
settings.readOnlyMode = true;
|
|
|
|
|
2017-03-13 14:38:29 +02:00
|
|
|
auto subs = getDefaultSubstituters();
|
|
|
|
|
|
|
|
subs.push_front(store);
|
|
|
|
|
2021-05-17 09:45:08 +03:00
|
|
|
auto b = installable->toDerivedPath();
|
2017-09-06 17:03:22 +03:00
|
|
|
|
2018-01-12 22:45:05 +02:00
|
|
|
RunPager pager;
|
2017-09-06 17:03:22 +03:00
|
|
|
for (auto & sub : subs) {
|
2020-07-23 22:02:57 +03:00
|
|
|
auto log = std::visit(overloaded {
|
2021-10-01 00:31:21 +03:00
|
|
|
[&](const DerivedPath::Opaque & bo) {
|
2020-07-23 22:02:57 +03:00
|
|
|
return sub->getBuildLog(bo.path);
|
|
|
|
},
|
2021-10-01 00:31:21 +03:00
|
|
|
[&](const DerivedPath::Built & bfd) {
|
2020-07-23 22:02:57 +03:00
|
|
|
return sub->getBuildLog(bfd.drvPath);
|
|
|
|
},
|
2021-04-05 17:05:21 +03:00
|
|
|
}, b.raw());
|
2017-09-06 17:03:22 +03:00
|
|
|
if (!log) continue;
|
|
|
|
stopProgressBar();
|
|
|
|
printInfo("got build log for '%s' from '%s'", installable->what(), sub->getUri());
|
|
|
|
std::cout << *log;
|
|
|
|
return;
|
2017-03-13 14:38:29 +02:00
|
|
|
}
|
2017-08-29 17:18:00 +03:00
|
|
|
|
|
|
|
throw Error("build log of '%s' is not available", installable->what());
|
2017-03-13 14:38:29 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-10-06 14:36:55 +03:00
|
|
|
static auto rCmdLog = registerCommand<CmdLog>("log");
|