ac1e8f40d4
efficiently. The symbol table ensures that there is only one copy of each symbol, thus allowing symbols to be compared efficiently using a pointer equality test.
34 lines
740 B
C++
34 lines
740 B
C++
#include "common-opts.hh"
|
|
#include "../libmain/shared.hh"
|
|
#include "util.hh"
|
|
#include "parser.hh"
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
bool parseOptionArg(const string & arg, Strings::iterator & i,
|
|
const Strings::iterator & argsEnd, EvalState & state,
|
|
Bindings & autoArgs)
|
|
{
|
|
if (arg != "--arg" && arg != "--argstr") return false;
|
|
|
|
UsageError error(format("`%1%' requires two arguments") % arg);
|
|
|
|
if (i == argsEnd) throw error;
|
|
string name = *i++;
|
|
if (i == argsEnd) throw error;
|
|
string value = *i++;
|
|
|
|
Value & v(autoArgs[state.symbols.create(name)]);
|
|
|
|
if (arg == "--arg")
|
|
state.mkThunk_( v, parseExprFromString(state, value, absPath(".")));
|
|
else
|
|
mkString(v, value);
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
}
|