2003-03-13 16:28:32 +00:00
|
|
|
#include <iostream>
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
#include "globals.hh"
|
2003-07-07 07:43:58 +00:00
|
|
|
#include "store.hh"
|
|
|
|
#include "fstate.hh"
|
2003-06-20 10:40:25 +00:00
|
|
|
#include "archive.hh"
|
2003-07-04 15:42:03 +00:00
|
|
|
#include "shared.hh"
|
2003-03-24 11:50:20 +00:00
|
|
|
|
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
typedef void (* Operation) (Strings opFlags, Strings opArgs);
|
2003-04-02 15:34:05 +00:00
|
|
|
|
|
|
|
|
2003-07-08 10:00:46 +00:00
|
|
|
typedef enum { atpHash, atpPath, atpUnknown } ArgType;
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-06-20 14:11:31 +00:00
|
|
|
static ArgType argType = atpUnknown;
|
|
|
|
|
|
|
|
|
|
|
|
/* Nix syntax:
|
|
|
|
|
|
|
|
nix [OPTIONS...] [ARGUMENTS...]
|
|
|
|
|
|
|
|
Operations:
|
|
|
|
|
2003-07-08 13:22:08 +00:00
|
|
|
--install / -i: realise an fstate
|
2003-07-08 10:00:46 +00:00
|
|
|
--delete / -d: delete paths from the Nix store
|
|
|
|
--add / -A: copy a path to the Nix store
|
2003-07-08 13:22:08 +00:00
|
|
|
--query / -q: query information
|
2003-06-23 14:08:34 +00:00
|
|
|
|
2003-07-10 18:48:11 +00:00
|
|
|
--successor: register a successor expression
|
2003-07-10 15:11:48 +00:00
|
|
|
--substitute: register a substitute expression
|
|
|
|
|
2003-07-08 10:00:46 +00:00
|
|
|
--dump: dump a path as a Nix archive
|
|
|
|
--restore: restore a path from a Nix archive
|
2003-06-23 14:08:34 +00:00
|
|
|
|
2003-06-20 14:11:31 +00:00
|
|
|
--init: initialise the Nix database
|
2003-06-23 14:08:34 +00:00
|
|
|
--verify: verify Nix structures
|
|
|
|
|
2003-06-20 14:11:31 +00:00
|
|
|
--version: output version information
|
|
|
|
--help: display help
|
|
|
|
|
2003-07-08 10:00:46 +00:00
|
|
|
Source selection for --install, --dump:
|
2003-06-20 14:11:31 +00:00
|
|
|
|
2003-07-10 13:41:28 +00:00
|
|
|
--file / -f: by file name !!! -> path
|
2003-07-15 22:28:27 +00:00
|
|
|
--hash / -h: by hash (identifier)
|
2003-06-20 14:11:31 +00:00
|
|
|
|
2003-07-08 13:22:08 +00:00
|
|
|
Query flags:
|
|
|
|
|
|
|
|
--path / -p: query the path of an fstate
|
|
|
|
--refs / -r: query paths referenced by an fstate
|
|
|
|
|
2003-06-20 14:11:31 +00:00
|
|
|
Options:
|
|
|
|
|
|
|
|
--verbose / -v: verbose operation
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2003-07-08 10:00:46 +00:00
|
|
|
/* Parse the `-f' / `-h' / flags, i.e., the type of arguments. These
|
|
|
|
flags are deleted from the referenced vector. */
|
2003-06-25 14:58:56 +00:00
|
|
|
static void getArgType(Strings & flags)
|
2003-06-20 14:11:31 +00:00
|
|
|
{
|
|
|
|
for (Strings::iterator it = flags.begin();
|
|
|
|
it != flags.end(); )
|
|
|
|
{
|
|
|
|
string arg = *it;
|
|
|
|
ArgType tp;
|
2003-07-08 13:22:08 +00:00
|
|
|
if (arg == "--hash" || arg == "-h") tp = atpHash;
|
|
|
|
else if (arg == "--file" || arg == "-f") tp = atpPath;
|
2003-07-08 10:00:46 +00:00
|
|
|
else { it++; continue; }
|
2003-06-20 14:11:31 +00:00
|
|
|
if (argType != atpUnknown)
|
|
|
|
throw UsageError("only one argument type specified may be specified");
|
|
|
|
argType = tp;
|
|
|
|
it = flags.erase(it);
|
2003-03-20 16:53:00 +00:00
|
|
|
}
|
2003-06-20 14:11:31 +00:00
|
|
|
if (argType == atpUnknown)
|
|
|
|
throw UsageError("argument type not specified");
|
2003-03-14 16:43:14 +00:00
|
|
|
}
|
|
|
|
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2003-07-15 22:28:27 +00:00
|
|
|
static FSId argToId(const string & arg)
|
2003-07-08 13:22:08 +00:00
|
|
|
{
|
|
|
|
if (argType == atpHash)
|
|
|
|
return parseHash(arg);
|
|
|
|
else if (argType == atpPath) {
|
|
|
|
string path;
|
2003-07-15 22:28:27 +00:00
|
|
|
FSId id;
|
|
|
|
addToStore(arg, path, id);
|
|
|
|
return id;
|
2003-07-08 13:22:08 +00:00
|
|
|
}
|
|
|
|
else abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-08 10:00:46 +00:00
|
|
|
/* Realise (or install) paths from the given Nix fstate
|
|
|
|
expressions. */
|
2003-07-07 09:29:40 +00:00
|
|
|
static void opInstall(Strings opFlags, Strings opArgs)
|
2003-03-14 16:43:14 +00:00
|
|
|
{
|
2003-06-20 14:11:31 +00:00
|
|
|
getArgType(opFlags);
|
2003-06-17 21:12:58 +00:00
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
for (Strings::iterator it = opArgs.begin();
|
|
|
|
it != opArgs.end(); it++)
|
2003-07-15 22:28:27 +00:00
|
|
|
realiseSlice(normaliseFState(argToId(*it)));
|
2003-04-02 15:34:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-08 13:22:08 +00:00
|
|
|
/* Delete a path in the Nix store directory. */
|
2003-06-17 21:12:58 +00:00
|
|
|
static void opDelete(Strings opFlags, Strings opArgs)
|
2003-04-02 15:34:05 +00:00
|
|
|
{
|
2003-06-23 14:40:49 +00:00
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
2003-06-20 14:11:31 +00:00
|
|
|
|
2003-06-23 14:40:49 +00:00
|
|
|
for (Strings::iterator it = opArgs.begin();
|
|
|
|
it != opArgs.end(); it++)
|
2003-07-08 10:00:46 +00:00
|
|
|
deleteFromStore(absPath(*it));
|
2003-04-02 15:34:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-08 10:00:46 +00:00
|
|
|
/* Add paths to the Nix values directory and print the hashes of those
|
|
|
|
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-20 14:11:31 +00:00
|
|
|
getArgType(opFlags);
|
2003-06-17 21:12:58 +00:00
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
2003-04-02 15:34:05 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
for (Strings::iterator it = opArgs.begin();
|
|
|
|
it != opArgs.end(); it++)
|
2003-07-04 12:18:06 +00:00
|
|
|
{
|
|
|
|
string path;
|
2003-07-15 22:28:27 +00:00
|
|
|
FSId id;
|
|
|
|
addToStore(*it, path, id);
|
|
|
|
cout << format("%1% %2%\n") % (string) id % path;
|
2003-07-04 12:18:06 +00:00
|
|
|
}
|
2003-03-13 16:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-08 13:22:08 +00:00
|
|
|
/* Perform various sorts of queries. */
|
|
|
|
static void opQuery(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
enum { qPath, qRefs, qUnknown } query = qPath;
|
|
|
|
|
|
|
|
for (Strings::iterator it = opFlags.begin();
|
|
|
|
it != opFlags.end(); )
|
|
|
|
{
|
|
|
|
string arg = *it;
|
|
|
|
if (arg == "--path" || arg == "-p") query = qPath;
|
|
|
|
else if (arg == "--refs" || arg == "-r") query = qRefs;
|
|
|
|
else { it++; continue; }
|
|
|
|
it = opFlags.erase(it);
|
|
|
|
}
|
|
|
|
|
|
|
|
getArgType(opFlags);
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
|
|
|
|
for (Strings::iterator it = opArgs.begin();
|
|
|
|
it != opArgs.end(); it++)
|
|
|
|
{
|
2003-07-15 22:28:27 +00:00
|
|
|
FSId id = argToId(*it);
|
2003-07-08 13:22:08 +00:00
|
|
|
|
|
|
|
switch (query) {
|
|
|
|
|
2003-07-10 13:41:28 +00:00
|
|
|
case qPath: {
|
2003-07-16 08:30:26 +00:00
|
|
|
Strings paths = fstatePaths(id, true);
|
2003-07-16 11:05:59 +00:00
|
|
|
for (Strings::iterator j = paths.begin();
|
|
|
|
j != paths.end(); j++)
|
|
|
|
cout << format("%s\n") % *j;
|
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
|
|
|
|
|
|
|
case qRefs: {
|
2003-07-16 11:05:59 +00:00
|
|
|
StringSet refs = fstateRefs(id);
|
2003-07-09 15:02:03 +00:00
|
|
|
for (StringSet::iterator j = refs.begin();
|
2003-07-08 13:22:08 +00:00
|
|
|
j != refs.end(); j++)
|
|
|
|
cout << format("%s\n") % *j;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-10 18:48:11 +00:00
|
|
|
static void opSuccessor(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
if (opArgs.size() % 2) throw UsageError("expecting even number of arguments");
|
|
|
|
|
|
|
|
for (Strings::iterator i = opArgs.begin();
|
|
|
|
i != opArgs.end(); )
|
|
|
|
{
|
2003-07-15 22:28:27 +00:00
|
|
|
FSId id1 = parseHash(*i++);
|
|
|
|
FSId id2 = parseHash(*i++);
|
|
|
|
registerSuccessor(id1, id2);
|
2003-07-10 18:48:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-10 15:11:48 +00:00
|
|
|
static void opSubstitute(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
if (opArgs.size() % 2) throw UsageError("expecting even number of arguments");
|
|
|
|
|
|
|
|
for (Strings::iterator i = opArgs.begin();
|
|
|
|
i != opArgs.end(); )
|
|
|
|
{
|
2003-07-15 22:28:27 +00:00
|
|
|
FSId src = parseHash(*i++);
|
|
|
|
FSId sub = parseHash(*i++);
|
|
|
|
registerSubstitute(src, sub);
|
2003-07-10 15:11:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-18 14:34:43 +00:00
|
|
|
/* A sink that writes dump output to stdout. */
|
|
|
|
struct StdoutSink : DumpSink
|
|
|
|
{
|
|
|
|
virtual void operator ()
|
|
|
|
(const unsigned char * data, unsigned int len)
|
|
|
|
{
|
2003-07-16 21:24:02 +00:00
|
|
|
while (len) {
|
|
|
|
ssize_t res = write(STDOUT_FILENO, (char *) data, len);
|
|
|
|
if (res == -1) throw SysError("writing to stdout");
|
|
|
|
len -= res;
|
|
|
|
data += res;
|
|
|
|
}
|
2003-06-18 14:34:43 +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)
|
|
|
|
{
|
2003-06-20 14:11:31 +00:00
|
|
|
getArgType(opFlags);
|
2003-06-18 14:34:43 +00:00
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
if (opArgs.size() != 1) throw UsageError("only one argument allowed");
|
|
|
|
|
|
|
|
StdoutSink sink;
|
2003-06-20 14:11:31 +00:00
|
|
|
string arg = *opArgs.begin();
|
|
|
|
string path;
|
|
|
|
|
2003-07-15 22:28:27 +00:00
|
|
|
if (argType == atpHash) path = expandId(parseHash(arg));
|
2003-07-10 13:41:28 +00:00
|
|
|
else if (argType == atpPath) path = arg;
|
2003-06-20 14:11:31 +00:00
|
|
|
|
2003-06-23 14:08:34 +00:00
|
|
|
dumpPath(path, sink);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* A source that read restore intput to stdin. */
|
|
|
|
struct StdinSource : RestoreSource
|
|
|
|
{
|
|
|
|
virtual void operator () (const unsigned char * data, unsigned int len)
|
|
|
|
{
|
2003-07-11 08:16:15 +00:00
|
|
|
while (len) {
|
|
|
|
ssize_t res = read(STDIN_FILENO, (char *) data, len);
|
|
|
|
if (res == -1) throw SysError("reading from stdin");
|
2003-07-16 21:24:02 +00:00
|
|
|
if (res == 0) throw Error("unexpected end-of-file on stdin");
|
2003-07-11 08:16:15 +00:00
|
|
|
len -= res;
|
|
|
|
data += res;
|
|
|
|
}
|
2003-06-23 14:08:34 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Restore a value from a Nix archive. The archive is written to
|
|
|
|
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");
|
|
|
|
|
|
|
|
StdinSource source;
|
|
|
|
restorePath(*opArgs.begin(), source);
|
2003-06-18 14:34:43 +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())
|
|
|
|
throw UsageError("--init does not have arguments");
|
|
|
|
initDB();
|
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)
|
|
|
|
{
|
|
|
|
verifyStore();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
for (Strings::iterator it = args.begin();
|
|
|
|
it != args.end(); it++)
|
|
|
|
{
|
|
|
|
string arg = *it;
|
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
|
|
|
|
2003-07-07 09:29:40 +00:00
|
|
|
if (arg == "--install" || arg == "-i")
|
|
|
|
op = opInstall;
|
2003-06-17 21:12:58 +00:00
|
|
|
else if (arg == "--delete" || arg == "-d")
|
|
|
|
op = opDelete;
|
2003-07-08 13:22:08 +00:00
|
|
|
else if (arg == "--add" || arg == "-A")
|
2003-06-17 21:12:58 +00:00
|
|
|
op = opAdd;
|
2003-07-08 13:22:08 +00:00
|
|
|
else if (arg == "--query" || arg == "-q")
|
|
|
|
op = opQuery;
|
2003-07-10 18:48:11 +00:00
|
|
|
else if (arg == "--successor")
|
|
|
|
op = opSuccessor;
|
2003-07-10 15:11:48 +00:00
|
|
|
else if (arg == "--substitute")
|
|
|
|
op = opSubstitute;
|
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;
|
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;
|
2003-06-17 21:12:58 +00:00
|
|
|
else if (arg[0] == '-')
|
|
|
|
opFlags.push_back(arg);
|
|
|
|
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
|
|
|
|
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-07-04 15:42:03 +00:00
|
|
|
string programId = "nix";
|