2003-06-18 00:12:58 +03:00
|
|
|
#include "globals.hh"
|
2006-03-06 13:21:15 +02:00
|
|
|
#include "misc.hh"
|
2003-06-20 13:40:25 +03:00
|
|
|
#include "archive.hh"
|
2003-07-04 18:42:03 +03:00
|
|
|
#include "shared.hh"
|
2003-09-03 14:20:18 +03:00
|
|
|
#include "dotgraph.hh"
|
2010-05-31 19:36:24 +03:00
|
|
|
#include "xmlgraph.hh"
|
2006-11-30 19:43:04 +02:00
|
|
|
#include "local-store.hh"
|
2006-09-05 00:06:23 +03:00
|
|
|
#include "util.hh"
|
2014-02-10 14:43:13 +02:00
|
|
|
#include "serve-protocol.hh"
|
2014-02-14 13:31:10 +02:00
|
|
|
#include "worker-protocol.hh"
|
2003-03-24 13:50:20 +02:00
|
|
|
|
2010-10-04 20:55:38 +03:00
|
|
|
#include <iostream>
|
|
|
|
#include <algorithm>
|
2012-05-30 07:00:02 +03:00
|
|
|
#include <cstdio>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#include <bzlib.h>
|
2010-10-04 20:55:38 +03:00
|
|
|
|
2003-03-24 13:50:20 +02:00
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
using namespace nix;
|
|
|
|
using std::cin;
|
|
|
|
using std::cout;
|
|
|
|
|
|
|
|
|
2003-06-18 00:12:58 +03:00
|
|
|
typedef void (* Operation) (Strings opFlags, Strings opArgs);
|
2003-04-02 18:34:05 +03:00
|
|
|
|
|
|
|
|
2003-12-01 17:55:05 +02:00
|
|
|
void printHelp()
|
2003-07-28 15:19:23 +03:00
|
|
|
{
|
2012-10-03 23:37:06 +03:00
|
|
|
showManPage("nix-store");
|
2003-07-28 15:19:23 +03:00
|
|
|
}
|
2003-06-20 17:11:31 +03:00
|
|
|
|
|
|
|
|
2005-02-01 14:36:25 +02:00
|
|
|
static Path gcRoot;
|
|
|
|
static int rootNr = 0;
|
2005-02-01 15:48:46 +02:00
|
|
|
static bool indirectRoot = false;
|
2013-12-20 15:09:12 +02:00
|
|
|
static bool noOutput = false;
|
2005-02-01 14:36:25 +02:00
|
|
|
|
|
|
|
|
2008-06-09 16:52:45 +03:00
|
|
|
LocalStore & ensureLocalStore()
|
|
|
|
{
|
|
|
|
LocalStore * store2(dynamic_cast<LocalStore *>(store.get()));
|
2010-04-26 15:43:42 +03:00
|
|
|
if (!store2) throw Error("you don't have sufficient rights to use this command");
|
2008-06-09 16:52:45 +03:00
|
|
|
return *store2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-28 19:33:54 +03:00
|
|
|
static Path useDeriver(Path path)
|
2012-07-31 02:55:41 +03:00
|
|
|
{
|
2006-10-28 19:33:54 +03:00
|
|
|
if (!isDerivation(path)) {
|
2007-06-12 19:53:44 +03:00
|
|
|
path = store->queryDeriver(path);
|
2006-10-28 19:33:54 +03:00
|
|
|
if (path == "")
|
|
|
|
throw Error(format("deriver of path `%1%' is not known") % path);
|
|
|
|
}
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-30 19:25:19 +02:00
|
|
|
/* Realise the given path. For a derivation that means build it; for
|
|
|
|
other paths it means ensure their validity. */
|
2012-10-02 23:00:09 +03:00
|
|
|
static PathSet realisePath(const Path & path, bool build = true)
|
2005-01-25 12:55:33 +02:00
|
|
|
{
|
2012-11-26 16:39:10 +02:00
|
|
|
DrvPathWithOutputs p = parseDrvPathWithOutputs(path);
|
|
|
|
|
|
|
|
if (isDerivation(p.first)) {
|
2012-10-02 23:00:09 +03:00
|
|
|
if (build) store->buildPaths(singleton<PathSet>(path));
|
2012-11-26 16:39:10 +02:00
|
|
|
Derivation drv = derivationFromPath(*store, p.first);
|
2012-08-24 23:58:11 +03:00
|
|
|
rootNr++;
|
2011-12-30 19:25:19 +02:00
|
|
|
|
2012-11-26 16:39:10 +02:00
|
|
|
if (p.second.empty())
|
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs) p.second.insert(i->first);
|
|
|
|
|
2011-12-30 19:25:19 +02:00
|
|
|
PathSet outputs;
|
2012-11-26 16:39:10 +02: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 19:25:19 +02:00
|
|
|
Path outPath = i->second.path;
|
|
|
|
if (gcRoot == "")
|
|
|
|
printGCWarning();
|
2012-08-24 23:58:11 +03: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 19:25:19 +02:00
|
|
|
outputs.insert(outPath);
|
|
|
|
}
|
|
|
|
return outputs;
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
2012-10-02 23:00:09 +03:00
|
|
|
if (build) store->ensurePath(path);
|
2012-11-20 00:51:56 +02:00
|
|
|
else if (!store->isValidPath(path)) throw Error(format("path `%1%' does not exist and cannot be created") % path);
|
2011-12-30 19:25:19 +02:00
|
|
|
return singleton<PathSet>(path);
|
2005-01-25 12:55:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Realise the given paths. */
|
|
|
|
static void opRealise(Strings opFlags, Strings opArgs)
|
2003-03-14 18:43:14 +02:00
|
|
|
{
|
2008-08-04 16:44:46 +03:00
|
|
|
bool dryRun = false;
|
2012-10-03 00:13:46 +03:00
|
|
|
bool repair = false;
|
2012-11-20 01:27:25 +02:00
|
|
|
bool ignoreUnknown = false;
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2008-08-04 16:44:46 +03:00
|
|
|
foreach (Strings::iterator, i, opFlags)
|
|
|
|
if (*i == "--dry-run") dryRun = true;
|
2012-10-03 00:13:46 +03:00
|
|
|
else if (*i == "--repair") repair = true;
|
2012-11-20 01:27:25 +02:00
|
|
|
else if (*i == "--ignore-unknown") ignoreUnknown = true;
|
2008-08-04 16:44:46 +03:00
|
|
|
else throw UsageError(format("unknown flag `%1%'") % *i);
|
2003-03-13 18:28:32 +02:00
|
|
|
|
2012-11-20 01:27:25 +02:00
|
|
|
Paths paths;
|
2012-11-26 16:39:10 +02:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
|
|
|
DrvPathWithOutputs p = parseDrvPathWithOutputs(*i);
|
|
|
|
paths.push_back(makeDrvPathWithOutputs(followLinksToStorePath(p.first), p.second));
|
|
|
|
}
|
2012-11-20 01:27:25 +02: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-31 02:55:41 +03:00
|
|
|
|
2012-11-20 01:27:25 +02:00
|
|
|
printMissing(willBuild, willSubstitute, unknown, downloadSize, narSize);
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2008-08-04 16:44:46 +03:00
|
|
|
if (dryRun) return;
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2012-06-27 23:58:15 +03:00
|
|
|
/* Build all paths at the same time to exploit parallelism. */
|
2012-11-20 01:27:25 +02:00
|
|
|
store->buildPaths(PathSet(paths.begin(), paths.end()), repair);
|
2005-01-19 17:02:02 +02:00
|
|
|
|
2012-11-20 01:27:25 +02:00
|
|
|
if (!ignoreUnknown)
|
|
|
|
foreach (Paths::iterator, i, paths) {
|
|
|
|
PathSet paths = realisePath(*i, false);
|
2013-12-20 14:10:14 +02:00
|
|
|
if (!noOutput)
|
|
|
|
foreach (PathSet::iterator, j, paths)
|
|
|
|
cout << format("%1%\n") % *j;
|
2012-11-20 01:27:25 +02:00
|
|
|
}
|
2003-04-02 18:34:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 17:01:51 +03:00
|
|
|
/* Add files to the Nix store and print the resulting paths. */
|
2003-06-18 00:12:58 +03:00
|
|
|
static void opAdd(Strings opFlags, Strings opArgs)
|
2003-04-02 18:34:05 +03:00
|
|
|
{
|
2003-06-18 00:12:58 +03:00
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
2003-04-02 18:34:05 +03:00
|
|
|
|
2005-03-27 00:06:57 +02:00
|
|
|
for (Strings::iterator i = opArgs.begin(); i != opArgs.end(); ++i)
|
2006-11-30 19:43:04 +02:00
|
|
|
cout << format("%1%\n") % store->addToStore(*i);
|
2003-03-13 18:28:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 17:01:51 +03: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-31 02:55:41 +03:00
|
|
|
|
2005-04-07 17:01:51 +03: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-31 02:55:41 +03:00
|
|
|
|
2008-12-03 18:10:17 +02:00
|
|
|
HashType hashAlgo = parseHashType(opArgs.front());
|
2005-04-07 17:01:51 +03:00
|
|
|
opArgs.pop_front();
|
|
|
|
|
|
|
|
for (Strings::iterator i = opArgs.begin(); i != opArgs.end(); ++i)
|
2008-12-03 17:06:30 +02:00
|
|
|
cout << format("%1%\n") % store->addToStore(*i, recursive, hashAlgo);
|
2005-04-07 17:01:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Hack to support caching in `nix-prefetch-url'. */
|
|
|
|
static void opPrintFixedPath(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
bool recursive = false;
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2005-04-07 17:01:51 +03: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 17:06:30 +02:00
|
|
|
if (opArgs.size() != 3)
|
|
|
|
throw UsageError(format("`--print-fixed-path' requires three arguments"));
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2005-04-07 17:01:51 +03:00
|
|
|
Strings::iterator i = opArgs.begin();
|
2008-12-03 18:10:17 +02:00
|
|
|
HashType hashAlgo = parseHashType(*i++);
|
2005-04-07 17:01:51 +03:00
|
|
|
string hash = *i++;
|
|
|
|
string name = *i++;
|
|
|
|
|
|
|
|
cout << format("%1%\n") %
|
2006-11-13 18:48:27 +02:00
|
|
|
makeFixedOutputPath(recursive, hashAlgo,
|
2008-12-03 18:10:17 +02:00
|
|
|
parseHash16or32(hashAlgo, hash), name);
|
2005-04-07 17:01:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-30 19:25:19 +02:00
|
|
|
static PathSet maybeUseOutputs(const Path & storePath, bool useOutput, bool forceRealise)
|
2003-07-29 13:43:12 +03:00
|
|
|
{
|
2005-01-25 12:55:33 +02:00
|
|
|
if (forceRealise) realisePath(storePath);
|
2005-01-19 16:36:00 +02:00
|
|
|
if (useOutput && isDerivation(storePath)) {
|
2011-09-01 00:11:50 +03:00
|
|
|
Derivation drv = derivationFromPath(*store, storePath);
|
2011-12-30 19:25:19 +02:00
|
|
|
PathSet outputs;
|
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
|
|
|
outputs.insert(i->second.path);
|
|
|
|
return outputs;
|
2005-01-19 16:36:00 +02:00
|
|
|
}
|
2011-12-30 19:25:19 +02:00
|
|
|
else return singleton<PathSet>(storePath);
|
2003-07-29 13:43:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-02-17 17:57:46 +02: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 15:57:16 +03:00
|
|
|
static void printTree(const Path & path,
|
2005-02-17 17:57:46 +02:00
|
|
|
const string & firstPad, const string & tailPad, PathSet & done)
|
|
|
|
{
|
2005-04-08 15:57:16 +03:00
|
|
|
if (done.find(path) != done.end()) {
|
|
|
|
cout << format("%1%%2% [...]\n") % firstPad % path;
|
2005-02-17 17:57:46 +02:00
|
|
|
return;
|
|
|
|
}
|
2005-04-08 15:57:16 +03:00
|
|
|
done.insert(path);
|
2005-02-17 17:57:46 +02:00
|
|
|
|
2005-04-08 15:57:16 +03:00
|
|
|
cout << format("%1%%2%\n") % firstPad % path;
|
|
|
|
|
|
|
|
PathSet references;
|
2006-11-30 19:43:04 +02:00
|
|
|
store->queryReferences(path, references);
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2005-02-22 17:23:24 +02:00
|
|
|
/* Topologically sort under the relation A < B iff A \in
|
2005-02-17 17:57:46 +02: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-09-01 00:11:50 +03:00
|
|
|
Paths sorted = topoSortPaths(*store, references);
|
2005-02-17 17:57:46 +02:00
|
|
|
reverse(sorted.begin(), sorted.end());
|
|
|
|
|
2013-03-08 02:24:59 +02:00
|
|
|
foreach (Paths::iterator, i, sorted) {
|
2005-02-17 17:57:46 +02:00
|
|
|
Paths::iterator j = i; ++j;
|
2005-04-08 15:57:16 +03:00
|
|
|
printTree(*i, tailPad + treeConn,
|
2005-02-17 17:57:46 +02:00
|
|
|
j == sorted.end() ? tailPad + treeNull : tailPad + treeLine,
|
|
|
|
done);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-08 16:22:08 +03:00
|
|
|
/* Perform various sorts of queries. */
|
|
|
|
static void opQuery(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
2005-12-13 23:04:48 +02:00
|
|
|
enum { qOutputs, qRequisites, qReferences, qReferrers
|
2010-11-17 14:40:52 +02:00
|
|
|
, qReferrersClosure, qDeriver, qBinding, qHash, qSize
|
2010-05-31 19:36:24 +03:00
|
|
|
, qTree, qGraph, qXml, qResolve, qRoots } query = qOutputs;
|
2005-01-19 16:36:00 +02:00
|
|
|
bool useOutput = false;
|
|
|
|
bool includeOutputs = false;
|
2005-01-25 12:55:33 +02:00
|
|
|
bool forceRealise = false;
|
2005-02-07 16:32:44 +02:00
|
|
|
string bindingName;
|
2003-07-21 17:46:01 +03:00
|
|
|
|
2009-11-23 20:16:25 +02:00
|
|
|
foreach (Strings::iterator, i, opFlags)
|
2005-01-19 16:36:00 +02:00
|
|
|
if (*i == "--outputs") query = qOutputs;
|
2003-11-18 13:22:29 +02:00
|
|
|
else if (*i == "--requisites" || *i == "-R") query = qRequisites;
|
2005-01-19 18:59:56 +02:00
|
|
|
else if (*i == "--references") query = qReferences;
|
2005-12-13 23:04:48 +02:00
|
|
|
else if (*i == "--referrers" || *i == "--referers") query = qReferrers;
|
|
|
|
else if (*i == "--referrers-closure" || *i == "--referers-closure") query = qReferrersClosure;
|
2005-02-07 15:40:40 +02:00
|
|
|
else if (*i == "--deriver" || *i == "-d") query = qDeriver;
|
2005-02-07 16:32:44 +02: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 17:57:06 +02:00
|
|
|
else if (*i == "--hash") query = qHash;
|
2010-11-17 14:40:52 +02:00
|
|
|
else if (*i == "--size") query = qSize;
|
2005-02-17 17:57:46 +02:00
|
|
|
else if (*i == "--tree") query = qTree;
|
2003-07-28 15:19:23 +03:00
|
|
|
else if (*i == "--graph") query = qGraph;
|
2010-05-31 19:36:24 +03:00
|
|
|
else if (*i == "--xml") query = qXml;
|
2007-01-13 21:50:42 +02:00
|
|
|
else if (*i == "--resolve") query = qResolve;
|
2009-11-23 20:16:25 +02:00
|
|
|
else if (*i == "--roots") query = qRoots;
|
2005-01-19 16:36:00 +02:00
|
|
|
else if (*i == "--use-output" || *i == "-u") useOutput = true;
|
2013-03-08 02:24:59 +02:00
|
|
|
else if (*i == "--force-realise" || *i == "--force-realize" || *i == "-f") forceRealise = true;
|
2005-01-19 16:36:00 +02:00
|
|
|
else if (*i == "--include-outputs") includeOutputs = true;
|
2003-07-21 17:46:01 +03:00
|
|
|
else throw UsageError(format("unknown flag `%1%'") % *i);
|
|
|
|
|
|
|
|
switch (query) {
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2005-01-19 16:36:00 +02:00
|
|
|
case qOutputs: {
|
2009-11-23 20:16:25 +02:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
2007-11-29 18:18:24 +02:00
|
|
|
*i = followLinksToStorePath(*i);
|
2005-01-25 12:55:33 +02:00
|
|
|
if (forceRealise) realisePath(*i);
|
2011-09-01 00:11:50 +03:00
|
|
|
Derivation drv = derivationFromPath(*store, *i);
|
2011-12-30 19:25:19 +02:00
|
|
|
foreach (DerivationOutputs::iterator, j, drv.outputs)
|
|
|
|
cout << format("%1%\n") % j->second.path;
|
2003-07-21 17:46:01 +03:00
|
|
|
}
|
2003-07-08 16:22:08 +03:00
|
|
|
break;
|
2003-07-10 16:41:28 +03:00
|
|
|
}
|
2003-07-08 16:22:08 +03:00
|
|
|
|
2005-01-19 18:59:56 +02:00
|
|
|
case qRequisites:
|
|
|
|
case qReferences:
|
2005-12-13 23:04:48 +02:00
|
|
|
case qReferrers:
|
|
|
|
case qReferrersClosure: {
|
2005-01-19 16:36:00 +02:00
|
|
|
PathSet paths;
|
2009-11-23 20:16:25 +02:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
2011-12-30 19:25:19 +02: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 17:46:01 +03:00
|
|
|
}
|
2011-09-01 00:11:50 +03:00
|
|
|
Paths sorted = topoSortPaths(*store, paths);
|
2012-07-31 02:55:41 +03:00
|
|
|
for (Paths::reverse_iterator i = sorted.rbegin();
|
2007-02-22 00:45:10 +02:00
|
|
|
i != sorted.rend(); ++i)
|
|
|
|
cout << format("%s\n") % *i;
|
2003-07-21 17:46:01 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-02-07 15:40:40 +02:00
|
|
|
case qDeriver:
|
2009-11-23 20:16:25 +02:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
2007-11-29 18:18:24 +02:00
|
|
|
Path deriver = store->queryDeriver(followLinksToStorePath(*i));
|
2005-02-07 15:40:40 +02:00
|
|
|
cout << format("%1%\n") %
|
|
|
|
(deriver == "" ? "unknown-deriver" : deriver);
|
|
|
|
}
|
|
|
|
break;
|
2005-02-07 16:32:44 +02:00
|
|
|
|
|
|
|
case qBinding:
|
2009-11-23 20:16:25 +02:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
2007-11-29 18:18:24 +02:00
|
|
|
Path path = useDeriver(followLinksToStorePath(*i));
|
2011-09-01 00:11:50 +03:00
|
|
|
Derivation drv = derivationFromPath(*store, path);
|
2005-02-07 16:32:44 +02: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 19:33:54 +03:00
|
|
|
% path % bindingName);
|
2005-02-07 16:32:44 +02:00
|
|
|
cout << format("%1%\n") % j->second;
|
|
|
|
}
|
|
|
|
break;
|
2005-02-07 15:40:40 +02:00
|
|
|
|
2005-03-02 17:57:06 +02:00
|
|
|
case qHash:
|
2010-11-17 14:40:52 +02:00
|
|
|
case qSize:
|
2009-11-23 20:16:25 +02:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
2011-12-30 19:25:19 +02: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-31 02:55:41 +03:00
|
|
|
} else if (query == qSize)
|
2011-12-30 19:25:19 +02:00
|
|
|
cout << format("%1%\n") % info.narSize;
|
|
|
|
}
|
2005-03-02 17:57:06 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2005-02-17 17:57:46 +02:00
|
|
|
case qTree: {
|
|
|
|
PathSet done;
|
2009-11-23 20:16:25 +02:00
|
|
|
foreach (Strings::iterator, i, opArgs)
|
2007-11-29 18:18:24 +02:00
|
|
|
printTree(followLinksToStorePath(*i), "", "", done);
|
2005-02-17 17:57:46 +02:00
|
|
|
break;
|
|
|
|
}
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2003-07-28 15:19:23 +03:00
|
|
|
case qGraph: {
|
2003-10-08 18:06:59 +03:00
|
|
|
PathSet roots;
|
2011-12-30 19:25:19 +02:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
|
|
|
PathSet paths = maybeUseOutputs(followLinksToStorePath(*i), useOutput, forceRealise);
|
|
|
|
roots.insert(paths.begin(), paths.end());
|
|
|
|
}
|
2010-05-31 19:36:24 +03:00
|
|
|
printDotGraph(roots);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case qXml: {
|
|
|
|
PathSet roots;
|
2011-12-30 19:25:19 +02:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
|
|
|
PathSet paths = maybeUseOutputs(followLinksToStorePath(*i), useOutput, forceRealise);
|
|
|
|
roots.insert(paths.begin(), paths.end());
|
|
|
|
}
|
2010-05-31 19:36:24 +03:00
|
|
|
printXmlGraph(roots);
|
2003-07-28 15:19:23 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-01-13 21:50:42 +02:00
|
|
|
case qResolve: {
|
2009-11-23 20:16:25 +02:00
|
|
|
foreach (Strings::iterator, i, opArgs)
|
2007-11-29 18:18:24 +02:00
|
|
|
cout << format("%1%\n") % followLinksToStorePath(*i);
|
2007-01-13 21:50:42 +02:00
|
|
|
break;
|
|
|
|
}
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2009-11-23 20:16:25 +02:00
|
|
|
case qRoots: {
|
|
|
|
PathSet referrers;
|
2011-12-30 19:25:19 +02:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
|
|
|
PathSet paths = maybeUseOutputs(followLinksToStorePath(*i), useOutput, forceRealise);
|
|
|
|
foreach (PathSet::iterator, j, paths)
|
2012-12-20 19:41:44 +02:00
|
|
|
computeFSClosure(*store, *j, referrers, true,
|
|
|
|
settings.gcKeepOutputs, settings.gcKeepDerivations);
|
2011-12-30 19:25:19 +02:00
|
|
|
}
|
2009-11-23 20:16:25 +02: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-31 02:55:41 +03:00
|
|
|
|
2003-07-08 16:22:08 +03:00
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
2003-07-10 21:48:11 +03:00
|
|
|
|
|
|
|
|
2012-01-18 01:07:22 +02: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 19:33:54 +03:00
|
|
|
static void opReadLog(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
|
2012-05-30 07:00:02 +03:00
|
|
|
foreach (Strings::iterator, i, opArgs) {
|
2007-11-29 18:18:24 +02:00
|
|
|
Path path = useDeriver(followLinksToStorePath(*i));
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2013-03-08 02:24:59 +02: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-08 00:55:55 +02:00
|
|
|
|
2013-03-08 02:24:59 +02: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-08 00:55:55 +02:00
|
|
|
}
|
2006-10-28 19:33:54 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-29 20:17:36 +02:00
|
|
|
static void opDumpDB(Strings opFlags, Strings opArgs)
|
2004-02-14 23:44:18 +02:00
|
|
|
{
|
2008-01-29 20:17:36 +02:00
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
if (!opArgs.empty())
|
|
|
|
throw UsageError("no arguments expected");
|
2012-07-11 17:49:04 +03:00
|
|
|
PathSet validPaths = store->queryAllValidPaths();
|
2010-11-16 19:11:46 +02:00
|
|
|
foreach (PathSet::iterator, i, validPaths)
|
|
|
|
cout << store->makeValidityRegistration(singleton<PathSet>(*i), true, true);
|
2008-01-29 20:17:36 +02:00
|
|
|
}
|
2006-11-13 18:48:27 +02:00
|
|
|
|
2005-03-23 13:25:20 +02:00
|
|
|
|
2008-01-29 20:17:36 +02:00
|
|
|
static void registerValidity(bool reregister, bool hashGiven, bool canonicalise)
|
|
|
|
{
|
2005-03-23 15:07:28 +02:00
|
|
|
ValidPathInfos infos;
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2005-03-23 13:25:20 +02:00
|
|
|
while (1) {
|
2008-01-29 20:17:36 +02:00
|
|
|
ValidPathInfo info = decodeValidPathInfo(cin, hashGiven);
|
2007-08-12 03:29:28 +03:00
|
|
|
if (info.path == "") break;
|
2006-11-30 19:43:04 +02:00
|
|
|
if (!store->isValidPath(info.path) || reregister) {
|
2005-03-23 14:06:57 +02:00
|
|
|
/* !!! races */
|
2008-01-29 20:17:36 +02:00
|
|
|
if (canonicalise)
|
2013-03-08 02:24:59 +02:00
|
|
|
canonicalisePathMetaData(info.path, -1);
|
2010-11-16 19:11:46 +02:00
|
|
|
if (!hashGiven) {
|
|
|
|
HashResult hash = hashPath(htSHA256, info.path);
|
|
|
|
info.hash = hash.first;
|
|
|
|
info.narSize = hash.second;
|
|
|
|
}
|
2005-03-23 15:07:28 +02:00
|
|
|
infos.push_back(info);
|
2005-03-23 14:06:57 +02:00
|
|
|
}
|
2005-03-23 13:25:20 +02:00
|
|
|
}
|
|
|
|
|
2008-06-09 16:52:45 +03:00
|
|
|
ensureLocalStore().registerValidPaths(infos);
|
2004-02-14 23:44:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-29 20:17:36 +02: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-31 02:55:41 +03:00
|
|
|
|
2008-01-29 20:17:36 +02: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 13:25:20 +02:00
|
|
|
static void opCheckValidity(Strings opFlags, Strings opArgs)
|
2004-02-14 23:44:18 +02:00
|
|
|
{
|
2007-02-21 19:57:59 +02:00
|
|
|
bool printInvalid = false;
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2007-02-21 19:57:59 +02: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 23:44:18 +02:00
|
|
|
|
|
|
|
for (Strings::iterator i = opArgs.begin();
|
|
|
|
i != opArgs.end(); ++i)
|
2007-02-21 19:57:59 +02:00
|
|
|
{
|
2007-11-29 18:18:24 +02:00
|
|
|
Path path = followLinksToStorePath(*i);
|
2011-09-06 15:06:30 +03:00
|
|
|
if (!store->isValidPath(path)) {
|
2007-02-21 19:57:59 +02:00
|
|
|
if (printInvalid)
|
|
|
|
cout << format("%1%\n") % path;
|
|
|
|
else
|
|
|
|
throw Error(format("path `%1%' is not valid") % path);
|
2011-09-06 15:06:30 +03:00
|
|
|
}
|
2007-02-21 19:57:59 +02:00
|
|
|
}
|
2004-02-14 23:44:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-02 05:34:46 +03:00
|
|
|
static string showBytes(unsigned long long bytes)
|
2007-10-10 01:14:27 +03:00
|
|
|
{
|
2012-08-02 05:34:46 +03:00
|
|
|
return (format("%.2f MiB") % (bytes / (1024.0 * 1024.0))).str();
|
2007-10-10 01:14:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
struct PrintFreed
|
2005-12-15 23:11:39 +02:00
|
|
|
{
|
2008-09-17 13:02:55 +03:00
|
|
|
bool show;
|
2008-06-18 12:34:17 +03:00
|
|
|
const GCResults & results;
|
2008-09-17 13:02:55 +03:00
|
|
|
PrintFreed(bool show, const GCResults & results)
|
|
|
|
: show(show), results(results) { }
|
2012-07-31 02:55:41 +03:00
|
|
|
~PrintFreed()
|
2005-12-15 23:11:39 +02:00
|
|
|
{
|
|
|
|
if (show)
|
2008-09-17 15:53:33 +03:00
|
|
|
cout << format("%1% store paths deleted, %2% freed\n")
|
|
|
|
% results.paths.size()
|
2012-08-02 05:34:46 +03:00
|
|
|
% showBytes(results.bytesFreed);
|
2005-12-15 23:11:39 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-08-25 14:43:49 +03:00
|
|
|
static void opGC(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
2009-11-23 19:23:12 +02:00
|
|
|
bool printRoots = false;
|
2008-06-18 12:34:17 +03:00
|
|
|
GCOptions options;
|
|
|
|
options.action = GCOptions::gcDeleteDead;
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2008-06-18 12:34:17 +03:00
|
|
|
GCResults results;
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2004-08-25 14:43:49 +03:00
|
|
|
/* Do what? */
|
2008-09-17 13:02:55 +03:00
|
|
|
foreach (Strings::iterator, i, opFlags)
|
2009-11-23 19:23:12 +02:00
|
|
|
if (*i == "--print-roots") printRoots = true;
|
2008-06-18 12:34:17 +03: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 13:02:07 +02:00
|
|
|
else if (*i == "--max-freed") {
|
2009-11-24 14:26:25 +02:00
|
|
|
long long maxFreed = getIntArg<long long>(*i, i, opFlags.end());
|
2012-08-02 02:14:30 +03:00
|
|
|
options.maxFreed = maxFreed >= 0 ? maxFreed : 0;
|
2009-03-26 13:02:07 +02:00
|
|
|
}
|
2004-08-25 19:54:08 +03:00
|
|
|
else throw UsageError(format("bad sub-operation `%1%' in GC") % *i);
|
2005-01-27 17:21:29 +02:00
|
|
|
|
2008-09-17 17:52:35 +03:00
|
|
|
if (!opArgs.empty()) throw UsageError("no arguments expected");
|
2004-08-25 14:43:49 +03:00
|
|
|
|
2009-11-23 19:23:12 +02: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 14:43:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-12-23 23:08:42 +02: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 12:34:17 +03:00
|
|
|
GCOptions options;
|
|
|
|
options.action = GCOptions::gcDeleteSpecific;
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2008-09-17 13:02:55 +03:00
|
|
|
foreach (Strings::iterator, i, opFlags)
|
2008-06-18 12:34:17 +03:00
|
|
|
if (*i == "--ignore-liveness") options.ignoreLiveness = true;
|
2005-12-23 23:36:44 +02:00
|
|
|
else throw UsageError(format("unknown flag `%1%'") % *i);
|
2005-12-23 23:08:42 +02:00
|
|
|
|
2008-09-17 13:02:55 +03:00
|
|
|
foreach (Strings::iterator, i, opArgs)
|
2008-06-18 12:34:17 +03:00
|
|
|
options.pathsToDelete.insert(followLinksToStorePath(*i));
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2008-06-18 12:34:17 +03:00
|
|
|
GCResults results;
|
2008-09-17 13:02:55 +03:00
|
|
|
PrintFreed freed(true, results);
|
2008-06-18 12:34:17 +03:00
|
|
|
store->collectGarbage(options, results);
|
2005-12-23 23:08:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-08 13:00:46 +03:00
|
|
|
/* Dump a path as a Nix archive. The archive is written to standard
|
2003-06-23 17:08:34 +03:00
|
|
|
output. */
|
2003-06-18 17:34:43 +03: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 21:19:59 +02:00
|
|
|
FdSink sink(STDOUT_FILENO);
|
2003-10-08 18:06:59 +03:00
|
|
|
string path = *opArgs.begin();
|
2003-06-23 17:08:34 +03:00
|
|
|
dumpPath(path, sink);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-06 01:57:07 +03:00
|
|
|
/* Restore a value from a Nix archive. The archive is read from
|
2003-06-23 17:08:34 +03: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 21:19:59 +02:00
|
|
|
FdSource source(STDIN_FILENO);
|
2003-06-23 17:08:34 +03:00
|
|
|
restorePath(*opArgs.begin(), source);
|
2003-06-18 17:34:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-21 01:17:20 +02:00
|
|
|
static void opExport(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
2007-02-21 16:31:42 +02: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-22 01:00:31 +02:00
|
|
|
|
2007-02-21 01:17:20 +02:00
|
|
|
FdSink sink(STDOUT_FILENO);
|
2013-05-23 21:55:36 +03:00
|
|
|
Paths sorted = topoSortPaths(*store, PathSet(opArgs.begin(), opArgs.end()));
|
|
|
|
reverse(sorted.begin(), sorted.end());
|
|
|
|
exportPaths(*store, sorted, sign, sink);
|
2007-02-21 01:17:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-21 17:45:32 +02:00
|
|
|
static void opImport(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
2007-11-16 18:10:27 +02:00
|
|
|
bool requireSignature = false;
|
2009-03-22 19:36:43 +02:00
|
|
|
foreach (Strings::iterator, i, opFlags)
|
2007-11-16 18:10:27 +02:00
|
|
|
if (*i == "--require-signature") requireSignature = true;
|
|
|
|
else throw UsageError(format("unknown flag `%1%'") % *i);
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2007-02-21 17:45:32 +02:00
|
|
|
if (!opArgs.empty()) throw UsageError("no arguments expected");
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2007-02-21 17:45:32 +02:00
|
|
|
FdSource source(STDIN_FILENO);
|
2011-12-17 00:31:25 +02:00
|
|
|
Paths paths = store->importPaths(requireSignature, source);
|
|
|
|
|
|
|
|
foreach (Paths::iterator, i, paths)
|
|
|
|
cout << format("%1%\n") % *i << std::flush;
|
2007-02-21 17:45:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-18 00:12:58 +03:00
|
|
|
/* Initialise the Nix databases. */
|
|
|
|
static void opInit(Strings opFlags, Strings opArgs)
|
2003-05-26 12:44:18 +03:00
|
|
|
{
|
2003-06-18 00:12:58 +03:00
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
if (!opArgs.empty())
|
2004-06-20 22:17:54 +03:00
|
|
|
throw UsageError("no arguments expected");
|
2006-11-30 19:43:04 +02:00
|
|
|
/* Doesn't do anything right now; database tables are initialised
|
|
|
|
automatically. */
|
2003-03-21 17:53:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-17 15:27:55 +03:00
|
|
|
/* Verify the consistency of the Nix environment. */
|
|
|
|
static void opVerify(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
2005-02-08 15:48:53 +02:00
|
|
|
if (!opArgs.empty())
|
|
|
|
throw UsageError("no arguments expected");
|
|
|
|
|
|
|
|
bool checkContents = false;
|
2012-10-02 22:04:59 +03:00
|
|
|
bool repair = false;
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2005-02-08 15:48:53 +02:00
|
|
|
for (Strings::iterator i = opFlags.begin();
|
|
|
|
i != opFlags.end(); ++i)
|
|
|
|
if (*i == "--check-contents") checkContents = true;
|
2012-10-02 22:04:59 +03:00
|
|
|
else if (*i == "--repair") repair = true;
|
2005-02-08 15:48:53 +02:00
|
|
|
else throw UsageError(format("unknown flag `%1%'") % *i);
|
2012-07-31 02:55:41 +03:00
|
|
|
|
2012-10-02 22:04:59 +03:00
|
|
|
if (ensureLocalStore().verifyStore(checkContents, repair)) {
|
|
|
|
printMsg(lvlError, "warning: not all errors were fixed");
|
|
|
|
exitCode = 1;
|
|
|
|
}
|
2003-07-17 15:27:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-06 15:06:30 +03: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 21:08:59 +03: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-10 01:14:27 +03: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 05:34:46 +03:00
|
|
|
% showBytes(stats.bytesFreed)
|
2007-10-10 01:14:27 +03: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 19:08:34 +03:00
|
|
|
if (!opArgs.empty() || !opFlags.empty())
|
2007-10-10 01:14:27 +03:00
|
|
|
throw UsageError("no arguments expected");
|
|
|
|
|
|
|
|
OptimiseStats stats;
|
|
|
|
try {
|
2012-07-23 19:08:34 +03:00
|
|
|
ensureLocalStore().optimiseStore(stats);
|
2007-10-10 01:14:27 +03:00
|
|
|
} catch (...) {
|
|
|
|
showOptimiseStats(stats);
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
showOptimiseStats(stats);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-26 15:56:42 +03:00
|
|
|
static void opQueryFailedPaths(Strings opFlags, Strings opArgs)
|
2010-04-26 15:43:42 +03:00
|
|
|
{
|
|
|
|
if (!opArgs.empty() || !opFlags.empty())
|
|
|
|
throw UsageError("no arguments expected");
|
2010-05-04 13:45:10 +03:00
|
|
|
PathSet failed = store->queryFailedPaths();
|
2010-04-26 15:43:42 +03:00
|
|
|
foreach (PathSet::iterator, i, failed)
|
|
|
|
cout << format("%1%\n") % *i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-26 15:56:42 +03:00
|
|
|
static void opClearFailedPaths(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty())
|
|
|
|
throw UsageError("no flags expected");
|
2010-05-04 13:45:10 +03:00
|
|
|
store->clearFailedPaths(PathSet(opArgs.begin(), opArgs.end()));
|
2010-04-26 15:56:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-14 12:48:42 +02:00
|
|
|
/* Serve the nix store in a way usable by a restricted ssh user. */
|
2014-02-06 18:52:03 +02:00
|
|
|
static void opServe(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
2014-02-07 23:17:52 +02:00
|
|
|
if (!opArgs.empty() || !opFlags.empty())
|
|
|
|
throw UsageError("no arguments or flags expected");
|
2014-02-10 13:52:48 +02:00
|
|
|
|
2014-02-06 18:52:03 +02:00
|
|
|
FdSource in(STDIN_FILENO);
|
|
|
|
FdSink out(STDOUT_FILENO);
|
|
|
|
|
2014-02-10 14:43:13 +02:00
|
|
|
/* Exchange the greeting. */
|
|
|
|
unsigned int magic = readInt(in);
|
|
|
|
if (magic != SERVE_MAGIC_1) throw Error("protocol mismatch");
|
|
|
|
writeInt(SERVE_MAGIC_2, out);
|
|
|
|
writeInt(SERVE_PROTOCOL_VERSION, out);
|
|
|
|
out.flush();
|
|
|
|
readInt(in); // Client version, unused for now
|
|
|
|
|
|
|
|
ServeCommand cmd = (ServeCommand) readInt(in);
|
|
|
|
switch (cmd) {
|
|
|
|
case cmdQuery:
|
|
|
|
while (true) {
|
|
|
|
QueryCommand qCmd;
|
|
|
|
try {
|
|
|
|
qCmd = (QueryCommand) readInt(in);
|
|
|
|
} catch (EndOfFile & e) {
|
|
|
|
break;
|
2014-02-10 13:52:48 +02:00
|
|
|
}
|
2014-02-10 14:43:13 +02:00
|
|
|
switch (qCmd) {
|
2014-02-12 14:33:07 +02:00
|
|
|
case qCmdHave: {
|
2014-02-14 13:31:10 +02:00
|
|
|
PathSet paths = readStorePaths<PathSet>(in);
|
2014-02-12 14:33:07 +02:00
|
|
|
writeStrings(store->queryValidPaths(paths), out);
|
2014-02-10 14:43:13 +02:00
|
|
|
break;
|
2014-02-12 14:33:07 +02:00
|
|
|
}
|
|
|
|
case qCmdInfo: {
|
2014-02-14 13:31:10 +02:00
|
|
|
PathSet paths = readStorePaths<PathSet>(in);
|
2014-02-12 14:33:07 +02:00
|
|
|
// !!! Maybe we want a queryPathInfos?
|
|
|
|
foreach (PathSet::iterator, i, paths) {
|
|
|
|
if (!store->isValidPath(*i))
|
|
|
|
continue;
|
|
|
|
ValidPathInfo info = store->queryPathInfo(*i);
|
|
|
|
writeString(info.path, out);
|
|
|
|
writeString(info.deriver, out);
|
|
|
|
writeStrings(info.references, out);
|
|
|
|
// !!! Maybe we want compression?
|
|
|
|
writeLongLong(info.narSize, out); // downloadSize
|
|
|
|
writeLongLong(info.narSize, out);
|
2014-02-10 14:43:13 +02:00
|
|
|
}
|
2014-02-12 14:33:07 +02:00
|
|
|
writeString("", out);
|
2014-02-10 14:43:13 +02:00
|
|
|
break;
|
2014-02-12 14:33:07 +02:00
|
|
|
}
|
2014-02-10 14:43:13 +02:00
|
|
|
default:
|
2014-02-12 14:26:35 +02:00
|
|
|
throw Error(format("unknown serve query `%1%'") % cmd);
|
2014-02-10 14:43:13 +02:00
|
|
|
}
|
|
|
|
out.flush();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case cmdSubstitute:
|
|
|
|
dumpPath(readString(in), out);
|
|
|
|
break;
|
|
|
|
default:
|
2014-02-12 14:26:35 +02:00
|
|
|
throw Error(format("unknown serve command `%1%'") % cmd);
|
2014-02-10 14:43:13 +02:00
|
|
|
}
|
2014-02-06 18:52:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-04 18:42:03 +03: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 19:49:56 +02:00
|
|
|
{
|
2003-06-20 17:11:31 +03:00
|
|
|
Strings opFlags, opArgs;
|
|
|
|
Operation op = 0;
|
|
|
|
|
2005-02-01 14:36:25 +02:00
|
|
|
for (Strings::iterator i = args.begin(); i != args.end(); ) {
|
|
|
|
string arg = *i++;
|
2003-03-24 19:49:56 +02:00
|
|
|
|
2003-06-18 00:12:58 +03:00
|
|
|
Operation oldOp = op;
|
2003-03-24 19:49:56 +02:00
|
|
|
|
2013-03-08 02:24:59 +02:00
|
|
|
if (arg == "--realise" || arg == "--realize" || arg == "-r")
|
2005-01-25 12:55:33 +02:00
|
|
|
op = opRealise;
|
2003-07-08 16:22:08 +03:00
|
|
|
else if (arg == "--add" || arg == "-A")
|
2003-06-18 00:12:58 +03:00
|
|
|
op = opAdd;
|
2005-04-07 17:01:51 +03:00
|
|
|
else if (arg == "--add-fixed")
|
|
|
|
op = opAddFixed;
|
|
|
|
else if (arg == "--print-fixed-path")
|
|
|
|
op = opPrintFixedPath;
|
2005-12-23 23:08:42 +02:00
|
|
|
else if (arg == "--delete")
|
|
|
|
op = opDelete;
|
2005-01-19 16:36:00 +02:00
|
|
|
else if (arg == "--query" || arg == "-q")
|
|
|
|
op = opQuery;
|
2012-01-18 01:07:22 +02:00
|
|
|
else if (arg == "--print-env")
|
|
|
|
op = opPrintEnv;
|
2006-10-28 19:33:54 +03:00
|
|
|
else if (arg == "--read-log" || arg == "-l")
|
|
|
|
op = opReadLog;
|
2008-01-29 20:17:36 +02:00
|
|
|
else if (arg == "--dump-db")
|
|
|
|
op = opDumpDB;
|
|
|
|
else if (arg == "--load-db")
|
|
|
|
op = opLoadDB;
|
2005-03-23 13:25:20 +02:00
|
|
|
else if (arg == "--register-validity")
|
|
|
|
op = opRegisterValidity;
|
|
|
|
else if (arg == "--check-validity")
|
|
|
|
op = opCheckValidity;
|
2004-08-25 14:43:49 +03:00
|
|
|
else if (arg == "--gc")
|
|
|
|
op = opGC;
|
2003-06-18 17:34:43 +03:00
|
|
|
else if (arg == "--dump")
|
|
|
|
op = opDump;
|
2003-06-23 17:08:34 +03:00
|
|
|
else if (arg == "--restore")
|
|
|
|
op = opRestore;
|
2007-02-21 01:17:20 +02:00
|
|
|
else if (arg == "--export")
|
|
|
|
op = opExport;
|
2007-02-21 17:45:32 +02:00
|
|
|
else if (arg == "--import")
|
|
|
|
op = opImport;
|
2003-06-18 00:12:58 +03:00
|
|
|
else if (arg == "--init")
|
|
|
|
op = opInit;
|
2003-07-17 15:27:55 +03:00
|
|
|
else if (arg == "--verify")
|
|
|
|
op = opVerify;
|
2011-09-06 15:06:30 +03:00
|
|
|
else if (arg == "--verify-path")
|
|
|
|
op = opVerifyPath;
|
2012-10-02 21:08:59 +03:00
|
|
|
else if (arg == "--repair-path")
|
|
|
|
op = opRepairPath;
|
2013-03-08 02:24:59 +02:00
|
|
|
else if (arg == "--optimise" || arg == "--optimize")
|
2007-10-10 01:14:27 +03:00
|
|
|
op = opOptimise;
|
2010-04-26 15:43:42 +03:00
|
|
|
else if (arg == "--query-failed-paths")
|
|
|
|
op = opQueryFailedPaths;
|
2010-04-26 15:56:42 +03:00
|
|
|
else if (arg == "--clear-failed-paths")
|
|
|
|
op = opClearFailedPaths;
|
2005-02-01 14:36:25 +02:00
|
|
|
else if (arg == "--add-root") {
|
|
|
|
if (i == args.end())
|
|
|
|
throw UsageError("`--add-root requires an argument");
|
2005-02-01 15:48:46 +02:00
|
|
|
gcRoot = absPath(*i++);
|
2005-02-01 14:36:25 +02:00
|
|
|
}
|
2005-02-01 15:48:46 +02:00
|
|
|
else if (arg == "--indirect")
|
|
|
|
indirectRoot = true;
|
2013-12-20 14:10:14 +02:00
|
|
|
else if (arg == "--no-output")
|
|
|
|
noOutput = true;
|
2014-02-06 18:52:03 +02:00
|
|
|
else if (arg == "--serve")
|
|
|
|
op = opServe;
|
2012-07-31 02:55:41 +03:00
|
|
|
else if (arg[0] == '-') {
|
2003-06-18 00:12:58 +03:00
|
|
|
opFlags.push_back(arg);
|
2008-09-17 17:52:35 +03:00
|
|
|
if (arg == "--max-freed" || arg == "--max-links" || arg == "--max-atime") { /* !!! hack */
|
2008-06-18 17:20:16 +03:00
|
|
|
if (i != args.end()) opFlags.push_back(*i++);
|
|
|
|
}
|
|
|
|
}
|
2003-06-18 00:12:58 +03:00
|
|
|
else
|
|
|
|
opArgs.push_back(arg);
|
2003-05-26 01:42:19 +03:00
|
|
|
|
2003-06-18 00:12:58 +03:00
|
|
|
if (oldOp && oldOp != op)
|
|
|
|
throw UsageError("only one operation may be specified");
|
2003-05-26 01:42:19 +03:00
|
|
|
}
|
|
|
|
|
2003-06-18 00:12:58 +03:00
|
|
|
if (!op) throw UsageError("no operation specified");
|
2003-03-20 18:53:00 +02:00
|
|
|
|
2004-02-14 23:44:18 +02:00
|
|
|
if (op != opDump && op != opRestore) /* !!! hack */
|
2012-05-30 05:59:12 +03:00
|
|
|
store = openStore(op != opGC);
|
2003-10-14 18:33:00 +03:00
|
|
|
|
2003-06-18 00:12:58 +03:00
|
|
|
op(opFlags, opArgs);
|
2003-03-20 18:53:00 +02:00
|
|
|
}
|
2003-03-14 18:43:14 +02:00
|
|
|
|
2003-03-24 19:49:56 +02:00
|
|
|
|
2003-11-18 14:06:07 +02:00
|
|
|
string programId = "nix-store";
|