nix-super/src/nix/log.cc

68 lines
1.8 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";
}
Examples examples() override
{
return {
Example{
"To get the build log of GNU Hello:",
2020-07-15 21:28:16 +03:00
"nix log nixpkgs#hello"
2017-09-07 21:18:29 +03: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 21:28:16 +03:00
"nix log --store https://cache.nixos.org nixpkgs#hello"
2017-09-07 21:18:29 +03:00
},
};
}
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);
2017-09-06 17:03:22 +03:00
auto b = installable->toBuildable();
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 {
[&](BuildableOpaque bo) {
return sub->getBuildLog(bo.path);
},
[&](BuildableFromDrv 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");