aboutsummaryrefslogtreecommitdiff
path: root/src/nix-store
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2007-10-09 22:14:27 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2007-10-09 22:14:27 +0000
commita8629de827e4d5a67372614727ce6fcc26423f8c (patch)
treebf1cffcf63a74e41ec48fb7e12918d57979fc763 /src/nix-store
parent27a0662828cb5ac9da198f35754750f12628d546 (diff)
* New command `nix-store --optimise' to reduce Nix store disk space
usage by finding identical files in the store and hard-linking them to each other. It typically reduces the size of the store by something like 25-35%. This is what the optimise-store.pl script did, but the new command is faster and more correct (it's safe wrt garbage collection and concurrent builds).
Diffstat (limited to 'src/nix-store')
-rw-r--r--src/nix-store/help.txt1
-rw-r--r--src/nix-store/nix-store.cc52
2 files changed, 50 insertions, 3 deletions
diff --git a/src/nix-store/help.txt b/src/nix-store/help.txt
index 0662f6796..14b83a06c 100644
--- a/src/nix-store/help.txt
+++ b/src/nix-store/help.txt
@@ -21,6 +21,7 @@ Operations:
--init: initialise the Nix database
--verify: verify Nix structures
+ --optimise: optimise the Nix store by hard-linking identical files
--version: output version information
--help: display help
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc
index 176dc39f9..678ce2ae9 100644
--- a/src/nix-store/nix-store.cc
+++ b/src/nix-store/nix-store.cc
@@ -466,6 +466,13 @@ static void opCheckValidity(Strings opFlags, Strings opArgs)
}
+static string showBytes(unsigned long long bytes)
+{
+ return (format("%d bytes (%.2f MiB)")
+ % bytes % (bytes / (1024.0 * 1024.0))).str();
+}
+
+
struct PrintFreed
{
bool show, dryRun;
@@ -477,9 +484,9 @@ struct PrintFreed
if (show)
cout << format(
(dryRun
- ? "%d bytes would be freed (%.2f MiB)\n"
- : "%d bytes freed (%.2f MiB)\n"))
- % bytesFreed % (bytesFreed / (1024.0 * 1024.0));
+ ? "%1% would be freed\n"
+ : "%1% freed (%.2f MiB)\n"))
+ % showBytes(bytesFreed);
}
};
@@ -614,6 +621,43 @@ static void opVerify(Strings opFlags, Strings opArgs)
}
+
+static void showOptimiseStats(OptimiseStats & stats)
+{
+ printMsg(lvlError,
+ format("%1% freed by hard-linking %2% files; there are %3% files with equal contents out of %4% files in total")
+ % showBytes(stats.bytesFreed)
+ % stats.filesLinked
+ % stats.sameContents
+ % stats.totalFiles);
+}
+
+
+/* Optimise the disk space usage of the Nix store by hard-linking
+ files with the same contents. */
+static void opOptimise(Strings opFlags, Strings opArgs)
+{
+ if (!opArgs.empty())
+ throw UsageError("no arguments expected");
+
+ for (Strings::iterator i = opFlags.begin();
+ i != opFlags.end(); ++i)
+ throw UsageError(format("unknown flag `%1%'") % *i);
+
+ LocalStore * store2(dynamic_cast<LocalStore *>(store.get()));
+ if (!store2) throw Error("you don't have sufficient rights to use --optimise");
+
+ OptimiseStats stats;
+ try {
+ store2->optimiseStore(true, stats);
+ } catch (...) {
+ showOptimiseStats(stats);
+ throw;
+ }
+ showOptimiseStats(stats);
+}
+
+
/* Scan the arguments; find the operation, set global flags, put all
other flags in a list, and put all other arguments in another
list. */
@@ -659,6 +703,8 @@ void run(Strings args)
op = opInit;
else if (arg == "--verify")
op = opVerify;
+ else if (arg == "--optimise")
+ op = opOptimise;
else if (arg == "--add-root") {
if (i == args.end())
throw UsageError("`--add-root requires an argument");