nix-super/src/nix/log.cc

65 lines
1.7 KiB
C++
Raw Normal View History

#include "command.hh"
#include "common-args.hh"
#include "shared.hh"
#include "store-api.hh"
#include "log-store.hh"
#include "progress-bar.hh"
using namespace nix;
struct CmdLog : InstallableCommand
{
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"
;
}
2020-05-05 16:18:23 +03:00
Category category() override { return catSecondary; }
void run(ref<Store> store) override
{
2017-09-06 17:03:22 +03:00
settings.readOnlyMode = true;
auto subs = getDefaultSubstituters();
subs.push_front(store);
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) {
auto * logSubP = dynamic_cast<LogStore *>(&*sub);
if (!logSubP) {
printInfo("Skipped '%s' which does not support retrieving build logs", sub->getUri());
continue;
}
auto & logSub = *logSubP;
auto log = std::visit(overloaded {
[&](const DerivedPath::Opaque & bo) {
return logSub.getBuildLog(bo.path);
},
[&](const DerivedPath::Built & bfd) {
return logSub.getBuildLog(bfd.drvPath);
},
}, b.raw());
2017-09-06 17:03:22 +03:00
if (!log) continue;
stopProgressBar();
printInfo("got build log for '%s' from '%s'", installable->what(), logSub.getUri());
2017-09-06 17:03:22 +03:00
std::cout << *log;
return;
}
throw Error("build log of '%s' is not available", installable->what());
}
};
static auto rCmdLog = registerCommand<CmdLog>("log");