2004-01-30 17:21:42 +02:00
|
|
|
|
%glr-parser
|
|
|
|
|
%pure-parser
|
|
|
|
|
%locations
|
|
|
|
|
%error-verbose
|
2006-10-02 17:43:15 +03:00
|
|
|
|
%defines
|
2006-10-12 00:59:33 +03:00
|
|
|
|
/* %no-lines */
|
2013-03-14 19:31:08 +02:00
|
|
|
|
%parse-param { void * scanner }
|
|
|
|
|
%parse-param { nix::ParseData * data }
|
|
|
|
|
%lex-param { void * scanner }
|
|
|
|
|
%lex-param { nix::ParseData * data }
|
2012-04-13 15:28:26 +03:00
|
|
|
|
%expect 1
|
|
|
|
|
%expect-rr 1
|
2004-01-30 17:21:42 +02:00
|
|
|
|
|
2010-10-24 00:11:59 +03:00
|
|
|
|
%code requires {
|
2013-09-02 17:29:15 +03:00
|
|
|
|
|
2010-10-24 00:11:59 +03:00
|
|
|
|
#ifndef BISON_HEADER
|
|
|
|
|
#define BISON_HEADER
|
2013-09-02 17:29:15 +03:00
|
|
|
|
|
2006-09-05 00:36:15 +03:00
|
|
|
|
#include "util.hh"
|
2013-09-02 17:29:15 +03:00
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
|
#include "nixexpr.hh"
|
2011-08-06 19:05:24 +03:00
|
|
|
|
#include "eval.hh"
|
2010-04-12 21:30:11 +03:00
|
|
|
|
|
2010-10-24 00:11:59 +03:00
|
|
|
|
namespace nix {
|
|
|
|
|
|
2013-09-02 17:29:15 +03:00
|
|
|
|
struct ParseData
|
2010-10-24 00:11:59 +03:00
|
|
|
|
{
|
2011-08-06 19:05:24 +03:00
|
|
|
|
EvalState & state;
|
2010-10-24 00:11:59 +03:00
|
|
|
|
SymbolTable & symbols;
|
|
|
|
|
Expr * result;
|
|
|
|
|
Path basePath;
|
2013-10-08 16:19:59 +03:00
|
|
|
|
Symbol path;
|
2010-10-24 00:11:59 +03:00
|
|
|
|
string error;
|
|
|
|
|
Symbol sLetBody;
|
2011-08-06 19:05:24 +03:00
|
|
|
|
ParseData(EvalState & state)
|
|
|
|
|
: state(state)
|
|
|
|
|
, symbols(state.symbols)
|
2010-10-24 00:11:59 +03:00
|
|
|
|
, sLetBody(symbols.create("<let-body>"))
|
|
|
|
|
{ };
|
|
|
|
|
};
|
2013-09-02 17:29:15 +03:00
|
|
|
|
|
2010-10-24 00:11:59 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define YY_DECL int yylex \
|
|
|
|
|
(YYSTYPE * yylval_param, YYLTYPE * yylloc_param, yyscan_t yyscanner, nix::ParseData * data)
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%{
|
|
|
|
|
|
2006-09-05 01:08:40 +03:00
|
|
|
|
#include "parser-tab.hh"
|
|
|
|
|
#include "lexer-tab.hh"
|
|
|
|
|
|
2010-10-04 20:55:38 +03:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2010-10-24 00:11:59 +03:00
|
|
|
|
YY_DECL;
|
2006-09-05 00:36:15 +03:00
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
|
using namespace nix;
|
2004-01-30 17:21:42 +02:00
|
|
|
|
|
2006-09-05 00:36:15 +03:00
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
|
namespace nix {
|
2013-09-02 17:29:15 +03:00
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
|
|
2011-07-06 13:58:17 +03:00
|
|
|
|
static void dupAttr(const AttrPath & attrPath, const Pos & pos, const Pos & prevPos)
|
2010-04-22 14:02:24 +03:00
|
|
|
|
{
|
2010-05-06 19:46:48 +03:00
|
|
|
|
throw ParseError(format("attribute `%1%' at %2% already defined at %3%")
|
|
|
|
|
% showAttrPath(attrPath) % pos % prevPos);
|
2010-04-22 14:02:24 +03:00
|
|
|
|
}
|
2013-09-02 17:29:15 +03:00
|
|
|
|
|
2010-04-22 14:02:24 +03:00
|
|
|
|
|
2010-05-06 19:46:48 +03:00
|
|
|
|
static void dupAttr(Symbol attr, const Pos & pos, const Pos & prevPos)
|
2010-04-22 14:02:24 +03:00
|
|
|
|
{
|
2010-05-06 19:46:48 +03:00
|
|
|
|
throw ParseError(format("attribute `%1%' at %2% already defined at %3%")
|
2014-01-01 01:56:26 +02:00
|
|
|
|
% attr % pos % prevPos);
|
2010-04-22 14:02:24 +03:00
|
|
|
|
}
|
2013-09-02 17:29:15 +03:00
|
|
|
|
|
2009-05-15 15:35:23 +03:00
|
|
|
|
|
2014-01-01 01:56:26 +02:00
|
|
|
|
static void addAttr(ExprAttrs * attrs, AttrPath & attrPath,
|
2010-04-13 15:25:42 +03:00
|
|
|
|
Expr * e, const Pos & pos)
|
2009-05-15 15:35:23 +03:00
|
|
|
|
{
|
2014-01-01 01:56:26 +02:00
|
|
|
|
AttrPath::iterator i;
|
2014-01-01 00:57:10 +02:00
|
|
|
|
// All attrpaths have at least one attr
|
2014-01-01 01:56:26 +02:00
|
|
|
|
assert(!attrPath.empty());
|
|
|
|
|
for (i = attrPath.begin(); i + 1 < attrPath.end(); i++) {
|
2014-01-01 00:57:10 +02:00
|
|
|
|
if (i->symbol.set()) {
|
|
|
|
|
ExprAttrs::AttrDefs::iterator j = attrs->attrs.find(i->symbol);
|
|
|
|
|
if (j != attrs->attrs.end()) {
|
|
|
|
|
if (!j->second.inherited) {
|
|
|
|
|
ExprAttrs * attrs2 = dynamic_cast<ExprAttrs *>(j->second.e);
|
2014-01-01 01:56:26 +02:00
|
|
|
|
if (!attrs2) dupAttr(attrPath, pos, j->second.pos);
|
2014-01-01 00:57:10 +02:00
|
|
|
|
attrs = attrs2;
|
|
|
|
|
} else
|
2014-01-01 01:56:26 +02:00
|
|
|
|
dupAttr(attrPath, pos, j->second.pos);
|
2014-01-01 00:57:10 +02:00
|
|
|
|
} else {
|
2010-04-13 02:33:23 +03:00
|
|
|
|
ExprAttrs * nested = new ExprAttrs;
|
2014-01-01 00:57:10 +02:00
|
|
|
|
attrs->attrs[i->symbol] = ExprAttrs::AttrDef(nested, pos);
|
2010-04-13 02:33:23 +03:00
|
|
|
|
attrs = nested;
|
2006-09-05 00:36:15 +03:00
|
|
|
|
}
|
2014-01-01 00:57:10 +02:00
|
|
|
|
} else {
|
|
|
|
|
ExprAttrs *nested = new ExprAttrs;
|
|
|
|
|
attrs->dynamicAttrs.push_back(ExprAttrs::DynamicAttrDef(i->expr, nested, pos));
|
|
|
|
|
attrs = nested;
|
2009-05-15 15:35:23 +03:00
|
|
|
|
}
|
2009-05-14 17:29:45 +03:00
|
|
|
|
}
|
2014-01-01 00:57:10 +02:00
|
|
|
|
if (i->symbol.set()) {
|
|
|
|
|
ExprAttrs::AttrDefs::iterator j = attrs->attrs.find(i->symbol);
|
|
|
|
|
if (j != attrs->attrs.end()) {
|
2014-01-01 01:56:26 +02:00
|
|
|
|
dupAttr(attrPath, pos, j->second.pos);
|
2014-01-01 00:57:10 +02:00
|
|
|
|
} else {
|
|
|
|
|
attrs->attrs[i->symbol] = ExprAttrs::AttrDef(e, pos);
|
|
|
|
|
e->setName(i->symbol);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
attrs->dynamicAttrs.push_back(ExprAttrs::DynamicAttrDef(i->expr, e, pos));
|
|
|
|
|
}
|
2009-05-14 17:29:45 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-04-22 14:02:24 +03:00
|
|
|
|
static void addFormal(const Pos & pos, Formals * formals, const Formal & formal)
|
2009-05-14 17:29:45 +03:00
|
|
|
|
{
|
2010-04-22 14:02:24 +03:00
|
|
|
|
if (formals->argNames.find(formal.name) != formals->argNames.end())
|
|
|
|
|
throw ParseError(format("duplicate formal function argument `%1%' at %2%")
|
|
|
|
|
% formal.name % pos);
|
|
|
|
|
formals->formals.push_front(formal);
|
|
|
|
|
formals->argNames.insert(formal.name);
|
2009-05-14 17:29:45 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-10-24 00:11:59 +03:00
|
|
|
|
static Expr * stripIndentation(SymbolTable & symbols, vector<Expr *> & es)
|
2007-11-30 18:48:45 +02:00
|
|
|
|
{
|
2010-10-24 00:11:59 +03:00
|
|
|
|
if (es.empty()) return new ExprString(symbols.create(""));
|
2013-09-02 17:29:15 +03:00
|
|
|
|
|
2007-11-30 18:48:45 +02:00
|
|
|
|
/* Figure out the minimum indentation. Note that by design
|
|
|
|
|
whitespace-only final lines are not taken into account. (So
|
|
|
|
|
the " " in "\n ''" is ignored, but the " " in "\n foo''" is.) */
|
|
|
|
|
bool atStartOfLine = true; /* = seen only whitespace in the current line */
|
|
|
|
|
unsigned int minIndent = 1000000;
|
|
|
|
|
unsigned int curIndent = 0;
|
2010-04-13 01:03:27 +03:00
|
|
|
|
foreach (vector<Expr *>::iterator, i, es) {
|
|
|
|
|
ExprIndStr * e = dynamic_cast<ExprIndStr *>(*i);
|
|
|
|
|
if (!e) {
|
2007-11-30 18:48:45 +02:00
|
|
|
|
/* Anti-quotations end the current start-of-line whitespace. */
|
|
|
|
|
if (atStartOfLine) {
|
|
|
|
|
atStartOfLine = false;
|
|
|
|
|
if (curIndent < minIndent) minIndent = curIndent;
|
|
|
|
|
}
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2010-04-13 01:03:27 +03:00
|
|
|
|
for (unsigned int j = 0; j < e->s.size(); ++j) {
|
2007-11-30 18:48:45 +02:00
|
|
|
|
if (atStartOfLine) {
|
2010-04-13 01:03:27 +03:00
|
|
|
|
if (e->s[j] == ' ')
|
2007-11-30 18:48:45 +02:00
|
|
|
|
curIndent++;
|
2010-04-13 01:03:27 +03:00
|
|
|
|
else if (e->s[j] == '\n') {
|
2007-11-30 18:48:45 +02:00
|
|
|
|
/* Empty line, doesn't influence minimum
|
|
|
|
|
indentation. */
|
|
|
|
|
curIndent = 0;
|
|
|
|
|
} else {
|
|
|
|
|
atStartOfLine = false;
|
|
|
|
|
if (curIndent < minIndent) minIndent = curIndent;
|
|
|
|
|
}
|
2010-04-13 01:03:27 +03:00
|
|
|
|
} else if (e->s[j] == '\n') {
|
2007-11-30 18:48:45 +02:00
|
|
|
|
atStartOfLine = true;
|
|
|
|
|
curIndent = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Strip spaces from each line. */
|
2010-04-13 01:03:27 +03:00
|
|
|
|
vector<Expr *> * es2 = new vector<Expr *>;
|
2007-11-30 18:48:45 +02:00
|
|
|
|
atStartOfLine = true;
|
|
|
|
|
unsigned int curDropped = 0;
|
2010-04-13 01:03:27 +03:00
|
|
|
|
unsigned int n = es.size();
|
|
|
|
|
for (vector<Expr *>::iterator i = es.begin(); i != es.end(); ++i, --n) {
|
|
|
|
|
ExprIndStr * e = dynamic_cast<ExprIndStr *>(*i);
|
|
|
|
|
if (!e) {
|
2007-11-30 18:48:45 +02:00
|
|
|
|
atStartOfLine = false;
|
|
|
|
|
curDropped = 0;
|
2010-04-13 01:03:27 +03:00
|
|
|
|
es2->push_back(*i);
|
2007-11-30 18:48:45 +02:00
|
|
|
|
continue;
|
|
|
|
|
}
|
2013-09-02 17:29:15 +03:00
|
|
|
|
|
2007-11-30 18:48:45 +02:00
|
|
|
|
string s2;
|
2010-04-13 01:03:27 +03:00
|
|
|
|
for (unsigned int j = 0; j < e->s.size(); ++j) {
|
2007-11-30 18:48:45 +02:00
|
|
|
|
if (atStartOfLine) {
|
2010-04-13 01:03:27 +03:00
|
|
|
|
if (e->s[j] == ' ') {
|
2007-11-30 18:48:45 +02:00
|
|
|
|
if (curDropped++ >= minIndent)
|
2010-04-13 01:03:27 +03:00
|
|
|
|
s2 += e->s[j];
|
2007-11-30 18:48:45 +02:00
|
|
|
|
}
|
2010-04-13 01:03:27 +03:00
|
|
|
|
else if (e->s[j] == '\n') {
|
2007-11-30 18:48:45 +02:00
|
|
|
|
curDropped = 0;
|
2010-04-13 01:03:27 +03:00
|
|
|
|
s2 += e->s[j];
|
2007-11-30 18:48:45 +02:00
|
|
|
|
} else {
|
|
|
|
|
atStartOfLine = false;
|
|
|
|
|
curDropped = 0;
|
2010-04-13 01:03:27 +03:00
|
|
|
|
s2 += e->s[j];
|
2007-11-30 18:48:45 +02:00
|
|
|
|
}
|
|
|
|
|
} else {
|
2010-04-13 01:03:27 +03:00
|
|
|
|
s2 += e->s[j];
|
|
|
|
|
if (e->s[j] == '\n') atStartOfLine = true;
|
2007-11-30 18:48:45 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Remove the last line if it is empty and consists only of
|
|
|
|
|
spaces. */
|
|
|
|
|
if (n == 1) {
|
2009-04-16 15:03:17 +03:00
|
|
|
|
string::size_type p = s2.find_last_of('\n');
|
2007-11-30 18:48:45 +02:00
|
|
|
|
if (p != string::npos && s2.find_first_not_of(' ', p + 1) == string::npos)
|
|
|
|
|
s2 = string(s2, 0, p + 1);
|
|
|
|
|
}
|
2010-04-13 01:03:27 +03:00
|
|
|
|
|
2010-10-24 00:11:59 +03:00
|
|
|
|
es2->push_back(new ExprString(symbols.create(s2)));
|
2007-11-30 18:48:45 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-10-17 01:57:24 +03:00
|
|
|
|
/* If this is a single string, then don't do a concatenation. */
|
|
|
|
|
return es2->size() == 1 && dynamic_cast<ExprString *>((*es2)[0]) ? (*es2)[0] : new ExprConcatStrings(true, es2);
|
2007-11-30 18:48:45 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-05 00:36:15 +03:00
|
|
|
|
void backToString(yyscan_t scanner);
|
2007-11-30 18:48:45 +02:00
|
|
|
|
void backToIndString(yyscan_t scanner);
|
|
|
|
|
|
2006-09-05 00:36:15 +03:00
|
|
|
|
|
2010-05-06 19:46:48 +03:00
|
|
|
|
static Pos makeCurPos(const YYLTYPE & loc, ParseData * data)
|
2004-04-06 01:27:41 +03:00
|
|
|
|
{
|
2010-05-06 19:46:48 +03:00
|
|
|
|
return Pos(data->path, loc.first_line, loc.first_column);
|
2004-04-06 01:27:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2010-05-06 19:46:48 +03:00
|
|
|
|
#define CUR_POS makeCurPos(*yylocp, data)
|
2006-02-13 15:09:23 +02:00
|
|
|
|
|
|
|
|
|
|
2006-09-05 00:36:15 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-02 17:43:15 +03:00
|
|
|
|
void yyerror(YYLTYPE * loc, yyscan_t scanner, ParseData * data, const char * error)
|
2006-09-05 00:36:15 +03:00
|
|
|
|
{
|
2010-04-13 00:21:24 +03:00
|
|
|
|
data->error = (format("%1%, at %2%")
|
2010-05-06 19:46:48 +03:00
|
|
|
|
% error % makeCurPos(*loc, data)).str();
|
2006-09-05 00:36:15 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-01-30 17:21:42 +02:00
|
|
|
|
%}
|
|
|
|
|
|
|
|
|
|
%union {
|
2013-09-02 17:29:15 +03:00
|
|
|
|
// !!! We're probably leaking stuff here.
|
2010-04-12 21:30:11 +03:00
|
|
|
|
nix::Expr * e;
|
|
|
|
|
nix::ExprList * list;
|
|
|
|
|
nix::ExprAttrs * attrs;
|
|
|
|
|
nix::Formals * formals;
|
|
|
|
|
nix::Formal * formal;
|
2013-08-19 13:35:03 +03:00
|
|
|
|
nix::NixInt n;
|
2010-04-13 15:25:42 +03:00
|
|
|
|
char * id; // !!! -> Symbol
|
2010-04-12 21:30:11 +03:00
|
|
|
|
char * path;
|
|
|
|
|
char * uri;
|
2014-01-01 01:56:26 +02:00
|
|
|
|
std::vector<nix::AttrName> * attrNames;
|
2010-04-13 00:21:24 +03:00
|
|
|
|
std::vector<nix::Expr *> * string_parts;
|
2004-01-30 17:21:42 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
|
%type <e> start expr expr_function expr_if expr_op
|
|
|
|
|
%type <e> expr_app expr_select expr_simple
|
|
|
|
|
%type <list> expr_list
|
|
|
|
|
%type <attrs> binds
|
2008-08-14 17:00:44 +03:00
|
|
|
|
%type <formals> formals
|
2010-04-12 21:30:11 +03:00
|
|
|
|
%type <formal> formal
|
2014-01-01 01:56:26 +02:00
|
|
|
|
%type <attrNames> attrs attrpath
|
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
|
|
|
|
%type <string_parts> string_parts_interpolated ind_string_parts
|
|
|
|
|
%type <e> string_parts string_attr
|
2011-07-13 15:19:57 +03:00
|
|
|
|
%type <id> attr
|
2010-04-12 21:30:11 +03:00
|
|
|
|
%token <id> ID ATTRPATH
|
2010-04-13 00:21:24 +03:00
|
|
|
|
%token <e> STR IND_STR
|
2010-04-12 13:38:18 +03:00
|
|
|
|
%token <n> INT
|
2011-08-06 19:05:24 +03:00
|
|
|
|
%token <path> PATH SPATH
|
2010-04-12 21:30:11 +03:00
|
|
|
|
%token <uri> URI
|
2011-07-13 15:19:57 +03:00
|
|
|
|
%token IF THEN ELSE ASSERT WITH LET IN REC INHERIT EQ NEQ AND OR IMPL OR_KW
|
2006-05-01 17:01:47 +03:00
|
|
|
|
%token DOLLAR_CURLY /* == ${ */
|
2007-11-30 18:48:45 +02:00
|
|
|
|
%token IND_STRING_OPEN IND_STRING_CLOSE
|
2008-08-14 17:00:44 +03:00
|
|
|
|
%token ELLIPSIS
|
2004-01-30 17:21:42 +02:00
|
|
|
|
|
|
|
|
|
%nonassoc IMPL
|
|
|
|
|
%left OR
|
|
|
|
|
%left AND
|
|
|
|
|
%nonassoc EQ NEQ
|
2013-08-02 19:39:40 +03:00
|
|
|
|
%left '<' '>' LEQ GEQ
|
2004-02-04 18:49:51 +02:00
|
|
|
|
%right UPDATE
|
2013-08-02 18:35:59 +03:00
|
|
|
|
%left NOT
|
2013-08-02 19:03:02 +03:00
|
|
|
|
%left '+' '-'
|
|
|
|
|
%left '*' '/'
|
2005-09-14 14:41:59 +03:00
|
|
|
|
%right CONCAT
|
2004-03-29 00:15:01 +03:00
|
|
|
|
%nonassoc '?'
|
2004-03-28 23:58:28 +03:00
|
|
|
|
%nonassoc '~'
|
2013-08-02 18:35:59 +03:00
|
|
|
|
%nonassoc NEGATE
|
2004-01-30 17:21:42 +02:00
|
|
|
|
|
|
|
|
|
%%
|
|
|
|
|
|
2006-09-05 00:36:15 +03:00
|
|
|
|
start: expr { data->result = $1; };
|
2004-01-30 17:21:42 +02:00
|
|
|
|
|
|
|
|
|
expr: expr_function;
|
|
|
|
|
|
|
|
|
|
expr_function
|
2010-04-12 21:30:11 +03:00
|
|
|
|
: ID ':' expr_function
|
2010-04-22 14:02:24 +03:00
|
|
|
|
{ $$ = new ExprLambda(CUR_POS, data->symbols.create($1), false, 0, $3); }
|
2010-04-12 21:30:11 +03:00
|
|
|
|
| '{' formals '}' ':' expr_function
|
2010-04-13 15:25:42 +03:00
|
|
|
|
{ $$ = new ExprLambda(CUR_POS, data->symbols.create(""), true, $2, $5); }
|
2010-04-12 21:30:11 +03:00
|
|
|
|
| '{' formals '}' '@' ID ':' expr_function
|
2010-04-13 15:25:42 +03:00
|
|
|
|
{ $$ = new ExprLambda(CUR_POS, data->symbols.create($5), true, $2, $7); }
|
2010-04-12 21:30:11 +03:00
|
|
|
|
| ID '@' '{' formals '}' ':' expr_function
|
2010-04-13 15:25:42 +03:00
|
|
|
|
{ $$ = new ExprLambda(CUR_POS, data->symbols.create($1), true, $4, $7); }
|
2010-04-13 00:21:24 +03:00
|
|
|
|
| ASSERT expr ';' expr_function
|
|
|
|
|
{ $$ = new ExprAssert(CUR_POS, $2, $4); }
|
2004-10-25 19:54:56 +03:00
|
|
|
|
| WITH expr ';' expr_function
|
2010-04-12 21:30:11 +03:00
|
|
|
|
{ $$ = new ExprWith(CUR_POS, $2, $4); }
|
2006-10-02 18:52:44 +03:00
|
|
|
|
| LET binds IN expr_function
|
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
|
|
|
|
{ if (!$2->dynamicAttrs.empty())
|
|
|
|
|
throw ParseError(format("dynamic attributes not allowed in let at %1%")
|
|
|
|
|
% CUR_POS);
|
|
|
|
|
$$ = new ExprLet($2, $4);
|
|
|
|
|
}
|
2004-02-19 15:11:12 +02:00
|
|
|
|
| expr_if
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
expr_if
|
2010-04-12 21:30:11 +03:00
|
|
|
|
: IF expr THEN expr ELSE expr { $$ = new ExprIf($2, $4, $6); }
|
2004-01-30 17:21:42 +02:00
|
|
|
|
| expr_op
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
expr_op
|
2013-08-02 18:35:59 +03:00
|
|
|
|
: '!' expr_op %prec NOT { $$ = new ExprOpNot($2); }
|
2013-09-13 23:55:33 +03:00
|
|
|
|
| '-' expr_op %prec NEGATE { $$ = new ExprApp(new ExprApp(new ExprBuiltin(data->symbols.create("sub")), new ExprInt(0)), $2); }
|
2010-04-13 00:21:24 +03:00
|
|
|
|
| expr_op EQ expr_op { $$ = new ExprOpEq($1, $3); }
|
2010-04-12 21:30:11 +03:00
|
|
|
|
| expr_op NEQ expr_op { $$ = new ExprOpNEq($1, $3); }
|
2013-09-13 23:55:33 +03:00
|
|
|
|
| expr_op '<' expr_op { $$ = new ExprApp(new ExprApp(new ExprBuiltin(data->symbols.create("lessThan")), $1), $3); }
|
|
|
|
|
| expr_op LEQ expr_op { $$ = new ExprOpNot(new ExprApp(new ExprApp(new ExprBuiltin(data->symbols.create("lessThan")), $3), $1)); }
|
|
|
|
|
| expr_op '>' expr_op { $$ = new ExprApp(new ExprApp(new ExprBuiltin(data->symbols.create("lessThan")), $3), $1); }
|
|
|
|
|
| expr_op GEQ expr_op { $$ = new ExprOpNot(new ExprApp(new ExprApp(new ExprBuiltin(data->symbols.create("lessThan")), $1), $3)); }
|
2010-04-12 21:30:11 +03:00
|
|
|
|
| expr_op AND expr_op { $$ = new ExprOpAnd($1, $3); }
|
|
|
|
|
| expr_op OR expr_op { $$ = new ExprOpOr($1, $3); }
|
|
|
|
|
| expr_op IMPL expr_op { $$ = new ExprOpImpl($1, $3); }
|
|
|
|
|
| expr_op UPDATE expr_op { $$ = new ExprOpUpdate($1, $3); }
|
2014-01-01 01:56:26 +02:00
|
|
|
|
| expr_op '?' attrpath { $$ = new ExprOpHasAttr($1, *$3); }
|
2010-04-13 00:21:24 +03:00
|
|
|
|
| expr_op '+' expr_op
|
|
|
|
|
{ vector<Expr *> * l = new vector<Expr *>;
|
|
|
|
|
l->push_back($1);
|
|
|
|
|
l->push_back($3);
|
2013-03-08 02:24:59 +02:00
|
|
|
|
$$ = new ExprConcatStrings(false, l);
|
2010-04-13 00:21:24 +03:00
|
|
|
|
}
|
2013-09-13 23:55:33 +03:00
|
|
|
|
| expr_op '-' expr_op { $$ = new ExprApp(new ExprApp(new ExprBuiltin(data->symbols.create("sub")), $1), $3); }
|
|
|
|
|
| expr_op '*' expr_op { $$ = new ExprApp(new ExprApp(new ExprBuiltin(data->symbols.create("mul")), $1), $3); }
|
|
|
|
|
| expr_op '/' expr_op { $$ = new ExprApp(new ExprApp(new ExprBuiltin(data->symbols.create("div")), $1), $3); }
|
2010-04-12 21:30:11 +03:00
|
|
|
|
| expr_op CONCAT expr_op { $$ = new ExprOpConcatLists($1, $3); }
|
2004-01-30 17:21:42 +02:00
|
|
|
|
| expr_app
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
expr_app
|
|
|
|
|
: expr_app expr_select
|
2010-04-12 21:30:11 +03:00
|
|
|
|
{ $$ = new ExprApp($1, $2); }
|
2004-01-30 17:21:42 +02:00
|
|
|
|
| expr_select { $$ = $1; }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
expr_select
|
2011-07-06 15:28:57 +03:00
|
|
|
|
: expr_simple '.' attrpath
|
2014-01-01 01:56:26 +02:00
|
|
|
|
{ $$ = new ExprSelect($1, *$3, 0); }
|
2011-07-13 15:19:57 +03:00
|
|
|
|
| expr_simple '.' attrpath OR_KW expr_select
|
2014-01-01 01:56:26 +02:00
|
|
|
|
{ $$ = new ExprSelect($1, *$3, $5); }
|
2011-07-13 15:19:57 +03:00
|
|
|
|
| /* Backwards compatibility: because Nixpkgs has a rarely used
|
|
|
|
|
function named ‘or’, allow stuff like ‘map or [...]’. */
|
|
|
|
|
expr_simple OR_KW
|
2013-10-08 15:40:51 +03:00
|
|
|
|
{ $$ = new ExprApp($1, new ExprVar(CUR_POS, data->symbols.create("or"))); }
|
2004-01-30 17:21:42 +02:00
|
|
|
|
| expr_simple { $$ = $1; }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
expr_simple
|
2013-11-18 21:14:54 +02:00
|
|
|
|
: ID {
|
|
|
|
|
if (strcmp($1, "__curPos") == 0)
|
|
|
|
|
$$ = new ExprPos(CUR_POS);
|
|
|
|
|
else
|
|
|
|
|
$$ = new ExprVar(CUR_POS, data->symbols.create($1));
|
|
|
|
|
}
|
2010-04-13 00:21:24 +03:00
|
|
|
|
| INT { $$ = new ExprInt($1); }
|
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
|
|
|
|
| '"' string_parts '"' { $$ = $2; }
|
2007-11-30 18:48:45 +02:00
|
|
|
|
| IND_STRING_OPEN ind_string_parts IND_STRING_CLOSE {
|
2010-10-24 00:11:59 +03:00
|
|
|
|
$$ = stripIndentation(data->symbols, *$2);
|
2007-11-30 18:48:45 +02:00
|
|
|
|
}
|
2010-04-12 21:30:11 +03:00
|
|
|
|
| PATH { $$ = new ExprPath(absPath($1, data->basePath)); }
|
2011-08-06 19:05:24 +03:00
|
|
|
|
| SPATH {
|
|
|
|
|
string path($1 + 1, strlen($1) - 2);
|
|
|
|
|
Path path2 = data->state.findFile(path);
|
|
|
|
|
/* The file wasn't found in the search path. However, we can't
|
|
|
|
|
throw an error here, because the expression might never be
|
|
|
|
|
evaluated. So return an expression that lazily calls
|
2013-10-08 15:40:51 +03:00
|
|
|
|
‘throw’. */
|
2011-08-06 19:05:24 +03:00
|
|
|
|
$$ = path2 == ""
|
|
|
|
|
? (Expr * ) new ExprApp(
|
2013-09-13 23:55:33 +03:00
|
|
|
|
new ExprBuiltin(data->symbols.create("throw")),
|
2011-08-06 19:05:24 +03:00
|
|
|
|
new ExprString(data->symbols.create(
|
|
|
|
|
(format("file `%1%' was not found in the Nix search path (add it using $NIX_PATH or -I)") % path).str())))
|
|
|
|
|
: (Expr * ) new ExprPath(path2);
|
|
|
|
|
}
|
2010-10-24 00:11:59 +03:00
|
|
|
|
| URI { $$ = new ExprString(data->symbols.create($1)); }
|
2004-01-30 17:21:42 +02:00
|
|
|
|
| '(' expr ')' { $$ = $2; }
|
2004-02-02 23:39:33 +02:00
|
|
|
|
/* Let expressions `let {..., body = ...}' are just desugared
|
2010-04-13 00:21:24 +03:00
|
|
|
|
into `(rec {..., body = ...}).body'. */
|
2004-02-02 23:39:33 +02:00
|
|
|
|
| LET '{' binds '}'
|
2010-04-13 15:25:42 +03:00
|
|
|
|
{ $3->recursive = true; $$ = new ExprSelect($3, data->symbols.create("body")); }
|
2004-02-02 23:39:33 +02:00
|
|
|
|
| REC '{' binds '}'
|
2010-04-13 02:33:23 +03:00
|
|
|
|
{ $3->recursive = true; $$ = $3; }
|
2004-02-02 23:39:33 +02:00
|
|
|
|
| '{' binds '}'
|
2010-04-13 02:33:23 +03:00
|
|
|
|
{ $$ = $2; }
|
2010-04-12 21:30:11 +03:00
|
|
|
|
| '[' expr_list ']' { $$ = $2; }
|
2004-01-30 17:21:42 +02:00
|
|
|
|
;
|
|
|
|
|
|
2006-05-01 17:01:47 +03:00
|
|
|
|
string_parts
|
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
|
|
|
|
: STR
|
|
|
|
|
| string_parts_interpolated { $$ = new ExprConcatStrings(true, $1); }
|
|
|
|
|
| { $$ = new ExprString(data->symbols.create("")) }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
string_parts_interpolated
|
|
|
|
|
: string_parts_interpolated STR { $$ = $1; $1->push_back($2); }
|
|
|
|
|
| string_parts_interpolated DOLLAR_CURLY expr '}' { backToString(scanner); $$ = $1; $1->push_back($3); }
|
|
|
|
|
| STR DOLLAR_CURLY expr '}'
|
|
|
|
|
{
|
|
|
|
|
backToString(scanner);
|
|
|
|
|
$$ = new vector<Expr *>;
|
|
|
|
|
$$->push_back($1);
|
|
|
|
|
$$->push_back($3);
|
|
|
|
|
}
|
|
|
|
|
| DOLLAR_CURLY expr '}'
|
|
|
|
|
{
|
|
|
|
|
backToString(scanner);
|
|
|
|
|
$$ = new vector<Expr *>;
|
|
|
|
|
$$->push_back($2);
|
|
|
|
|
}
|
2006-05-01 17:01:47 +03:00
|
|
|
|
;
|
|
|
|
|
|
2007-11-30 18:48:45 +02:00
|
|
|
|
ind_string_parts
|
2010-04-13 01:03:27 +03:00
|
|
|
|
: ind_string_parts IND_STR { $$ = $1; $1->push_back($2); }
|
|
|
|
|
| ind_string_parts DOLLAR_CURLY expr '}' { backToIndString(scanner); $$ = $1; $1->push_back($3); }
|
|
|
|
|
| { $$ = new vector<Expr *>; }
|
2007-11-30 18:48:45 +02:00
|
|
|
|
;
|
|
|
|
|
|
2004-01-30 17:21:42 +02:00
|
|
|
|
binds
|
2014-01-01 00:57:10 +02:00
|
|
|
|
: binds attrpath '=' expr ';' { $$ = $1; addAttr($$, *$2, $4, makeCurPos(@2, data)); }
|
2011-07-13 15:19:57 +03:00
|
|
|
|
| binds INHERIT attrs ';'
|
2010-04-12 21:30:11 +03:00
|
|
|
|
{ $$ = $1;
|
2011-07-06 13:58:17 +03:00
|
|
|
|
foreach (AttrPath::iterator, i, *$3) {
|
2014-01-01 01:56:26 +02:00
|
|
|
|
if ($$->attrs.find(i->symbol) != $$->attrs.end())
|
|
|
|
|
dupAttr(i->symbol, makeCurPos(@3, data), $$->attrs[i->symbol].pos);
|
2010-05-07 15:43:57 +03:00
|
|
|
|
Pos pos = makeCurPos(@3, data);
|
2014-01-01 01:56:26 +02:00
|
|
|
|
$$->attrs[i->symbol] = ExprAttrs::AttrDef(new ExprVar(CUR_POS, i->symbol), pos, true);
|
2010-04-22 14:02:24 +03:00
|
|
|
|
}
|
2010-04-12 21:30:11 +03:00
|
|
|
|
}
|
2011-07-13 15:19:57 +03:00
|
|
|
|
| binds INHERIT '(' expr ')' attrs ';'
|
2010-04-12 21:30:11 +03:00
|
|
|
|
{ $$ = $1;
|
|
|
|
|
/* !!! Should ensure sharing of the expression in $4. */
|
2014-01-01 01:56:26 +02:00
|
|
|
|
foreach (AttrPath::iterator, i, *$6) {
|
|
|
|
|
if ($$->attrs.find(i->symbol) != $$->attrs.end())
|
|
|
|
|
dupAttr(i->symbol, makeCurPos(@6, data), $$->attrs[i->symbol].pos);
|
|
|
|
|
$$->attrs[i->symbol] = ExprAttrs::AttrDef(new ExprSelect($4, i->symbol), makeCurPos(@6, data));
|
2011-07-13 15:19:57 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2010-04-12 21:30:11 +03:00
|
|
|
|
| { $$ = new ExprAttrs; }
|
2004-02-04 19:23:26 +02:00
|
|
|
|
;
|
|
|
|
|
|
2011-07-13 15:19:57 +03:00
|
|
|
|
attrs
|
2014-01-01 01:56:26 +02:00
|
|
|
|
: attrs attr { $$ = $1; $1->push_back(AttrName(data->symbols.create($2))); }
|
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
|
|
|
|
| attrs string_attr
|
|
|
|
|
{ $$ = $1;
|
|
|
|
|
ExprString *str = dynamic_cast<ExprString *>($2);
|
|
|
|
|
if (str) {
|
2014-01-01 01:56:26 +02:00
|
|
|
|
$$->push_back(AttrName(str->s));
|
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
|
|
|
|
delete str;
|
|
|
|
|
} else
|
|
|
|
|
throw ParseError(format("dynamic attributes not allowed in inherit at %1%")
|
|
|
|
|
% makeCurPos(@2, data));
|
|
|
|
|
}
|
2014-01-01 01:56:26 +02:00
|
|
|
|
| { $$ = new AttrPath; }
|
2004-01-30 17:21:42 +02:00
|
|
|
|
;
|
|
|
|
|
|
2009-05-15 15:35:23 +03:00
|
|
|
|
attrpath
|
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
|
|
|
|
: attrpath '.' attr { $$ = $1; $1->push_back(AttrName(data->symbols.create($3))); }
|
|
|
|
|
| attrpath '.' string_attr
|
|
|
|
|
{ $$ = $1;
|
|
|
|
|
ExprString *str = dynamic_cast<ExprString *>($3);
|
|
|
|
|
if (str) {
|
|
|
|
|
$$->push_back(AttrName(str->s));
|
|
|
|
|
delete str;
|
|
|
|
|
} else
|
|
|
|
|
$$->push_back(AttrName($3));
|
|
|
|
|
}
|
|
|
|
|
| attr { $$ = new vector<AttrName>; $$->push_back(AttrName(data->symbols.create($1))); }
|
|
|
|
|
| string_attr
|
|
|
|
|
{ $$ = new vector<AttrName>;
|
|
|
|
|
ExprString *str = dynamic_cast<ExprString *>($1);
|
|
|
|
|
if (str) {
|
|
|
|
|
$$->push_back(AttrName(str->s));
|
|
|
|
|
delete str;
|
|
|
|
|
} else
|
|
|
|
|
$$->push_back(AttrName($1));
|
|
|
|
|
}
|
2011-07-13 15:19:57 +03:00
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
attr
|
|
|
|
|
: ID { $$ = $1; }
|
|
|
|
|
| OR_KW { $$ = "or"; }
|
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
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
string_attr
|
|
|
|
|
: '"' string_parts '"' { $$ = $2; }
|
2014-01-06 20:53:57 +02:00
|
|
|
|
| DOLLAR_CURLY expr '}' { $$ = new ExprConcatStrings(true, new vector<Expr*>(1, $2)); }
|
2009-05-15 15:35:23 +03:00
|
|
|
|
;
|
|
|
|
|
|
2004-01-30 17:21:42 +02:00
|
|
|
|
expr_list
|
2010-04-12 21:30:11 +03:00
|
|
|
|
: expr_list expr_select { $$ = $1; $1->elems.push_back($2); /* !!! dangerous */ }
|
|
|
|
|
| { $$ = new ExprList; }
|
2004-01-30 17:21:42 +02:00
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
formals
|
2010-04-12 21:30:11 +03:00
|
|
|
|
: formal ',' formals
|
2010-04-22 14:02:24 +03:00
|
|
|
|
{ $$ = $3; addFormal(CUR_POS, $$, *$1); }
|
2008-08-14 17:00:44 +03:00
|
|
|
|
| formal
|
2010-04-22 14:02:24 +03:00
|
|
|
|
{ $$ = new Formals; addFormal(CUR_POS, $$, *$1); $$->ellipsis = false; }
|
2008-08-14 17:00:44 +03:00
|
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
|
{ $$ = new Formals; $$->ellipsis = false; }
|
2008-08-14 17:00:44 +03:00
|
|
|
|
| ELLIPSIS
|
2010-04-12 21:30:11 +03:00
|
|
|
|
{ $$ = new Formals; $$->ellipsis = true; }
|
2004-01-30 17:21:42 +02:00
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
formal
|
2010-04-13 15:25:42 +03:00
|
|
|
|
: ID { $$ = new Formal(data->symbols.create($1), 0); }
|
|
|
|
|
| ID '?' expr { $$ = new Formal(data->symbols.create($1), $3); }
|
2004-01-30 17:21:42 +02:00
|
|
|
|
;
|
2013-09-02 17:29:15 +03:00
|
|
|
|
|
2004-01-30 17:21:42 +02:00
|
|
|
|
%%
|
2006-09-05 00:36:15 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
2010-04-13 15:25:42 +03:00
|
|
|
|
#include <eval.hh>
|
|
|
|
|
|
2006-09-05 00:36:15 +03:00
|
|
|
|
|
|
|
|
|
namespace nix {
|
2013-09-02 17:29:15 +03:00
|
|
|
|
|
2006-09-05 00:36:15 +03:00
|
|
|
|
|
2011-08-06 16:02:55 +03:00
|
|
|
|
Expr * EvalState::parse(const char * text,
|
2013-09-02 19:34:04 +03:00
|
|
|
|
const Path & path, const Path & basePath, StaticEnv & staticEnv)
|
2006-09-05 00:36:15 +03:00
|
|
|
|
{
|
|
|
|
|
yyscan_t scanner;
|
2011-08-06 19:05:24 +03:00
|
|
|
|
ParseData data(*this);
|
2006-09-05 00:36:15 +03:00
|
|
|
|
data.basePath = basePath;
|
2013-10-08 16:19:59 +03:00
|
|
|
|
data.path = data.symbols.create(path);
|
2006-09-05 00:36:15 +03:00
|
|
|
|
|
|
|
|
|
yylex_init(&scanner);
|
|
|
|
|
yy_scan_string(text, scanner);
|
|
|
|
|
int res = yyparse(scanner, &data);
|
|
|
|
|
yylex_destroy(scanner);
|
2013-09-02 17:29:15 +03:00
|
|
|
|
|
2009-05-15 15:35:23 +03:00
|
|
|
|
if (res) throw ParseError(data.error);
|
2006-09-05 00:36:15 +03:00
|
|
|
|
|
2013-10-08 15:40:51 +03:00
|
|
|
|
data.result->bindVars(staticEnv);
|
2013-09-02 17:29:15 +03:00
|
|
|
|
|
2006-09-05 00:36:15 +03:00
|
|
|
|
return data.result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-03 13:56:33 +03:00
|
|
|
|
Path resolveExprPath(Path path)
|
2006-09-05 00:36:15 +03:00
|
|
|
|
{
|
|
|
|
|
assert(path[0] == '/');
|
|
|
|
|
|
|
|
|
|
/* If `path' is a symlink, follow it. This is so that relative
|
|
|
|
|
path references work. */
|
|
|
|
|
struct stat st;
|
2007-01-15 16:50:25 +02:00
|
|
|
|
while (true) {
|
|
|
|
|
if (lstat(path.c_str(), &st))
|
|
|
|
|
throw SysError(format("getting status of `%1%'") % path);
|
|
|
|
|
if (!S_ISLNK(st.st_mode)) break;
|
|
|
|
|
path = absPath(readLink(path), dirOf(path));
|
|
|
|
|
}
|
2006-09-05 00:36:15 +03:00
|
|
|
|
|
|
|
|
|
/* If `path' refers to a directory, append `/default.nix'. */
|
|
|
|
|
if (S_ISDIR(st.st_mode))
|
|
|
|
|
path = canonPath(path + "/default.nix");
|
|
|
|
|
|
2013-09-03 13:56:33 +03:00
|
|
|
|
return path;
|
|
|
|
|
}
|
2011-08-06 16:02:55 +03:00
|
|
|
|
|
2013-09-03 13:56:33 +03:00
|
|
|
|
|
|
|
|
|
Expr * EvalState::parseExprFromFile(const Path & path)
|
|
|
|
|
{
|
|
|
|
|
return parse(readFile(path).c_str(), path, dirOf(path), staticBaseEnv);
|
2006-09-05 00:36:15 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-02 19:34:04 +03:00
|
|
|
|
Expr * EvalState::parseExprFromString(const string & s, const Path & basePath, StaticEnv & staticEnv)
|
|
|
|
|
{
|
|
|
|
|
return parse(s.c_str(), "(string)", basePath, staticEnv);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-08-06 16:02:55 +03:00
|
|
|
|
Expr * EvalState::parseExprFromString(const string & s, const Path & basePath)
|
2006-09-05 00:36:15 +03:00
|
|
|
|
{
|
2013-09-02 19:34:04 +03:00
|
|
|
|
return parseExprFromString(s, basePath, staticBaseEnv);
|
2006-09-05 00:36:15 +03:00
|
|
|
|
}
|
|
|
|
|
|
2011-08-06 19:05:24 +03:00
|
|
|
|
|
|
|
|
|
void EvalState::addToSearchPath(const string & s)
|
|
|
|
|
{
|
2011-08-06 20:48:57 +03:00
|
|
|
|
size_t pos = s.find('=');
|
|
|
|
|
string prefix;
|
|
|
|
|
Path path;
|
|
|
|
|
if (pos == string::npos) {
|
|
|
|
|
path = s;
|
|
|
|
|
} else {
|
|
|
|
|
prefix = string(s, 0, pos);
|
|
|
|
|
path = string(s, pos + 1);
|
|
|
|
|
}
|
2013-09-02 17:29:15 +03:00
|
|
|
|
|
2011-08-06 20:48:57 +03:00
|
|
|
|
path = absPath(path);
|
2011-08-06 19:05:24 +03:00
|
|
|
|
if (pathExists(path)) {
|
|
|
|
|
debug(format("adding path `%1%' to the search path") % path);
|
2011-08-06 20:48:57 +03:00
|
|
|
|
searchPath.insert(searchPathInsertionPoint, std::pair<string, Path>(prefix, path));
|
2011-08-06 19:05:24 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Path EvalState::findFile(const string & path)
|
|
|
|
|
{
|
2011-08-06 20:48:57 +03:00
|
|
|
|
foreach (SearchPath::iterator, i, searchPath) {
|
|
|
|
|
Path res;
|
2013-09-02 17:29:15 +03:00
|
|
|
|
if (i->first.empty())
|
2011-08-06 20:48:57 +03:00
|
|
|
|
res = i->second + "/" + path;
|
|
|
|
|
else {
|
|
|
|
|
if (path.compare(0, i->first.size(), i->first) != 0 ||
|
|
|
|
|
(path.size() > i->first.size() && path[i->first.size()] != '/'))
|
|
|
|
|
continue;
|
2011-08-06 21:45:28 +03:00
|
|
|
|
res = i->second +
|
|
|
|
|
(path.size() == i->first.size() ? "" : "/" + string(path, i->first.size()));
|
2011-08-06 20:48:57 +03:00
|
|
|
|
}
|
2011-08-06 19:05:24 +03:00
|
|
|
|
if (pathExists(res)) return canonPath(res);
|
|
|
|
|
}
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-05 00:36:15 +03:00
|
|
|
|
}
|