nix-super/src/nix/log.cc

57 lines
1.4 KiB
C++
Raw Normal View History

#include "command.hh"
#include "common-args.hh"
#include "shared.hh"
#include "store-api.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);
2021-04-05 16:48:18 +03:00
auto b = installable->toDerivedPathWithHints();
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 log = std::visit(overloaded {
2021-04-05 16:48:18 +03:00
[&](DerivedPathOpaque bo) {
return sub->getBuildLog(bo.path);
},
2021-04-05 16:48:18 +03:00
[&](DerivedPathWithHintsBuilt bfd) {
return sub->getBuildLog(bfd.drvPath);
},
}, b);
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;
}
throw Error("build log of '%s' is not available", installable->what());
}
};
static auto rCmdLog = registerCommand<CmdLog>("log");