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"
|
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:
|
2010-04-08 14:41:19 +03:00
|
|
|
str << "\"";
|
|
|
|
for (const char * i = v.string.s; *i; i++)
|
|
|
|
if (*i == '\"' || *i == '\\') str << "\\" << *i;
|
|
|
|
else if (*i == '\n') str << "\\n";
|
|
|
|
else if (*i == '\r') str << "\\r";
|
|
|
|
else if (*i == '\t') str << "\\t";
|
|
|
|
else str << *i;
|
|
|
|
str << "\"";
|
2010-03-29 17:37:56 +03:00
|
|
|
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 << "{ ";
|
2010-04-15 01:59:39 +03:00
|
|
|
foreach (Bindings::iterator, i, *v.attrs)
|
2010-04-13 15:25:42 +03:00
|
|
|
str << (string) i->first << " = " << i->second << "; ";
|
2010-03-29 17:37:56 +03:00
|
|
|
str << "}";
|
|
|
|
break;
|
|
|
|
case tList:
|
|
|
|
str << "[ ";
|
|
|
|
for (unsigned int n = 0; n < v.list.length; ++n)
|
2010-04-15 03:37:36 +03:00
|
|
|
str << *v.list.elems[n] << " ";
|
2010-03-29 17:37:56 +03:00
|
|
|
str << "]";
|
|
|
|
break;
|
|
|
|
case tThunk:
|
2010-04-13 02:33:23 +03:00
|
|
|
case tCopy:
|
2010-03-29 17:37:56 +03:00
|
|
|
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-04-13 15:25:42 +03:00
|
|
|
EvalState::EvalState()
|
|
|
|
: sWith(symbols.create("<with>"))
|
|
|
|
, sOutPath(symbols.create("outPath"))
|
|
|
|
, sDrvPath(symbols.create("drvPath"))
|
|
|
|
, sType(symbols.create("type"))
|
|
|
|
, sMeta(symbols.create("meta"))
|
|
|
|
, sName(symbols.create("name"))
|
2010-04-14 17:42:32 +03:00
|
|
|
, baseEnv(allocEnv(128))
|
2010-04-15 01:59:39 +03:00
|
|
|
, baseEnvDispl(0)
|
|
|
|
, staticBaseEnv(false, 0)
|
2010-03-29 17:37:56 +03:00
|
|
|
{
|
2010-04-15 03:37:36 +03:00
|
|
|
nrEnvs = nrValuesInEnvs = nrValues = nrListElems = 0;
|
2010-04-15 02:48:46 +03:00
|
|
|
nrEvaluated = recursionDepth = maxRecursionDepth = 0;
|
2010-04-09 15:00:49 +03:00
|
|
|
deepestStack = (char *) -1;
|
2010-03-29 17:37:56 +03:00
|
|
|
|
|
|
|
createBaseEnv();
|
|
|
|
|
2009-05-12 14:06:24 +03:00
|
|
|
allowUnsafeEquality = getEnv("NIX_NO_UNSAFE_EQ", "") == "";
|
2004-02-04 18:03:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-09 15:00:49 +03:00
|
|
|
EvalState::~EvalState()
|
|
|
|
{
|
|
|
|
assert(recursionDepth == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-30 17:39:27 +03:00
|
|
|
void EvalState::addConstant(const string & name, Value & v)
|
|
|
|
{
|
2010-04-15 01:59:39 +03:00
|
|
|
staticBaseEnv.vars[symbols.create(name)] = baseEnvDispl;
|
|
|
|
baseEnv.values[baseEnvDispl++] = v;
|
2010-03-30 17:39:27 +03:00
|
|
|
string name2 = string(name, 0, 2) == "__" ? string(name, 2) : name;
|
2010-04-15 01:59:39 +03:00
|
|
|
(*baseEnv.values[0].attrs)[symbols.create(name2)] = v;
|
2010-03-30 17:39:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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-04-15 01:59:39 +03:00
|
|
|
staticBaseEnv.vars[symbols.create(name)] = baseEnvDispl;
|
|
|
|
baseEnv.values[baseEnvDispl++] = v;
|
2010-03-30 17:39:27 +03:00
|
|
|
string name2 = string(name, 0, 2) == "__" ? string(name, 2) : name;
|
2010-04-15 01:59:39 +03:00
|
|
|
(*baseEnv.values[0].attrs)[symbols.create(name2)] = v;
|
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);
|
|
|
|
}
|
|
|
|
|
2010-04-09 15:00:49 +03:00
|
|
|
LocalNoInlineNoReturn(void throwEvalError(const char * s, const string & s2, const string & s3))
|
|
|
|
{
|
|
|
|
throw EvalError(format(s) % s2 % s3);
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2010-04-13 02:33:23 +03:00
|
|
|
LocalNoInlineNoReturn(void throwTypeError(const char * s, const Pos & pos, const string & s2))
|
|
|
|
{
|
|
|
|
throw TypeError(format(s) % pos % s2);
|
|
|
|
}
|
|
|
|
|
|
|
|
LocalNoInlineNoReturn(void throwTypeError(const char * s, const Pos & pos))
|
|
|
|
{
|
|
|
|
throw TypeError(format(s) % pos);
|
|
|
|
}
|
|
|
|
|
2010-04-13 00:21:24 +03:00
|
|
|
LocalNoInlineNoReturn(void throwAssertionError(const char * s, const Pos & pos))
|
2010-04-09 15:00:49 +03:00
|
|
|
{
|
2010-04-13 00:21:24 +03:00
|
|
|
throw AssertionError(format(s) % pos);
|
2010-04-09 15:00:49 +03:00
|
|
|
}
|
|
|
|
|
2007-02-27 21:10:45 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2010-04-13 02:33:23 +03:00
|
|
|
LocalNoInline(void addErrorPrefix(Error & e, const char * s, const Pos & pos))
|
|
|
|
{
|
|
|
|
e.addPrefix(format(s) % pos);
|
|
|
|
}
|
|
|
|
|
2007-02-27 21:10:45 +02:00
|
|
|
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-04-14 18:14:23 +03:00
|
|
|
Value * EvalState::lookupVar(Env * env, const VarRef & var)
|
2010-03-29 17:37:56 +03:00
|
|
|
{
|
2010-04-14 18:14:23 +03:00
|
|
|
for (unsigned int l = var.level; l; --l, env = env->up) ;
|
|
|
|
|
|
|
|
if (var.fromWith) {
|
|
|
|
Bindings::iterator j = env->values[0].attrs->find(var.name);
|
|
|
|
if (j == env->values[0].attrs->end())
|
|
|
|
throwEvalError("undefined variable `%1%'", var.name);
|
|
|
|
return &j->second;
|
|
|
|
} else
|
|
|
|
return &env->values[var.displ];
|
2010-03-29 17:37:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Value * EvalState::allocValues(unsigned int count)
|
|
|
|
{
|
2010-04-15 03:37:36 +03:00
|
|
|
nrValues += count;
|
2010-03-29 17:37:56 +03:00
|
|
|
return new Value[count]; // !!! check destructor
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-14 17:42:32 +03:00
|
|
|
Env & EvalState::allocEnv(unsigned int size)
|
2010-03-29 17:37:56 +03:00
|
|
|
{
|
|
|
|
nrEnvs++;
|
2010-04-15 02:48:46 +03:00
|
|
|
nrValuesInEnvs += size;
|
2010-04-14 17:42:32 +03:00
|
|
|
Env * env = (Env *) malloc(sizeof(Env) + size * sizeof(Value));
|
|
|
|
return *env;
|
2010-03-29 17:37:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-30 17:39:27 +03:00
|
|
|
void EvalState::mkList(Value & v, unsigned int length)
|
|
|
|
{
|
|
|
|
v.type = tList;
|
|
|
|
v.list.length = length;
|
2010-04-15 03:37:36 +03:00
|
|
|
v.list.elems = new Value *[length];
|
|
|
|
nrListElems += length;
|
2010-03-30 17:39:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-31 01:39:48 +03:00
|
|
|
void EvalState::mkAttrs(Value & v)
|
|
|
|
{
|
|
|
|
v.type = tAttrs;
|
|
|
|
v.attrs = new Bindings;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
void EvalState::mkThunk_(Value & v, Expr * expr)
|
2010-04-07 18:47:06 +03:00
|
|
|
{
|
|
|
|
mkThunk(v, baseEnv, expr);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
Expr * e = parseTrees[path];
|
2010-03-31 19:14:32 +03:00
|
|
|
|
|
|
|
if (!e) {
|
2010-04-13 15:25:42 +03:00
|
|
|
e = parseExprFromFile(*this, path);
|
2010-04-12 21:30:11 +03:00
|
|
|
parseTrees[path] = e;
|
2010-03-31 19:14:32 +03:00
|
|
|
}
|
|
|
|
|
2010-03-30 12:22:33 +03:00
|
|
|
try {
|
|
|
|
eval(e, v);
|
|
|
|
} catch (Error & e) {
|
2010-04-09 15:00:49 +03:00
|
|
|
addErrorPrefix(e, "while evaluating the file `%1%':\n", path);
|
2010-03-30 12:22:33 +03:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-09 15:00:49 +03:00
|
|
|
struct RecursionCounter
|
|
|
|
{
|
|
|
|
EvalState & state;
|
|
|
|
RecursionCounter(EvalState & state) : state(state)
|
|
|
|
{
|
|
|
|
state.recursionDepth++;
|
|
|
|
if (state.recursionDepth > state.maxRecursionDepth)
|
|
|
|
state.maxRecursionDepth = state.recursionDepth;
|
|
|
|
}
|
|
|
|
~RecursionCounter()
|
|
|
|
{
|
|
|
|
state.recursionDepth--;
|
|
|
|
}
|
|
|
|
};
|
2010-03-29 17:37:56 +03:00
|
|
|
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
void EvalState::eval(Env & env, Expr * e, Value & v)
|
2010-03-29 17:37:56 +03:00
|
|
|
{
|
|
|
|
/* When changing this function, make sure that you don't cause a
|
|
|
|
(large) increase in stack consumption! */
|
2010-04-09 15:00:49 +03:00
|
|
|
|
|
|
|
/* !!! Disable this eventually. */
|
|
|
|
RecursionCounter r(*this);
|
2010-03-29 17:37:56 +03:00
|
|
|
char x;
|
|
|
|
if (&x < deepestStack) deepestStack = &x;
|
|
|
|
|
2010-04-15 02:25:05 +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++;
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
e->eval(*this, env, v);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void EvalState::eval(Expr * e, Value & v)
|
|
|
|
{
|
|
|
|
eval(baseEnv, e, v);
|
|
|
|
}
|
2010-03-29 17:37:56 +03:00
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
|
|
|
|
bool EvalState::evalBool(Env & env, Expr * e)
|
|
|
|
{
|
|
|
|
Value v;
|
|
|
|
eval(env, e, v);
|
|
|
|
if (v.type != tBool)
|
|
|
|
throwTypeError("value is %1% while a Boolean was expected", showType(v));
|
|
|
|
return v.boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-13 01:03:27 +03:00
|
|
|
void Expr::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
void ExprInt::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
mkInt(v, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ExprString::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
mkString(v, s.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ExprPath::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
mkPath(v, s.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ExprAttrs::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
2010-04-15 02:25:05 +03:00
|
|
|
state.mkAttrs(v);
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
if (recursive) {
|
|
|
|
/* Create a new environment that contains the attributes in
|
|
|
|
this `rec'. */
|
2010-04-14 17:42:32 +03:00
|
|
|
Env & env2(state.allocEnv(attrs.size() + inherited.size()));
|
2010-04-12 21:30:11 +03:00
|
|
|
env2.up = &env;
|
|
|
|
|
2010-04-14 17:42:32 +03:00
|
|
|
unsigned int displ = 0;
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
/* The recursive attributes are evaluated in the new
|
|
|
|
environment. */
|
|
|
|
foreach (Attrs::iterator, i, attrs) {
|
2010-04-14 17:42:32 +03:00
|
|
|
Value & v2 = (*v.attrs)[i->first];
|
|
|
|
mkCopy(v2, env2.values[displ]);
|
|
|
|
mkThunk(env2.values[displ++], env2, i->second);
|
2010-04-12 21:30:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* The inherited attributes, on the other hand, are
|
|
|
|
evaluated in the original environment. */
|
2010-04-15 02:25:05 +03:00
|
|
|
foreach (list<VarRef>::iterator, i, inherited) {
|
|
|
|
Value & v2 = (*v.attrs)[i->name];
|
|
|
|
Value * v3 = state.lookupVar(&env, *i);
|
|
|
|
mkCopy(v2, *v3);
|
|
|
|
mkCopy(env2.values[displ++], *v3);
|
2010-04-12 21:30:11 +03:00
|
|
|
}
|
2010-04-14 17:42:32 +03:00
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
foreach (Attrs::iterator, i, attrs) {
|
|
|
|
Value & v2 = (*v.attrs)[i->first];
|
|
|
|
mkThunk(v2, env, i->second);
|
|
|
|
}
|
2010-04-13 02:33:23 +03:00
|
|
|
|
2010-04-15 02:25:05 +03:00
|
|
|
foreach (list<VarRef>::iterator, i, inherited) {
|
|
|
|
Value & v2 = (*v.attrs)[i->name];
|
2010-04-13 15:25:42 +03:00
|
|
|
mkCopy(v2, *state.lookupVar(&env, *i));
|
2010-04-13 02:33:23 +03:00
|
|
|
}
|
2010-04-12 21:30:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-13 16:42:25 +03:00
|
|
|
void ExprLet::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
/* Create a new environment that contains the attributes in this
|
|
|
|
`let'. */
|
2010-04-14 17:42:32 +03:00
|
|
|
Env & env2(state.allocEnv(attrs->attrs.size() + attrs->inherited.size()));
|
2010-04-13 16:42:25 +03:00
|
|
|
env2.up = &env;
|
2010-04-14 17:42:32 +03:00
|
|
|
|
|
|
|
unsigned int displ = 0;
|
|
|
|
|
2010-04-13 16:42:25 +03:00
|
|
|
/* The recursive attributes are evaluated in the new
|
|
|
|
environment. */
|
2010-04-14 17:42:32 +03:00
|
|
|
foreach (ExprAttrs::Attrs::iterator, i, attrs->attrs)
|
|
|
|
mkThunk(env2.values[displ++], env2, i->second);
|
2010-04-13 16:42:25 +03:00
|
|
|
|
|
|
|
/* The inherited attributes, on the other hand, are evaluated in
|
|
|
|
the original environment. */
|
2010-04-15 02:25:05 +03:00
|
|
|
foreach (list<VarRef>::iterator, i, attrs->inherited)
|
|
|
|
mkCopy(env2.values[displ++], *state.lookupVar(&env, *i));
|
2010-04-13 16:42:25 +03:00
|
|
|
|
|
|
|
state.eval(env2, body, v);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
void ExprList::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
state.mkList(v, elems.size());
|
2010-04-15 03:37:36 +03:00
|
|
|
Value * vs = state.allocValues(v.list.length);
|
|
|
|
for (unsigned int n = 0; n < v.list.length; ++n) {
|
|
|
|
v.list.elems[n] = &vs[n];
|
|
|
|
mkThunk(vs[n], env, elems[n]);
|
|
|
|
}
|
2010-04-12 21:30:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ExprVar::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
2010-04-14 18:14:23 +03:00
|
|
|
Value * v2 = state.lookupVar(&env, info);
|
|
|
|
state.forceValue(*v2);
|
|
|
|
v = *v2;
|
2010-04-12 21:30:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ExprSelect::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
Value v2;
|
|
|
|
state.eval(env, e, v2);
|
|
|
|
state.forceAttrs(v2); // !!! eval followed by force is slightly inefficient
|
|
|
|
Bindings::iterator i = v2.attrs->find(name);
|
|
|
|
if (i == v2.attrs->end())
|
|
|
|
throwEvalError("attribute `%1%' missing", name);
|
|
|
|
try {
|
|
|
|
state.forceValue(i->second);
|
|
|
|
} catch (Error & e) {
|
|
|
|
addErrorPrefix(e, "while evaluating the attribute `%1%':\n", name);
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
v = i->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-13 00:21:24 +03:00
|
|
|
void ExprOpHasAttr::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
Value vAttrs;
|
|
|
|
state.eval(env, e, vAttrs);
|
|
|
|
state.forceAttrs(vAttrs);
|
|
|
|
mkBool(v, vAttrs.attrs->find(name) != vAttrs.attrs->end());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
void ExprLambda::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
v.type = tLambda;
|
|
|
|
v.lambda.env = &env;
|
|
|
|
v.lambda.fun = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ExprApp::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
Value vFun;
|
|
|
|
state.eval(env, e1, vFun);
|
|
|
|
Value vArg;
|
|
|
|
mkThunk(vArg, env, e2); // !!! should this be on the heap?
|
|
|
|
state.callFunction(vFun, vArg, v);
|
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));
|
|
|
|
|
2010-04-14 17:42:32 +03:00
|
|
|
unsigned int size =
|
|
|
|
(fun.lambda.fun->arg.empty() ? 0 : 1) +
|
|
|
|
(fun.lambda.fun->matchAttrs ? fun.lambda.fun->formals->formals.size() : 0);
|
|
|
|
Env & env2(allocEnv(size));
|
2010-03-30 16:47:59 +03:00
|
|
|
env2.up = fun.lambda.env;
|
|
|
|
|
2010-04-14 17:42:32 +03:00
|
|
|
unsigned int displ = 0;
|
|
|
|
|
|
|
|
if (!fun.lambda.fun->matchAttrs)
|
|
|
|
env2.values[displ++] = arg;
|
2010-03-30 16:47:59 +03:00
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
else {
|
2010-03-30 16:47:59 +03:00
|
|
|
forceAttrs(arg);
|
|
|
|
|
2010-04-14 17:42:32 +03:00
|
|
|
if (!fun.lambda.fun->arg.empty())
|
|
|
|
env2.values[displ++] = arg;
|
2010-03-30 16:47:59 +03:00
|
|
|
|
|
|
|
/* 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;
|
2010-04-12 21:30:11 +03:00
|
|
|
foreach (Formals::Formals_::iterator, i, fun.lambda.fun->formals->formals) {
|
|
|
|
Bindings::iterator j = arg.attrs->find(i->name);
|
2010-03-30 16:47:59 +03:00
|
|
|
if (j == arg.attrs->end()) {
|
2010-04-13 02:33:23 +03:00
|
|
|
if (!i->def) throwTypeError("function at %1% called without required argument `%2%'",
|
|
|
|
fun.lambda.fun->pos, i->name);
|
2010-04-14 17:42:32 +03:00
|
|
|
mkThunk(env2.values[displ++], env2, i->def);
|
2010-03-30 16:47:59 +03:00
|
|
|
} else {
|
|
|
|
attrsUsed++;
|
2010-04-14 17:42:32 +03:00
|
|
|
mkCopy(env2.values[displ++], 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. */
|
2010-04-12 21:30:11 +03:00
|
|
|
if (!fun.lambda.fun->formals->ellipsis && attrsUsed != arg.attrs->size())
|
2010-04-13 02:33:23 +03:00
|
|
|
throwTypeError("function at %1% called with unexpected argument", fun.lambda.fun->pos);
|
2010-03-30 16:47:59 +03:00
|
|
|
}
|
|
|
|
|
2010-04-13 02:33:23 +03:00
|
|
|
try {
|
|
|
|
eval(env2, fun.lambda.fun->body, v);
|
|
|
|
} catch (Error & e) {
|
|
|
|
addErrorPrefix(e, "while evaluating the function at %1%:\n", fun.lambda.fun->pos);
|
|
|
|
throw;
|
|
|
|
}
|
2010-03-30 16:47:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-07 18:47:06 +03:00
|
|
|
void EvalState::autoCallFunction(const Bindings & args, Value & fun, Value & res)
|
|
|
|
{
|
|
|
|
forceValue(fun);
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
if (fun.type != tLambda || !fun.lambda.fun->matchAttrs) {
|
2010-04-07 18:47:06 +03:00
|
|
|
res = fun;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Value actualArgs;
|
|
|
|
mkAttrs(actualArgs);
|
2010-04-12 21:30:11 +03:00
|
|
|
|
|
|
|
foreach (Formals::Formals_::iterator, i, fun.lambda.fun->formals->formals) {
|
|
|
|
Bindings::const_iterator j = args.find(i->name);
|
2010-04-07 18:47:06 +03:00
|
|
|
if (j != args.end())
|
2010-04-12 21:30:11 +03:00
|
|
|
(*actualArgs.attrs)[i->name] = j->second;
|
|
|
|
else if (!i->def)
|
|
|
|
throwTypeError("cannot auto-call a function that has an argument without a default value (`%1%')", i->name);
|
2010-04-07 18:47:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
callFunction(fun, actualArgs, res);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
void ExprWith::eval(EvalState & state, Env & env, Value & v)
|
2010-03-29 17:37:56 +03:00
|
|
|
{
|
2010-04-14 18:01:04 +03:00
|
|
|
Env & env2(state.allocEnv(1));
|
2010-04-12 21:30:11 +03:00
|
|
|
env2.up = &env;
|
|
|
|
|
2010-04-14 18:01:04 +03:00
|
|
|
state.eval(env, attrs, env2.values[0]);
|
|
|
|
state.forceAttrs(env2.values[0]);
|
|
|
|
|
|
|
|
/* If there is an enclosing `with', copy all attributes that don't
|
|
|
|
appear in this `with'. */
|
|
|
|
if (prevWith != -1) {
|
|
|
|
Env * env3 = &env;
|
|
|
|
for (unsigned int l = prevWith; l; --l, env3 = env3->up) ;
|
|
|
|
|
2010-04-16 16:44:02 +03:00
|
|
|
/* Because the first `with' may be a shallow copy of another
|
|
|
|
attribute set (through a tCopy node), we need to clone its
|
|
|
|
`attrs' before modifying them. */
|
|
|
|
env2.values[0].attrs = new Bindings(*env2.values[0].attrs);
|
|
|
|
|
2010-04-14 18:01:04 +03:00
|
|
|
foreach (Bindings::iterator, i, *env3->values[0].attrs) {
|
|
|
|
Bindings::iterator j = env2.values[0].attrs->find(i->first);
|
|
|
|
if (j == env2.values[0].attrs->end())
|
|
|
|
(*env2.values[0].attrs)[i->first] = i->second; // !!! sharing
|
|
|
|
}
|
|
|
|
}
|
2010-04-12 21:30:11 +03:00
|
|
|
|
|
|
|
state.eval(env2, body, v);
|
2010-03-29 17:37:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
void ExprIf::eval(EvalState & state, Env & env, Value & v)
|
2010-03-29 17:37:56 +03:00
|
|
|
{
|
2010-04-12 21:30:11 +03:00
|
|
|
state.eval(env, state.evalBool(env, cond) ? then : else_, v);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-13 00:21:24 +03:00
|
|
|
void ExprAssert::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
if (!state.evalBool(env, cond))
|
|
|
|
throwAssertionError("assertion failed at %1%", pos);
|
|
|
|
state.eval(env, body, v);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ExprOpNot::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
mkBool(v, !state.evalBool(env, e));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
void ExprOpEq::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
Value v1; state.eval(env, e1, v1);
|
|
|
|
Value v2; state.eval(env, e2, v2);
|
|
|
|
mkBool(v, state.eqValues(v1, v2));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ExprOpNEq::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
Value v1; state.eval(env, e1, v1);
|
|
|
|
Value v2; state.eval(env, e2, v2);
|
|
|
|
mkBool(v, !state.eqValues(v1, v2));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ExprOpAnd::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
mkBool(v, state.evalBool(env, e1) && state.evalBool(env, e2));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ExprOpOr::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
mkBool(v, state.evalBool(env, e1) || state.evalBool(env, e2));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ExprOpImpl::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
mkBool(v, !state.evalBool(env, e1) || state.evalBool(env, e2));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ExprOpUpdate::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
Value v2;
|
|
|
|
state.eval(env, e1, v2);
|
|
|
|
state.forceAttrs(v2);
|
|
|
|
|
|
|
|
state.cloneAttrs(v2, v);
|
|
|
|
|
|
|
|
state.eval(env, e2, v2);
|
|
|
|
state.forceAttrs(v2);
|
|
|
|
|
|
|
|
foreach (Bindings::iterator, i, *v2.attrs)
|
|
|
|
(*v.attrs)[i->first] = i->second; // !!! sharing
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ExprOpConcatLists::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
Value v1; state.eval(env, e1, v1);
|
|
|
|
state.forceList(v1);
|
|
|
|
Value v2; state.eval(env, e2, v2);
|
|
|
|
state.forceList(v2);
|
|
|
|
state.mkList(v, v1.list.length + v2.list.length);
|
|
|
|
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-29 17:37:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-13 00:21:24 +03:00
|
|
|
void ExprConcatStrings::eval(EvalState & state, Env & env, Value & v)
|
|
|
|
{
|
|
|
|
PathSet context;
|
|
|
|
std::ostringstream s;
|
|
|
|
|
|
|
|
bool first = true, isPath = false;
|
|
|
|
Value vStr;
|
|
|
|
|
|
|
|
foreach (vector<Expr *>::iterator, i, *es) {
|
|
|
|
state.eval(env, *i, vStr);
|
|
|
|
|
|
|
|
/* 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) {
|
|
|
|
isPath = vStr.type == tPath;
|
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
s << state.coerceToString(vStr, context, false, !isPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isPath && !context.empty())
|
|
|
|
throwEvalError("a string that refers to a store path cannot be appended to a path, in `%1%'", s.str());
|
|
|
|
|
|
|
|
if (isPath)
|
|
|
|
mkPath(v, s.str().c_str());
|
|
|
|
else
|
|
|
|
mkString(v, s.str(), context);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
void EvalState::forceValue(Value & v)
|
|
|
|
{
|
|
|
|
if (v.type == tThunk) {
|
2010-04-08 14:25:14 +03:00
|
|
|
ValueType saved = v.type;
|
|
|
|
try {
|
|
|
|
v.type = tBlackhole;
|
|
|
|
eval(*v.thunk.env, v.thunk.expr, v);
|
|
|
|
} catch (Error & e) {
|
|
|
|
v.type = saved;
|
|
|
|
throw;
|
|
|
|
}
|
2010-03-29 17:37:56 +03:00
|
|
|
}
|
|
|
|
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)
|
2010-04-09 15:00:49 +03:00
|
|
|
throwEvalError("infinite recursion encountered");
|
2010-03-29 17:37:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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)
|
2010-04-15 03:37:36 +03:00
|
|
|
strictForceValue(*v.list.elems[n]);
|
2010-04-07 16:55:46 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
int EvalState::forceInt(Value & v)
|
|
|
|
{
|
|
|
|
forceValue(v);
|
|
|
|
if (v.type != tInt)
|
2010-04-09 15:00:49 +03:00
|
|
|
throwTypeError("value is %1% while an integer was expected", showType(v));
|
2010-03-29 17:37:56 +03:00
|
|
|
return v.integer;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-31 18:38:03 +03:00
|
|
|
bool EvalState::forceBool(Value & v)
|
|
|
|
{
|
|
|
|
forceValue(v);
|
|
|
|
if (v.type != tBool)
|
2010-04-09 15:00:49 +03:00
|
|
|
throwTypeError("value is %1% while a Boolean was expected", showType(v));
|
2010-03-31 18:38:03 +03:00
|
|
|
return v.boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
void EvalState::forceAttrs(Value & v)
|
|
|
|
{
|
|
|
|
forceValue(v);
|
|
|
|
if (v.type != tAttrs)
|
2010-04-09 15:00:49 +03:00
|
|
|
throwTypeError("value is %1% while an attribute set was expected", showType(v));
|
2010-03-29 17:37:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void EvalState::forceList(Value & v)
|
|
|
|
{
|
|
|
|
forceValue(v);
|
|
|
|
if (v.type != tList)
|
2010-04-09 15:00:49 +03:00
|
|
|
throwTypeError("value is %1% while a list was expected", showType(v));
|
2010-03-29 17:37:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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)
|
2010-04-09 15:00:49 +03:00
|
|
|
throwTypeError("value is %1% while a function was expected", showType(v));
|
2010-03-30 16:47:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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)
|
2010-04-09 15:00:49 +03:00
|
|
|
throwTypeError("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);
|
2010-04-09 15:00:49 +03:00
|
|
|
if (v.string.context)
|
2010-03-31 22:52:29 +03:00
|
|
|
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)
|
2010-04-09 15:00:49 +03:00
|
|
|
throwEvalError("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;
|
2010-04-13 15:25:42 +03:00
|
|
|
Bindings::iterator i = v.attrs->find(sType);
|
2010-04-07 16:55:46 +03:00
|
|
|
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-04-09 15:00:49 +03:00
|
|
|
throwEvalError("file names are not allowed to end in `%1%'", drvExtension);
|
2010-03-30 12:22:33 +03:00
|
|
|
|
|
|
|
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) {
|
2010-04-13 15:25:42 +03:00
|
|
|
Bindings::iterator i = v.attrs->find(sOutPath);
|
2010-03-30 12:22:33 +03:00
|
|
|
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) {
|
2010-04-15 03:37:36 +03:00
|
|
|
result += coerceToString(*v.list.elems[n],
|
2010-03-30 12:22:33 +03:00
|
|
|
context, coerceMore, copyToStore);
|
2010-04-01 17:35:03 +03:00
|
|
|
if (n < v.list.length - 1
|
|
|
|
/* !!! not quite correct */
|
2010-04-15 03:37:36 +03:00
|
|
|
&& (v.list.elems[n]->type != tList || v.list.elems[n]->list.length != 0))
|
2010-04-01 17:35:03 +03:00
|
|
|
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] != '/')
|
2010-04-09 15:00:49 +03:00
|
|
|
throwEvalError("string `%1%' doesn't represent an absolute path", path);
|
2010-03-30 12:22:33 +03:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
bool EvalState::eqValues(Value & v1, Value & v2)
|
|
|
|
{
|
|
|
|
forceValue(v1);
|
|
|
|
forceValue(v2);
|
|
|
|
|
2010-04-12 12:50:20 +03:00
|
|
|
/* !!! Hack to support some old broken code that relies on pointer
|
|
|
|
equality tests between attribute sets. (Specifically,
|
|
|
|
builderDefs calls uniqList on a list of attribute sets.) Will
|
|
|
|
remove this eventually. */
|
|
|
|
if (&v1 == &v2) return true;
|
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
if (v1.type != v2.type) return false;
|
2010-04-12 12:50:20 +03:00
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
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)
|
2010-04-15 03:37:36 +03:00
|
|
|
if (!eqValues(*v1.list.elems[n], *v2.list.elems[n])) return false;
|
2010-03-29 17:37:56 +03:00
|
|
|
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)
|
2010-04-15 03:37:36 +03:00
|
|
|
if (i->first != j->first || !eqValues(i->second, j->second)) return false;
|
2010-03-29 17:37:56 +03:00
|
|
|
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-04-09 15:00:49 +03:00
|
|
|
throwEvalError("cannot compare %1% with %2%", showType(v1), showType(v2));
|
2010-03-29 17:37:56 +03: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";
|
2010-04-09 15:00:49 +03:00
|
|
|
Verbosity v = showStats ? lvlInfo : lvlDebug;
|
|
|
|
printMsg(v, "evaluation statistics:");
|
|
|
|
printMsg(v, format(" expressions evaluated: %1%") % nrEvaluated);
|
|
|
|
printMsg(v, format(" stack space used: %1% bytes") % (&x - deepestStack));
|
|
|
|
printMsg(v, format(" max eval() nesting depth: %1%") % maxRecursionDepth);
|
2010-04-16 16:44:02 +03:00
|
|
|
printMsg(v, format(" stack space per eval() level: %1% bytes")
|
|
|
|
% ((&x - deepestStack) / (float) maxRecursionDepth));
|
2010-04-15 02:48:46 +03:00
|
|
|
printMsg(v, format(" environments allocated: %1% (%2% bytes)")
|
|
|
|
% nrEnvs % (nrEnvs * sizeof(Env)));
|
|
|
|
printMsg(v, format(" values allocated in environments: %1% (%2% bytes)")
|
|
|
|
% nrValuesInEnvs % (nrValuesInEnvs * sizeof(Value)));
|
2010-04-15 03:37:36 +03:00
|
|
|
printMsg(v, format(" list elements: %1% (%2% bytes)")
|
|
|
|
% nrListElems % (nrListElems * sizeof(Value *)));
|
2010-04-15 02:48:46 +03:00
|
|
|
printMsg(v, format(" misc. values allocated: %1% (%2% bytes) ")
|
|
|
|
% nrValues % (nrValues * sizeof(Value)));
|
2010-04-13 17:34:11 +03:00
|
|
|
printMsg(v, format(" symbols in symbol table: %1%") % symbols.size());
|
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
|
|
|
}
|