aboutsummaryrefslogtreecommitdiff
path: root/src/nix.cc
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2003-07-04 15:42:03 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2003-07-04 15:42:03 +0000
commitf826e432aa442e569faaf3cb04d83bfa28bcf260 (patch)
tree94e09e1fc7399949d8a5fb94f7d0abd995665d9e /src/nix.cc
parent01b34fe5843df9888737699ee9f9fe2f161a1fa3 (diff)
* Refactoring: move initialisation and argument parsing into a shared
file.
Diffstat (limited to 'src/nix.cc')
-rw-r--r--src/nix.cc56
1 files changed, 6 insertions, 50 deletions
diff --git a/src/nix.cc b/src/nix.cc
index 9c9936f4b..f2d00394f 100644
--- a/src/nix.cc
+++ b/src/nix.cc
@@ -1,11 +1,10 @@
#include <iostream>
-#include "config.h"
-
#include "globals.hh"
#include "values.hh"
#include "eval.hh"
#include "archive.hh"
+#include "shared.hh"
typedef void (* Operation) (Strings opFlags, Strings opArgs);
@@ -224,39 +223,14 @@ static void opInit(Strings opFlags, Strings opArgs)
}
-/* Initialize, process arguments, and dispatch to the right
- operation. */
-static void run(int argc, char * * argv)
+/* 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)
{
- /* Setup Nix paths. */
- nixStore = NIX_STORE_DIR;
- nixLogDir = NIX_LOG_DIR;
- nixDB = (string) NIX_STATE_DIR + "/nixstate.db";
-
- /* Put the arguments in a vector. */
- Strings args;
- while (argc--) args.push_back(*argv++);
- args.erase(args.begin());
-
- /* Expand compound dash options (i.e., `-qlf' -> `-q -l -f'). */
- for (Strings::iterator it = args.begin();
- it != args.end(); )
- {
- string arg = *it;
- if (arg.length() > 2 && arg[0] == '-' && arg[1] != '-') {
- for (unsigned int i = 1; i < arg.length(); i++)
- args.insert(it, (string) "-" + arg[i]);
- it = args.erase(it);
- } else it++;
- }
-
Strings opFlags, opArgs;
Operation op = 0;
- /* Scan the arguments; find the operation, set global flags, put
- all other flags in a list, and put all other arguments in
- another list. */
-
for (Strings::iterator it = args.begin();
it != args.end(); it++)
{
@@ -291,22 +265,4 @@ static void run(int argc, char * * argv)
}
-int main(int argc, char * * argv)
-{
- /* ATerm setup. */
- ATerm bottomOfStack;
- ATinit(argc, argv, &bottomOfStack);
-
- try {
- run(argc, argv);
- } catch (UsageError & e) {
- cerr << "error: " << e.what() << endl
- << "Try `nix --help' for more information.\n";
- return 1;
- } catch (exception & e) {
- cerr << "error: " << e.what() << endl;
- return 1;
- }
-
- return 0;
-}
+string programId = "nix";