about summary refs log blame commit diff
path: root/src/libexpr/common-opts.cc
blob: 0ef488373614fdbfe45f0f0050086c9148a16d91 (plain) (tree)
1
2
3
4
5



                               
                   



























                                                                   
#include "common-opts.hh"
#include "../libmain/shared.hh"
#include "util.hh"
#include "parser.hh"
#include "aterm.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;
}

 
}