2003-11-18 13:06:07 +01:00
|
|
|
#include "nixexpr.hh"
|
2005-01-19 17:39:47 +01:00
|
|
|
#include "derivations.hh"
|
2006-09-04 23:06:23 +02:00
|
|
|
#include "util.hh"
|
2004-10-27 00:54:26 +02:00
|
|
|
|
2008-05-21 13:17:31 +02:00
|
|
|
#include <cstdlib>
|
|
|
|
|
2004-10-27 00:54:26 +02:00
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
namespace nix {
|
|
|
|
|
2010-04-12 20:30:11 +02:00
|
|
|
|
2010-04-14 16:42:32 +02:00
|
|
|
/* Displaying abstract syntax trees. */
|
|
|
|
|
2010-04-12 20:30:11 +02:00
|
|
|
std::ostream & operator << (std::ostream & str, Expr & e)
|
|
|
|
{
|
|
|
|
e.show(str);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2010-04-13 00:03:27 +02:00
|
|
|
void Expr::show(std::ostream & str)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2010-04-12 20:30:11 +02:00
|
|
|
void ExprInt::show(std::ostream & str)
|
|
|
|
{
|
|
|
|
str << n;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprString::show(std::ostream & str)
|
|
|
|
{
|
|
|
|
str << "\"" << s << "\""; // !!! escaping
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprPath::show(std::ostream & str)
|
|
|
|
{
|
|
|
|
str << s;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprVar::show(std::ostream & str)
|
|
|
|
{
|
2013-10-08 14:24:53 +02:00
|
|
|
str << name;
|
2010-04-12 20:30:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ExprSelect::show(std::ostream & str)
|
|
|
|
{
|
2011-07-06 14:28:57 +02:00
|
|
|
str << "(" << *e << ")." << showAttrPath(attrPath);
|
2011-07-13 14:19:57 +02:00
|
|
|
if (def) str << " or " << *def;
|
2010-04-12 20:30:11 +02:00
|
|
|
}
|
|
|
|
|
2010-04-12 23:21:24 +02:00
|
|
|
void ExprOpHasAttr::show(std::ostream & str)
|
|
|
|
{
|
2011-07-06 12:58:17 +02:00
|
|
|
str << "(" << *e << ") ? " << showAttrPath(attrPath);
|
2010-04-12 23:21:24 +02:00
|
|
|
}
|
|
|
|
|
2010-04-12 20:30:11 +02:00
|
|
|
void ExprAttrs::show(std::ostream & str)
|
|
|
|
{
|
|
|
|
if (recursive) str << "rec ";
|
|
|
|
str << "{ ";
|
2010-10-24 21:52:33 +02:00
|
|
|
foreach (AttrDefs::iterator, i, attrs)
|
|
|
|
if (i->second.inherited)
|
|
|
|
str << "inherit " << i->first << " " << "; ";
|
|
|
|
else
|
|
|
|
str << i->first << " = " << *i->second.e << "; ";
|
2010-04-12 20:30:11 +02:00
|
|
|
str << "}";
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprList::show(std::ostream & str)
|
|
|
|
{
|
|
|
|
str << "[ ";
|
|
|
|
foreach (vector<Expr *>::iterator, i, elems)
|
|
|
|
str << "(" << **i << ") ";
|
|
|
|
str << "]";
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprLambda::show(std::ostream & str)
|
|
|
|
{
|
|
|
|
str << "(";
|
|
|
|
if (matchAttrs) {
|
|
|
|
str << "{ ";
|
|
|
|
bool first = true;
|
|
|
|
foreach (Formals::Formals_::iterator, i, formals->formals) {
|
|
|
|
if (first) first = false; else str << ", ";
|
|
|
|
str << i->name;
|
|
|
|
if (i->def) str << " ? " << *i->def;
|
|
|
|
}
|
|
|
|
str << " }";
|
2010-04-13 14:25:42 +02:00
|
|
|
if (!arg.empty()) str << " @ ";
|
2010-04-12 20:30:11 +02:00
|
|
|
}
|
2010-04-13 14:25:42 +02:00
|
|
|
if (!arg.empty()) str << arg;
|
2010-04-12 20:30:11 +02:00
|
|
|
str << ": " << *body << ")";
|
|
|
|
}
|
|
|
|
|
2010-04-13 15:42:25 +02:00
|
|
|
void ExprLet::show(std::ostream & str)
|
|
|
|
{
|
|
|
|
str << "let ";
|
2010-10-24 21:52:33 +02:00
|
|
|
foreach (ExprAttrs::AttrDefs::iterator, i, attrs->attrs)
|
|
|
|
if (i->second.inherited)
|
|
|
|
str << "inherit " << i->first << "; ";
|
|
|
|
else
|
|
|
|
str << i->first << " = " << *i->second.e << "; ";
|
2010-04-13 15:42:25 +02:00
|
|
|
str << "in " << *body;
|
|
|
|
}
|
|
|
|
|
2010-04-12 20:30:11 +02:00
|
|
|
void ExprWith::show(std::ostream & str)
|
|
|
|
{
|
|
|
|
str << "with " << *attrs << "; " << *body;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprIf::show(std::ostream & str)
|
|
|
|
{
|
|
|
|
str << "if " << *cond << " then " << *then << " else " << *else_;
|
|
|
|
}
|
|
|
|
|
2010-04-12 23:21:24 +02:00
|
|
|
void ExprAssert::show(std::ostream & str)
|
|
|
|
{
|
|
|
|
str << "assert " << *cond << "; " << *body;
|
|
|
|
}
|
2010-04-12 20:30:11 +02:00
|
|
|
|
2010-04-12 23:21:24 +02:00
|
|
|
void ExprOpNot::show(std::ostream & str)
|
|
|
|
{
|
|
|
|
str << "! " << *e;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprConcatStrings::show(std::ostream & str)
|
|
|
|
{
|
|
|
|
bool first = true;
|
|
|
|
foreach (vector<Expr *>::iterator, i, *es) {
|
|
|
|
if (first) first = false; else str << " + ";
|
|
|
|
str << **i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-18 20:14:54 +01:00
|
|
|
void ExprPos::show(std::ostream & str)
|
|
|
|
{
|
|
|
|
str << "__curPos";
|
|
|
|
}
|
|
|
|
|
2010-04-12 23:21:24 +02:00
|
|
|
|
|
|
|
std::ostream & operator << (std::ostream & str, const Pos & pos)
|
2004-04-06 00:27:41 +02:00
|
|
|
{
|
2010-04-12 23:21:24 +02:00
|
|
|
if (!pos.line)
|
|
|
|
str << "undefined position";
|
|
|
|
else
|
|
|
|
str << (format("`%1%:%2%:%3%'") % pos.file % pos.line % pos.column).str();
|
|
|
|
return str;
|
2004-04-06 00:27:41 +02:00
|
|
|
}
|
2003-11-03 21:30:40 +01:00
|
|
|
|
2010-04-14 16:42:32 +02:00
|
|
|
|
2011-07-06 12:58:17 +02:00
|
|
|
string showAttrPath(const AttrPath & attrPath)
|
|
|
|
{
|
|
|
|
string s;
|
|
|
|
foreach (AttrPath::const_iterator, i, attrPath) {
|
|
|
|
if (!s.empty()) s += '.';
|
|
|
|
s += *i;
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-05-06 18:46:48 +02:00
|
|
|
Pos noPos;
|
|
|
|
|
|
|
|
|
2010-04-14 16:42:32 +02:00
|
|
|
/* Computing levels/displacements for variables. */
|
|
|
|
|
|
|
|
void Expr::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprInt::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprString::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprPath::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-10-08 14:24:53 +02:00
|
|
|
void ExprVar::bindVars(const StaticEnv & env)
|
2010-04-14 16:42:32 +02:00
|
|
|
{
|
|
|
|
/* Check whether the variable appears in the environment. If so,
|
|
|
|
set its level and displacement. */
|
|
|
|
const StaticEnv * curEnv;
|
|
|
|
unsigned int level;
|
|
|
|
int withLevel = -1;
|
|
|
|
for (curEnv = &env, level = 0; curEnv; curEnv = curEnv->up, level++) {
|
|
|
|
if (curEnv->isWith) {
|
|
|
|
if (withLevel == -1) withLevel = level;
|
|
|
|
} else {
|
|
|
|
StaticEnv::Vars::const_iterator i = curEnv->vars.find(name);
|
|
|
|
if (i != curEnv->vars.end()) {
|
|
|
|
fromWith = false;
|
|
|
|
this->level = level;
|
|
|
|
displ = i->second;
|
|
|
|
return;
|
|
|
|
}
|
2008-08-14 12:04:22 +02:00
|
|
|
}
|
|
|
|
}
|
2010-04-14 16:42:32 +02:00
|
|
|
|
|
|
|
/* Otherwise, the variable must be obtained from the nearest
|
|
|
|
enclosing `with'. If there is no `with', then we can issue an
|
|
|
|
"undefined variable" error now. */
|
2013-10-08 14:45:36 +02:00
|
|
|
if (withLevel == -1) throw UndefinedVarError(format("undefined variable `%1%' at %2%") % name % pos);
|
2010-04-14 16:42:32 +02:00
|
|
|
|
|
|
|
fromWith = true;
|
|
|
|
this->level = withLevel;
|
2008-08-14 12:04:22 +02:00
|
|
|
}
|
|
|
|
|
2010-04-14 16:42:32 +02:00
|
|
|
void ExprSelect::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
e->bindVars(env);
|
2011-07-13 14:19:57 +02:00
|
|
|
if (def) def->bindVars(env);
|
2010-04-14 16:42:32 +02:00
|
|
|
}
|
2008-08-14 12:04:22 +02:00
|
|
|
|
2010-04-14 16:42:32 +02:00
|
|
|
void ExprOpHasAttr::bindVars(const StaticEnv & env)
|
2004-02-03 15:45:34 +01:00
|
|
|
{
|
2010-04-14 16:42:32 +02:00
|
|
|
e->bindVars(env);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprAttrs::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
if (recursive) {
|
|
|
|
StaticEnv newEnv(false, &env);
|
2013-09-02 16:29:15 +02:00
|
|
|
|
2010-04-14 16:42:32 +02:00
|
|
|
unsigned int displ = 0;
|
2010-10-24 21:52:33 +02:00
|
|
|
foreach (AttrDefs::iterator, i, attrs)
|
|
|
|
newEnv.vars[i->first] = i->second.displ = displ++;
|
2013-09-02 16:29:15 +02:00
|
|
|
|
2010-10-24 21:52:33 +02:00
|
|
|
foreach (AttrDefs::iterator, i, attrs)
|
2013-07-15 23:10:18 +02:00
|
|
|
i->second.e->bindVars(i->second.inherited ? env : newEnv);
|
2004-10-25 18:54:56 +02:00
|
|
|
}
|
2010-04-14 16:42:32 +02:00
|
|
|
|
2010-10-24 21:52:33 +02:00
|
|
|
else
|
|
|
|
foreach (AttrDefs::iterator, i, attrs)
|
2013-07-15 23:10:18 +02:00
|
|
|
i->second.e->bindVars(env);
|
2010-04-14 16:42:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ExprList::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
foreach (vector<Expr *>::iterator, i, elems)
|
|
|
|
(*i)->bindVars(env);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprLambda::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
StaticEnv newEnv(false, &env);
|
2013-09-02 16:29:15 +02:00
|
|
|
|
2010-04-14 16:42:32 +02:00
|
|
|
unsigned int displ = 0;
|
2013-09-02 16:29:15 +02:00
|
|
|
|
2010-04-14 16:42:32 +02:00
|
|
|
if (!arg.empty()) newEnv.vars[arg] = displ++;
|
|
|
|
|
|
|
|
if (matchAttrs) {
|
|
|
|
foreach (Formals::Formals_::iterator, i, formals->formals)
|
|
|
|
newEnv.vars[i->name] = displ++;
|
|
|
|
|
|
|
|
foreach (Formals::Formals_::iterator, i, formals->formals)
|
|
|
|
if (i->def) i->def->bindVars(newEnv);
|
2004-02-03 15:45:34 +01:00
|
|
|
}
|
|
|
|
|
2010-04-14 16:42:32 +02:00
|
|
|
body->bindVars(newEnv);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprLet::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
StaticEnv newEnv(false, &env);
|
2013-09-02 16:29:15 +02:00
|
|
|
|
2010-04-14 16:42:32 +02:00
|
|
|
unsigned int displ = 0;
|
2010-10-24 21:52:33 +02:00
|
|
|
foreach (ExprAttrs::AttrDefs::iterator, i, attrs->attrs)
|
|
|
|
newEnv.vars[i->first] = i->second.displ = displ++;
|
2013-09-02 16:29:15 +02:00
|
|
|
|
2010-10-24 21:52:33 +02:00
|
|
|
foreach (ExprAttrs::AttrDefs::iterator, i, attrs->attrs)
|
2013-07-15 23:10:18 +02:00
|
|
|
i->second.e->bindVars(i->second.inherited ? env : newEnv);
|
2013-09-02 16:29:15 +02:00
|
|
|
|
2010-04-14 16:42:32 +02:00
|
|
|
body->bindVars(newEnv);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprWith::bindVars(const StaticEnv & env)
|
|
|
|
{
|
2010-04-14 17:01:04 +02:00
|
|
|
/* Does this `with' have an enclosing `with'? If so, record its
|
2010-04-22 17:08:09 +02:00
|
|
|
level so that `lookupVar' can look up variables in the previous
|
|
|
|
`with' if this one doesn't contain the desired attribute. */
|
2010-04-14 17:01:04 +02:00
|
|
|
const StaticEnv * curEnv;
|
|
|
|
unsigned int level;
|
2010-04-22 17:08:09 +02:00
|
|
|
prevWith = 0;
|
|
|
|
for (curEnv = &env, level = 1; curEnv; curEnv = curEnv->up, level++)
|
2010-04-14 17:01:04 +02:00
|
|
|
if (curEnv->isWith) {
|
|
|
|
prevWith = level;
|
|
|
|
break;
|
|
|
|
}
|
2013-09-02 16:29:15 +02:00
|
|
|
|
|
|
|
attrs->bindVars(env);
|
2010-04-14 16:42:32 +02:00
|
|
|
StaticEnv newEnv(true, &env);
|
|
|
|
body->bindVars(newEnv);
|
2005-11-04 16:17:05 +01:00
|
|
|
}
|
|
|
|
|
2010-04-14 16:42:32 +02:00
|
|
|
void ExprIf::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
cond->bindVars(env);
|
|
|
|
then->bindVars(env);
|
|
|
|
else_->bindVars(env);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprAssert::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
cond->bindVars(env);
|
|
|
|
body->bindVars(env);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprOpNot::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
e->bindVars(env);
|
|
|
|
}
|
2005-11-04 16:17:05 +01:00
|
|
|
|
2010-04-14 16:42:32 +02:00
|
|
|
void ExprConcatStrings::bindVars(const StaticEnv & env)
|
2005-11-04 16:17:05 +01:00
|
|
|
{
|
2010-04-14 16:42:32 +02:00
|
|
|
foreach (vector<Expr *>::iterator, i, *es)
|
|
|
|
(*i)->bindVars(env);
|
2004-02-03 15:45:34 +01:00
|
|
|
}
|
2006-10-16 17:55:34 +02:00
|
|
|
|
2013-11-18 20:14:54 +01:00
|
|
|
void ExprPos::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-10-16 17:55:34 +02:00
|
|
|
|
2013-05-16 19:08:02 +02:00
|
|
|
/* Storing function names. */
|
|
|
|
|
|
|
|
void Expr::setName(Symbol & name)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ExprLambda::setName(Symbol & name)
|
|
|
|
{
|
|
|
|
this->name = name;
|
|
|
|
body->setName(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-07 18:04:36 +01:00
|
|
|
string ExprLambda::showNamePos() const
|
2013-05-16 19:08:02 +02:00
|
|
|
{
|
|
|
|
return (format("%1% at %2%") % (name.set() ? "`" + (string) name + "'" : "an anonymous function") % pos).str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-08 15:34:57 +02:00
|
|
|
|
|
|
|
/* Symbol table. */
|
|
|
|
|
|
|
|
size_t SymbolTable::totalSize() const
|
|
|
|
{
|
|
|
|
size_t n = 0;
|
|
|
|
foreach (Symbols::const_iterator, i, symbols)
|
|
|
|
n += i->size();
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
}
|