aboutsummaryrefslogtreecommitdiff
path: root/src/nix/path-info.cc
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-04-21 14:59:50 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-04-21 15:00:45 +0200
commit1a714952732c56b4735f65dea49d406aacc7c595 (patch)
treed8fad472ca6a62af2ab6d80b38c2fd52343bf6e5 /src/nix/path-info.cc
parent69e3ffb076931aba73b5fcc41f5264f5f62c5ce9 (diff)
nix path-info: Add
Forgot to commit this earlier...
Diffstat (limited to 'src/nix/path-info.cc')
-rw-r--r--src/nix/path-info.cc75
1 files changed, 75 insertions, 0 deletions
diff --git a/src/nix/path-info.cc b/src/nix/path-info.cc
new file mode 100644
index 000000000..8497d708c
--- /dev/null
+++ b/src/nix/path-info.cc
@@ -0,0 +1,75 @@
+#include "command.hh"
+#include "progress-bar.hh"
+#include "shared.hh"
+#include "store-api.hh"
+
+#include <iomanip>
+
+using namespace nix;
+
+struct CmdPathInfo : StorePathsCommand
+{
+ bool showSize = false;
+ bool showClosureSize = false;
+
+ CmdPathInfo()
+ {
+ mkFlag('s', "size", "print size of the NAR dump of each path", &showSize);
+ mkFlag('S', "closure-size", "print sum size of the NAR dumps of the closure of each path", &showClosureSize);
+ }
+
+ std::string name() override
+ {
+ return "path-info";
+ }
+
+ std::string description() override
+ {
+ return "query information about store paths";
+ }
+
+ Examples examples() override
+ {
+ return {
+ Example{
+ "To show the closure sizes of every path in the current NixOS system closure, sorted by size:",
+ "nix path-info -rS /run/current-system | sort -nk2"
+ },
+ Example{
+ "To check the existence of a path in a binary cache:",
+ "nix path-info -r /nix/store/7qvk5c91...-geeqie-1.1 --store https://cache.nixos.org/"
+ },
+ };
+ }
+
+ void run(ref<Store> store, Paths storePaths) override
+ {
+ size_t pathLen = 0;
+ for (auto & storePath : storePaths)
+ pathLen = std::max(pathLen, storePath.size());
+
+ for (auto & storePath : storePaths) {
+ if (!store->isValidPath(storePath))
+ throw Error(format("path ā€˜%sā€™ is not valid") % storePath);
+
+ std::cout << storePath << std::string(pathLen - storePath.size(), ' ');
+
+ if (showSize) {
+ std::cout << '\t' << std::setw(11) << store->queryPathInfo(storePath)->narSize;
+ }
+
+ if (showClosureSize) {
+ size_t totalSize = 0;
+ PathSet closure;
+ store->computeFSClosure(storePath, closure, false, false);
+ for (auto & p : closure)
+ totalSize += store->queryPathInfo(p)->narSize;
+ std::cout << '\t' << std::setw(11) << totalSize;
+ }
+
+ std::cout << std::endl;
+ }
+ }
+};
+
+static RegisterCommand r1(make_ref<CmdPathInfo>());