about summary refs log blame commit diff
path: root/src/libexpr/common-opts.cc
blob: 9e3f8f9614da11cc61d9697da4562c990a5c4dc0 (plain) (tree)































                                                                   
#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,
    ATermMap & 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++;
    
    Expr e = arg == "--arg"
        ? parseExprFromString(state, value, absPath("."))
        : makeStr(value);
    autoArgs.set(toATerm(name), e);
    
    return true;
}

 
}