aboutsummaryrefslogtreecommitdiff
path: root/src/nix/log.cc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2017-03-13 13:38:29 +0100
committerEelco Dolstra <edolstra@gmail.com>2017-03-15 16:48:29 +0100
commit5b86451f0279c384fb379fed9d2979d8025aa269 (patch)
treeb7f0f36da91017bf22cc42a0025038cb7460d8c5 /src/nix/log.cc
parent0afeb7f51e3465c7c27bc5a83017e9ffde8c6725 (diff)
Add a "nix log" command
This replaces "nix-store --read-log". It checks the local store and any configured substituters for the requested logs.
Diffstat (limited to 'src/nix/log.cc')
-rw-r--r--src/nix/log.cc57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/nix/log.cc b/src/nix/log.cc
new file mode 100644
index 000000000..d8a3830e9
--- /dev/null
+++ b/src/nix/log.cc
@@ -0,0 +1,57 @@
+#include "command.hh"
+#include "common-args.hh"
+#include "installables.hh"
+#include "shared.hh"
+#include "store-api.hh"
+
+using namespace nix;
+
+struct CmdLog : StoreCommand, MixInstallables
+{
+ 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
+ {
+ auto elems = evalInstallables(store);
+
+ PathSet paths;
+
+ for (auto & elem : elems) {
+ if (elem.isDrv)
+ paths.insert(elem.drvPath);
+ else
+ paths.insert(elem.outPaths.begin(), elem.outPaths.end());
+ }
+
+ auto subs = getDefaultSubstituters();
+
+ subs.push_front(store);
+
+ for (auto & path : paths) {
+ bool found = false;
+ for (auto & sub : subs) {
+ auto log = sub->getBuildLog(path);
+ if (!log) continue;
+ std::cout << *log;
+ found = true;
+ break;
+ }
+ if (!found)
+ throw Error("build log of path ā€˜%sā€™ is not available", path);
+ }
+ }
+};
+
+static RegisterCommand r1(make_ref<CmdLog>());