2003-11-18 14:06:07 +02:00
|
|
|
#include "nixexpr.hh"
|
2005-01-19 18:39:47 +02:00
|
|
|
#include "derivations.hh"
|
2006-09-05 00:06:23 +03:00
|
|
|
#include "util.hh"
|
2004-10-27 01:54:26 +03:00
|
|
|
|
2008-05-21 14:17:31 +03:00
|
|
|
#include <cstdlib>
|
|
|
|
|
2004-10-27 01:54:26 +03:00
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
namespace nix {
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
|
2010-04-14 17:42:32 +03:00
|
|
|
/* Displaying abstract syntax trees. */
|
|
|
|
|
2018-03-14 20:20:32 +02:00
|
|
|
std::ostream & operator << (std::ostream & str, const Expr & e)
|
2010-04-12 21:30:11 +03:00
|
|
|
{
|
|
|
|
e.show(str);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2014-10-20 09:44:32 +03:00
|
|
|
static void showString(std::ostream & str, const string & s)
|
|
|
|
{
|
|
|
|
str << '"';
|
|
|
|
for (auto c : (string) s)
|
|
|
|
if (c == '"' || c == '\\' || c == '$') str << "\\" << c;
|
|
|
|
else if (c == '\n') str << "\\n";
|
|
|
|
else if (c == '\r') str << "\\r";
|
|
|
|
else if (c == '\t') str << "\\t";
|
|
|
|
else str << c;
|
|
|
|
str << '"';
|
|
|
|
}
|
|
|
|
|
|
|
|
static void showId(std::ostream & str, const string & s)
|
|
|
|
{
|
2015-12-17 16:15:28 +02:00
|
|
|
if (s.empty())
|
|
|
|
str << "\"\"";
|
|
|
|
else if (s == "if") // FIXME: handle other keywords
|
2014-10-20 09:44:32 +03:00
|
|
|
str << '"' << s << '"';
|
|
|
|
else {
|
|
|
|
char c = s[0];
|
|
|
|
if (!((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_')) {
|
|
|
|
showString(str, s);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (auto c : s)
|
|
|
|
if (!((c >= 'a' && c <= 'z') ||
|
|
|
|
(c >= 'A' && c <= 'Z') ||
|
|
|
|
(c >= '0' && c <= '9') ||
|
|
|
|
c == '_' || c == '\'' || c == '-')) {
|
|
|
|
showString(str, s);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
str << s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::ostream & operator << (std::ostream & str, const Symbol & sym)
|
|
|
|
{
|
|
|
|
showId(str, *sym.s);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2018-03-14 20:20:32 +02:00
|
|
|
void Expr::show(std::ostream & str) const
|
2010-04-13 01:03:27 +03:00
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2018-03-14 20:20:32 +02:00
|
|
|
void ExprInt::show(std::ostream & str) const
|
2010-04-12 21:30:11 +03:00
|
|
|
{
|
|
|
|
str << n;
|
|
|
|
}
|
|
|
|
|
2018-03-14 20:20:32 +02:00
|
|
|
void ExprFloat::show(std::ostream & str) const
|
2016-01-05 01:40:40 +02:00
|
|
|
{
|
|
|
|
str << nf;
|
|
|
|
}
|
|
|
|
|
2018-03-14 20:20:32 +02:00
|
|
|
void ExprString::show(std::ostream & str) const
|
2010-04-12 21:30:11 +03:00
|
|
|
{
|
2014-10-20 09:44:32 +03:00
|
|
|
showString(str, s);
|
2010-04-12 21:30:11 +03:00
|
|
|
}
|
|
|
|
|
2018-03-14 20:20:32 +02:00
|
|
|
void ExprPath::show(std::ostream & str) const
|
2010-04-12 21:30:11 +03:00
|
|
|
{
|
|
|
|
str << s;
|
|
|
|
}
|
|
|
|
|
2018-03-14 20:20:32 +02:00
|
|
|
void ExprVar::show(std::ostream & str) const
|
2010-04-12 21:30:11 +03:00
|
|
|
{
|
2013-10-08 15:24:53 +03:00
|
|
|
str << name;
|
2010-04-12 21:30:11 +03:00
|
|
|
}
|
|
|
|
|
2018-03-14 20:20:32 +02:00
|
|
|
void ExprSelect::show(std::ostream & str) const
|
2010-04-12 21:30:11 +03:00
|
|
|
{
|
2011-07-06 15:28:57 +03:00
|
|
|
str << "(" << *e << ")." << showAttrPath(attrPath);
|
2014-10-20 09:44:32 +03:00
|
|
|
if (def) str << " or (" << *def << ")";
|
2010-04-12 21:30:11 +03:00
|
|
|
}
|
|
|
|
|
2018-03-14 20:20:32 +02:00
|
|
|
void ExprOpHasAttr::show(std::ostream & str) const
|
2010-04-13 00:21:24 +03:00
|
|
|
{
|
2014-10-20 09:44:32 +03:00
|
|
|
str << "((" << *e << ") ? " << showAttrPath(attrPath) << ")";
|
2010-04-13 00:21:24 +03:00
|
|
|
}
|
|
|
|
|
2018-03-14 20:20:32 +02:00
|
|
|
void ExprAttrs::show(std::ostream & str) const
|
2010-04-12 21:30:11 +03:00
|
|
|
{
|
|
|
|
if (recursive) str << "rec ";
|
|
|
|
str << "{ ";
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : attrs)
|
|
|
|
if (i.second.inherited)
|
|
|
|
str << "inherit " << i.first << " " << "; ";
|
2010-10-24 22:52:33 +03:00
|
|
|
else
|
2015-07-17 20:24:28 +03:00
|
|
|
str << i.first << " = " << *i.second.e << "; ";
|
|
|
|
for (auto & i : dynamicAttrs)
|
|
|
|
str << "\"${" << *i.nameExpr << "}\" = " << *i.valueExpr << "; ";
|
2010-04-12 21:30:11 +03:00
|
|
|
str << "}";
|
|
|
|
}
|
|
|
|
|
2018-03-14 20:20:32 +02:00
|
|
|
void ExprList::show(std::ostream & str) const
|
2010-04-12 21:30:11 +03:00
|
|
|
{
|
|
|
|
str << "[ ";
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : elems)
|
|
|
|
str << "(" << *i << ") ";
|
2010-04-12 21:30:11 +03:00
|
|
|
str << "]";
|
|
|
|
}
|
|
|
|
|
2018-03-14 20:20:32 +02:00
|
|
|
void ExprLambda::show(std::ostream & str) const
|
2010-04-12 21:30:11 +03:00
|
|
|
{
|
|
|
|
str << "(";
|
|
|
|
if (matchAttrs) {
|
|
|
|
str << "{ ";
|
|
|
|
bool first = true;
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : formals->formals) {
|
2010-04-12 21:30:11 +03:00
|
|
|
if (first) first = false; else str << ", ";
|
2015-07-17 20:24:28 +03:00
|
|
|
str << i.name;
|
|
|
|
if (i.def) str << " ? " << *i.def;
|
2010-04-12 21:30:11 +03:00
|
|
|
}
|
2014-10-20 09:44:32 +03:00
|
|
|
if (formals->ellipsis) {
|
|
|
|
if (!first) str << ", ";
|
|
|
|
str << "...";
|
|
|
|
}
|
2010-04-12 21:30:11 +03:00
|
|
|
str << " }";
|
2010-04-13 15:25:42 +03:00
|
|
|
if (!arg.empty()) str << " @ ";
|
2010-04-12 21:30:11 +03:00
|
|
|
}
|
2010-04-13 15:25:42 +03:00
|
|
|
if (!arg.empty()) str << arg;
|
2010-04-12 21:30:11 +03:00
|
|
|
str << ": " << *body << ")";
|
|
|
|
}
|
|
|
|
|
2018-03-14 20:20:32 +02:00
|
|
|
void ExprLet::show(std::ostream & str) const
|
2010-04-13 16:42:25 +03:00
|
|
|
{
|
2014-10-20 09:44:32 +03:00
|
|
|
str << "(let ";
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : attrs->attrs)
|
|
|
|
if (i.second.inherited) {
|
|
|
|
str << "inherit " << i.first << "; ";
|
2014-10-20 09:44:32 +03:00
|
|
|
}
|
2010-10-24 22:52:33 +03:00
|
|
|
else
|
2015-07-17 20:24:28 +03:00
|
|
|
str << i.first << " = " << *i.second.e << "; ";
|
2014-10-20 09:44:32 +03:00
|
|
|
str << "in " << *body << ")";
|
2010-04-13 16:42:25 +03:00
|
|
|
}
|
|
|
|
|
2018-03-14 20:20:32 +02:00
|
|
|
void ExprWith::show(std::ostream & str) const
|
2010-04-12 21:30:11 +03:00
|
|
|
{
|
2014-10-20 09:44:32 +03:00
|
|
|
str << "(with " << *attrs << "; " << *body << ")";
|
2010-04-12 21:30:11 +03:00
|
|
|
}
|
|
|
|
|
2018-03-14 20:20:32 +02:00
|
|
|
void ExprIf::show(std::ostream & str) const
|
2010-04-12 21:30:11 +03:00
|
|
|
{
|
2014-10-20 09:44:32 +03:00
|
|
|
str << "(if " << *cond << " then " << *then << " else " << *else_ << ")";
|
2010-04-12 21:30:11 +03:00
|
|
|
}
|
|
|
|
|
2018-03-14 20:20:32 +02:00
|
|
|
void ExprAssert::show(std::ostream & str) const
|
2010-04-13 00:21:24 +03:00
|
|
|
{
|
|
|
|
str << "assert " << *cond << "; " << *body;
|
|
|
|
}
|
2010-04-12 21:30:11 +03:00
|
|
|
|
2018-03-14 20:20:32 +02:00
|
|
|
void ExprOpNot::show(std::ostream & str) const
|
2010-04-13 00:21:24 +03:00
|
|
|
{
|
2014-10-20 09:44:32 +03:00
|
|
|
str << "(! " << *e << ")";
|
2010-04-13 00:21:24 +03:00
|
|
|
}
|
|
|
|
|
2018-03-14 20:20:32 +02:00
|
|
|
void ExprConcatStrings::show(std::ostream & str) const
|
2010-04-13 00:21:24 +03:00
|
|
|
{
|
|
|
|
bool first = true;
|
2014-10-20 09:44:32 +03:00
|
|
|
str << "(";
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : *es) {
|
2010-04-13 00:21:24 +03:00
|
|
|
if (first) first = false; else str << " + ";
|
2015-07-17 20:24:28 +03:00
|
|
|
str << *i;
|
2010-04-13 00:21:24 +03:00
|
|
|
}
|
2014-10-20 09:44:32 +03:00
|
|
|
str << ")";
|
2010-04-13 00:21:24 +03:00
|
|
|
}
|
|
|
|
|
2018-03-14 20:20:32 +02:00
|
|
|
void ExprPos::show(std::ostream & str) const
|
2013-11-18 21:14:54 +02:00
|
|
|
{
|
|
|
|
str << "__curPos";
|
|
|
|
}
|
|
|
|
|
2010-04-13 00:21:24 +03:00
|
|
|
|
|
|
|
std::ostream & operator << (std::ostream & str, const Pos & pos)
|
2004-04-06 01:27:41 +03:00
|
|
|
{
|
2014-04-04 22:14:11 +03:00
|
|
|
if (!pos)
|
2010-04-13 00:21:24 +03:00
|
|
|
str << "undefined position";
|
|
|
|
else
|
2020-07-01 01:31:55 +03:00
|
|
|
{
|
2020-05-21 23:28:45 +03:00
|
|
|
auto f = format(ANSI_BOLD "%1%" ANSI_NORMAL ":%2%:%3%");
|
2020-07-01 01:31:55 +03:00
|
|
|
switch (pos.origin) {
|
2020-05-21 23:28:45 +03:00
|
|
|
case foFile:
|
2020-07-01 01:31:55 +03:00
|
|
|
f % (string) pos.file;
|
2020-05-21 23:28:45 +03:00
|
|
|
break;
|
|
|
|
case foStdin:
|
|
|
|
case foString:
|
|
|
|
f % "(string)";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw Error("unhandled Pos origin!");
|
|
|
|
}
|
|
|
|
str << (f % pos.line % pos.column).str();
|
|
|
|
}
|
|
|
|
|
2010-04-13 00:21:24 +03:00
|
|
|
return str;
|
2004-04-06 01:27:41 +03:00
|
|
|
}
|
2003-11-03 22:30:40 +02:00
|
|
|
|
2010-04-14 17:42:32 +03:00
|
|
|
|
2011-07-06 13:58:17 +03:00
|
|
|
string showAttrPath(const AttrPath & attrPath)
|
|
|
|
{
|
2014-01-01 01:56:26 +02:00
|
|
|
std::ostringstream out;
|
|
|
|
bool first = true;
|
2015-03-06 15:24:08 +02:00
|
|
|
for (auto & i : attrPath) {
|
|
|
|
if (!first) out << '.'; else first = false;
|
|
|
|
if (i.symbol.set())
|
|
|
|
out << i.symbol;
|
2014-01-01 01:56:26 +02:00
|
|
|
else
|
2015-03-06 15:24:08 +02:00
|
|
|
out << "\"${" << *i.expr << "}\"";
|
2011-07-06 13:58:17 +03:00
|
|
|
}
|
2014-01-01 01:56:26 +02:00
|
|
|
return out.str();
|
2011-07-06 13:58:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-05-06 19:46:48 +03:00
|
|
|
Pos noPos;
|
|
|
|
|
|
|
|
|
2010-04-14 17:42:32 +03:00
|
|
|
/* Computing levels/displacements for variables. */
|
|
|
|
|
|
|
|
void Expr::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprInt::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-01-05 01:40:40 +02:00
|
|
|
void ExprFloat::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-04-14 17:42:32 +03:00
|
|
|
void ExprString::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprPath::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-10-08 15:24:53 +03:00
|
|
|
void ExprVar::bindVars(const StaticEnv & env)
|
2010-04-14 17:42:32 +03: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 13:04:22 +03:00
|
|
|
}
|
|
|
|
}
|
2010-04-14 17:42:32 +03: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. */
|
2020-06-15 15:12:39 +03:00
|
|
|
if (withLevel == -1)
|
2020-06-15 15:06:58 +03:00
|
|
|
throw UndefinedVarError({
|
|
|
|
.hint = hintfmt("undefined variable '%1%'", name),
|
2020-06-24 00:30:13 +03:00
|
|
|
.errPos = pos
|
2020-06-15 15:06:58 +03:00
|
|
|
});
|
2010-04-14 17:42:32 +03:00
|
|
|
fromWith = true;
|
|
|
|
this->level = withLevel;
|
2008-08-14 13:04:22 +03:00
|
|
|
}
|
|
|
|
|
2010-04-14 17:42:32 +03:00
|
|
|
void ExprSelect::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
e->bindVars(env);
|
2011-07-13 15:19:57 +03:00
|
|
|
if (def) def->bindVars(env);
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : attrPath)
|
|
|
|
if (!i.symbol.set())
|
|
|
|
i.expr->bindVars(env);
|
2010-04-14 17:42:32 +03:00
|
|
|
}
|
2008-08-14 13:04:22 +03:00
|
|
|
|
2010-04-14 17:42:32 +03:00
|
|
|
void ExprOpHasAttr::bindVars(const StaticEnv & env)
|
2004-02-03 16:45:34 +02:00
|
|
|
{
|
2010-04-14 17:42:32 +03:00
|
|
|
e->bindVars(env);
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : attrPath)
|
|
|
|
if (!i.symbol.set())
|
|
|
|
i.expr->bindVars(env);
|
2010-04-14 17:42:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void ExprAttrs::bindVars(const StaticEnv & env)
|
|
|
|
{
|
2014-04-01 18:04:38 +03:00
|
|
|
const StaticEnv * dynamicEnv = &env;
|
|
|
|
StaticEnv newEnv(false, &env);
|
|
|
|
|
2010-04-14 17:42:32 +03:00
|
|
|
if (recursive) {
|
Dynamic attrs
This adds new syntax for attribute names:
* attrs."${name}" => getAttr name attrs
* attrs ? "${name}" => isAttrs attrs && hasAttr attrs name
* attrs."${name}" or def => if attrs ? "${name}" then attrs."${name}" else def
* { "${name}" = value; } => listToAttrs [{ inherit name value; }]
Of course, it's a bit more complicated than that. The attribute chains
can be arbitrarily long and contain combinations of static and dynamic
parts (e.g. attrs."${foo}".bar."${baz}" or qux), which is relatively
straightforward for the getAttrs/hasAttrs cases but is more complex for
the listToAttrs case due to rules about duplicate attribute definitions.
For attribute sets with dynamic attribute names, duplicate static
attributes are detected at parse time while duplicate dynamic attributes
are detected when the attribute set is forced. So, for example, { a =
null; a.b = null; "${"c"}" = true; } will be a parse-time error, while
{ a = {}; "${"a"}".b = null; c = true; } will be an eval-time error
(technically that case could theoretically be detected at parse time,
but the general case would require full evaluation). Moreover, duplicate
dynamic attributes are not allowed even in cases where they would be
with static attributes ({ a.b.d = true; a.b.c = false; } is legal, but {
a."${"b"}".d = true; a."${"b"}".c = false; } is not). This restriction
might be relaxed in the future in cases where the static variant would
not be an error, but it is not obvious that that is desirable.
Finally, recursive attribute sets with dynamic attributes have the
static attributes in scope but not the dynamic ones. So rec { a = true;
"${"b"}" = a; } is equivalent to { a = true; b = true; } but rec {
"${"a"}" = true; b = a; } would be an error or use a from the
surrounding scope if it exists.
Note that the getAttr, getAttr or default, and hasAttr are all
implemented purely in the parser as syntactic sugar, while attribute
sets with dynamic attribute names required changes to the AST to be
implemented cleanly.
This is an alternative solution to and closes #167
Signed-off-by: Shea Levy <shea@shealevy.com>
2013-09-21 06:25:30 +03:00
|
|
|
dynamicEnv = &newEnv;
|
2013-09-02 17:29:15 +03:00
|
|
|
|
2010-04-14 17:42:32 +03:00
|
|
|
unsigned int displ = 0;
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : attrs)
|
|
|
|
newEnv.vars[i.first] = i.second.displ = displ++;
|
2013-09-02 17:29:15 +03:00
|
|
|
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : attrs)
|
|
|
|
i.second.e->bindVars(i.second.inherited ? env : newEnv);
|
2004-10-25 19:54:56 +03:00
|
|
|
}
|
2010-04-14 17:42:32 +03:00
|
|
|
|
2010-10-24 22:52:33 +03:00
|
|
|
else
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : attrs)
|
|
|
|
i.second.e->bindVars(env);
|
Dynamic attrs
This adds new syntax for attribute names:
* attrs."${name}" => getAttr name attrs
* attrs ? "${name}" => isAttrs attrs && hasAttr attrs name
* attrs."${name}" or def => if attrs ? "${name}" then attrs."${name}" else def
* { "${name}" = value; } => listToAttrs [{ inherit name value; }]
Of course, it's a bit more complicated than that. The attribute chains
can be arbitrarily long and contain combinations of static and dynamic
parts (e.g. attrs."${foo}".bar."${baz}" or qux), which is relatively
straightforward for the getAttrs/hasAttrs cases but is more complex for
the listToAttrs case due to rules about duplicate attribute definitions.
For attribute sets with dynamic attribute names, duplicate static
attributes are detected at parse time while duplicate dynamic attributes
are detected when the attribute set is forced. So, for example, { a =
null; a.b = null; "${"c"}" = true; } will be a parse-time error, while
{ a = {}; "${"a"}".b = null; c = true; } will be an eval-time error
(technically that case could theoretically be detected at parse time,
but the general case would require full evaluation). Moreover, duplicate
dynamic attributes are not allowed even in cases where they would be
with static attributes ({ a.b.d = true; a.b.c = false; } is legal, but {
a."${"b"}".d = true; a."${"b"}".c = false; } is not). This restriction
might be relaxed in the future in cases where the static variant would
not be an error, but it is not obvious that that is desirable.
Finally, recursive attribute sets with dynamic attributes have the
static attributes in scope but not the dynamic ones. So rec { a = true;
"${"b"}" = a; } is equivalent to { a = true; b = true; } but rec {
"${"a"}" = true; b = a; } would be an error or use a from the
surrounding scope if it exists.
Note that the getAttr, getAttr or default, and hasAttr are all
implemented purely in the parser as syntactic sugar, while attribute
sets with dynamic attribute names required changes to the AST to be
implemented cleanly.
This is an alternative solution to and closes #167
Signed-off-by: Shea Levy <shea@shealevy.com>
2013-09-21 06:25:30 +03:00
|
|
|
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : dynamicAttrs) {
|
|
|
|
i.nameExpr->bindVars(*dynamicEnv);
|
|
|
|
i.valueExpr->bindVars(*dynamicEnv);
|
Dynamic attrs
This adds new syntax for attribute names:
* attrs."${name}" => getAttr name attrs
* attrs ? "${name}" => isAttrs attrs && hasAttr attrs name
* attrs."${name}" or def => if attrs ? "${name}" then attrs."${name}" else def
* { "${name}" = value; } => listToAttrs [{ inherit name value; }]
Of course, it's a bit more complicated than that. The attribute chains
can be arbitrarily long and contain combinations of static and dynamic
parts (e.g. attrs."${foo}".bar."${baz}" or qux), which is relatively
straightforward for the getAttrs/hasAttrs cases but is more complex for
the listToAttrs case due to rules about duplicate attribute definitions.
For attribute sets with dynamic attribute names, duplicate static
attributes are detected at parse time while duplicate dynamic attributes
are detected when the attribute set is forced. So, for example, { a =
null; a.b = null; "${"c"}" = true; } will be a parse-time error, while
{ a = {}; "${"a"}".b = null; c = true; } will be an eval-time error
(technically that case could theoretically be detected at parse time,
but the general case would require full evaluation). Moreover, duplicate
dynamic attributes are not allowed even in cases where they would be
with static attributes ({ a.b.d = true; a.b.c = false; } is legal, but {
a."${"b"}".d = true; a."${"b"}".c = false; } is not). This restriction
might be relaxed in the future in cases where the static variant would
not be an error, but it is not obvious that that is desirable.
Finally, recursive attribute sets with dynamic attributes have the
static attributes in scope but not the dynamic ones. So rec { a = true;
"${"b"}" = a; } is equivalent to { a = true; b = true; } but rec {
"${"a"}" = true; b = a; } would be an error or use a from the
surrounding scope if it exists.
Note that the getAttr, getAttr or default, and hasAttr are all
implemented purely in the parser as syntactic sugar, while attribute
sets with dynamic attribute names required changes to the AST to be
implemented cleanly.
This is an alternative solution to and closes #167
Signed-off-by: Shea Levy <shea@shealevy.com>
2013-09-21 06:25:30 +03:00
|
|
|
}
|
2010-04-14 17:42:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void ExprList::bindVars(const StaticEnv & env)
|
|
|
|
{
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : elems)
|
|
|
|
i->bindVars(env);
|
2010-04-14 17:42:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void ExprLambda::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
StaticEnv newEnv(false, &env);
|
2013-09-02 17:29:15 +03:00
|
|
|
|
2010-04-14 17:42:32 +03:00
|
|
|
unsigned int displ = 0;
|
2013-09-02 17:29:15 +03:00
|
|
|
|
2010-04-14 17:42:32 +03:00
|
|
|
if (!arg.empty()) newEnv.vars[arg] = displ++;
|
|
|
|
|
|
|
|
if (matchAttrs) {
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : formals->formals)
|
|
|
|
newEnv.vars[i.name] = displ++;
|
2010-04-14 17:42:32 +03:00
|
|
|
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : formals->formals)
|
|
|
|
if (i.def) i.def->bindVars(newEnv);
|
2004-02-03 16:45:34 +02:00
|
|
|
}
|
|
|
|
|
2010-04-14 17:42:32 +03:00
|
|
|
body->bindVars(newEnv);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprLet::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
StaticEnv newEnv(false, &env);
|
2013-09-02 17:29:15 +03:00
|
|
|
|
2010-04-14 17:42:32 +03:00
|
|
|
unsigned int displ = 0;
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : attrs->attrs)
|
|
|
|
newEnv.vars[i.first] = i.second.displ = displ++;
|
2013-09-02 17:29:15 +03:00
|
|
|
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : attrs->attrs)
|
|
|
|
i.second.e->bindVars(i.second.inherited ? env : newEnv);
|
2013-09-02 17:29:15 +03:00
|
|
|
|
2010-04-14 17:42:32 +03:00
|
|
|
body->bindVars(newEnv);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExprWith::bindVars(const StaticEnv & env)
|
|
|
|
{
|
2010-04-14 18:01:04 +03:00
|
|
|
/* Does this `with' have an enclosing `with'? If so, record its
|
2010-04-22 18:08:09 +03: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 18:01:04 +03:00
|
|
|
const StaticEnv * curEnv;
|
|
|
|
unsigned int level;
|
2010-04-22 18:08:09 +03:00
|
|
|
prevWith = 0;
|
|
|
|
for (curEnv = &env, level = 1; curEnv; curEnv = curEnv->up, level++)
|
2010-04-14 18:01:04 +03:00
|
|
|
if (curEnv->isWith) {
|
|
|
|
prevWith = level;
|
|
|
|
break;
|
|
|
|
}
|
2013-09-02 17:29:15 +03:00
|
|
|
|
|
|
|
attrs->bindVars(env);
|
2010-04-14 17:42:32 +03:00
|
|
|
StaticEnv newEnv(true, &env);
|
|
|
|
body->bindVars(newEnv);
|
2005-11-04 17:17:05 +02:00
|
|
|
}
|
|
|
|
|
2010-04-14 17:42:32 +03: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 17:17:05 +02:00
|
|
|
|
2010-04-14 17:42:32 +03:00
|
|
|
void ExprConcatStrings::bindVars(const StaticEnv & env)
|
2005-11-04 17:17:05 +02:00
|
|
|
{
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : *es)
|
|
|
|
i->bindVars(env);
|
2004-02-03 16:45:34 +02:00
|
|
|
}
|
2006-10-16 18:55:34 +03:00
|
|
|
|
2013-11-18 21:14:54 +02:00
|
|
|
void ExprPos::bindVars(const StaticEnv & env)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-10-16 18:55:34 +03:00
|
|
|
|
2013-05-16 20:08:02 +03:00
|
|
|
/* Storing function names. */
|
|
|
|
|
|
|
|
void Expr::setName(Symbol & name)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ExprLambda::setName(Symbol & name)
|
|
|
|
{
|
|
|
|
this->name = name;
|
|
|
|
body->setName(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-07 19:04:36 +02:00
|
|
|
string ExprLambda::showNamePos() const
|
2013-05-16 20:08:02 +03:00
|
|
|
{
|
2017-07-30 14:27:57 +03:00
|
|
|
return (format("%1% at %2%") % (name.set() ? "'" + (string) name + "'" : "anonymous function") % pos).str();
|
2013-05-16 20:08:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-08 16:34:57 +03:00
|
|
|
|
|
|
|
/* Symbol table. */
|
|
|
|
|
|
|
|
size_t SymbolTable::totalSize() const
|
|
|
|
{
|
|
|
|
size_t n = 0;
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : symbols)
|
|
|
|
n += i.size();
|
2013-10-08 16:34:57 +03:00
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
}
|