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