2007-01-14 14:32:44 +02:00
|
|
|
#include "common-opts.hh"
|
|
|
|
#include "../libmain/shared.hh"
|
|
|
|
#include "util.hh"
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
|
|
|
bool parseOptionArg(const string & arg, Strings::iterator & i,
|
|
|
|
const Strings::iterator & argsEnd, EvalState & state,
|
2010-04-07 18:47:06 +03:00
|
|
|
Bindings & autoArgs)
|
2007-01-14 14:32:44 +02:00
|
|
|
{
|
|
|
|
if (arg != "--arg" && arg != "--argstr") return false;
|
|
|
|
|
|
|
|
UsageError error(format("`%1%' requires two arguments") % arg);
|
2014-02-26 16:21:56 +02:00
|
|
|
|
2007-01-14 14:32:44 +02:00
|
|
|
if (i == argsEnd) throw error;
|
|
|
|
string name = *i++;
|
|
|
|
if (i == argsEnd) throw error;
|
|
|
|
string value = *i++;
|
2010-04-07 18:47:06 +03:00
|
|
|
|
2010-10-24 22:52:33 +03:00
|
|
|
/* !!! check for duplicates! */
|
2010-10-22 17:47:42 +03:00
|
|
|
Value * v = state.allocValue();
|
2010-10-24 22:52:33 +03:00
|
|
|
autoArgs.push_back(Attr(state.symbols.create(name), v));
|
2010-04-07 18:47:06 +03:00
|
|
|
|
|
|
|
if (arg == "--arg")
|
2011-08-06 16:02:55 +03:00
|
|
|
state.mkThunk_(*v, state.parseExprFromString(value, absPath(".")));
|
2010-04-07 18:47:06 +03:00
|
|
|
else
|
2010-10-22 17:47:42 +03:00
|
|
|
mkString(*v, value);
|
2010-10-24 22:52:33 +03:00
|
|
|
|
|
|
|
autoArgs.sort(); // !!! inefficient
|
|
|
|
|
2007-01-14 14:32:44 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-08-06 19:05:24 +03:00
|
|
|
|
|
|
|
bool parseSearchPathArg(const string & arg, Strings::iterator & i,
|
2014-05-26 17:50:36 +03:00
|
|
|
const Strings::iterator & argsEnd, Strings & searchPath)
|
2011-08-06 19:05:24 +03:00
|
|
|
{
|
|
|
|
if (arg != "-I") return false;
|
|
|
|
if (i == argsEnd) throw UsageError(format("`%1%' requires an argument") % arg);;
|
2014-05-26 17:50:36 +03:00
|
|
|
searchPath.push_back(*i++);
|
2011-08-06 19:05:24 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-01 18:41:43 +02:00
|
|
|
Path lookupFileArg(EvalState & state, string s)
|
|
|
|
{
|
|
|
|
if (s.size() > 2 && s.at(0) == '<' && s.at(s.size() - 1) == '>') {
|
2012-02-09 19:56:48 +02:00
|
|
|
Path p = s.substr(1, s.size() - 2);
|
|
|
|
Path p2 = state.findFile(p);
|
|
|
|
if (p2 == "") throw Error(format("file `%1%' was not found in the Nix search path (add it using $NIX_PATH or -I)") % p);
|
|
|
|
return p2;
|
2011-12-01 18:41:43 +02:00
|
|
|
} else
|
|
|
|
return absPath(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-14 14:32:44 +02:00
|
|
|
}
|