2007-01-14 14:32:44 +02:00
|
|
|
|
#include "common-opts.hh"
|
2015-05-06 15:54:31 +03:00
|
|
|
|
#include "shared.hh"
|
|
|
|
|
#include "download.hh"
|
2007-01-14 14:32:44 +02:00
|
|
|
|
#include "util.hh"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
|
|
2014-08-13 04:50:44 +03:00
|
|
|
|
bool parseAutoArgs(Strings::iterator & i,
|
|
|
|
|
const Strings::iterator & argsEnd, std::map<string, string> & res)
|
2007-01-14 14:32:44 +02:00
|
|
|
|
{
|
2014-08-13 04:50:44 +03:00
|
|
|
|
string arg = *i;
|
2007-01-14 14:32:44 +02:00
|
|
|
|
if (arg != "--arg" && arg != "--argstr") return false;
|
|
|
|
|
|
2014-08-20 18:00:17 +03:00
|
|
|
|
UsageError error(format("‘%1%’ requires two arguments") % arg);
|
2014-02-26 16:21:56 +02:00
|
|
|
|
|
2014-08-13 04:50:44 +03: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
|
|
|
|
|
2014-08-13 04:50:44 +03:00
|
|
|
|
res[name] = (arg == "--arg" ? 'E' : 'S') + value;
|
2010-04-07 18:47:06 +03:00
|
|
|
|
|
2014-08-13 04:50:44 +03:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2010-10-24 22:52:33 +03:00
|
|
|
|
|
|
|
|
|
|
2014-09-19 17:49:41 +03:00
|
|
|
|
Bindings * evalAutoArgs(EvalState & state, std::map<string, string> & in)
|
2014-08-13 04:50:44 +03:00
|
|
|
|
{
|
2014-09-19 17:49:41 +03:00
|
|
|
|
Bindings * res = state.allocBindings(in.size());
|
|
|
|
|
for (auto & i : in) {
|
2014-08-13 04:50:44 +03:00
|
|
|
|
Value * v = state.allocValue();
|
|
|
|
|
if (i.second[0] == 'E')
|
|
|
|
|
state.mkThunk_(*v, state.parseExprFromString(string(i.second, 1), absPath(".")));
|
|
|
|
|
else
|
|
|
|
|
mkString(*v, string(i.second, 1));
|
2014-09-19 17:49:41 +03:00
|
|
|
|
res->push_back(Attr(state.symbols.create(i.first), v));
|
2014-08-13 04:50:44 +03:00
|
|
|
|
}
|
2014-09-19 17:49:41 +03:00
|
|
|
|
res->sort();
|
|
|
|
|
return res;
|
2007-01-14 14:32:44 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-08-06 19:05:24 +03:00
|
|
|
|
|
2014-08-13 04:50:44 +03:00
|
|
|
|
bool parseSearchPathArg(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
|
|
|
|
{
|
2014-08-13 04:50:44 +03:00
|
|
|
|
if (*i != "-I") return false;
|
2014-08-20 18:00:17 +03:00
|
|
|
|
if (++i == argsEnd) throw UsageError("‘-I’ requires an argument");
|
2014-08-13 04:50:44 +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)
|
|
|
|
|
{
|
2015-05-06 15:54:31 +03:00
|
|
|
|
if (isUri(s))
|
|
|
|
|
return downloadFileCached(s, true);
|
|
|
|
|
else 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);
|
2014-05-26 18:02:22 +03:00
|
|
|
|
return state.findFile(p);
|
2011-12-01 18:41:43 +02:00
|
|
|
|
} else
|
|
|
|
|
return absPath(s);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-01-14 14:32:44 +02:00
|
|
|
|
}
|