2003-10-30 18:48:26 +02:00
|
|
|
#include "eval.hh"
|
|
|
|
#include "parser.hh"
|
2006-09-05 00:06:23 +03:00
|
|
|
#include "hash.hh"
|
|
|
|
#include "util.hh"
|
2006-11-30 19:43:04 +02:00
|
|
|
#include "store-api.hh"
|
2006-10-16 18:55:34 +03:00
|
|
|
#include "derivations.hh"
|
2004-10-29 14:22:49 +03:00
|
|
|
#include "nixexpr-ast.hh"
|
2006-12-01 22:51:18 +02:00
|
|
|
#include "globals.hh"
|
2004-02-04 18:03:29 +02:00
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
#include <cstring>
|
|
|
|
|
2004-02-04 18:03:29 +02:00
|
|
|
|
2007-02-27 21:10:45 +02:00
|
|
|
#define LocalNoInline(f) static f __attribute__((noinline)); f
|
|
|
|
#define LocalNoInlineNoReturn(f) static f __attribute__((noinline, noreturn)); f
|
|
|
|
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
std::ostream & operator << (std::ostream & str, Value & v)
|
2003-10-30 18:48:26 +02:00
|
|
|
{
|
2010-03-29 17:37:56 +03:00
|
|
|
switch (v.type) {
|
|
|
|
case tInt:
|
|
|
|
str << v.integer;
|
|
|
|
break;
|
|
|
|
case tBool:
|
|
|
|
str << (v.boolean ? "true" : "false");
|
|
|
|
break;
|
|
|
|
case tString:
|
|
|
|
str << "\"" << v.string.s << "\""; // !!! escaping
|
|
|
|
break;
|
2010-03-30 12:22:33 +03:00
|
|
|
case tPath:
|
|
|
|
str << v.path; // !!! escaping?
|
|
|
|
break;
|
2010-03-29 17:37:56 +03:00
|
|
|
case tNull:
|
|
|
|
str << "true";
|
|
|
|
break;
|
|
|
|
case tAttrs:
|
|
|
|
str << "{ ";
|
|
|
|
foreach (Bindings::iterator, i, *v.attrs)
|
|
|
|
str << aterm2String(i->first) << " = " << i->second << "; ";
|
|
|
|
str << "}";
|
|
|
|
break;
|
|
|
|
case tList:
|
|
|
|
str << "[ ";
|
|
|
|
for (unsigned int n = 0; n < v.list.length; ++n)
|
|
|
|
str << v.list.elems[n] << " ";
|
|
|
|
str << "]";
|
|
|
|
break;
|
|
|
|
case tThunk:
|
|
|
|
str << "<CODE>";
|
|
|
|
break;
|
|
|
|
case tLambda:
|
|
|
|
str << "<LAMBDA>";
|
|
|
|
break;
|
|
|
|
case tPrimOp:
|
|
|
|
str << "<PRIMOP>";
|
|
|
|
break;
|
|
|
|
case tPrimOpApp:
|
|
|
|
str << "<PRIMOP-APP>";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw Error("invalid value");
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
2004-02-04 18:03:29 +02:00
|
|
|
|
2004-10-27 01:54:26 +03:00
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
string showType(Value & v)
|
|
|
|
{
|
|
|
|
switch (v.type) {
|
|
|
|
case tInt: return "an integer";
|
|
|
|
case tBool: return "a boolean";
|
2010-04-01 13:55:36 +03:00
|
|
|
case tString: return "a string";
|
|
|
|
case tPath: return "a path";
|
2010-03-29 17:37:56 +03:00
|
|
|
case tAttrs: return "an attribute set";
|
|
|
|
case tList: return "a list";
|
2010-04-01 13:55:36 +03:00
|
|
|
case tNull: return "null";
|
|
|
|
case tLambda: return "a function";
|
|
|
|
case tPrimOp: return "a built-in function";
|
2010-03-29 17:37:56 +03:00
|
|
|
case tPrimOpApp: return "a partially applied built-in function";
|
2010-04-01 13:55:36 +03:00
|
|
|
default: throw Error(format("unknown type: %1%") % v.type);
|
2010-03-29 17:37:56 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-12 14:06:24 +03:00
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
EvalState::EvalState() : baseEnv(allocEnv())
|
|
|
|
{
|
|
|
|
nrValues = nrEnvs = nrEvaluated = 0;
|
|
|
|
|
|
|
|
initNixExprHelpers();
|
|
|
|
|
|
|
|
createBaseEnv();
|
|
|
|
|
2009-05-12 14:06:24 +03:00
|
|
|
allowUnsafeEquality = getEnv("NIX_NO_UNSAFE_EQ", "") == "";
|
2004-02-04 18:03:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-30 17:39:27 +03:00
|
|
|
void EvalState::addConstant(const string & name, Value & v)
|
|
|
|
{
|
|
|
|
baseEnv.bindings[toATerm(name)] = v;
|
|
|
|
string name2 = string(name, 0, 2) == "__" ? string(name, 2) : name;
|
|
|
|
(*baseEnv.bindings[toATerm("builtins")].attrs)[toATerm(name2)] = v;
|
|
|
|
nrValues += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-04 13:59:20 +03:00
|
|
|
void EvalState::addPrimOp(const string & name,
|
|
|
|
unsigned int arity, PrimOp primOp)
|
2004-02-04 18:03:29 +02:00
|
|
|
{
|
2010-03-30 17:39:27 +03:00
|
|
|
Value v;
|
2010-03-29 17:37:56 +03:00
|
|
|
v.type = tPrimOp;
|
|
|
|
v.primOp.arity = arity;
|
|
|
|
v.primOp.fun = primOp;
|
2010-03-30 17:39:27 +03:00
|
|
|
baseEnv.bindings[toATerm(name)] = v;
|
|
|
|
string name2 = string(name, 0, 2) == "__" ? string(name, 2) : name;
|
|
|
|
(*baseEnv.bindings[toATerm("builtins")].attrs)[toATerm(name2)] = v;
|
|
|
|
nrValues += 2;
|
2003-10-31 19:09:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-27 21:10:45 +02:00
|
|
|
/* Every "format" object (even temporary) takes up a few hundred bytes
|
|
|
|
of stack space, which is a real killer in the recursive
|
|
|
|
evaluator. So here are some helper functions for throwing
|
|
|
|
exceptions. */
|
|
|
|
|
|
|
|
LocalNoInlineNoReturn(void throwEvalError(const char * s))
|
|
|
|
{
|
|
|
|
throw EvalError(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
LocalNoInlineNoReturn(void throwEvalError(const char * s, const string & s2))
|
|
|
|
{
|
|
|
|
throw EvalError(format(s) % s2);
|
|
|
|
}
|
|
|
|
|
2008-07-24 17:52:25 +03:00
|
|
|
LocalNoInlineNoReturn(void throwTypeError(const char * s))
|
|
|
|
{
|
|
|
|
throw TypeError(s);
|
|
|
|
}
|
|
|
|
|
2007-02-27 21:10:45 +02:00
|
|
|
LocalNoInlineNoReturn(void throwTypeError(const char * s, const string & s2))
|
|
|
|
{
|
|
|
|
throw TypeError(format(s) % s2);
|
|
|
|
}
|
|
|
|
|
|
|
|
LocalNoInline(void addErrorPrefix(Error & e, const char * s))
|
|
|
|
{
|
|
|
|
e.addPrefix(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
LocalNoInline(void addErrorPrefix(Error & e, const char * s, const string & s2))
|
|
|
|
{
|
|
|
|
e.addPrefix(format(s) % s2);
|
|
|
|
}
|
|
|
|
|
|
|
|
LocalNoInline(void addErrorPrefix(Error & e, const char * s, const string & s2, const string & s3))
|
|
|
|
{
|
|
|
|
e.addPrefix(format(s) % s2 % s3);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-30 21:05:54 +03:00
|
|
|
void mkString(Value & v, const char * s)
|
|
|
|
{
|
|
|
|
v.type = tString;
|
|
|
|
v.string.s = strdup(s);
|
|
|
|
v.string.context = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void mkString(Value & v, const string & s, const PathSet & context)
|
|
|
|
{
|
|
|
|
mkString(v, s.c_str());
|
2010-03-31 22:52:29 +03:00
|
|
|
if (!context.empty()) {
|
2010-04-01 12:55:57 +03:00
|
|
|
unsigned int n = 0;
|
2010-03-31 22:52:29 +03:00
|
|
|
v.string.context = new const char *[context.size() + 1];
|
|
|
|
foreach (PathSet::const_iterator, i, context)
|
|
|
|
v.string.context[n++] = strdup(i->c_str());
|
|
|
|
v.string.context[n] = 0;
|
|
|
|
}
|
2010-03-30 21:05:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void mkPath(Value & v, const char * s)
|
|
|
|
{
|
|
|
|
v.type = tPath;
|
|
|
|
v.path = strdup(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
static Value * lookupWith(Env * env, Sym name)
|
|
|
|
{
|
|
|
|
if (!env) return 0;
|
|
|
|
Value * v = lookupWith(env->up, name);
|
|
|
|
if (v) return v;
|
|
|
|
Bindings::iterator i = env->bindings.find(sWith);
|
|
|
|
if (i == env->bindings.end()) return 0;
|
|
|
|
Bindings::iterator j = i->second.attrs->find(name);
|
|
|
|
if (j != i->second.attrs->end()) return &j->second;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static Value * lookupVar(Env * env, Sym name)
|
|
|
|
{
|
|
|
|
/* First look for a regular variable binding for `name'. */
|
|
|
|
for (Env * env2 = env; env2; env2 = env2->up) {
|
|
|
|
Bindings::iterator i = env2->bindings.find(name);
|
|
|
|
if (i != env2->bindings.end()) return &i->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Otherwise, look for a `with' attribute set containing `name'.
|
|
|
|
Outer `withs' take precedence (i.e. `with {x=1;}; with {x=2;};
|
|
|
|
x' evaluates to 1). */
|
|
|
|
Value * v = lookupWith(env, name);
|
|
|
|
if (v) return v;
|
|
|
|
|
|
|
|
/* Alternative implementation where the inner `withs' take
|
|
|
|
precedence (i.e. `with {x=1;}; with {x=2;}; x' evaluates to
|
|
|
|
2). */
|
|
|
|
#if 0
|
|
|
|
for (Env * env2 = env; env2; env2 = env2->up) {
|
|
|
|
Bindings::iterator i = env2->bindings.find(sWith);
|
|
|
|
if (i == env2->bindings.end()) continue;
|
|
|
|
Bindings::iterator j = i->second.attrs->find(name);
|
|
|
|
if (j != i->second.attrs->end()) return &j->second;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-03-30 21:05:54 +03:00
|
|
|
throw Error(format("undefined variable `%1%'") % aterm2String(name));
|
2010-03-29 17:37:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Value * EvalState::allocValues(unsigned int count)
|
|
|
|
{
|
|
|
|
nrValues += count;
|
|
|
|
return new Value[count]; // !!! check destructor
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Env & EvalState::allocEnv()
|
|
|
|
{
|
|
|
|
nrEnvs++;
|
|
|
|
return *(new Env);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-30 17:39:27 +03:00
|
|
|
void EvalState::mkList(Value & v, unsigned int length)
|
|
|
|
{
|
|
|
|
v.type = tList;
|
|
|
|
v.list.length = length;
|
|
|
|
v.list.elems = allocValues(length);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-31 01:39:48 +03:00
|
|
|
void EvalState::mkAttrs(Value & v)
|
|
|
|
{
|
|
|
|
v.type = tAttrs;
|
|
|
|
v.attrs = new Bindings;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-31 18:38:03 +03:00
|
|
|
void EvalState::cloneAttrs(Value & src, Value & dst)
|
|
|
|
{
|
|
|
|
mkAttrs(dst);
|
|
|
|
foreach (Bindings::iterator, i, *src.attrs)
|
2010-04-01 15:04:57 +03:00
|
|
|
mkCopy((*dst.attrs)[i->first], i->second);
|
2010-03-31 18:38:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-30 12:22:33 +03:00
|
|
|
void EvalState::evalFile(const Path & path, Value & v)
|
|
|
|
{
|
|
|
|
startNest(nest, lvlTalkative, format("evaluating file `%1%'") % path);
|
2010-03-31 19:14:32 +03:00
|
|
|
|
|
|
|
Expr e = parseTrees.get(toATerm(path));
|
|
|
|
|
|
|
|
if (!e) {
|
|
|
|
e = parseExprFromFile(*this, path);
|
|
|
|
parseTrees.set(toATerm(path), e);
|
|
|
|
}
|
|
|
|
|
2010-03-30 12:22:33 +03:00
|
|
|
try {
|
|
|
|
eval(e, v);
|
|
|
|
} catch (Error & e) {
|
|
|
|
e.addPrefix(format("while evaluating the file `%1%':\n")
|
|
|
|
% path);
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
static char * deepestStack = (char *) -1; /* for measuring stack usage */
|
|
|
|
|
|
|
|
|
|
|
|
void EvalState::eval(Env & env, Expr e, Value & v)
|
|
|
|
{
|
|
|
|
/* When changing this function, make sure that you don't cause a
|
|
|
|
(large) increase in stack consumption! */
|
|
|
|
|
|
|
|
char x;
|
|
|
|
if (&x < deepestStack) deepestStack = &x;
|
|
|
|
|
2010-04-01 13:55:36 +03:00
|
|
|
//debug(format("eval: %1%") % e);
|
2010-03-29 17:37:56 +03:00
|
|
|
|
2010-04-07 16:55:46 +03:00
|
|
|
checkInterrupt();
|
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
nrEvaluated++;
|
|
|
|
|
|
|
|
Sym name;
|
2010-03-30 21:05:54 +03:00
|
|
|
int n;
|
|
|
|
ATerm s; ATermList context, es;
|
|
|
|
ATermList rbnds, nrbnds;
|
|
|
|
Expr e1, e2, e3, fun, arg, attrs;
|
|
|
|
Pattern pat; Expr body; Pos pos;
|
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
if (matchVar(e, name)) {
|
|
|
|
Value * v2 = lookupVar(&env, name);
|
|
|
|
forceValue(*v2);
|
|
|
|
v = *v2;
|
|
|
|
}
|
|
|
|
|
2010-03-30 21:05:54 +03:00
|
|
|
else if (matchInt(e, n))
|
2010-03-29 17:37:56 +03:00
|
|
|
mkInt(v, n);
|
|
|
|
|
2010-03-30 21:05:54 +03:00
|
|
|
else if (matchStr(e, s, context)) {
|
2010-03-29 17:37:56 +03:00
|
|
|
assert(context == ATempty);
|
2010-03-30 21:05:54 +03:00
|
|
|
mkString(v, ATgetName(ATgetAFun(s)));
|
2010-03-30 12:22:33 +03:00
|
|
|
}
|
|
|
|
|
2010-03-30 21:05:54 +03:00
|
|
|
else if (matchPath(e, s))
|
|
|
|
mkPath(v, ATgetName(ATgetAFun(s)));
|
2010-03-29 17:37:56 +03:00
|
|
|
|
2010-03-30 21:05:54 +03:00
|
|
|
else if (matchAttrs(e, es)) {
|
2010-03-31 01:39:48 +03:00
|
|
|
mkAttrs(v);
|
2010-03-29 17:37:56 +03:00
|
|
|
ATerm e2, pos;
|
|
|
|
for (ATermIterator i(es); i; ++i) {
|
|
|
|
if (!matchBind(*i, name, e2, pos)) abort(); /* can't happen */
|
|
|
|
Value & v2 = (*v.attrs)[name];
|
|
|
|
nrValues++;
|
|
|
|
mkThunk(v2, env, e2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-30 21:05:54 +03:00
|
|
|
else if (matchRec(e, rbnds, nrbnds)) {
|
2010-03-31 14:05:39 +03:00
|
|
|
/* Create a new environment that contains the attributes in
|
|
|
|
this `rec'. */
|
2010-03-29 17:37:56 +03:00
|
|
|
Env & env2(allocEnv());
|
|
|
|
env2.up = &env;
|
|
|
|
|
|
|
|
v.type = tAttrs;
|
|
|
|
v.attrs = &env2.bindings;
|
2010-03-31 14:05:39 +03:00
|
|
|
|
|
|
|
/* The recursive attributes are evaluated in the new
|
|
|
|
environment. */
|
2010-03-29 17:37:56 +03:00
|
|
|
ATerm name, e2, pos;
|
|
|
|
for (ATermIterator i(rbnds); i; ++i) {
|
|
|
|
if (!matchBind(*i, name, e2, pos)) abort(); /* can't happen */
|
|
|
|
Value & v2 = env2.bindings[name];
|
|
|
|
nrValues++;
|
|
|
|
mkThunk(v2, env2, e2);
|
|
|
|
}
|
2010-03-31 14:05:39 +03:00
|
|
|
|
|
|
|
/* The non-recursive attributes, on the other hand, are
|
|
|
|
evaluated in the original environment. */
|
|
|
|
for (ATermIterator i(nrbnds); i; ++i) {
|
|
|
|
if (!matchBind(*i, name, e2, pos)) abort(); /* can't happen */
|
|
|
|
Value & v2 = env2.bindings[name];
|
|
|
|
nrValues++;
|
|
|
|
mkThunk(v2, env, e2);
|
|
|
|
}
|
2010-03-29 17:37:56 +03:00
|
|
|
}
|
|
|
|
|
2010-03-30 21:05:54 +03:00
|
|
|
else if (matchSelect(e, e2, name)) {
|
2010-04-06 17:15:29 +03:00
|
|
|
Value v2;
|
|
|
|
eval(env, e2, v2);
|
|
|
|
forceAttrs(v2); // !!! eval followed by force is slightly inefficient
|
|
|
|
Bindings::iterator i = v2.attrs->find(name);
|
|
|
|
if (i == v2.attrs->end())
|
2010-03-30 12:22:33 +03:00
|
|
|
throwEvalError("attribute `%1%' missing", aterm2String(name));
|
|
|
|
try {
|
|
|
|
forceValue(i->second);
|
|
|
|
} catch (Error & e) {
|
|
|
|
addErrorPrefix(e, "while evaluating the attribute `%1%':\n", aterm2String(name));
|
|
|
|
throw;
|
|
|
|
}
|
2010-03-29 17:37:56 +03:00
|
|
|
v = i->second;
|
|
|
|
}
|
|
|
|
|
2010-03-30 21:05:54 +03:00
|
|
|
else if (matchFunction(e, pat, body, pos)) {
|
2010-03-29 17:37:56 +03:00
|
|
|
v.type = tLambda;
|
|
|
|
v.lambda.env = &env;
|
|
|
|
v.lambda.pat = pat;
|
|
|
|
v.lambda.body = body;
|
|
|
|
}
|
|
|
|
|
2010-03-30 21:05:54 +03:00
|
|
|
else if (matchCall(e, fun, arg)) {
|
2010-04-06 17:15:29 +03:00
|
|
|
Value vFun;
|
|
|
|
eval(env, fun, vFun);
|
2010-03-30 16:47:59 +03:00
|
|
|
Value vArg;
|
|
|
|
mkThunk(vArg, env, arg); // !!! should this be on the heap?
|
2010-04-06 17:15:29 +03:00
|
|
|
callFunction(vFun, vArg, v);
|
2010-03-29 17:37:56 +03:00
|
|
|
}
|
|
|
|
|
2010-03-30 21:05:54 +03:00
|
|
|
else if (matchWith(e, attrs, body, pos)) {
|
2010-03-29 17:37:56 +03:00
|
|
|
Env & env2(allocEnv());
|
|
|
|
env2.up = &env;
|
|
|
|
|
|
|
|
Value & vAttrs = env2.bindings[sWith];
|
|
|
|
nrValues++;
|
|
|
|
eval(env, attrs, vAttrs);
|
|
|
|
forceAttrs(vAttrs);
|
|
|
|
|
|
|
|
eval(env2, body, v);
|
|
|
|
}
|
|
|
|
|
2010-03-30 21:05:54 +03:00
|
|
|
else if (matchList(e, es)) {
|
2010-03-30 17:39:27 +03:00
|
|
|
mkList(v, ATgetLength(es));
|
2010-03-29 17:37:56 +03:00
|
|
|
for (unsigned int n = 0; n < v.list.length; ++n, es = ATgetNext(es))
|
|
|
|
mkThunk(v.list.elems[n], env, ATgetFirst(es));
|
|
|
|
}
|
|
|
|
|
2010-03-30 21:05:54 +03:00
|
|
|
else if (matchOpEq(e, e1, e2)) {
|
2010-03-29 17:37:56 +03:00
|
|
|
Value v1; eval(env, e1, v1);
|
|
|
|
Value v2; eval(env, e2, v2);
|
|
|
|
mkBool(v, eqValues(v1, v2));
|
|
|
|
}
|
|
|
|
|
2010-03-30 21:05:54 +03:00
|
|
|
else if (matchOpNEq(e, e1, e2)) {
|
2010-03-29 17:37:56 +03:00
|
|
|
Value v1; eval(env, e1, v1);
|
|
|
|
Value v2; eval(env, e2, v2);
|
|
|
|
mkBool(v, !eqValues(v1, v2));
|
|
|
|
}
|
|
|
|
|
2010-03-30 21:05:54 +03:00
|
|
|
else if (matchOpConcat(e, e1, e2)) {
|
2010-03-29 17:37:56 +03:00
|
|
|
Value v1; eval(env, e1, v1);
|
|
|
|
forceList(v1);
|
|
|
|
Value v2; eval(env, e2, v2);
|
|
|
|
forceList(v2);
|
2010-03-30 17:39:27 +03:00
|
|
|
mkList(v, v1.list.length + v2.list.length);
|
2010-03-29 17:37:56 +03:00
|
|
|
/* !!! This loses sharing with the original lists. We could
|
|
|
|
use a tCopy node, but that would use more memory. */
|
|
|
|
for (unsigned int n = 0; n < v1.list.length; ++n)
|
|
|
|
v.list.elems[n] = v1.list.elems[n];
|
|
|
|
for (unsigned int n = 0; n < v2.list.length; ++n)
|
|
|
|
v.list.elems[n + v1.list.length] = v2.list.elems[n];
|
|
|
|
}
|
|
|
|
|
2010-03-30 21:05:54 +03:00
|
|
|
else if (matchConcatStrings(e, es)) {
|
2010-03-30 18:18:20 +03:00
|
|
|
PathSet context;
|
|
|
|
std::ostringstream s;
|
|
|
|
|
2010-03-31 12:54:12 +03:00
|
|
|
bool first = true, isPath = false;
|
2010-04-06 17:15:29 +03:00
|
|
|
Value vStr;
|
2010-03-30 18:18:20 +03:00
|
|
|
|
|
|
|
for (ATermIterator i(es); i; ++i) {
|
2010-04-06 17:15:29 +03:00
|
|
|
eval(env, *i, vStr);
|
2010-03-30 18:18:20 +03:00
|
|
|
|
|
|
|
/* If the first element is a path, then the result will
|
|
|
|
also be a path, we don't copy anything (yet - that's
|
|
|
|
done later, since paths are copied when they are used
|
|
|
|
in a derivation), and none of the strings are allowed
|
|
|
|
to have contexts. */
|
|
|
|
if (first) {
|
2010-04-06 17:15:29 +03:00
|
|
|
isPath = vStr.type == tPath;
|
2010-03-30 18:18:20 +03:00
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
|
2010-04-06 17:15:29 +03:00
|
|
|
s << coerceToString(vStr, context, false, !isPath);
|
2010-03-29 17:37:56 +03:00
|
|
|
}
|
2010-03-30 18:18:20 +03:00
|
|
|
|
|
|
|
if (isPath && !context.empty())
|
|
|
|
throw EvalError(format("a string that refers to a store path cannot be appended to a path, in `%1%'")
|
|
|
|
% s.str());
|
|
|
|
|
|
|
|
if (isPath)
|
2010-03-30 21:05:54 +03:00
|
|
|
mkPath(v, s.str().c_str());
|
2010-03-30 18:18:20 +03:00
|
|
|
else
|
2010-03-31 22:52:29 +03:00
|
|
|
mkString(v, s.str(), context);
|
2010-03-29 17:37:56 +03:00
|
|
|
}
|
|
|
|
|
2010-03-30 21:05:54 +03:00
|
|
|
/* Conditionals. */
|
|
|
|
else if (matchIf(e, e1, e2, e3))
|
2010-03-29 17:37:56 +03:00
|
|
|
eval(env, evalBool(env, e1) ? e2 : e3, v);
|
2010-03-30 21:05:54 +03:00
|
|
|
|
|
|
|
/* Assertions. */
|
|
|
|
else if (matchAssert(e, e1, e2, pos)) {
|
|
|
|
if (!evalBool(env, e1))
|
|
|
|
throw AssertionError(format("assertion failed at %1%") % showPos(pos));
|
|
|
|
eval(env, e2, v);
|
2010-03-29 17:37:56 +03:00
|
|
|
}
|
|
|
|
|
2010-03-30 21:05:54 +03:00
|
|
|
/* Negation. */
|
|
|
|
else if (matchOpNot(e, e1))
|
|
|
|
mkBool(v, !evalBool(env, e1));
|
|
|
|
|
|
|
|
/* Implication. */
|
|
|
|
else if (matchOpImpl(e, e1, e2))
|
|
|
|
return mkBool(v, !evalBool(env, e1) || evalBool(env, e2));
|
|
|
|
|
|
|
|
/* Conjunction (logical AND). */
|
|
|
|
else if (matchOpAnd(e, e1, e2))
|
|
|
|
mkBool(v, evalBool(env, e1) && evalBool(env, e2));
|
|
|
|
|
|
|
|
/* Disjunction (logical OR). */
|
|
|
|
else if (matchOpOr(e, e1, e2))
|
2010-03-29 17:37:56 +03:00
|
|
|
mkBool(v, evalBool(env, e1) || evalBool(env, e2));
|
2010-03-30 21:05:54 +03:00
|
|
|
|
|
|
|
/* Attribute set update (//). */
|
|
|
|
else if (matchOpUpdate(e, e1, e2)) {
|
|
|
|
Value v2;
|
|
|
|
eval(env, e1, v2);
|
2010-03-31 18:38:03 +03:00
|
|
|
|
|
|
|
cloneAttrs(v2, v);
|
|
|
|
|
|
|
|
eval(env, e2, v2);
|
2010-03-30 21:05:54 +03:00
|
|
|
foreach (Bindings::iterator, i, *v2.attrs)
|
2010-03-31 18:38:03 +03:00
|
|
|
(*v.attrs)[i->first] = i->second; // !!! sharing
|
2010-03-30 21:05:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Attribute existence test (?). */
|
|
|
|
else if (matchOpHasAttr(e, e1, name)) {
|
2010-04-06 17:15:29 +03:00
|
|
|
Value vAttrs;
|
|
|
|
eval(env, e1, vAttrs);
|
|
|
|
forceAttrs(vAttrs);
|
|
|
|
mkBool(v, vAttrs.attrs->find(name) != vAttrs.attrs->end());
|
2010-03-29 17:37:56 +03:00
|
|
|
}
|
|
|
|
|
2010-03-30 21:05:54 +03:00
|
|
|
else throw Error("unsupported term");
|
2010-03-29 17:37:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-30 16:47:59 +03:00
|
|
|
void EvalState::callFunction(Value & fun, Value & arg, Value & v)
|
|
|
|
{
|
|
|
|
if (fun.type == tPrimOp || fun.type == tPrimOpApp) {
|
|
|
|
unsigned int argsLeft =
|
|
|
|
fun.type == tPrimOp ? fun.primOp.arity : fun.primOpApp.argsLeft;
|
|
|
|
if (argsLeft == 1) {
|
|
|
|
/* We have all the arguments, so call the primop. First
|
|
|
|
find the primop. */
|
|
|
|
Value * primOp = &fun;
|
|
|
|
while (primOp->type == tPrimOpApp) primOp = primOp->primOpApp.left;
|
|
|
|
assert(primOp->type == tPrimOp);
|
|
|
|
unsigned int arity = primOp->primOp.arity;
|
|
|
|
|
|
|
|
/* Put all the arguments in an array. */
|
|
|
|
Value * vArgs[arity];
|
|
|
|
unsigned int n = arity - 1;
|
|
|
|
vArgs[n--] = &arg;
|
|
|
|
for (Value * arg = &fun; arg->type == tPrimOpApp; arg = arg->primOpApp.left)
|
|
|
|
vArgs[n--] = arg->primOpApp.right;
|
|
|
|
|
|
|
|
/* And call the primop. */
|
|
|
|
primOp->primOp.fun(*this, vArgs, v);
|
|
|
|
} else {
|
|
|
|
Value * v2 = allocValues(2);
|
|
|
|
v2[0] = fun;
|
|
|
|
v2[1] = arg;
|
|
|
|
v.type = tPrimOpApp;
|
|
|
|
v.primOpApp.left = &v2[0];
|
|
|
|
v.primOpApp.right = &v2[1];
|
|
|
|
v.primOpApp.argsLeft = argsLeft - 1;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fun.type != tLambda)
|
|
|
|
throwTypeError("attempt to call something which is neither a function nor a primop (built-in operation) but %1%",
|
|
|
|
showType(fun));
|
|
|
|
|
|
|
|
Env & env2(allocEnv());
|
|
|
|
env2.up = fun.lambda.env;
|
|
|
|
|
|
|
|
ATermList formals; ATerm ellipsis, name;
|
|
|
|
|
|
|
|
if (matchVarPat(fun.lambda.pat, name)) {
|
|
|
|
Value & vArg = env2.bindings[name];
|
|
|
|
nrValues++;
|
|
|
|
vArg = arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (matchAttrsPat(fun.lambda.pat, formals, ellipsis, name)) {
|
|
|
|
forceAttrs(arg);
|
|
|
|
|
|
|
|
if (name != sNoAlias) {
|
|
|
|
env2.bindings[name] = arg;
|
|
|
|
nrValues++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* For each formal argument, get the actual argument. If
|
|
|
|
there is no matching actual argument but the formal
|
|
|
|
argument has a default, use the default. */
|
|
|
|
unsigned int attrsUsed = 0;
|
|
|
|
for (ATermIterator i(formals); i; ++i) {
|
|
|
|
Expr def; Sym name;
|
|
|
|
DefaultValue def2;
|
|
|
|
if (!matchFormal(*i, name, def2)) abort(); /* can't happen */
|
|
|
|
|
|
|
|
Bindings::iterator j = arg.attrs->find(name);
|
|
|
|
|
|
|
|
Value & v = env2.bindings[name];
|
|
|
|
nrValues++;
|
|
|
|
|
|
|
|
if (j == arg.attrs->end()) {
|
|
|
|
if (!matchDefaultValue(def2, def)) def = 0;
|
|
|
|
if (def == 0) throw TypeError(format("the argument named `%1%' required by the function is missing")
|
|
|
|
% aterm2String(name));
|
|
|
|
mkThunk(v, env2, def);
|
|
|
|
} else {
|
|
|
|
attrsUsed++;
|
2010-04-01 15:04:57 +03:00
|
|
|
mkCopy(v, j->second);
|
2010-03-30 16:47:59 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check that each actual argument is listed as a formal
|
|
|
|
argument (unless the attribute match specifies a `...').
|
|
|
|
TODO: show the names of the expected/unexpected
|
|
|
|
arguments. */
|
|
|
|
if (ellipsis == eFalse && attrsUsed != arg.attrs->size())
|
|
|
|
throw TypeError("function called with unexpected argument");
|
|
|
|
}
|
|
|
|
|
|
|
|
else abort();
|
|
|
|
|
|
|
|
eval(env2, fun.lambda.body, v);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
void EvalState::eval(Expr e, Value & v)
|
|
|
|
{
|
|
|
|
eval(baseEnv, e, v);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool EvalState::evalBool(Env & env, Expr e)
|
|
|
|
{
|
|
|
|
Value v;
|
|
|
|
eval(env, e, v);
|
|
|
|
if (v.type != tBool)
|
|
|
|
throw TypeError(format("value is %1% while a Boolean was expected") % showType(v));
|
|
|
|
return v.boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void EvalState::forceValue(Value & v)
|
|
|
|
{
|
|
|
|
if (v.type == tThunk) {
|
2010-04-06 17:15:29 +03:00
|
|
|
//v.type = tBlackhole;
|
2010-03-29 17:37:56 +03:00
|
|
|
eval(*v.thunk.env, v.thunk.expr, v);
|
|
|
|
}
|
|
|
|
else if (v.type == tCopy) {
|
|
|
|
forceValue(*v.val);
|
|
|
|
v = *v.val;
|
|
|
|
}
|
2010-03-30 16:47:59 +03:00
|
|
|
else if (v.type == tApp)
|
|
|
|
callFunction(*v.app.left, *v.app.right, v);
|
2010-03-29 17:37:56 +03:00
|
|
|
else if (v.type == tBlackhole)
|
|
|
|
throw EvalError("infinite recursion encountered");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-07 16:55:46 +03:00
|
|
|
void EvalState::strictForceValue(Value & v)
|
|
|
|
{
|
|
|
|
forceValue(v);
|
|
|
|
|
|
|
|
if (v.type == tAttrs) {
|
|
|
|
foreach (Bindings::iterator, i, *v.attrs)
|
|
|
|
strictForceValue(i->second);
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (v.type == tList) {
|
|
|
|
for (unsigned int n = 0; n < v.list.length; ++n)
|
|
|
|
strictForceValue(v.list.elems[n]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
int EvalState::forceInt(Value & v)
|
|
|
|
{
|
|
|
|
forceValue(v);
|
|
|
|
if (v.type != tInt)
|
|
|
|
throw TypeError(format("value is %1% while an integer was expected") % showType(v));
|
|
|
|
return v.integer;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-31 18:38:03 +03:00
|
|
|
bool EvalState::forceBool(Value & v)
|
|
|
|
{
|
|
|
|
forceValue(v);
|
|
|
|
if (v.type != tBool)
|
|
|
|
throw TypeError(format("value is %1% while a Boolean was expected") % showType(v));
|
|
|
|
return v.boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
void EvalState::forceAttrs(Value & v)
|
|
|
|
{
|
|
|
|
forceValue(v);
|
|
|
|
if (v.type != tAttrs)
|
|
|
|
throw TypeError(format("value is %1% while an attribute set was expected") % showType(v));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void EvalState::forceList(Value & v)
|
|
|
|
{
|
|
|
|
forceValue(v);
|
|
|
|
if (v.type != tList)
|
|
|
|
throw TypeError(format("value is %1% while a list was expected") % showType(v));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-30 16:47:59 +03:00
|
|
|
void EvalState::forceFunction(Value & v)
|
|
|
|
{
|
|
|
|
forceValue(v);
|
|
|
|
if (v.type != tLambda && v.type != tPrimOp && v.type != tPrimOpApp)
|
|
|
|
throw TypeError(format("value is %1% while a function was expected") % showType(v));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-31 18:38:03 +03:00
|
|
|
string EvalState::forceString(Value & v)
|
2010-03-30 21:05:54 +03:00
|
|
|
{
|
|
|
|
forceValue(v);
|
|
|
|
if (v.type != tString)
|
|
|
|
throw TypeError(format("value is %1% while a string was expected") % showType(v));
|
2010-03-31 18:38:03 +03:00
|
|
|
return string(v.string.s);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-31 22:52:29 +03:00
|
|
|
string EvalState::forceString(Value & v, PathSet & context)
|
|
|
|
{
|
|
|
|
string s = forceString(v);
|
|
|
|
if (v.string.context) {
|
|
|
|
for (const char * * p = v.string.context; *p; ++p)
|
|
|
|
context.insert(*p);
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-31 18:38:03 +03:00
|
|
|
string EvalState::forceStringNoCtx(Value & v)
|
|
|
|
{
|
|
|
|
string s = forceString(v);
|
2010-03-30 21:05:54 +03:00
|
|
|
if (v.string.context)
|
|
|
|
throw EvalError(format("the string `%1%' is not allowed to refer to a store path (such as `%2%')")
|
|
|
|
% v.string.s % v.string.context[0]);
|
2010-03-31 18:38:03 +03:00
|
|
|
return s;
|
2010-03-30 21:05:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-07 16:55:46 +03:00
|
|
|
bool EvalState::isDerivation(Value & v)
|
|
|
|
{
|
|
|
|
if (v.type != tAttrs) return false;
|
|
|
|
Bindings::iterator i = v.attrs->find(toATerm("type"));
|
|
|
|
return i != v.attrs->end() && forceStringNoCtx(i->second) == "derivation";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-30 12:22:33 +03:00
|
|
|
string EvalState::coerceToString(Value & v, PathSet & context,
|
|
|
|
bool coerceMore, bool copyToStore)
|
|
|
|
{
|
|
|
|
forceValue(v);
|
|
|
|
|
|
|
|
string s;
|
|
|
|
|
2010-03-31 22:52:29 +03:00
|
|
|
if (v.type == tString) {
|
|
|
|
if (v.string.context)
|
|
|
|
for (const char * * p = v.string.context; *p; ++p)
|
|
|
|
context.insert(*p);
|
|
|
|
return v.string.s;
|
|
|
|
}
|
2010-03-30 12:22:33 +03:00
|
|
|
|
|
|
|
if (v.type == tPath) {
|
|
|
|
Path path(canonPath(v.path));
|
|
|
|
|
|
|
|
if (!copyToStore) return path;
|
|
|
|
|
2010-04-07 16:55:46 +03:00
|
|
|
if (nix::isDerivation(path))
|
2010-03-30 12:22:33 +03:00
|
|
|
throw EvalError(format("file names are not allowed to end in `%1%'")
|
|
|
|
% drvExtension);
|
|
|
|
|
|
|
|
Path dstPath;
|
|
|
|
if (srcToStore[path] != "")
|
|
|
|
dstPath = srcToStore[path];
|
|
|
|
else {
|
|
|
|
dstPath = readOnlyMode
|
|
|
|
? computeStorePathForPath(path).first
|
|
|
|
: store->addToStore(path);
|
|
|
|
srcToStore[path] = dstPath;
|
|
|
|
printMsg(lvlChatty, format("copied source `%1%' -> `%2%'")
|
|
|
|
% path % dstPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
context.insert(dstPath);
|
|
|
|
return dstPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (v.type == tAttrs) {
|
|
|
|
Bindings::iterator i = v.attrs->find(toATerm("outPath"));
|
|
|
|
if (i == v.attrs->end())
|
|
|
|
throwTypeError("cannot coerce an attribute set (except a derivation) to a string");
|
|
|
|
return coerceToString(i->second, context, coerceMore, copyToStore);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (coerceMore) {
|
|
|
|
|
|
|
|
/* Note that `false' is represented as an empty string for
|
|
|
|
shell scripting convenience, just like `null'. */
|
|
|
|
if (v.type == tBool && v.boolean) return "1";
|
|
|
|
if (v.type == tBool && !v.boolean) return "";
|
|
|
|
if (v.type == tInt) return int2String(v.integer);
|
|
|
|
if (v.type == tNull) return "";
|
|
|
|
|
|
|
|
if (v.type == tList) {
|
|
|
|
string result;
|
|
|
|
for (unsigned int n = 0; n < v.list.length; ++n) {
|
|
|
|
result += coerceToString(v.list.elems[n],
|
|
|
|
context, coerceMore, copyToStore);
|
2010-04-01 17:35:03 +03:00
|
|
|
if (n < v.list.length - 1
|
|
|
|
/* !!! not quite correct */
|
|
|
|
&& (v.list.elems[n].type != tList || v.list.elems[n].list.length != 0))
|
|
|
|
result += " ";
|
2010-03-30 12:22:33 +03:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
throwTypeError("cannot coerce %1% to a string", showType(v));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Path EvalState::coerceToPath(Value & v, PathSet & context)
|
|
|
|
{
|
|
|
|
string path = coerceToString(v, context, false, false);
|
|
|
|
if (path == "" || path[0] != '/')
|
|
|
|
throw EvalError(format("string `%1%' doesn't represent an absolute path") % path);
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
bool EvalState::eqValues(Value & v1, Value & v2)
|
|
|
|
{
|
|
|
|
forceValue(v1);
|
|
|
|
forceValue(v2);
|
|
|
|
|
|
|
|
if (v1.type != v2.type) return false;
|
|
|
|
|
|
|
|
switch (v1.type) {
|
|
|
|
|
|
|
|
case tInt:
|
|
|
|
return v1.integer == v2.integer;
|
|
|
|
|
|
|
|
case tBool:
|
|
|
|
return v1.boolean == v2.boolean;
|
|
|
|
|
|
|
|
case tString:
|
|
|
|
/* !!! contexts */
|
|
|
|
return strcmp(v1.string.s, v2.string.s) == 0;
|
|
|
|
|
2010-03-31 23:09:20 +03:00
|
|
|
case tPath:
|
|
|
|
return strcmp(v1.path, v2.path) == 0;
|
|
|
|
|
2010-03-31 12:54:12 +03:00
|
|
|
case tNull:
|
|
|
|
return true;
|
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
case tList:
|
|
|
|
if (v2.type != tList || v1.list.length != v2.list.length) return false;
|
|
|
|
for (unsigned int n = 0; n < v1.list.length; ++n)
|
|
|
|
if (!eqValues(v1.list.elems[n], v2.list.elems[n])) return false;
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case tAttrs: {
|
|
|
|
if (v2.type != tAttrs || v1.attrs->size() != v2.attrs->size()) return false;
|
|
|
|
Bindings::iterator i, j;
|
|
|
|
for (i = v1.attrs->begin(), j = v2.attrs->begin(); i != v1.attrs->end(); ++i, ++j)
|
|
|
|
if (!eqValues(i->second, j->second)) return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-04-01 13:55:36 +03:00
|
|
|
/* Functions are incomparable. */
|
|
|
|
case tLambda:
|
|
|
|
case tPrimOp:
|
|
|
|
case tPrimOpApp:
|
|
|
|
return false;
|
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
default:
|
2010-03-31 12:54:12 +03:00
|
|
|
throw Error(format("cannot compare %1% with %2%") % showType(v1) % showType(v2));
|
2010-03-29 17:37:56 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if 0
|
2008-08-14 15:53:29 +03:00
|
|
|
/* Pattern-match `pat' against `arg'. The result is a set of
|
|
|
|
substitutions (`subs') and a set of recursive substitutions
|
|
|
|
(`subsRecursive'). The latter can refer to the variables bound by
|
|
|
|
both `subs' and `subsRecursive'. */
|
2008-08-14 13:04:22 +03:00
|
|
|
static void patternMatch(EvalState & state,
|
2008-08-14 15:53:29 +03:00
|
|
|
Pattern pat, Expr arg, ATermMap & subs, ATermMap & subsRecursive)
|
2003-10-31 19:09:31 +02:00
|
|
|
{
|
2008-08-14 13:04:22 +03:00
|
|
|
ATerm name;
|
|
|
|
ATermList formals;
|
2008-08-14 17:00:44 +03:00
|
|
|
ATermBool ellipsis;
|
2006-05-02 16:39:55 +03:00
|
|
|
|
2008-08-14 13:04:22 +03:00
|
|
|
if (matchVarPat(pat, name))
|
|
|
|
subs.set(name, arg);
|
|
|
|
|
2010-03-25 14:19:41 +02:00
|
|
|
else if (matchAttrsPat(pat, formals, ellipsis, name)) {
|
2008-08-14 13:04:22 +03:00
|
|
|
|
|
|
|
arg = evalExpr(state, arg);
|
|
|
|
|
2010-03-25 14:19:41 +02:00
|
|
|
if (name != sNoAlias) subs.set(name, arg);
|
|
|
|
|
2008-08-14 15:53:29 +03:00
|
|
|
/* Get the actual arguments. */
|
|
|
|
ATermMap attrs;
|
|
|
|
queryAllAttrs(arg, attrs);
|
|
|
|
unsigned int nrAttrs = attrs.size();
|
|
|
|
|
|
|
|
/* For each formal argument, get the actual argument. If
|
|
|
|
there is no matching actual argument but the formal
|
|
|
|
argument has a default, use the default. */
|
|
|
|
unsigned int attrsUsed = 0;
|
2006-05-08 15:52:47 +03:00
|
|
|
for (ATermIterator i(formals); i; ++i) {
|
2008-08-14 13:04:22 +03:00
|
|
|
Expr name, def;
|
|
|
|
DefaultValue def2;
|
|
|
|
if (!matchFormal(*i, name, def2)) abort(); /* can't happen */
|
|
|
|
|
2008-08-14 15:53:29 +03:00
|
|
|
Expr value = attrs[name];
|
|
|
|
|
2008-08-14 13:04:22 +03:00
|
|
|
if (value == 0) {
|
|
|
|
if (!matchDefaultValue(def2, def)) def = 0;
|
|
|
|
if (def == 0) throw TypeError(format("the argument named `%1%' required by the function is missing")
|
|
|
|
% aterm2String(name));
|
2008-08-14 15:53:29 +03:00
|
|
|
subsRecursive.set(name, def);
|
|
|
|
} else {
|
|
|
|
attrsUsed++;
|
|
|
|
attrs.remove(name);
|
|
|
|
subs.set(name, value);
|
2008-08-14 13:04:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2008-08-14 15:53:29 +03:00
|
|
|
|
|
|
|
/* Check that each actual argument is listed as a formal
|
2008-08-14 17:00:44 +03:00
|
|
|
argument (unless the attribute match specifies a `...'). */
|
|
|
|
if (ellipsis == eFalse && attrsUsed != nrAttrs)
|
2008-08-14 13:04:22 +03:00
|
|
|
throw TypeError(format("the function does not expect an argument named `%1%'")
|
2008-08-14 15:53:29 +03:00
|
|
|
% aterm2String(attrs.begin()->key));
|
|
|
|
}
|
2008-08-14 13:04:22 +03:00
|
|
|
|
|
|
|
else abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Substitute an argument set into the body of a function. */
|
|
|
|
static Expr substArgs(EvalState & state,
|
|
|
|
Expr body, Pattern pat, Expr arg)
|
|
|
|
{
|
2008-08-14 15:53:29 +03:00
|
|
|
ATermMap subs(16), subsRecursive(16);
|
2008-08-14 13:04:22 +03:00
|
|
|
|
2008-08-14 15:53:29 +03:00
|
|
|
patternMatch(state, pat, arg, subs, subsRecursive);
|
|
|
|
|
|
|
|
/* If we used any default values, make a recursive attribute set
|
|
|
|
out of the (argument-name, value) tuples. This is so that we
|
|
|
|
can support default values that refer to each other, e.g. ({x,
|
|
|
|
y ? x + x}: y) {x = "foo";} evaluates to "foofoo". */
|
|
|
|
if (subsRecursive.size() != 0) {
|
|
|
|
ATermList recAttrs = ATempty;
|
|
|
|
foreach (ATermMap::const_iterator, i, subs)
|
|
|
|
recAttrs = ATinsert(recAttrs, makeBind(i->key, i->value, makeNoPos()));
|
|
|
|
foreach (ATermMap::const_iterator, i, subsRecursive)
|
|
|
|
recAttrs = ATinsert(recAttrs, makeBind(i->key, i->value, makeNoPos()));
|
|
|
|
Expr rec = makeRec(recAttrs, ATempty);
|
|
|
|
foreach (ATermMap::const_iterator, i, subsRecursive)
|
|
|
|
subs.set(i->key, makeSelect(rec, i->key));
|
|
|
|
}
|
2008-08-14 13:04:22 +03:00
|
|
|
|
2006-05-03 00:39:02 +03:00
|
|
|
return substitute(Substitution(0, &subs), body);
|
2003-10-31 19:09:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Transform a mutually recursive set into a non-recursive set. Each
|
|
|
|
attribute is transformed into an expression that has all references
|
|
|
|
to attributes substituted with selection expressions on the
|
2004-02-02 23:39:33 +02:00
|
|
|
original set. E.g., e = `rec {x = f x y; y = x;}' becomes `{x = f
|
|
|
|
(e.x) (e.y); y = e.x;}'. */
|
2008-08-14 19:59:37 +03:00
|
|
|
LocalNoInline(ATerm expandRec(EvalState & state, ATerm e, ATermList rbnds, ATermList nrbnds))
|
2003-10-31 19:09:31 +02:00
|
|
|
{
|
2004-02-16 11:18:35 +02:00
|
|
|
ATerm name;
|
|
|
|
Expr e2;
|
2004-10-27 01:54:26 +03:00
|
|
|
Pos pos;
|
2008-08-14 19:59:37 +03:00
|
|
|
Expr eOverrides = 0;
|
2003-11-16 19:46:31 +02:00
|
|
|
|
2003-10-31 19:09:31 +02:00
|
|
|
/* Create the substitution list. */
|
2006-05-04 15:21:08 +03:00
|
|
|
ATermMap subs(ATgetLength(rbnds) + ATgetLength(nrbnds));
|
2004-02-02 23:39:33 +02:00
|
|
|
for (ATermIterator i(rbnds); i; ++i) {
|
2004-10-27 01:54:26 +03:00
|
|
|
if (!matchBind(*i, name, e2, pos)) abort(); /* can't happen */
|
|
|
|
subs.set(name, makeSelect(e, name));
|
2003-10-31 19:09:31 +02:00
|
|
|
}
|
2004-02-16 11:18:35 +02:00
|
|
|
for (ATermIterator i(nrbnds); i; ++i) {
|
2004-10-27 01:54:26 +03:00
|
|
|
if (!matchBind(*i, name, e2, pos)) abort(); /* can't happen */
|
2008-08-26 17:05:59 +03:00
|
|
|
if (name == sOverrides) eOverrides = e2;
|
2004-02-16 11:18:35 +02:00
|
|
|
subs.set(name, e2);
|
|
|
|
}
|
2003-10-31 19:09:31 +02:00
|
|
|
|
2008-08-14 19:59:37 +03:00
|
|
|
/* If the rec contains an attribute called `__overrides', then
|
|
|
|
evaluate it, and add the attributes in that set to the rec.
|
|
|
|
This allows overriding of recursive attributes, which is
|
|
|
|
otherwise not possible. (You can use the // operator to
|
|
|
|
replace an attribute, but other attributes in the rec will
|
|
|
|
still reference the original value, because that value has been
|
|
|
|
substituted into the bodies of the other attributes. Hence we
|
|
|
|
need __overrides.) */
|
|
|
|
ATermMap overrides;
|
|
|
|
if (eOverrides) {
|
|
|
|
eOverrides = evalExpr(state, eOverrides);
|
2008-08-15 01:01:43 +03:00
|
|
|
queryAllAttrs(eOverrides, overrides, false);
|
2008-08-14 19:59:37 +03:00
|
|
|
foreach (ATermMap::const_iterator, i, overrides)
|
|
|
|
subs.set(i->key, i->value);
|
|
|
|
}
|
|
|
|
|
2006-05-03 00:39:02 +03:00
|
|
|
Substitution subs_(0, &subs);
|
|
|
|
|
2003-10-31 19:09:31 +02:00
|
|
|
/* Create the non-recursive set. */
|
2006-05-04 15:21:08 +03:00
|
|
|
ATermMap as(ATgetLength(rbnds) + ATgetLength(nrbnds));
|
2004-02-02 23:39:33 +02:00
|
|
|
for (ATermIterator i(rbnds); i; ++i) {
|
2004-10-27 01:54:26 +03:00
|
|
|
if (!matchBind(*i, name, e2, pos)) abort(); /* can't happen */
|
2006-05-03 00:39:02 +03:00
|
|
|
as.set(name, makeAttrRHS(substitute(subs_, e2), pos));
|
2003-10-31 19:09:31 +02:00
|
|
|
}
|
|
|
|
|
2008-08-14 19:59:37 +03:00
|
|
|
if (eOverrides)
|
|
|
|
foreach (ATermMap::const_iterator, i, overrides)
|
|
|
|
as.set(i->key, makeAttrRHS(i->value, makeNoPos()));
|
|
|
|
|
2004-02-02 23:39:33 +02:00
|
|
|
/* Copy the non-recursive bindings. !!! inefficient */
|
|
|
|
for (ATermIterator i(nrbnds); i; ++i) {
|
2004-10-27 01:54:26 +03:00
|
|
|
if (!matchBind(*i, name, e2, pos)) abort(); /* can't happen */
|
|
|
|
as.set(name, makeAttrRHS(e2, pos));
|
2004-02-02 23:39:33 +02:00
|
|
|
}
|
|
|
|
|
2003-10-31 19:09:31 +02:00
|
|
|
return makeAttrs(as);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-16 18:55:34 +03:00
|
|
|
static void flattenList(EvalState & state, Expr e, ATermList & result)
|
|
|
|
{
|
|
|
|
ATermList es;
|
|
|
|
e = evalExpr(state, e);
|
|
|
|
if (matchList(e, es))
|
|
|
|
for (ATermIterator i(es); i; ++i)
|
|
|
|
flattenList(state, *i, result);
|
|
|
|
else
|
|
|
|
result = ATinsert(result, e);
|
|
|
|
}
|
2006-05-01 12:56:56 +03:00
|
|
|
|
|
|
|
|
2006-10-16 18:55:34 +03:00
|
|
|
ATermList flattenList(EvalState & state, Expr e)
|
|
|
|
{
|
|
|
|
ATermList result = ATempty;
|
|
|
|
flattenList(state, e, result);
|
|
|
|
return ATreverse(result);
|
|
|
|
}
|
2006-05-01 12:56:56 +03:00
|
|
|
|
|
|
|
|
2006-07-28 19:03:28 +03:00
|
|
|
Expr autoCallFunction(Expr e, const ATermMap & args)
|
2006-07-26 18:05:15 +03:00
|
|
|
{
|
2008-08-14 13:04:22 +03:00
|
|
|
Pattern pat;
|
2010-03-25 14:19:41 +02:00
|
|
|
ATerm body, pos, name;
|
2008-08-14 13:04:22 +03:00
|
|
|
ATermList formals;
|
2008-08-14 17:00:44 +03:00
|
|
|
ATermBool ellipsis;
|
|
|
|
|
2010-03-25 14:19:41 +02:00
|
|
|
if (matchFunction(e, pat, body, pos) && matchAttrsPat(pat, formals, ellipsis, name)) {
|
2007-01-13 16:21:49 +02:00
|
|
|
ATermMap actualArgs(ATgetLength(formals));
|
2006-07-28 19:03:28 +03:00
|
|
|
|
2006-07-26 18:05:15 +03:00
|
|
|
for (ATermIterator i(formals); i; ++i) {
|
2008-08-11 16:36:40 +03:00
|
|
|
Expr name, def, value; ATerm def2;
|
|
|
|
if (!matchFormal(*i, name, def2)) abort();
|
2006-07-28 19:03:28 +03:00
|
|
|
if ((value = args.get(name)))
|
|
|
|
actualArgs.set(name, makeAttrRHS(value, makeNoPos()));
|
|
|
|
else if (!matchDefaultValue(def2, def))
|
2006-07-26 18:05:15 +03:00
|
|
|
throw TypeError(format("cannot auto-call a function that has an argument without a default value (`%1%')")
|
|
|
|
% aterm2String(name));
|
|
|
|
}
|
2006-07-28 19:03:28 +03:00
|
|
|
|
|
|
|
e = makeCall(e, makeAttrs(actualArgs));
|
2006-07-26 18:05:15 +03:00
|
|
|
}
|
2006-07-28 19:03:28 +03:00
|
|
|
|
2006-07-26 18:05:15 +03:00
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-27 21:10:45 +02:00
|
|
|
/* Evaluation of various language constructs. These have been taken
|
|
|
|
out of evalExpr2 to reduce stack space usage. (GCC is really dumb
|
|
|
|
about stack space: it just adds up all the local variables and
|
|
|
|
temporaries of every scope into one huge stack frame. This is
|
|
|
|
really bad for deeply recursive functions.) */
|
|
|
|
|
|
|
|
|
|
|
|
LocalNoInline(Expr evalVar(EvalState & state, ATerm name))
|
|
|
|
{
|
|
|
|
ATerm primOp = state.primOps.get(name);
|
|
|
|
if (!primOp)
|
|
|
|
throw EvalError(format("impossible: undefined variable `%1%'") % aterm2String(name));
|
|
|
|
int arity;
|
|
|
|
ATermBlob fun;
|
|
|
|
if (!matchPrimOpDef(primOp, arity, fun)) abort();
|
|
|
|
if (arity == 0)
|
|
|
|
/* !!! backtrace for primop call */
|
|
|
|
return ((PrimOp) ATgetBlobData(fun)) (state, ATermVector());
|
|
|
|
else
|
|
|
|
return makePrimOp(arity, fun, ATempty);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LocalNoInline(Expr evalCall(EvalState & state, Expr fun, Expr arg))
|
|
|
|
{
|
2008-08-14 13:04:22 +03:00
|
|
|
Pattern pat;
|
|
|
|
ATerm pos;
|
2007-02-27 21:10:45 +02:00
|
|
|
Expr body;
|
|
|
|
|
|
|
|
/* Evaluate the left-hand side. */
|
|
|
|
fun = evalExpr(state, fun);
|
|
|
|
|
|
|
|
/* Is it a primop or a function? */
|
|
|
|
int arity;
|
|
|
|
ATermBlob funBlob;
|
|
|
|
ATermList args;
|
|
|
|
if (matchPrimOp(fun, arity, funBlob, args)) {
|
|
|
|
args = ATinsert(args, arg);
|
|
|
|
if (ATgetLength(args) == arity) {
|
|
|
|
/* Put the arguments in a vector in reverse (i.e.,
|
|
|
|
actual) order. */
|
|
|
|
ATermVector args2(arity);
|
|
|
|
for (ATermIterator i(args); i; ++i)
|
|
|
|
args2[--arity] = *i;
|
|
|
|
/* !!! backtrace for primop call */
|
|
|
|
return ((PrimOp) ATgetBlobData(funBlob))
|
|
|
|
(state, args2);
|
|
|
|
} else
|
|
|
|
/* Need more arguments, so propagate the primop. */
|
|
|
|
return makePrimOp(arity, funBlob, args);
|
|
|
|
}
|
|
|
|
|
2008-08-14 13:04:22 +03:00
|
|
|
else if (matchFunction(fun, pat, body, pos)) {
|
2007-02-27 21:10:45 +02:00
|
|
|
try {
|
2008-08-14 13:04:22 +03:00
|
|
|
return evalExpr(state, substArgs(state, body, pat, arg));
|
2007-02-27 21:10:45 +02:00
|
|
|
} catch (Error & e) {
|
|
|
|
addErrorPrefix(e, "while evaluating the function at %1%:\n",
|
|
|
|
showPos(pos));
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else throwTypeError(
|
2007-05-16 19:17:04 +03:00
|
|
|
"attempt to call something which is neither a function nor a primop (built-in operation) but %1%",
|
2007-02-27 21:10:45 +02:00
|
|
|
showType(fun));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LocalNoInline(Expr evalWith(EvalState & state, Expr defs, Expr body, ATerm pos))
|
|
|
|
{
|
|
|
|
ATermMap attrs;
|
|
|
|
try {
|
|
|
|
defs = evalExpr(state, defs);
|
|
|
|
queryAllAttrs(defs, attrs);
|
|
|
|
} catch (Error & e) {
|
|
|
|
addErrorPrefix(e, "while evaluating the `with' definitions at %1%:\n",
|
|
|
|
showPos(pos));
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
body = substitute(Substitution(0, &attrs), body);
|
|
|
|
checkVarDefs(state.primOps, body);
|
|
|
|
return evalExpr(state, body);
|
|
|
|
} catch (Error & e) {
|
|
|
|
addErrorPrefix(e, "while evaluating the `with' body at %1%:\n",
|
|
|
|
showPos(pos));
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-11 18:50:14 +03:00
|
|
|
/* Implementation of the `==' and `!=' operators. */
|
|
|
|
LocalNoInline(bool areEqual(EvalState & state, Expr e1, Expr e2))
|
|
|
|
{
|
|
|
|
e1 = evalExpr(state, e1);
|
|
|
|
e2 = evalExpr(state, e2);
|
|
|
|
|
|
|
|
/* We cannot test functions/primops for equality, and we currently
|
|
|
|
don't support testing equality between attribute sets or lists
|
|
|
|
- that would have to be a deep equality test to be sound. */
|
|
|
|
AFun sym1 = ATgetAFun(e1);
|
|
|
|
AFun sym2 = ATgetAFun(e2);
|
|
|
|
|
|
|
|
if (sym1 != sym2) return false;
|
|
|
|
|
|
|
|
/* Functions are incomparable. */
|
|
|
|
if (sym1 == symFunction || sym1 == symPrimOp) return false;
|
|
|
|
|
2009-05-12 14:06:24 +03:00
|
|
|
if (!state.allowUnsafeEquality && sym1 == symAttrs)
|
2009-05-11 18:50:14 +03:00
|
|
|
throw EvalError("comparison of attribute sets is not implemented");
|
|
|
|
|
2009-05-12 14:06:24 +03:00
|
|
|
/* !!! This allows comparisons of infinite data structures to
|
|
|
|
succeed, such as `let x = [x]; in x == x'. This is
|
|
|
|
undesirable, since equivalent (?) terms such as `let x = [x]; y
|
|
|
|
= [y]; in x == y' don't terminate. */
|
2009-05-11 18:50:14 +03:00
|
|
|
if (e1 == e2) return true;
|
|
|
|
|
|
|
|
if (sym1 == symList) {
|
|
|
|
ATermList es1; matchList(e1, es1);
|
|
|
|
ATermList es2; matchList(e2, es2);
|
|
|
|
if (ATgetLength(es1) != ATgetLength(es2)) return false;
|
|
|
|
ATermIterator i(es1), j(es2);
|
|
|
|
while (*i) {
|
|
|
|
if (!areEqual(state, *i, *j)) return false;
|
|
|
|
++i; ++j;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-30 18:48:26 +02:00
|
|
|
Expr evalExpr2(EvalState & state, Expr e)
|
|
|
|
{
|
2007-04-16 18:03:19 +03:00
|
|
|
/* When changing this function, make sure that you don't cause a
|
|
|
|
(large) increase in stack consumption! */
|
|
|
|
|
2007-02-27 19:28:51 +02:00
|
|
|
char x;
|
|
|
|
if (&x < deepestStack) deepestStack = &x;
|
|
|
|
|
2007-02-27 21:10:45 +02:00
|
|
|
Expr e1, e2, e3;
|
2004-04-06 01:27:41 +03:00
|
|
|
ATerm name, pos;
|
2004-10-27 01:54:26 +03:00
|
|
|
AFun sym = ATgetAFun(e);
|
2003-10-31 19:09:31 +02:00
|
|
|
|
|
|
|
/* Normal forms. */
|
2004-10-27 01:54:26 +03:00
|
|
|
if (sym == symStr ||
|
|
|
|
sym == symPath ||
|
|
|
|
sym == symNull ||
|
|
|
|
sym == symInt ||
|
|
|
|
sym == symBool ||
|
|
|
|
sym == symFunction ||
|
|
|
|
sym == symAttrs ||
|
|
|
|
sym == symList ||
|
2006-10-16 18:55:34 +03:00
|
|
|
sym == symPrimOp)
|
2003-10-31 19:09:31 +02:00
|
|
|
return e;
|
2004-10-27 01:54:26 +03:00
|
|
|
|
* The recent change in nixpkgs of calling `stdenv.mkDerivation'
instead of `derivation' triggered a huge slowdown in the Nix
expression evaluator. Total execution time of `nix-env -qa' went up
by a factor of 60 or so.
This scalability problem was caused by expressions such as
(x: y: ... x ...) a b
where `a' is a large term (say, the one in
`all-packages-generic.nix'). Then the first beta-reduction would
produce
(y: ... a ...) b
by substituting `a' for `x'. The second beta-reduction would then
substitute `b' for `y' into the body `... a ...', which is a large
term due to `a', and thus causes a large traversal to be performed
by substitute() in the second reduction. This is however entirely
redundant, since `a' cannot contain free variables (since we never
substitute below a weak head normal form).
The solution is to wrap substituted terms into a `Closed'
constructor, i.e.,
subst(subs, Var(x)) = Closed(e) iff subs[x] = e
have substitution not descent into closed terms,
subst(subs, Closed(x)) = Closed(x)
and otherwise ignore them for evaluation,
eval(Closed(x)) = eval(x).
* Fix a typo that caused incorrect substitutions to be performed in
simple lambdas, e.g., `(x: x: x) a' would reduce to `(x: a)'.
2004-03-30 18:05:35 +03:00
|
|
|
/* The `Closed' constructor is just a way to prevent substitutions
|
|
|
|
into expressions not containing free variables. */
|
2004-10-27 01:54:26 +03:00
|
|
|
if (matchClosed(e, e1))
|
* The recent change in nixpkgs of calling `stdenv.mkDerivation'
instead of `derivation' triggered a huge slowdown in the Nix
expression evaluator. Total execution time of `nix-env -qa' went up
by a factor of 60 or so.
This scalability problem was caused by expressions such as
(x: y: ... x ...) a b
where `a' is a large term (say, the one in
`all-packages-generic.nix'). Then the first beta-reduction would
produce
(y: ... a ...) b
by substituting `a' for `x'. The second beta-reduction would then
substitute `b' for `y' into the body `... a ...', which is a large
term due to `a', and thus causes a large traversal to be performed
by substitute() in the second reduction. This is however entirely
redundant, since `a' cannot contain free variables (since we never
substitute below a weak head normal form).
The solution is to wrap substituted terms into a `Closed'
constructor, i.e.,
subst(subs, Var(x)) = Closed(e) iff subs[x] = e
have substitution not descent into closed terms,
subst(subs, Closed(x)) = Closed(x)
and otherwise ignore them for evaluation,
eval(Closed(x)) = eval(x).
* Fix a typo that caused incorrect substitutions to be performed in
simple lambdas, e.g., `(x: x: x) a' would reduce to `(x: a)'.
2004-03-30 18:05:35 +03:00
|
|
|
return evalExpr(state, e1);
|
|
|
|
|
2004-08-04 13:59:20 +03:00
|
|
|
/* Any encountered variables must be primops (since undefined
|
|
|
|
variables are detected after parsing). */
|
2007-02-27 21:10:45 +02:00
|
|
|
if (matchVar(e, name)) return evalVar(state, name);
|
2003-10-31 19:09:31 +02:00
|
|
|
|
|
|
|
/* Function application. */
|
2007-02-27 21:10:45 +02:00
|
|
|
if (matchCall(e, e1, e2)) return evalCall(state, e1, e2);
|
2003-10-31 19:09:31 +02:00
|
|
|
|
|
|
|
/* Attribute selection. */
|
2007-02-27 21:10:45 +02:00
|
|
|
if (matchSelect(e, e1, name)) return evalSelect(state, e1, name);
|
2003-10-31 19:09:31 +02:00
|
|
|
|
|
|
|
/* Mutually recursive sets. */
|
2004-02-02 23:39:33 +02:00
|
|
|
ATermList rbnds, nrbnds;
|
2004-10-27 01:54:26 +03:00
|
|
|
if (matchRec(e, rbnds, nrbnds))
|
2008-08-14 19:59:37 +03:00
|
|
|
return expandRec(state, e, rbnds, nrbnds);
|
2003-11-01 21:10:41 +02:00
|
|
|
|
2003-11-01 21:15:08 +02:00
|
|
|
/* Conditionals. */
|
2007-02-27 21:10:45 +02:00
|
|
|
if (matchIf(e, e1, e2, e3))
|
|
|
|
return evalExpr(state, evalBool(state, e1) ? e2 : e3);
|
2003-11-01 21:15:08 +02:00
|
|
|
|
2003-11-05 18:27:40 +02:00
|
|
|
/* Assertions. */
|
2007-02-27 21:10:45 +02:00
|
|
|
if (matchAssert(e, e1, e2, pos)) return evalAssert(state, e1, e2, pos);
|
2003-11-01 21:15:08 +02:00
|
|
|
|
2004-10-25 19:54:56 +03:00
|
|
|
/* Withs. */
|
2007-02-27 21:10:45 +02:00
|
|
|
if (matchWith(e, e1, e2, pos)) return evalWith(state, e1, e2, pos);
|
2004-10-25 19:54:56 +03:00
|
|
|
|
2006-08-30 16:10:04 +03:00
|
|
|
/* Generic equality/inequality. Note that the behaviour on
|
|
|
|
composite data (lists, attribute sets) and functions is
|
|
|
|
undefined, since the subterms of those terms are not evaluated.
|
|
|
|
However, we don't want to make (==) strict, because that would
|
|
|
|
make operations like `big_derivation == null' very slow (unless
|
|
|
|
we were to evaluate them side-by-side). */
|
2009-05-11 18:50:14 +03:00
|
|
|
if (matchOpEq(e, e1, e2)) return makeBool(areEqual(state, e1, e2));
|
|
|
|
|
|
|
|
if (matchOpNEq(e, e1, e2)) return makeBool(!areEqual(state, e1, e2));
|
|
|
|
|
2003-11-05 18:27:40 +02:00
|
|
|
/* Negation. */
|
2004-10-27 01:54:26 +03:00
|
|
|
if (matchOpNot(e, e1))
|
2003-11-05 18:27:40 +02:00
|
|
|
return makeBool(!evalBool(state, e1));
|
|
|
|
|
|
|
|
/* Implication. */
|
2004-10-27 01:54:26 +03:00
|
|
|
if (matchOpImpl(e, e1, e2))
|
2003-11-05 18:27:40 +02:00
|
|
|
return makeBool(!evalBool(state, e1) || evalBool(state, e2));
|
|
|
|
|
|
|
|
/* Conjunction (logical AND). */
|
2004-10-27 01:54:26 +03:00
|
|
|
if (matchOpAnd(e, e1, e2))
|
2003-11-05 18:27:40 +02:00
|
|
|
return makeBool(evalBool(state, e1) && evalBool(state, e2));
|
|
|
|
|
|
|
|
/* Disjunction (logical OR). */
|
2004-10-27 01:54:26 +03:00
|
|
|
if (matchOpOr(e, e1, e2))
|
2003-11-05 18:27:40 +02:00
|
|
|
return makeBool(evalBool(state, e1) || evalBool(state, e2));
|
|
|
|
|
2004-03-29 00:15:01 +03:00
|
|
|
/* Attribute set update (//). */
|
2004-10-27 01:54:26 +03:00
|
|
|
if (matchOpUpdate(e, e1, e2))
|
2004-02-04 18:49:51 +02:00
|
|
|
return updateAttrs(evalExpr(state, e1), evalExpr(state, e2));
|
|
|
|
|
2004-03-29 00:15:01 +03:00
|
|
|
/* Attribute existence test (?). */
|
2007-02-27 21:10:45 +02:00
|
|
|
if (matchOpHasAttr(e, e1, name)) return evalHasAttr(state, e1, name);
|
2004-03-29 00:15:01 +03:00
|
|
|
|
2004-10-26 20:01:35 +03:00
|
|
|
/* String or path concatenation. */
|
2007-02-27 21:10:45 +02:00
|
|
|
if (sym == symOpPlus || sym == symConcatStrings)
|
|
|
|
return evalPlusConcat(state, e);
|
2004-10-26 20:01:35 +03:00
|
|
|
|
2006-08-29 18:29:38 +03:00
|
|
|
/* Backwards compatability: subpath operator (~). */
|
2007-02-27 21:10:45 +02:00
|
|
|
if (matchSubPath(e, e1, e2)) return evalSubPath(state, e1, e2);
|
2006-08-29 18:29:38 +03:00
|
|
|
|
2005-07-25 18:05:34 +03:00
|
|
|
/* List concatenation. */
|
2007-02-27 21:10:45 +02:00
|
|
|
if (matchOpConcat(e, e1, e2)) return evalOpConcat(state, e1, e2);
|
2006-05-01 17:01:47 +03:00
|
|
|
|
2003-10-31 19:09:31 +02:00
|
|
|
/* Barf. */
|
2007-02-27 21:10:45 +02:00
|
|
|
abort();
|
2003-10-30 18:48:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Expr evalExpr(EvalState & state, Expr e)
|
|
|
|
{
|
2004-01-15 22:23:55 +02:00
|
|
|
checkInterrupt();
|
2007-02-27 21:10:45 +02:00
|
|
|
|
|
|
|
#if 0
|
2003-11-09 12:35:45 +02:00
|
|
|
startNest(nest, lvlVomit,
|
2003-11-16 19:46:31 +02:00
|
|
|
format("evaluating expression: %1%") % e);
|
2007-02-27 21:10:45 +02:00
|
|
|
#endif
|
2003-10-30 18:48:26 +02:00
|
|
|
|
2003-10-31 19:09:31 +02:00
|
|
|
state.nrEvaluated++;
|
|
|
|
|
2003-10-30 18:48:26 +02:00
|
|
|
/* Consult the memo table to quickly get the normal form of
|
|
|
|
previously evaluated expressions. */
|
2003-11-03 22:30:40 +02:00
|
|
|
Expr nf = state.normalForms.get(e);
|
|
|
|
if (nf) {
|
2006-05-03 00:58:46 +03:00
|
|
|
if (nf == makeBlackHole())
|
2007-02-27 21:10:45 +02:00
|
|
|
throwEvalError("infinite recursion encountered");
|
2003-10-31 19:09:31 +02:00
|
|
|
state.nrCached++;
|
2003-11-03 22:30:40 +02:00
|
|
|
return nf;
|
2003-10-30 18:48:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Otherwise, evaluate and memoize. */
|
2006-05-03 00:58:46 +03:00
|
|
|
state.normalForms.set(e, makeBlackHole());
|
2006-03-08 18:03:58 +02:00
|
|
|
try {
|
|
|
|
nf = evalExpr2(state, e);
|
|
|
|
} catch (Error & err) {
|
|
|
|
state.normalForms.remove(e);
|
|
|
|
throw;
|
|
|
|
}
|
2003-11-03 22:30:40 +02:00
|
|
|
state.normalForms.set(e, nf);
|
2003-10-30 18:48:26 +02:00
|
|
|
return nf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-13 17:41:54 +02:00
|
|
|
static Expr strictEvalExpr(EvalState & state, Expr e, ATermMap & nfs);
|
|
|
|
|
|
|
|
|
|
|
|
static Expr strictEvalExpr_(EvalState & state, Expr e, ATermMap & nfs)
|
2006-08-24 16:39:22 +03:00
|
|
|
{
|
|
|
|
e = evalExpr(state, e);
|
|
|
|
|
|
|
|
ATermList as;
|
|
|
|
if (matchAttrs(e, as)) {
|
|
|
|
ATermList as2 = ATempty;
|
|
|
|
for (ATermIterator i(as); i; ++i) {
|
|
|
|
ATerm name; Expr e; ATerm pos;
|
|
|
|
if (!matchBind(*i, name, e, pos)) abort(); /* can't happen */
|
2007-01-13 17:41:54 +02:00
|
|
|
as2 = ATinsert(as2, makeBind(name, strictEvalExpr(state, e, nfs), pos));
|
2007-01-13 16:48:41 +02:00
|
|
|
}
|
2006-08-24 16:39:22 +03:00
|
|
|
return makeAttrs(ATreverse(as2));
|
|
|
|
}
|
2006-08-24 17:03:39 +03:00
|
|
|
|
|
|
|
ATermList es;
|
|
|
|
if (matchList(e, es)) {
|
|
|
|
ATermList es2 = ATempty;
|
|
|
|
for (ATermIterator i(es); i; ++i)
|
2007-01-13 17:41:54 +02:00
|
|
|
es2 = ATinsert(es2, strictEvalExpr(state, *i, nfs));
|
2006-08-24 17:03:39 +03:00
|
|
|
return makeList(ATreverse(es2));
|
|
|
|
}
|
|
|
|
|
2006-08-24 16:39:22 +03:00
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-13 17:41:54 +02:00
|
|
|
static Expr strictEvalExpr(EvalState & state, Expr e, ATermMap & nfs)
|
|
|
|
{
|
|
|
|
Expr nf = nfs.get(e);
|
|
|
|
if (nf) return nf;
|
|
|
|
|
|
|
|
nf = strictEvalExpr_(state, e, nfs);
|
|
|
|
|
|
|
|
nfs.set(e, nf);
|
|
|
|
|
|
|
|
return nf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Expr strictEvalExpr(EvalState & state, Expr e)
|
|
|
|
{
|
|
|
|
ATermMap strictNormalForms;
|
|
|
|
return strictEvalExpr(state, e, strictNormalForms);
|
|
|
|
}
|
2010-03-29 17:37:56 +03:00
|
|
|
#endif
|
2007-01-13 17:41:54 +02:00
|
|
|
|
|
|
|
|
2010-03-30 18:18:20 +03:00
|
|
|
void EvalState::printStats()
|
2003-10-31 19:09:31 +02:00
|
|
|
{
|
2007-02-27 19:28:51 +02:00
|
|
|
char x;
|
2006-05-08 13:00:37 +03:00
|
|
|
bool showStats = getEnv("NIX_SHOW_STATS", "0") != "0";
|
|
|
|
printMsg(showStats ? lvlInfo : lvlDebug,
|
2010-03-29 17:37:56 +03:00
|
|
|
format("evaluated %1% expressions, used %2% bytes of stack space, allocated %3% values, allocated %4% environments")
|
2010-03-30 18:18:20 +03:00
|
|
|
% nrEvaluated
|
2010-03-29 17:37:56 +03:00
|
|
|
% (&x - deepestStack)
|
2010-03-30 18:18:20 +03:00
|
|
|
% nrValues
|
|
|
|
% nrEnvs);
|
2006-05-08 13:00:37 +03:00
|
|
|
if (showStats)
|
|
|
|
printATermMapStats();
|
2003-10-31 19:09:31 +02:00
|
|
|
}
|
2006-09-05 00:06:23 +03:00
|
|
|
|
2010-04-07 16:55:46 +03:00
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
}
|