about summary refs log tree commit diff
path: root/src/libexpr/common-opts.cc
blob: 6171de0f0e8477ccc393891f7d8c4bc356b1ebd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#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[name]);

    if (arg == "--arg")
        state.mkThunk_(v, parseExprFromString(value, absPath(".")));
    else
        mkString(v, value);
    
    return true;
}

 
}