2003-03-13 16:28:32 +00:00
|
|
|
#include <iostream>
|
2005-05-04 16:33:20 +00:00
|
|
|
#include <algorithm>
|
2003-03-14 16:43:14 +00:00
|
|
|
|
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"
|
2006-11-30 17:43:04 +00:00
|
|
|
#include "local-store.hh"
|
2006-09-04 21:06:23 +00:00
|
|
|
#include "util.hh"
|
2003-11-18 12:06:07 +00:00
|
|
|
#include "help.txt.hh"
|
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
|
|
|
{
|
2003-11-18 12:06:07 +00:00
|
|
|
cout << string((char *) helpText, sizeof helpText);
|
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;
|
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()));
|
|
|
|
if (!store2) throw Error("you don't have sufficient rights to use --verify");
|
|
|
|
return *store2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-28 16:33:54 +00:00
|
|
|
static Path useDeriver(Path path)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-25 10:55:33 +00:00
|
|
|
/* Realisation the given path. For a derivation that means build it;
|
|
|
|
for other paths it means ensure their validity. */
|
|
|
|
static Path realisePath(const Path & path)
|
|
|
|
{
|
|
|
|
if (isDerivation(path)) {
|
|
|
|
PathSet paths;
|
|
|
|
paths.insert(path);
|
2006-11-30 18:02:04 +00:00
|
|
|
store->buildDerivations(paths);
|
2005-02-01 12:36:25 +00:00
|
|
|
Path outPath = findOutput(derivationFromPath(path), "out");
|
|
|
|
|
|
|
|
if (gcRoot == "")
|
|
|
|
printGCWarning();
|
|
|
|
else
|
2005-02-01 13:48:46 +00:00
|
|
|
outPath = addPermRoot(outPath,
|
|
|
|
makeRootName(gcRoot, rootNr),
|
|
|
|
indirectRoot);
|
2005-02-01 12:36:25 +00:00
|
|
|
|
|
|
|
return outPath;
|
2005-01-25 10:55:33 +00:00
|
|
|
} else {
|
2006-11-30 18:02:04 +00:00
|
|
|
store->ensurePath(path);
|
2005-01-25 10:55:33 +00:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
|
|
|
foreach (Strings::iterator, i, opFlags)
|
|
|
|
if (*i == "--dry-run") dryRun = true;
|
|
|
|
else throw UsageError(format("unknown flag `%1%'") % *i);
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2008-08-04 13:44:46 +00:00
|
|
|
foreach (Strings::iterator, i, opArgs)
|
2007-11-29 16:18:24 +00:00
|
|
|
*i = followLinksToStorePath(*i);
|
2005-02-01 12:36:25 +00:00
|
|
|
|
2008-08-04 13:44:46 +00:00
|
|
|
printMissing(PathSet(opArgs.begin(), opArgs.end()));
|
|
|
|
|
|
|
|
if (dryRun) return;
|
|
|
|
|
|
|
|
/* Build all derivations at the same time to exploit parallelism. */
|
|
|
|
PathSet drvPaths;
|
|
|
|
foreach (Strings::iterator, i, opArgs)
|
|
|
|
if (isDerivation(*i)) drvPaths.insert(*i);
|
|
|
|
store->buildDerivations(drvPaths);
|
2005-01-19 15:02:02 +00:00
|
|
|
|
2008-12-12 17:03:18 +00:00
|
|
|
foreach (Strings::iterator, i, opArgs)
|
2005-01-25 10:55:33 +00:00
|
|
|
cout << format("%1%\n") % realisePath(*i);
|
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;
|
|
|
|
|
|
|
|
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");
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-13 16:48:27 +00:00
|
|
|
static Hash parseHash16or32(HashType ht, const string & s)
|
|
|
|
{
|
|
|
|
return s.size() == Hash(ht).hashSize * 2
|
|
|
|
? parseHash(ht, s)
|
|
|
|
: parseHash32(ht, s);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
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"));
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-25 10:55:33 +00:00
|
|
|
static Path maybeUseOutput(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)) {
|
|
|
|
Derivation drv = derivationFromPath(storePath);
|
|
|
|
return findOutput(drv, "out");
|
|
|
|
}
|
|
|
|
else return 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);
|
2005-02-17 15:57:46 +00:00
|
|
|
|
2005-04-08 12:57:16 +00:00
|
|
|
#if 0
|
2005-02-17 15:57:46 +00:00
|
|
|
for (PathSet::iterator i = drv.inputSrcs.begin();
|
|
|
|
i != drv.inputSrcs.end(); ++i)
|
|
|
|
cout << format("%1%%2%\n") % (tailPad + treeConn) % *i;
|
2005-04-08 12:57:16 +00:00
|
|
|
#endif
|
2005-02-17 15:57:46 +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. */
|
2007-02-21 22:45:10 +00:00
|
|
|
Paths sorted = topoSortPaths(references);
|
2005-02-17 15:57:46 +00:00
|
|
|
reverse(sorted.begin(), sorted.end());
|
|
|
|
|
|
|
|
for (Paths::iterator i = sorted.begin(); i != sorted.end(); ++i) {
|
|
|
|
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
|
|
|
|
, qReferrersClosure, qDeriver, qBinding, qHash
|
2009-11-23 18:16:25 +00:00
|
|
|
, qTree, qGraph, 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;
|
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;
|
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;
|
2005-01-25 10:55:33 +00:00
|
|
|
else if (*i == "--force-realise" || *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) {
|
|
|
|
|
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);
|
2005-01-19 14:36:00 +00:00
|
|
|
Derivation drv = derivationFromPath(*i);
|
|
|
|
cout << format("%1%\n") % findOutput(drv, "out");
|
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) {
|
2007-11-29 16:18:24 +00:00
|
|
|
Path path = maybeUseOutput(followLinksToStorePath(*i), useOutput, forceRealise);
|
2010-01-25 17:18:44 +00:00
|
|
|
if (query == qRequisites) computeFSClosure(path, paths, false, includeOutputs);
|
2006-11-30 17:43:04 +00:00
|
|
|
else if (query == qReferences) store->queryReferences(path, paths);
|
2010-01-25 17:18:44 +00:00
|
|
|
else if (query == qReferrers) store->queryReferrers(path, paths);
|
2005-12-13 21:04:48 +00:00
|
|
|
else if (query == qReferrersClosure) computeFSClosure(path, paths, true);
|
2003-07-21 14:46:01 +00:00
|
|
|
}
|
2007-02-21 22:45:10 +00:00
|
|
|
Paths sorted = topoSortPaths(paths);
|
|
|
|
for (Paths::reverse_iterator i = sorted.rbegin();
|
|
|
|
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));
|
2006-10-28 16:33:54 +00:00
|
|
|
Derivation drv = derivationFromPath(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:
|
2009-11-23 18:16:25 +00:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
2007-11-29 16:18:24 +00:00
|
|
|
Path path = maybeUseOutput(followLinksToStorePath(*i), useOutput, forceRealise);
|
2006-11-30 17:43:04 +00:00
|
|
|
Hash hash = store->queryPathHash(path);
|
2005-03-02 15:57:06 +00:00
|
|
|
assert(hash.type == htSHA256);
|
|
|
|
cout << format("sha256:%1%\n") % printHash32(hash);
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2003-07-28 12:19:23 +00:00
|
|
|
case qGraph: {
|
2003-10-08 15:06:59 +00:00
|
|
|
PathSet roots;
|
2009-11-23 18:16:25 +00:00
|
|
|
foreach (Strings::iterator, i, opArgs)
|
2007-11-29 16:18:24 +00:00
|
|
|
roots.insert(maybeUseOutput(followLinksToStorePath(*i), useOutput, forceRealise));
|
2003-09-03 11:20:18 +00:00
|
|
|
printDotGraph(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;
|
|
|
|
}
|
|
|
|
|
2009-11-23 18:16:25 +00:00
|
|
|
case qRoots: {
|
|
|
|
PathSet referrers;
|
|
|
|
foreach (Strings::iterator, i, opArgs)
|
|
|
|
computeFSClosure(maybeUseOutput(followLinksToStorePath(*i), useOutput, forceRealise),
|
|
|
|
referrers, true);
|
|
|
|
Roots roots = store->findRoots();
|
|
|
|
foreach (Roots::iterator, i, roots)
|
|
|
|
if (referrers.find(i->second) != referrers.end())
|
|
|
|
cout << format("%1%\n") % i->first;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2003-07-08 13:22:08 +00:00
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
2003-07-10 18:48:11 +00:00
|
|
|
|
|
|
|
|
2006-10-28 16:33:54 +00:00
|
|
|
static void opReadLog(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
|
|
|
|
for (Strings::iterator i = opArgs.begin();
|
|
|
|
i != opArgs.end(); ++i)
|
|
|
|
{
|
2007-11-29 16:18:24 +00:00
|
|
|
Path path = useDeriver(followLinksToStorePath(*i));
|
2006-10-28 16:33:54 +00:00
|
|
|
|
|
|
|
Path logPath = (format("%1%/%2%/%3%") %
|
|
|
|
nixLogDir % drvsLogDir % baseNameOf(path)).str();
|
|
|
|
|
|
|
|
if (!pathExists(logPath))
|
|
|
|
throw Error(format("build log of derivation `%1%' is not available") % path);
|
|
|
|
|
|
|
|
/* !!! Make this run in O(1) memory. */
|
|
|
|
string log = readFile(logPath);
|
|
|
|
writeFull(STDOUT_FILENO, (const unsigned char *) log.c_str(), log.size());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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");
|
|
|
|
PathSet validPaths = store->queryValidPaths();
|
2008-11-19 16:26:34 +00:00
|
|
|
foreach (PathSet::iterator, i, validPaths) {
|
|
|
|
cout << 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;
|
|
|
|
|
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)
|
|
|
|
canonicalisePathMetaData(info.path);
|
|
|
|
if (!hashGiven)
|
|
|
|
info.hash = hashPath(htSHA256, info.path);
|
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;
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
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);
|
2007-02-21 17:57:59 +00:00
|
|
|
if (!store->isValidPath(path))
|
|
|
|
if (printInvalid)
|
|
|
|
cout << format("%1%\n") % path;
|
|
|
|
else
|
|
|
|
throw Error(format("path `%1%' is not valid") % path);
|
|
|
|
}
|
2004-02-14 21:44:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-18 09:34:17 +00:00
|
|
|
static string showBytes(unsigned long long bytes, unsigned long long blocks)
|
2007-10-09 22:14:27 +00:00
|
|
|
{
|
2008-06-18 09:34:17 +00:00
|
|
|
return (format("%d bytes (%.2f MiB, %d blocks)")
|
|
|
|
% bytes % (bytes / (1024.0 * 1024.0)) % blocks).str();
|
2007-10-09 22:14:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-12-15 21:11:39 +00:00
|
|
|
struct PrintFreed
|
|
|
|
{
|
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) { }
|
2005-12-15 21:11:39 +00:00
|
|
|
~PrintFreed()
|
|
|
|
{
|
|
|
|
if (show)
|
2008-09-17 12:53:33 +00:00
|
|
|
cout << format("%1% store paths deleted, %2% freed\n")
|
|
|
|
% results.paths.size()
|
2008-06-18 09:34:17 +00:00
|
|
|
% showBytes(results.bytesFreed, results.blocksFreed);
|
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;
|
|
|
|
|
|
|
|
GCResults results;
|
2005-01-27 15:21:29 +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());
|
|
|
|
options.maxFreed = maxFreed >= 1 ? maxFreed : 1;
|
2009-03-26 11:02:07 +00:00
|
|
|
}
|
2009-11-24 12:26:25 +00:00
|
|
|
else if (*i == "--max-links") options.maxLinks = getIntArg<unsigned int>(*i, i, opFlags.end());
|
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;
|
2005-12-23 21:36:44 +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));
|
2005-12-23 21:08:42 +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);
|
2007-02-21 23:00:31 +00:00
|
|
|
for (Strings::iterator i = opArgs.begin(); i != opArgs.end(); ++i) {
|
|
|
|
writeInt(1, sink);
|
|
|
|
store->exportPath(*i, sign, sink);
|
|
|
|
}
|
|
|
|
writeInt(0, 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);
|
|
|
|
|
2007-02-21 15:45:32 +00:00
|
|
|
if (!opArgs.empty()) throw UsageError("no arguments expected");
|
|
|
|
|
|
|
|
FdSource source(STDIN_FILENO);
|
2009-03-22 17:36:43 +00:00
|
|
|
while (true) {
|
2009-03-22 17:51:45 +00:00
|
|
|
unsigned long long n = readLongLong(source);
|
2009-03-22 17:36:43 +00:00
|
|
|
if (n == 0) break;
|
|
|
|
if (n != 1) throw Error("input doesn't look like something created by `nix-store --export'");
|
2007-11-16 16:10:27 +00:00
|
|
|
cout << format("%1%\n") % store->importPath(requireSignature, source) << std::flush;
|
2009-03-22 17:36:43 +00:00
|
|
|
}
|
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;
|
|
|
|
|
|
|
|
for (Strings::iterator i = opFlags.begin();
|
|
|
|
i != opFlags.end(); ++i)
|
|
|
|
if (*i == "--check-contents") checkContents = true;
|
|
|
|
else throw UsageError(format("unknown flag `%1%'") % *i);
|
|
|
|
|
2008-06-09 13:52:45 +00:00
|
|
|
ensureLocalStore().verifyStore(checkContents);
|
2003-07-17 12:27:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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")
|
2008-06-18 09:34:17 +00:00
|
|
|
% showBytes(stats.bytesFreed, stats.blocksFreed)
|
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)
|
|
|
|
{
|
|
|
|
if (!opArgs.empty())
|
|
|
|
throw UsageError("no arguments expected");
|
|
|
|
|
2007-10-10 13:43:04 +00:00
|
|
|
bool dryRun = false;
|
|
|
|
|
2007-10-09 22:14:27 +00:00
|
|
|
for (Strings::iterator i = opFlags.begin();
|
|
|
|
i != opFlags.end(); ++i)
|
2007-10-10 13:43:04 +00:00
|
|
|
if (*i == "--dry-run") dryRun = true;
|
|
|
|
else throw UsageError(format("unknown flag `%1%'") % *i);
|
2007-10-09 22:14:27 +00:00
|
|
|
|
|
|
|
OptimiseStats stats;
|
|
|
|
try {
|
2008-06-09 13:52:45 +00:00
|
|
|
ensureLocalStore().optimiseStore(dryRun, stats);
|
2007-10-09 22:14:27 +00:00
|
|
|
} catch (...) {
|
|
|
|
showOptimiseStats(stats);
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
showOptimiseStats(stats);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2005-01-25 10:55:33 +00:00
|
|
|
if (arg == "--realise" || arg == "-r")
|
|
|
|
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;
|
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;
|
2007-10-09 22:14:27 +00:00
|
|
|
else if (arg == "--optimise")
|
|
|
|
op = opOptimise;
|
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;
|
2008-06-18 14:20:16 +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 */
|
2008-06-09 13:52:45 +00:00
|
|
|
store = openStore();
|
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";
|