forked from lix-project/lix
e1de1fe0d8
I think this better captures the intent of what's going on: we either have an opaque store path, or a drv path with some outputs. Having this structure will also help us support CA derivations: we'll have to allow the outpath paths to be optional, so the structure we gain now makes up for the structure we loose then.
68 lines
1.8 KiB
C++
68 lines
1.8 KiB
C++
#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
|
|
{
|
|
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:",
|
|
"nix log nixpkgs#hello"
|
|
},
|
|
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:",
|
|
"nix log --store https://cache.nixos.org nixpkgs#hello"
|
|
},
|
|
};
|
|
}
|
|
|
|
Category category() override { return catSecondary; }
|
|
|
|
void run(ref<Store> store) override
|
|
{
|
|
settings.readOnlyMode = true;
|
|
|
|
auto subs = getDefaultSubstituters();
|
|
|
|
subs.push_front(store);
|
|
|
|
auto b = installable->toBuildable();
|
|
|
|
RunPager pager;
|
|
for (auto & sub : subs) {
|
|
auto log = std::visit(overloaded {
|
|
[&](BuildableOpaque bo) {
|
|
return sub->getBuildLog(bo.path);
|
|
},
|
|
[&](BuildableFromDrv bfd) {
|
|
return sub->getBuildLog(bfd.drvPath);
|
|
},
|
|
}, b);
|
|
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 r1 = registerCommand<CmdLog>("log");
|