2017-03-13 12:38:29 +00:00
|
|
|
#include "command.hh"
|
|
|
|
#include "common-args.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "store-api.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
|
|
|
{
|
|
|
|
CmdLog()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string name() override
|
|
|
|
{
|
|
|
|
return "log";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "show the build log of the specified packages or paths";
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
2017-09-06 14:03:22 +00:00
|
|
|
auto b = installable->toBuildable();
|
|
|
|
|
|
|
|
for (auto & sub : subs) {
|
|
|
|
auto log = b.drvPath != "" ? sub->getBuildLog(b.drvPath) : nullptr;
|
|
|
|
for (auto & output : b.outputs) {
|
|
|
|
if (log) break;
|
|
|
|
log = sub->getBuildLog(output.second);
|
2017-03-13 12:38:29 +00:00
|
|
|
}
|
2017-09-06 14:03:22 +00:00
|
|
|
if (!log) continue;
|
|
|
|
stopProgressBar();
|
|
|
|
printInfo("got build log for '%s' from '%s'", installable->what(), sub->getUri());
|
|
|
|
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
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static RegisterCommand r1(make_ref<CmdLog>());
|