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 "config.h"
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
#include "globals.hh"
|
|
|
|
#include "values.hh"
|
|
|
|
#include "eval.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-06-17 21:12:58 +00:00
|
|
|
/* Parse a supposed value argument. This can be a hash (the simple
|
|
|
|
case), a symbolic name (in which case we do a lookup to obtain the
|
|
|
|
hash), or a file name (which we import to obtain the hash). Note
|
|
|
|
that in order to disambiguate between symbolic names and file
|
|
|
|
names, a file name should contain at least one `/'. */
|
|
|
|
Hash parseValueArg(string s)
|
2003-03-24 11:50:20 +00:00
|
|
|
{
|
2003-03-20 16:53:00 +00:00
|
|
|
try {
|
2003-06-17 21:12:58 +00:00
|
|
|
return parseHash(s);
|
|
|
|
} catch (BadRefError e) { };
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
if (s.find('/') != string::npos) {
|
|
|
|
return addValue(s);
|
|
|
|
} else {
|
|
|
|
throw Error("not implemented");
|
2003-03-20 16:53:00 +00:00
|
|
|
}
|
2003-03-14 16:43:14 +00:00
|
|
|
}
|
|
|
|
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
/* Evaluate values. */
|
|
|
|
static void opEvaluate(Strings opFlags, Strings opArgs)
|
2003-03-14 16:43:14 +00:00
|
|
|
{
|
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-03-28 10:33:34 +00:00
|
|
|
{
|
2003-06-17 21:12:58 +00:00
|
|
|
Hash hash = parseValueArg(*it);
|
|
|
|
Expr e = ATmake("Deref(Hash(<str>))", ((string) hash).c_str());
|
|
|
|
cerr << printExpr(evalValue(e)) << endl;
|
2003-04-02 15:34:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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-17 21:12:58 +00:00
|
|
|
cerr << "delete!\n";
|
2003-04-02 15:34:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
/* Add values to the Nix values directory and print the hashes of
|
|
|
|
those values. */
|
|
|
|
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
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
for (Strings::iterator it = opArgs.begin();
|
|
|
|
it != opArgs.end(); it++)
|
|
|
|
cout << (string) addValue(*it) << endl;
|
2003-03-13 16:28:32 +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)
|
|
|
|
{
|
|
|
|
/* Don't use cout, it's slow as hell! */
|
|
|
|
write(STDOUT_FILENO, (char *) data, len);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Dump a value to standard output */
|
|
|
|
static void opDump(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
if (opArgs.size() != 1) throw UsageError("only one argument allowed");
|
|
|
|
|
|
|
|
StdoutSink sink;
|
|
|
|
dumpPath(opArgs[0], sink);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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-06-17 21:12:58 +00:00
|
|
|
/* Nix syntax:
|
2003-03-21 15:58:40 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
nix [OPTIONS...] [ARGUMENTS...]
|
2003-03-21 15:58:40 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
Operations:
|
2003-03-24 17:49:56 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
--evaluate / -e: evaluate values
|
|
|
|
--delete / -d: delete values
|
|
|
|
--query / -q: query stored values
|
|
|
|
--add: add values
|
|
|
|
--verify: verify Nix structures
|
2003-06-18 14:34:43 +00:00
|
|
|
--dump: dump a file or value
|
2003-06-17 21:12:58 +00:00
|
|
|
--init: initialise the Nix database
|
|
|
|
--version: output version information
|
|
|
|
--help: display help
|
2003-03-24 17:49:56 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
Operations that work on values accept the hash code of a value, the
|
|
|
|
symbolic name of a value, or a file name of a external value that
|
|
|
|
will be added prior to the operation.
|
2003-03-21 15:58:40 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
Query suboptions:
|
2003-03-21 15:58:40 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
Selection:
|
2003-03-24 17:49:56 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
--all / -a: query all stored values, otherwise given values
|
2003-03-24 17:49:56 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
Information:
|
2003-03-24 17:49:56 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
--info / -i: general value information
|
2003-03-24 17:49:56 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
Options:
|
2003-03-24 17:49:56 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
--verbose / -v: verbose operation
|
|
|
|
*/
|
2003-03-24 17:49:56 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
/* Initialize, process arguments, and dispatch to the right
|
|
|
|
operation. */
|
|
|
|
void run(Strings::iterator argCur, Strings::iterator argEnd)
|
2003-03-24 17:49:56 +00:00
|
|
|
{
|
2003-06-17 21:12:58 +00:00
|
|
|
Strings opFlags, opArgs;
|
|
|
|
Operation op = 0;
|
2003-03-24 17:49:56 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
/* Setup Nix paths. */
|
|
|
|
nixValues = NIX_VALUES_DIR;
|
|
|
|
nixLogDir = NIX_LOG_DIR;
|
|
|
|
nixDB = (string) NIX_STATE_DIR + "/nixstate.db";
|
2003-03-24 17:49:56 +00:00
|
|
|
|
2003-06-17 21:12:58 +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. */
|
2003-03-24 17:49:56 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
while (argCur != argEnd) {
|
|
|
|
string arg = *argCur++;
|
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-06-17 21:12:58 +00:00
|
|
|
if (arg == "--evaluate" || arg == "-e")
|
|
|
|
op = opEvaluate;
|
|
|
|
else if (arg == "--delete" || arg == "-d")
|
|
|
|
op = opDelete;
|
|
|
|
else if (arg == "--add")
|
|
|
|
op = opAdd;
|
2003-06-18 14:34:43 +00:00
|
|
|
else if (arg == "--dump")
|
|
|
|
op = opDump;
|
2003-06-17 21:12:58 +00:00
|
|
|
else if (arg == "--init")
|
|
|
|
op = opInit;
|
|
|
|
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-03-20 16:53:00 +00:00
|
|
|
int main(int argc, char * * argv)
|
|
|
|
{
|
2003-06-17 21:12:58 +00:00
|
|
|
/* ATerm setup. */
|
2003-04-01 14:00:47 +00:00
|
|
|
ATerm bottomOfStack;
|
|
|
|
ATinit(argc, argv, &bottomOfStack);
|
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
try {
|
|
|
|
Strings args;
|
|
|
|
while (argc--) args.push_back(*argv++);
|
|
|
|
run(args.begin() + 1, args.end());
|
2003-03-20 16:53:00 +00:00
|
|
|
} catch (UsageError & e) {
|
|
|
|
cerr << "error: " << e.what() << endl
|
2003-06-17 21:12:58 +00:00
|
|
|
<< "Try `nix --help' for more information.\n";
|
2003-03-14 16:43:14 +00:00
|
|
|
return 1;
|
2003-03-20 16:53:00 +00:00
|
|
|
} catch (exception & e) {
|
|
|
|
cerr << "error: " << e.what() << endl;
|
2003-03-13 16:28:32 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2003-03-14 16:43:14 +00:00
|
|
|
|
|
|
|
return 0;
|
2003-03-13 16:28:32 +00:00
|
|
|
}
|