2003-06-17 21:12:58 +00:00
|
|
|
#include "globals.hh"
|
2006-03-06 11:21:15 +00:00
|
|
|
#include "misc.hh"
|
2003-06-20 10:40:25 +00:00
|
|
|
#include "archive.hh"
|
2003-07-04 15:42:03 +00:00
|
|
|
#include "shared.hh"
|
2003-09-03 11:20:18 +00:00
|
|
|
#include "dotgraph.hh"
|
2010-05-31 16:36:24 +00:00
|
|
|
#include "xmlgraph.hh"
|
2006-11-30 17:43:04 +00:00
|
|
|
#include "local-store.hh"
|
2006-09-04 21:06:23 +00:00
|
|
|
#include "util.hh"
|
2003-03-24 11:50:20 +00:00
|
|
|
|
2010-10-04 17:55:38 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <algorithm>
|
2012-05-30 04:00:02 +00:00
|
|
|
#include <cstdio>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#include <bzlib.h>
|
2010-10-04 17:55:38 +00:00
|
|
|
|
2003-03-24 11:50:20 +00:00
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
using namespace nix;
|
|
|
|
using std::cin;
|
|
|
|
using std::cout;
|
|
|
|
|
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
typedef void (* Operation) (Strings opFlags, Strings opArgs);
|
2003-04-02 15:34:05 +00:00
|
|
|
|
|
|
|
|
2003-12-01 15:55:05 +00:00
|
|
|
void printHelp()
|
2003-07-28 12:19:23 +00:00
|
|
|
{
|
2012-10-03 20:37:06 +00:00
|
|
|
showManPage("nix-store");
|
2003-07-28 12:19:23 +00:00
|
|
|
}
|
2003-06-20 14:11:31 +00:00
|
|
|
|
|
|
|
|
2005-02-01 12:36:25 +00:00
|
|
|
static Path gcRoot;
|
|
|
|
static int rootNr = 0;
|
2005-02-01 13:48:46 +00:00
|
|
|
static bool indirectRoot = false;
|
2013-12-20 12:10:14 +00:00
|
|
|
static bool noOutput = true;
|
2005-02-01 12:36:25 +00:00
|
|
|
|
|
|
|
|
2008-06-09 13:52:45 +00:00
|
|
|
LocalStore & ensureLocalStore()
|
|
|
|
{
|
|
|
|
LocalStore * store2(dynamic_cast<LocalStore *>(store.get()));
|
2010-04-26 12:43:42 +00:00
|
|
|
if (!store2) throw Error("you don't have sufficient rights to use this command");
|
2008-06-09 13:52:45 +00:00
|
|
|
return *store2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-28 16:33:54 +00:00
|
|
|
static Path useDeriver(Path path)
|
2012-07-30 23:55:41 +00:00
|
|
|
{
|
2006-10-28 16:33:54 +00:00
|
|
|
if (!isDerivation(path)) {
|
2007-06-12 16:53:44 +00:00
|
|
|
path = store->queryDeriver(path);
|
2006-10-28 16:33:54 +00:00
|
|
|
if (path == "")
|
|
|
|
throw Error(format("deriver of path `%1%' is not known") % path);
|
|
|
|
}
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-30 17:25:19 +00:00
|
|
|
/* Realise the given path. For a derivation that means build it; for
|
|
|
|
other paths it means ensure their validity. */
|
2012-10-02 20:00:09 +00:00
|
|
|
static PathSet realisePath(const Path & path, bool build = true)
|
2005-01-25 10:55:33 +00:00
|
|
|
{
|
2012-11-26 14:39:10 +00:00
|
|
|
DrvPathWithOutputs p = parseDrvPathWithOutputs(path);
|
|
|
|
|
|
|
|
if (isDerivation(p.first)) {
|
2012-10-02 20:00:09 +00:00
|
|
|
if (build) store->buildPaths(singleton<PathSet>(path));
|
2012-11-26 14:39:10 +00:00
|
|
|
Derivation drv = derivationFromPath(*store, p.first);
|
2012-08-24 20:58:11 +00:00
|
|
|
rootNr++;
|
2011-12-30 17:25:19 +00:00
|
|
|
|
2012-11-26 14:39:10 +00:00
|
|
|
if (p.second.empty())
|
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs) p.second.insert(i->first);
|
|
|
|
|
2011-12-30 17:25:19 +00:00
|
|
|
PathSet outputs;
|
2012-11-26 14:39:10 +00:00
|
|
|
foreach (StringSet::iterator, j, p.second) {
|
|
|
|
DerivationOutputs::iterator i = drv.outputs.find(*j);
|
|
|
|
if (i == drv.outputs.end())
|
|
|
|
throw Error(format("derivation `%1%' does not have an output named `%2%'") % p.first % *j);
|
2011-12-30 17:25:19 +00:00
|
|
|
Path outPath = i->second.path;
|
|
|
|
if (gcRoot == "")
|
|
|
|
printGCWarning();
|
2012-08-24 20:58:11 +00:00
|
|
|
else {
|
|
|
|
Path rootName = gcRoot;
|
|
|
|
if (rootNr > 1) rootName += "-" + int2String(rootNr);
|
|
|
|
if (i->first != "out") rootName += "-" + i->first;
|
|
|
|
outPath = addPermRoot(*store, outPath, rootName, indirectRoot);
|
|
|
|
}
|
2011-12-30 17:25:19 +00:00
|
|
|
outputs.insert(outPath);
|
|
|
|
}
|
|
|
|
return outputs;
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
2012-10-02 20:00:09 +00:00
|
|
|
if (build) store->ensurePath(path);
|
2012-11-19 22:51:56 +00:00
|
|
|
else if (!store->isValidPath(path)) throw Error(format("path `%1%' does not exist and cannot be created") % path);
|
2011-12-30 17:25:19 +00:00
|
|
|
return singleton<PathSet>(path);
|
2005-01-25 10:55:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Realise the given paths. */
|
|
|
|
static void opRealise(Strings opFlags, Strings opArgs)
|
2003-03-14 16:43:14 +00:00
|
|
|
{
|
2008-08-04 13:44:46 +00:00
|
|
|
bool dryRun = false;
|
2012-10-02 21:13:46 +00:00
|
|
|
bool repair = false;
|
2012-11-19 23:27:25 +00:00
|
|
|
bool ignoreUnknown = false;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2008-08-04 13:44:46 +00:00
|
|
|
foreach (Strings::iterator, i, opFlags)
|
|
|
|
if (*i == "--dry-run") dryRun = true;
|
2012-10-02 21:13:46 +00:00
|
|
|
else if (*i == "--repair") repair = true;
|
2012-11-19 23:27:25 +00:00
|
|
|
else if (*i == "--ignore-unknown") ignoreUnknown = true;
|
2008-08-04 13:44:46 +00:00
|
|
|
else throw UsageError(format("unknown flag `%1%'") % *i);
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2012-11-19 23:27:25 +00:00
|
|
|
Paths paths;
|
2012-11-26 14:39:10 +00:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
|
|
|
DrvPathWithOutputs p = parseDrvPathWithOutputs(*i);
|
|
|
|
paths.push_back(makeDrvPathWithOutputs(followLinksToStorePath(p.first), p.second));
|
|
|
|
}
|
2012-11-19 23:27:25 +00:00
|
|
|
|
|
|
|
unsigned long long downloadSize, narSize;
|
|
|
|
PathSet willBuild, willSubstitute, unknown;
|
|
|
|
queryMissing(*store, PathSet(paths.begin(), paths.end()),
|
|
|
|
willBuild, willSubstitute, unknown, downloadSize, narSize);
|
|
|
|
|
|
|
|
if (ignoreUnknown) {
|
|
|
|
Paths paths2;
|
|
|
|
foreach (Paths::iterator, i, paths)
|
|
|
|
if (unknown.find(*i) == unknown.end()) paths2.push_back(*i);
|
|
|
|
paths = paths2;
|
|
|
|
unknown = PathSet();
|
|
|
|
}
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2012-11-19 23:27:25 +00:00
|
|
|
printMissing(willBuild, willSubstitute, unknown, downloadSize, narSize);
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2008-08-04 13:44:46 +00:00
|
|
|
if (dryRun) return;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2012-06-27 20:58:15 +00:00
|
|
|
/* Build all paths at the same time to exploit parallelism. */
|
2012-11-19 23:27:25 +00:00
|
|
|
store->buildPaths(PathSet(paths.begin(), paths.end()), repair);
|
2005-01-19 15:02:02 +00:00
|
|
|
|
2012-11-19 23:27:25 +00:00
|
|
|
if (!ignoreUnknown)
|
|
|
|
foreach (Paths::iterator, i, paths) {
|
|
|
|
PathSet paths = realisePath(*i, false);
|
2013-12-20 12:10:14 +00:00
|
|
|
if (!noOutput)
|
|
|
|
foreach (PathSet::iterator, j, paths)
|
|
|
|
cout << format("%1%\n") % *j;
|
2012-11-19 23:27:25 +00:00
|
|
|
}
|
2003-04-02 15:34:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 14:01:51 +00:00
|
|
|
/* Add files to the Nix store and print the resulting paths. */
|
2003-06-17 21:12:58 +00:00
|
|
|
static void opAdd(Strings opFlags, Strings opArgs)
|
2003-04-02 15:34:05 +00:00
|
|
|
{
|
2003-06-17 21:12:58 +00:00
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
2003-04-02 15:34:05 +00:00
|
|
|
|
2005-03-26 22:06:57 +00:00
|
|
|
for (Strings::iterator i = opArgs.begin(); i != opArgs.end(); ++i)
|
2006-11-30 17:43:04 +00:00
|
|
|
cout << format("%1%\n") % store->addToStore(*i);
|
2003-03-13 16:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 14:01:51 +00:00
|
|
|
/* Preload the output of a fixed-output derivation into the Nix
|
|
|
|
store. */
|
|
|
|
static void opAddFixed(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
bool recursive = false;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2005-04-07 14:01:51 +00:00
|
|
|
for (Strings::iterator i = opFlags.begin();
|
|
|
|
i != opFlags.end(); ++i)
|
|
|
|
if (*i == "--recursive") recursive = true;
|
|
|
|
else throw UsageError(format("unknown flag `%1%'") % *i);
|
|
|
|
|
|
|
|
if (opArgs.empty())
|
|
|
|
throw UsageError("first argument must be hash algorithm");
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2008-12-03 16:10:17 +00:00
|
|
|
HashType hashAlgo = parseHashType(opArgs.front());
|
2005-04-07 14:01:51 +00:00
|
|
|
opArgs.pop_front();
|
|
|
|
|
|
|
|
for (Strings::iterator i = opArgs.begin(); i != opArgs.end(); ++i)
|
2008-12-03 15:06:30 +00:00
|
|
|
cout << format("%1%\n") % store->addToStore(*i, recursive, hashAlgo);
|
2005-04-07 14:01:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Hack to support caching in `nix-prefetch-url'. */
|
|
|
|
static void opPrintFixedPath(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
bool recursive = false;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2005-04-07 14:01:51 +00:00
|
|
|
for (Strings::iterator i = opFlags.begin();
|
|
|
|
i != opFlags.end(); ++i)
|
|
|
|
if (*i == "--recursive") recursive = true;
|
|
|
|
else throw UsageError(format("unknown flag `%1%'") % *i);
|
|
|
|
|
2008-12-03 15:06:30 +00:00
|
|
|
if (opArgs.size() != 3)
|
|
|
|
throw UsageError(format("`--print-fixed-path' requires three arguments"));
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2005-04-07 14:01:51 +00:00
|
|
|
Strings::iterator i = opArgs.begin();
|
2008-12-03 16:10:17 +00:00
|
|
|
HashType hashAlgo = parseHashType(*i++);
|
2005-04-07 14:01:51 +00:00
|
|
|
string hash = *i++;
|
|
|
|
string name = *i++;
|
|
|
|
|
|
|
|
cout << format("%1%\n") %
|
2006-11-13 16:48:27 +00:00
|
|
|
makeFixedOutputPath(recursive, hashAlgo,
|
2008-12-03 16:10:17 +00:00
|
|
|
parseHash16or32(hashAlgo, hash), name);
|
2005-04-07 14:01:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-30 17:25:19 +00:00
|
|
|
static PathSet maybeUseOutputs(const Path & storePath, bool useOutput, bool forceRealise)
|
2003-07-29 10:43:12 +00:00
|
|
|
{
|
2005-01-25 10:55:33 +00:00
|
|
|
if (forceRealise) realisePath(storePath);
|
2005-01-19 14:36:00 +00:00
|
|
|
if (useOutput && isDerivation(storePath)) {
|
2011-08-31 21:11:50 +00:00
|
|
|
Derivation drv = derivationFromPath(*store, storePath);
|
2011-12-30 17:25:19 +00:00
|
|
|
PathSet outputs;
|
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
|
|
|
outputs.insert(i->second.path);
|
|
|
|
return outputs;
|
2005-01-19 14:36:00 +00:00
|
|
|
}
|
2011-12-30 17:25:19 +00:00
|
|
|
else return singleton<PathSet>(storePath);
|
2003-07-29 10:43:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-02-17 15:57:46 +00:00
|
|
|
/* Some code to print a tree representation of a derivation dependency
|
|
|
|
graph. Topological sorting is used to keep the tree relatively
|
|
|
|
flat. */
|
|
|
|
|
|
|
|
const string treeConn = "+---";
|
|
|
|
const string treeLine = "| ";
|
|
|
|
const string treeNull = " ";
|
|
|
|
|
|
|
|
|
2005-04-08 12:57:16 +00:00
|
|
|
static void printTree(const Path & path,
|
2005-02-17 15:57:46 +00:00
|
|
|
const string & firstPad, const string & tailPad, PathSet & done)
|
|
|
|
{
|
2005-04-08 12:57:16 +00:00
|
|
|
if (done.find(path) != done.end()) {
|
|
|
|
cout << format("%1%%2% [...]\n") % firstPad % path;
|
2005-02-17 15:57:46 +00:00
|
|
|
return;
|
|
|
|
}
|
2005-04-08 12:57:16 +00:00
|
|
|
done.insert(path);
|
2005-02-17 15:57:46 +00:00
|
|
|
|
2005-04-08 12:57:16 +00:00
|
|
|
cout << format("%1%%2%\n") % firstPad % path;
|
|
|
|
|
|
|
|
PathSet references;
|
2006-11-30 17:43:04 +00:00
|
|
|
store->queryReferences(path, references);
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2005-02-22 15:23:24 +00:00
|
|
|
/* Topologically sort under the relation A < B iff A \in
|
2005-02-17 15:57:46 +00:00
|
|
|
closure(B). That is, if derivation A is an (possibly indirect)
|
|
|
|
input of B, then A is printed first. This has the effect of
|
|
|
|
flattening the tree, preventing deeply nested structures. */
|
2011-08-31 21:11:50 +00:00
|
|
|
Paths sorted = topoSortPaths(*store, references);
|
2005-02-17 15:57:46 +00:00
|
|
|
reverse(sorted.begin(), sorted.end());
|
|
|
|
|
2013-03-08 00:24:59 +00:00
|
|
|
foreach (Paths::iterator, i, sorted) {
|
2005-02-17 15:57:46 +00:00
|
|
|
Paths::iterator j = i; ++j;
|
2005-04-08 12:57:16 +00:00
|
|
|
printTree(*i, tailPad + treeConn,
|
2005-02-17 15:57:46 +00:00
|
|
|
j == sorted.end() ? tailPad + treeNull : tailPad + treeLine,
|
|
|
|
done);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-08 13:22:08 +00:00
|
|
|
/* Perform various sorts of queries. */
|
|
|
|
static void opQuery(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
2005-12-13 21:04:48 +00:00
|
|
|
enum { qOutputs, qRequisites, qReferences, qReferrers
|
2010-11-17 12:40:52 +00:00
|
|
|
, qReferrersClosure, qDeriver, qBinding, qHash, qSize
|
2010-05-31 16:36:24 +00:00
|
|
|
, qTree, qGraph, qXml, qResolve, qRoots } query = qOutputs;
|
2005-01-19 14:36:00 +00:00
|
|
|
bool useOutput = false;
|
|
|
|
bool includeOutputs = false;
|
2005-01-25 10:55:33 +00:00
|
|
|
bool forceRealise = false;
|
2005-02-07 14:32:44 +00:00
|
|
|
string bindingName;
|
2003-07-21 14:46:01 +00:00
|
|
|
|
2009-11-23 18:16:25 +00:00
|
|
|
foreach (Strings::iterator, i, opFlags)
|
2005-01-19 14:36:00 +00:00
|
|
|
if (*i == "--outputs") query = qOutputs;
|
2003-11-18 11:22:29 +00:00
|
|
|
else if (*i == "--requisites" || *i == "-R") query = qRequisites;
|
2005-01-19 16:59:56 +00:00
|
|
|
else if (*i == "--references") query = qReferences;
|
2005-12-13 21:04:48 +00:00
|
|
|
else if (*i == "--referrers" || *i == "--referers") query = qReferrers;
|
|
|
|
else if (*i == "--referrers-closure" || *i == "--referers-closure") query = qReferrersClosure;
|
2005-02-07 13:40:40 +00:00
|
|
|
else if (*i == "--deriver" || *i == "-d") query = qDeriver;
|
2005-02-07 14:32:44 +00:00
|
|
|
else if (*i == "--binding" || *i == "-b") {
|
|
|
|
if (opArgs.size() == 0)
|
|
|
|
throw UsageError("expected binding name");
|
|
|
|
bindingName = opArgs.front();
|
|
|
|
opArgs.pop_front();
|
|
|
|
query = qBinding;
|
|
|
|
}
|
2005-03-02 15:57:06 +00:00
|
|
|
else if (*i == "--hash") query = qHash;
|
2010-11-17 12:40:52 +00:00
|
|
|
else if (*i == "--size") query = qSize;
|
2005-02-17 15:57:46 +00:00
|
|
|
else if (*i == "--tree") query = qTree;
|
2003-07-28 12:19:23 +00:00
|
|
|
else if (*i == "--graph") query = qGraph;
|
2010-05-31 16:36:24 +00:00
|
|
|
else if (*i == "--xml") query = qXml;
|
2007-01-13 19:50:42 +00:00
|
|
|
else if (*i == "--resolve") query = qResolve;
|
2009-11-23 18:16:25 +00:00
|
|
|
else if (*i == "--roots") query = qRoots;
|
2005-01-19 14:36:00 +00:00
|
|
|
else if (*i == "--use-output" || *i == "-u") useOutput = true;
|
2013-03-08 00:24:59 +00:00
|
|
|
else if (*i == "--force-realise" || *i == "--force-realize" || *i == "-f") forceRealise = true;
|
2005-01-19 14:36:00 +00:00
|
|
|
else if (*i == "--include-outputs") includeOutputs = true;
|
2003-07-21 14:46:01 +00:00
|
|
|
else throw UsageError(format("unknown flag `%1%'") % *i);
|
|
|
|
|
|
|
|
switch (query) {
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2005-01-19 14:36:00 +00:00
|
|
|
case qOutputs: {
|
2009-11-23 18:16:25 +00:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
2007-11-29 16:18:24 +00:00
|
|
|
*i = followLinksToStorePath(*i);
|
2005-01-25 10:55:33 +00:00
|
|
|
if (forceRealise) realisePath(*i);
|
2011-08-31 21:11:50 +00:00
|
|
|
Derivation drv = derivationFromPath(*store, *i);
|
2011-12-30 17:25:19 +00:00
|
|
|
foreach (DerivationOutputs::iterator, j, drv.outputs)
|
|
|
|
cout << format("%1%\n") % j->second.path;
|
2003-07-21 14:46:01 +00:00
|
|
|
}
|
2003-07-08 13:22:08 +00:00
|
|
|
break;
|
2003-07-10 13:41:28 +00:00
|
|
|
}
|
2003-07-08 13:22:08 +00:00
|
|
|
|
2005-01-19 16:59:56 +00:00
|
|
|
case qRequisites:
|
|
|
|
case qReferences:
|
2005-12-13 21:04:48 +00:00
|
|
|
case qReferrers:
|
|
|
|
case qReferrersClosure: {
|
2005-01-19 14:36:00 +00:00
|
|
|
PathSet paths;
|
2009-11-23 18:16:25 +00:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
2011-12-30 17:25:19 +00:00
|
|
|
PathSet ps = maybeUseOutputs(followLinksToStorePath(*i), useOutput, forceRealise);
|
|
|
|
foreach (PathSet::iterator, j, ps) {
|
|
|
|
if (query == qRequisites) computeFSClosure(*store, *j, paths, false, includeOutputs);
|
|
|
|
else if (query == qReferences) store->queryReferences(*j, paths);
|
|
|
|
else if (query == qReferrers) store->queryReferrers(*j, paths);
|
|
|
|
else if (query == qReferrersClosure) computeFSClosure(*store, *j, paths, true);
|
|
|
|
}
|
2003-07-21 14:46:01 +00:00
|
|
|
}
|
2011-08-31 21:11:50 +00:00
|
|
|
Paths sorted = topoSortPaths(*store, paths);
|
2012-07-30 23:55:41 +00:00
|
|
|
for (Paths::reverse_iterator i = sorted.rbegin();
|
2007-02-21 22:45:10 +00:00
|
|
|
i != sorted.rend(); ++i)
|
|
|
|
cout << format("%s\n") % *i;
|
2003-07-21 14:46:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-02-07 13:40:40 +00:00
|
|
|
case qDeriver:
|
2009-11-23 18:16:25 +00:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
2007-11-29 16:18:24 +00:00
|
|
|
Path deriver = store->queryDeriver(followLinksToStorePath(*i));
|
2005-02-07 13:40:40 +00:00
|
|
|
cout << format("%1%\n") %
|
|
|
|
(deriver == "" ? "unknown-deriver" : deriver);
|
|
|
|
}
|
|
|
|
break;
|
2005-02-07 14:32:44 +00:00
|
|
|
|
|
|
|
case qBinding:
|
2009-11-23 18:16:25 +00:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
2007-11-29 16:18:24 +00:00
|
|
|
Path path = useDeriver(followLinksToStorePath(*i));
|
2011-08-31 21:11:50 +00:00
|
|
|
Derivation drv = derivationFromPath(*store, path);
|
2005-02-07 14:32:44 +00:00
|
|
|
StringPairs::iterator j = drv.env.find(bindingName);
|
|
|
|
if (j == drv.env.end())
|
|
|
|
throw Error(format("derivation `%1%' has no environment binding named `%2%'")
|
2006-10-28 16:33:54 +00:00
|
|
|
% path % bindingName);
|
2005-02-07 14:32:44 +00:00
|
|
|
cout << format("%1%\n") % j->second;
|
|
|
|
}
|
|
|
|
break;
|
2005-02-07 13:40:40 +00:00
|
|
|
|
2005-03-02 15:57:06 +00:00
|
|
|
case qHash:
|
2010-11-17 12:40:52 +00:00
|
|
|
case qSize:
|
2009-11-23 18:16:25 +00:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
2011-12-30 17:25:19 +00:00
|
|
|
PathSet paths = maybeUseOutputs(followLinksToStorePath(*i), useOutput, forceRealise);
|
|
|
|
foreach (PathSet::iterator, j, paths) {
|
|
|
|
ValidPathInfo info = store->queryPathInfo(*j);
|
|
|
|
if (query == qHash) {
|
|
|
|
assert(info.hash.type == htSHA256);
|
|
|
|
cout << format("sha256:%1%\n") % printHash32(info.hash);
|
2012-07-30 23:55:41 +00:00
|
|
|
} else if (query == qSize)
|
2011-12-30 17:25:19 +00:00
|
|
|
cout << format("%1%\n") % info.narSize;
|
|
|
|
}
|
2005-03-02 15:57:06 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2005-02-17 15:57:46 +00:00
|
|
|
case qTree: {
|
|
|
|
PathSet done;
|
2009-11-23 18:16:25 +00:00
|
|
|
foreach (Strings::iterator, i, opArgs)
|
2007-11-29 16:18:24 +00:00
|
|
|
printTree(followLinksToStorePath(*i), "", "", done);
|
2005-02-17 15:57:46 +00:00
|
|
|
break;
|
|
|
|
}
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2003-07-28 12:19:23 +00:00
|
|
|
case qGraph: {
|
2003-10-08 15:06:59 +00:00
|
|
|
PathSet roots;
|
2011-12-30 17:25:19 +00:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
|
|
|
PathSet paths = maybeUseOutputs(followLinksToStorePath(*i), useOutput, forceRealise);
|
|
|
|
roots.insert(paths.begin(), paths.end());
|
|
|
|
}
|
2010-05-31 16:36:24 +00:00
|
|
|
printDotGraph(roots);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case qXml: {
|
|
|
|
PathSet roots;
|
2011-12-30 17:25:19 +00:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
|
|
|
PathSet paths = maybeUseOutputs(followLinksToStorePath(*i), useOutput, forceRealise);
|
|
|
|
roots.insert(paths.begin(), paths.end());
|
|
|
|
}
|
2010-05-31 16:36:24 +00:00
|
|
|
printXmlGraph(roots);
|
2003-07-28 12:19:23 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-01-13 19:50:42 +00:00
|
|
|
case qResolve: {
|
2009-11-23 18:16:25 +00:00
|
|
|
foreach (Strings::iterator, i, opArgs)
|
2007-11-29 16:18:24 +00:00
|
|
|
cout << format("%1%\n") % followLinksToStorePath(*i);
|
2007-01-13 19:50:42 +00:00
|
|
|
break;
|
|
|
|
}
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2009-11-23 18:16:25 +00:00
|
|
|
case qRoots: {
|
|
|
|
PathSet referrers;
|
2011-12-30 17:25:19 +00:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
|
|
|
PathSet paths = maybeUseOutputs(followLinksToStorePath(*i), useOutput, forceRealise);
|
|
|
|
foreach (PathSet::iterator, j, paths)
|
2012-12-20 17:41:44 +00:00
|
|
|
computeFSClosure(*store, *j, referrers, true,
|
|
|
|
settings.gcKeepOutputs, settings.gcKeepDerivations);
|
2011-12-30 17:25:19 +00:00
|
|
|
}
|
2009-11-23 18:16:25 +00:00
|
|
|
Roots roots = store->findRoots();
|
|
|
|
foreach (Roots::iterator, i, roots)
|
|
|
|
if (referrers.find(i->second) != referrers.end())
|
|
|
|
cout << format("%1%\n") % i->first;
|
|
|
|
break;
|
|
|
|
}
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2003-07-08 13:22:08 +00:00
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
2003-07-10 18:48:11 +00:00
|
|
|
|
|
|
|
|
2012-01-17 23:07:22 +00:00
|
|
|
static string shellEscape(const string & s)
|
|
|
|
{
|
|
|
|
string r;
|
|
|
|
foreach (string::const_iterator, i, s)
|
|
|
|
if (*i == '\'') r += "'\\''"; else r += *i;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void opPrintEnv(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
if (opArgs.size() != 1) throw UsageError("`--print-env' requires one derivation store path");
|
|
|
|
|
|
|
|
Path drvPath = opArgs.front();
|
|
|
|
Derivation drv = derivationFromPath(*store, drvPath);
|
|
|
|
|
|
|
|
/* Print each environment variable in the derivation in a format
|
|
|
|
that can be sourced by the shell. */
|
|
|
|
foreach (StringPairs::iterator, i, drv.env)
|
|
|
|
cout << format("export %1%; %1%='%2%'\n") % i->first % shellEscape(i->second);
|
|
|
|
|
|
|
|
/* Also output the arguments. This doesn't preserve whitespace in
|
|
|
|
arguments. */
|
|
|
|
cout << "export _args; _args='";
|
|
|
|
foreach (Strings::iterator, i, drv.args) {
|
|
|
|
if (i != drv.args.begin()) cout << ' ';
|
|
|
|
cout << shellEscape(*i);
|
|
|
|
}
|
|
|
|
cout << "'\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-28 16:33:54 +00:00
|
|
|
static void opReadLog(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
|
2012-05-30 04:00:02 +00:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
2007-11-29 16:18:24 +00:00
|
|
|
Path path = useDeriver(followLinksToStorePath(*i));
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2013-03-08 00:24:59 +00:00
|
|
|
for (int j = 0; j <= 2; j++) {
|
|
|
|
if (j == 2) throw Error(format("build log of derivation `%1%' is not available") % path);
|
|
|
|
|
|
|
|
string baseName = baseNameOf(path);
|
|
|
|
Path logPath =
|
|
|
|
j == 0
|
|
|
|
? (format("%1%/%2%/%3%/%4%") % settings.nixLogDir % drvsLogDir % string(baseName, 0, 2) % string(baseName, 2)).str()
|
|
|
|
: (format("%1%/%2%/%3%") % settings.nixLogDir % drvsLogDir % baseName).str();
|
|
|
|
Path logBz2Path = logPath + ".bz2";
|
|
|
|
|
|
|
|
if (pathExists(logPath)) {
|
|
|
|
/* !!! Make this run in O(1) memory. */
|
|
|
|
string log = readFile(logPath);
|
|
|
|
writeFull(STDOUT_FILENO, (const unsigned char *) log.data(), log.size());
|
|
|
|
break;
|
|
|
|
}
|
2013-03-07 22:55:55 +00:00
|
|
|
|
2013-03-08 00:24:59 +00:00
|
|
|
else if (pathExists(logBz2Path)) {
|
|
|
|
AutoCloseFD fd = open(logBz2Path.c_str(), O_RDONLY);
|
|
|
|
FILE * f = 0;
|
|
|
|
if (fd == -1 || (f = fdopen(fd.borrow(), "r")) == 0)
|
|
|
|
throw SysError(format("opening file `%1%'") % logBz2Path);
|
|
|
|
int err;
|
|
|
|
BZFILE * bz = BZ2_bzReadOpen(&err, f, 0, 0, 0, 0);
|
|
|
|
if (!bz) throw Error(format("cannot open bzip2 file `%1%'") % logBz2Path);
|
|
|
|
unsigned char buf[128 * 1024];
|
|
|
|
do {
|
|
|
|
int n = BZ2_bzRead(&err, bz, buf, sizeof(buf));
|
|
|
|
if (err != BZ_OK && err != BZ_STREAM_END)
|
|
|
|
throw Error(format("error reading bzip2 file `%1%'") % logBz2Path);
|
|
|
|
writeFull(STDOUT_FILENO, buf, n);
|
|
|
|
} while (err != BZ_STREAM_END);
|
|
|
|
BZ2_bzReadClose(&err, bz);
|
|
|
|
break;
|
|
|
|
}
|
2013-03-07 22:55:55 +00:00
|
|
|
}
|
2006-10-28 16:33:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-29 18:17:36 +00:00
|
|
|
static void opDumpDB(Strings opFlags, Strings opArgs)
|
2004-02-14 21:44:18 +00:00
|
|
|
{
|
2008-01-29 18:17:36 +00:00
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
if (!opArgs.empty())
|
|
|
|
throw UsageError("no arguments expected");
|
2012-07-11 14:49:04 +00:00
|
|
|
PathSet validPaths = store->queryAllValidPaths();
|
2010-11-16 17:11:46 +00:00
|
|
|
foreach (PathSet::iterator, i, validPaths)
|
|
|
|
cout << store->makeValidityRegistration(singleton<PathSet>(*i), true, true);
|
2008-01-29 18:17:36 +00:00
|
|
|
}
|
2006-11-13 16:48:27 +00:00
|
|
|
|
2005-03-23 11:25:20 +00:00
|
|
|
|
2008-01-29 18:17:36 +00:00
|
|
|
static void registerValidity(bool reregister, bool hashGiven, bool canonicalise)
|
|
|
|
{
|
2005-03-23 13:07:28 +00:00
|
|
|
ValidPathInfos infos;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2005-03-23 11:25:20 +00:00
|
|
|
while (1) {
|
2008-01-29 18:17:36 +00:00
|
|
|
ValidPathInfo info = decodeValidPathInfo(cin, hashGiven);
|
2007-08-12 00:29:28 +00:00
|
|
|
if (info.path == "") break;
|
2006-11-30 17:43:04 +00:00
|
|
|
if (!store->isValidPath(info.path) || reregister) {
|
2005-03-23 12:06:57 +00:00
|
|
|
/* !!! races */
|
2008-01-29 18:17:36 +00:00
|
|
|
if (canonicalise)
|
2013-03-08 00:24:59 +00:00
|
|
|
canonicalisePathMetaData(info.path, -1);
|
2010-11-16 17:11:46 +00:00
|
|
|
if (!hashGiven) {
|
|
|
|
HashResult hash = hashPath(htSHA256, info.path);
|
|
|
|
info.hash = hash.first;
|
|
|
|
info.narSize = hash.second;
|
|
|
|
}
|
2005-03-23 13:07:28 +00:00
|
|
|
infos.push_back(info);
|
2005-03-23 12:06:57 +00:00
|
|
|
}
|
2005-03-23 11:25:20 +00:00
|
|
|
}
|
|
|
|
|
2008-06-09 13:52:45 +00:00
|
|
|
ensureLocalStore().registerValidPaths(infos);
|
2004-02-14 21:44:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-29 18:17:36 +00:00
|
|
|
static void opLoadDB(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
if (!opArgs.empty())
|
|
|
|
throw UsageError("no arguments expected");
|
|
|
|
registerValidity(true, true, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void opRegisterValidity(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
bool reregister = false; // !!! maybe this should be the default
|
|
|
|
bool hashGiven = false;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2008-01-29 18:17:36 +00:00
|
|
|
for (Strings::iterator i = opFlags.begin();
|
|
|
|
i != opFlags.end(); ++i)
|
|
|
|
if (*i == "--reregister") reregister = true;
|
|
|
|
else if (*i == "--hash-given") hashGiven = true;
|
|
|
|
else throw UsageError(format("unknown flag `%1%'") % *i);
|
|
|
|
|
|
|
|
if (!opArgs.empty()) throw UsageError("no arguments expected");
|
|
|
|
|
|
|
|
registerValidity(reregister, hashGiven, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-03-23 11:25:20 +00:00
|
|
|
static void opCheckValidity(Strings opFlags, Strings opArgs)
|
2004-02-14 21:44:18 +00:00
|
|
|
{
|
2007-02-21 17:57:59 +00:00
|
|
|
bool printInvalid = false;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2007-02-21 17:57:59 +00:00
|
|
|
for (Strings::iterator i = opFlags.begin();
|
|
|
|
i != opFlags.end(); ++i)
|
|
|
|
if (*i == "--print-invalid") printInvalid = true;
|
|
|
|
else throw UsageError(format("unknown flag `%1%'") % *i);
|
2004-02-14 21:44:18 +00:00
|
|
|
|
|
|
|
for (Strings::iterator i = opArgs.begin();
|
|
|
|
i != opArgs.end(); ++i)
|
2007-02-21 17:57:59 +00:00
|
|
|
{
|
2007-11-29 16:18:24 +00:00
|
|
|
Path path = followLinksToStorePath(*i);
|
2011-09-06 12:06:30 +00:00
|
|
|
if (!store->isValidPath(path)) {
|
2007-02-21 17:57:59 +00:00
|
|
|
if (printInvalid)
|
|
|
|
cout << format("%1%\n") % path;
|
|
|
|
else
|
|
|
|
throw Error(format("path `%1%' is not valid") % path);
|
2011-09-06 12:06:30 +00:00
|
|
|
}
|
2007-02-21 17:57:59 +00:00
|
|
|
}
|
2004-02-14 21:44:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-02 02:34:46 +00:00
|
|
|
static string showBytes(unsigned long long bytes)
|
2007-10-09 22:14:27 +00:00
|
|
|
{
|
2012-08-02 02:34:46 +00:00
|
|
|
return (format("%.2f MiB") % (bytes / (1024.0 * 1024.0))).str();
|
2007-10-09 22:14:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-30 23:55:41 +00:00
|
|
|
struct PrintFreed
|
2005-12-15 21:11:39 +00:00
|
|
|
{
|
2008-09-17 10:02:55 +00:00
|
|
|
bool show;
|
2008-06-18 09:34:17 +00:00
|
|
|
const GCResults & results;
|
2008-09-17 10:02:55 +00:00
|
|
|
PrintFreed(bool show, const GCResults & results)
|
|
|
|
: show(show), results(results) { }
|
2012-07-30 23:55:41 +00:00
|
|
|
~PrintFreed()
|
2005-12-15 21:11:39 +00:00
|
|
|
{
|
|
|
|
if (show)
|
2008-09-17 12:53:33 +00:00
|
|
|
cout << format("%1% store paths deleted, %2% freed\n")
|
|
|
|
% results.paths.size()
|
2012-08-02 02:34:46 +00:00
|
|
|
% showBytes(results.bytesFreed);
|
2005-12-15 21:11:39 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-08-25 11:43:49 +00:00
|
|
|
static void opGC(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
2009-11-23 17:23:12 +00:00
|
|
|
bool printRoots = false;
|
2008-06-18 09:34:17 +00:00
|
|
|
GCOptions options;
|
|
|
|
options.action = GCOptions::gcDeleteDead;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2008-06-18 09:34:17 +00:00
|
|
|
GCResults results;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2004-08-25 11:43:49 +00:00
|
|
|
/* Do what? */
|
2008-09-17 10:02:55 +00:00
|
|
|
foreach (Strings::iterator, i, opFlags)
|
2009-11-23 17:23:12 +00:00
|
|
|
if (*i == "--print-roots") printRoots = true;
|
2008-06-18 09:34:17 +00:00
|
|
|
else if (*i == "--print-live") options.action = GCOptions::gcReturnLive;
|
|
|
|
else if (*i == "--print-dead") options.action = GCOptions::gcReturnDead;
|
|
|
|
else if (*i == "--delete") options.action = GCOptions::gcDeleteDead;
|
2009-03-26 11:02:07 +00:00
|
|
|
else if (*i == "--max-freed") {
|
2009-11-24 12:26:25 +00:00
|
|
|
long long maxFreed = getIntArg<long long>(*i, i, opFlags.end());
|
2012-08-01 23:14:30 +00:00
|
|
|
options.maxFreed = maxFreed >= 0 ? maxFreed : 0;
|
2009-03-26 11:02:07 +00:00
|
|
|
}
|
2004-08-25 16:54:08 +00:00
|
|
|
else throw UsageError(format("bad sub-operation `%1%' in GC") % *i);
|
2005-01-27 15:21:29 +00:00
|
|
|
|
2008-09-17 14:52:35 +00:00
|
|
|
if (!opArgs.empty()) throw UsageError("no arguments expected");
|
2004-08-25 11:43:49 +00:00
|
|
|
|
2009-11-23 17:23:12 +00:00
|
|
|
if (printRoots) {
|
|
|
|
Roots roots = store->findRoots();
|
|
|
|
foreach (Roots::iterator, i, roots)
|
|
|
|
cout << i->first << " -> " << i->second << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
PrintFreed freed(options.action == GCOptions::gcDeleteDead, results);
|
|
|
|
store->collectGarbage(options, results);
|
|
|
|
|
|
|
|
if (options.action != GCOptions::gcDeleteDead)
|
|
|
|
foreach (PathSet::iterator, i, results.paths)
|
|
|
|
cout << *i << std::endl;
|
|
|
|
}
|
2004-08-25 11:43:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-12-23 21:08:42 +00:00
|
|
|
/* Remove paths from the Nix store if possible (i.e., if they do not
|
|
|
|
have any remaining referrers and are not reachable from any GC
|
|
|
|
roots). */
|
|
|
|
static void opDelete(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
2008-06-18 09:34:17 +00:00
|
|
|
GCOptions options;
|
|
|
|
options.action = GCOptions::gcDeleteSpecific;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2008-09-17 10:02:55 +00:00
|
|
|
foreach (Strings::iterator, i, opFlags)
|
2008-06-18 09:34:17 +00:00
|
|
|
if (*i == "--ignore-liveness") options.ignoreLiveness = true;
|
2005-12-23 21:36:44 +00:00
|
|
|
else throw UsageError(format("unknown flag `%1%'") % *i);
|
2005-12-23 21:08:42 +00:00
|
|
|
|
2008-09-17 10:02:55 +00:00
|
|
|
foreach (Strings::iterator, i, opArgs)
|
2008-06-18 09:34:17 +00:00
|
|
|
options.pathsToDelete.insert(followLinksToStorePath(*i));
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2008-06-18 09:34:17 +00:00
|
|
|
GCResults results;
|
2008-09-17 10:02:55 +00:00
|
|
|
PrintFreed freed(true, results);
|
2008-06-18 09:34:17 +00:00
|
|
|
store->collectGarbage(options, results);
|
2005-12-23 21:08:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-08 10:00:46 +00:00
|
|
|
/* Dump a path as a Nix archive. The archive is written to standard
|
2003-06-23 14:08:34 +00:00
|
|
|
output. */
|
2003-06-18 14:34:43 +00:00
|
|
|
static void opDump(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
if (opArgs.size() != 1) throw UsageError("only one argument allowed");
|
|
|
|
|
2006-11-30 19:19:59 +00:00
|
|
|
FdSink sink(STDOUT_FILENO);
|
2003-10-08 15:06:59 +00:00
|
|
|
string path = *opArgs.begin();
|
2003-06-23 14:08:34 +00:00
|
|
|
dumpPath(path, sink);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-05 22:57:07 +00:00
|
|
|
/* Restore a value from a Nix archive. The archive is read from
|
2003-06-23 14:08:34 +00:00
|
|
|
standard input. */
|
|
|
|
static void opRestore(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
if (opArgs.size() != 1) throw UsageError("only one argument allowed");
|
|
|
|
|
2006-11-30 19:19:59 +00:00
|
|
|
FdSource source(STDIN_FILENO);
|
2003-06-23 14:08:34 +00:00
|
|
|
restorePath(*opArgs.begin(), source);
|
2003-06-18 14:34:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-20 23:17:20 +00:00
|
|
|
static void opExport(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
2007-02-21 14:31:42 +00:00
|
|
|
bool sign = false;
|
|
|
|
for (Strings::iterator i = opFlags.begin();
|
|
|
|
i != opFlags.end(); ++i)
|
|
|
|
if (*i == "--sign") sign = true;
|
|
|
|
else throw UsageError(format("unknown flag `%1%'") % *i);
|
2007-02-21 23:00:31 +00:00
|
|
|
|
2007-02-20 23:17:20 +00:00
|
|
|
FdSink sink(STDOUT_FILENO);
|
2013-05-23 18:55:36 +00:00
|
|
|
Paths sorted = topoSortPaths(*store, PathSet(opArgs.begin(), opArgs.end()));
|
|
|
|
reverse(sorted.begin(), sorted.end());
|
|
|
|
exportPaths(*store, sorted, sign, sink);
|
2007-02-20 23:17:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-21 15:45:32 +00:00
|
|
|
static void opImport(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
2007-11-16 16:10:27 +00:00
|
|
|
bool requireSignature = false;
|
2009-03-22 17:36:43 +00:00
|
|
|
foreach (Strings::iterator, i, opFlags)
|
2007-11-16 16:10:27 +00:00
|
|
|
if (*i == "--require-signature") requireSignature = true;
|
|
|
|
else throw UsageError(format("unknown flag `%1%'") % *i);
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2007-02-21 15:45:32 +00:00
|
|
|
if (!opArgs.empty()) throw UsageError("no arguments expected");
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2007-02-21 15:45:32 +00:00
|
|
|
FdSource source(STDIN_FILENO);
|
2011-12-16 22:31:25 +00:00
|
|
|
Paths paths = store->importPaths(requireSignature, source);
|
|
|
|
|
|
|
|
foreach (Paths::iterator, i, paths)
|
|
|
|
cout << format("%1%\n") % *i << std::flush;
|
2007-02-21 15:45:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
/* Initialise the Nix databases. */
|
|
|
|
static void opInit(Strings opFlags, Strings opArgs)
|
2003-05-26 09:44:18 +00:00
|
|
|
{
|
2003-06-17 21:12:58 +00:00
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
if (!opArgs.empty())
|
2004-06-20 19:17:54 +00:00
|
|
|
throw UsageError("no arguments expected");
|
2006-11-30 17:43:04 +00:00
|
|
|
/* Doesn't do anything right now; database tables are initialised
|
|
|
|
automatically. */
|
2003-03-21 15:53:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-17 12:27:55 +00:00
|
|
|
/* Verify the consistency of the Nix environment. */
|
|
|
|
static void opVerify(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
2005-02-08 13:48:53 +00:00
|
|
|
if (!opArgs.empty())
|
|
|
|
throw UsageError("no arguments expected");
|
|
|
|
|
|
|
|
bool checkContents = false;
|
2012-10-02 19:04:59 +00:00
|
|
|
bool repair = false;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2005-02-08 13:48:53 +00:00
|
|
|
for (Strings::iterator i = opFlags.begin();
|
|
|
|
i != opFlags.end(); ++i)
|
|
|
|
if (*i == "--check-contents") checkContents = true;
|
2012-10-02 19:04:59 +00:00
|
|
|
else if (*i == "--repair") repair = true;
|
2005-02-08 13:48:53 +00:00
|
|
|
else throw UsageError(format("unknown flag `%1%'") % *i);
|
2012-07-30 23:55:41 +00:00
|
|
|
|
2012-10-02 19:04:59 +00:00
|
|
|
if (ensureLocalStore().verifyStore(checkContents, repair)) {
|
|
|
|
printMsg(lvlError, "warning: not all errors were fixed");
|
|
|
|
exitCode = 1;
|
|
|
|
}
|
2003-07-17 12:27:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-06 12:06:30 +00:00
|
|
|
/* Verify whether the contents of the given store path have not changed. */
|
|
|
|
static void opVerifyPath(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty())
|
|
|
|
throw UsageError("no flags expected");
|
|
|
|
|
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
|
|
|
Path path = followLinksToStorePath(*i);
|
|
|
|
printMsg(lvlTalkative, format("checking path `%1%'...") % path);
|
|
|
|
ValidPathInfo info = store->queryPathInfo(path);
|
|
|
|
HashResult current = hashPath(info.hash.type, path);
|
|
|
|
if (current.first != info.hash) {
|
|
|
|
printMsg(lvlError,
|
|
|
|
format("path `%1%' was modified! expected hash `%2%', got `%3%'")
|
|
|
|
% path % printHash(info.hash) % printHash(current.first));
|
|
|
|
exitCode = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-02 18:08:59 +00:00
|
|
|
/* Repair the contents of the given path by redownloading it using a
|
|
|
|
substituter (if available). */
|
|
|
|
static void opRepairPath(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty())
|
|
|
|
throw UsageError("no flags expected");
|
|
|
|
|
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
|
|
|
Path path = followLinksToStorePath(*i);
|
|
|
|
ensureLocalStore().repairPath(path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-09 22:14:27 +00:00
|
|
|
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")
|
2012-08-02 02:34:46 +00:00
|
|
|
% showBytes(stats.bytesFreed)
|
2007-10-09 22:14:27 +00:00
|
|
|
% 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)
|
|
|
|
{
|
2012-07-23 16:08:34 +00:00
|
|
|
if (!opArgs.empty() || !opFlags.empty())
|
2007-10-09 22:14:27 +00:00
|
|
|
throw UsageError("no arguments expected");
|
|
|
|
|
|
|
|
OptimiseStats stats;
|
|
|
|
try {
|
2012-07-23 16:08:34 +00:00
|
|
|
ensureLocalStore().optimiseStore(stats);
|
2007-10-09 22:14:27 +00:00
|
|
|
} catch (...) {
|
|
|
|
showOptimiseStats(stats);
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
showOptimiseStats(stats);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-26 12:56:42 +00:00
|
|
|
static void opQueryFailedPaths(Strings opFlags, Strings opArgs)
|
2010-04-26 12:43:42 +00:00
|
|
|
{
|
|
|
|
if (!opArgs.empty() || !opFlags.empty())
|
|
|
|
throw UsageError("no arguments expected");
|
2010-05-04 10:45:10 +00:00
|
|
|
PathSet failed = store->queryFailedPaths();
|
2010-04-26 12:43:42 +00:00
|
|
|
foreach (PathSet::iterator, i, failed)
|
|
|
|
cout << format("%1%\n") % *i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-26 12:56:42 +00:00
|
|
|
static void opClearFailedPaths(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty())
|
|
|
|
throw UsageError("no flags expected");
|
2010-05-04 10:45:10 +00:00
|
|
|
store->clearFailedPaths(PathSet(opArgs.begin(), opArgs.end()));
|
2010-04-26 12:56:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-04 15:42:03 +00:00
|
|
|
/* Scan the arguments; find the operation, set global flags, put all
|
|
|
|
other flags in a list, and put all other arguments in another
|
|
|
|
list. */
|
|
|
|
void run(Strings args)
|
2003-03-24 17:49:56 +00:00
|
|
|
{
|
2003-06-20 14:11:31 +00:00
|
|
|
Strings opFlags, opArgs;
|
|
|
|
Operation op = 0;
|
|
|
|
|
2005-02-01 12:36:25 +00:00
|
|
|
for (Strings::iterator i = args.begin(); i != args.end(); ) {
|
|
|
|
string arg = *i++;
|
2003-03-24 17:49:56 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
Operation oldOp = op;
|
2003-03-24 17:49:56 +00:00
|
|
|
|
2013-03-08 00:24:59 +00:00
|
|
|
if (arg == "--realise" || arg == "--realize" || arg == "-r")
|
2005-01-25 10:55:33 +00:00
|
|
|
op = opRealise;
|
2003-07-08 13:22:08 +00:00
|
|
|
else if (arg == "--add" || arg == "-A")
|
2003-06-17 21:12:58 +00:00
|
|
|
op = opAdd;
|
2005-04-07 14:01:51 +00:00
|
|
|
else if (arg == "--add-fixed")
|
|
|
|
op = opAddFixed;
|
|
|
|
else if (arg == "--print-fixed-path")
|
|
|
|
op = opPrintFixedPath;
|
2005-12-23 21:08:42 +00:00
|
|
|
else if (arg == "--delete")
|
|
|
|
op = opDelete;
|
2005-01-19 14:36:00 +00:00
|
|
|
else if (arg == "--query" || arg == "-q")
|
|
|
|
op = opQuery;
|
2012-01-17 23:07:22 +00:00
|
|
|
else if (arg == "--print-env")
|
|
|
|
op = opPrintEnv;
|
2006-10-28 16:33:54 +00:00
|
|
|
else if (arg == "--read-log" || arg == "-l")
|
|
|
|
op = opReadLog;
|
2008-01-29 18:17:36 +00:00
|
|
|
else if (arg == "--dump-db")
|
|
|
|
op = opDumpDB;
|
|
|
|
else if (arg == "--load-db")
|
|
|
|
op = opLoadDB;
|
2005-03-23 11:25:20 +00:00
|
|
|
else if (arg == "--register-validity")
|
|
|
|
op = opRegisterValidity;
|
|
|
|
else if (arg == "--check-validity")
|
|
|
|
op = opCheckValidity;
|
2004-08-25 11:43:49 +00:00
|
|
|
else if (arg == "--gc")
|
|
|
|
op = opGC;
|
2003-06-18 14:34:43 +00:00
|
|
|
else if (arg == "--dump")
|
|
|
|
op = opDump;
|
2003-06-23 14:08:34 +00:00
|
|
|
else if (arg == "--restore")
|
|
|
|
op = opRestore;
|
2007-02-20 23:17:20 +00:00
|
|
|
else if (arg == "--export")
|
|
|
|
op = opExport;
|
2007-02-21 15:45:32 +00:00
|
|
|
else if (arg == "--import")
|
|
|
|
op = opImport;
|
2003-06-17 21:12:58 +00:00
|
|
|
else if (arg == "--init")
|
|
|
|
op = opInit;
|
2003-07-17 12:27:55 +00:00
|
|
|
else if (arg == "--verify")
|
|
|
|
op = opVerify;
|
2011-09-06 12:06:30 +00:00
|
|
|
else if (arg == "--verify-path")
|
|
|
|
op = opVerifyPath;
|
2012-10-02 18:08:59 +00:00
|
|
|
else if (arg == "--repair-path")
|
|
|
|
op = opRepairPath;
|
2013-03-08 00:24:59 +00:00
|
|
|
else if (arg == "--optimise" || arg == "--optimize")
|
2007-10-09 22:14:27 +00:00
|
|
|
op = opOptimise;
|
2010-04-26 12:43:42 +00:00
|
|
|
else if (arg == "--query-failed-paths")
|
|
|
|
op = opQueryFailedPaths;
|
2010-04-26 12:56:42 +00:00
|
|
|
else if (arg == "--clear-failed-paths")
|
|
|
|
op = opClearFailedPaths;
|
2005-02-01 12:36:25 +00:00
|
|
|
else if (arg == "--add-root") {
|
|
|
|
if (i == args.end())
|
|
|
|
throw UsageError("`--add-root requires an argument");
|
2005-02-01 13:48:46 +00:00
|
|
|
gcRoot = absPath(*i++);
|
2005-02-01 12:36:25 +00:00
|
|
|
}
|
2005-02-01 13:48:46 +00:00
|
|
|
else if (arg == "--indirect")
|
|
|
|
indirectRoot = true;
|
2013-12-20 12:10:14 +00:00
|
|
|
else if (arg == "--no-output")
|
|
|
|
noOutput = true;
|
2012-07-30 23:55:41 +00:00
|
|
|
else if (arg[0] == '-') {
|
2003-06-17 21:12:58 +00:00
|
|
|
opFlags.push_back(arg);
|
2008-09-17 14:52:35 +00:00
|
|
|
if (arg == "--max-freed" || arg == "--max-links" || arg == "--max-atime") { /* !!! hack */
|
2008-06-18 14:20:16 +00:00
|
|
|
if (i != args.end()) opFlags.push_back(*i++);
|
|
|
|
}
|
|
|
|
}
|
2003-06-17 21:12:58 +00:00
|
|
|
else
|
|
|
|
opArgs.push_back(arg);
|
2003-05-25 22:42:19 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
if (oldOp && oldOp != op)
|
|
|
|
throw UsageError("only one operation may be specified");
|
2003-05-25 22:42:19 +00:00
|
|
|
}
|
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
if (!op) throw UsageError("no operation specified");
|
2003-03-20 16:53:00 +00:00
|
|
|
|
2004-02-14 21:44:18 +00:00
|
|
|
if (op != opDump && op != opRestore) /* !!! hack */
|
2012-05-30 02:59:12 +00:00
|
|
|
store = openStore(op != opGC);
|
2003-10-14 15:33:00 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
op(opFlags, opArgs);
|
2003-03-20 16:53:00 +00:00
|
|
|
}
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-03-24 17:49:56 +00:00
|
|
|
|
2003-11-18 12:06:07 +00:00
|
|
|
string programId = "nix-store";
|