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 */
|
2004-01-30 17:21:42 +02:00
|
|
|
%parse-param { yyscan_t scanner }
|
2006-09-05 00:06:23 +03:00
|
|
|
%parse-param { ParseData * data }
|
2004-01-30 17:21:42 +02:00
|
|
|
%lex-param { yyscan_t scanner }
|
|
|
|
|
2006-09-05 00:36:15 +03:00
|
|
|
|
2004-01-30 17:21:42 +02:00
|
|
|
%{
|
2006-10-02 17:43:15 +03:00
|
|
|
/* Newer versions of Bison copy the declarations below to
|
|
|
|
parser-tab.hh, which sucks bigtime since lexer.l doesn't want that
|
|
|
|
stuff. So allow it to be excluded. */
|
|
|
|
#ifndef BISON_HEADER_HACK
|
|
|
|
#define BISON_HEADER_HACK
|
2004-01-30 17:21:42 +02:00
|
|
|
|
2006-09-05 00:36:15 +03:00
|
|
|
#include "util.hh"
|
2004-10-27 01:54:26 +03:00
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
#include "nixexpr.hh"
|
|
|
|
|
2006-09-05 01:08:40 +03:00
|
|
|
#include "parser-tab.hh"
|
|
|
|
#include "lexer-tab.hh"
|
2009-01-12 14:51:28 +02:00
|
|
|
#define YYSTYPE YYSTYPE // workaround a bug in Bison 2.4
|
2006-09-05 01:08:40 +03:00
|
|
|
|
2010-10-04 20:55:38 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
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 {
|
2006-09-05 00:36:15 +03:00
|
|
|
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
struct ParseData
|
2004-01-30 17:21:42 +02:00
|
|
|
{
|
2010-04-13 15:25:42 +03:00
|
|
|
SymbolTable & symbols;
|
2010-04-12 21:30:11 +03:00
|
|
|
Expr * result;
|
2006-09-05 00:06:23 +03:00
|
|
|
Path basePath;
|
|
|
|
Path path;
|
|
|
|
string error;
|
2010-04-13 15:25:42 +03:00
|
|
|
Symbol sLetBody;
|
|
|
|
ParseData(SymbolTable & symbols)
|
|
|
|
: symbols(symbols)
|
|
|
|
, sLetBody(symbols.create("<let-body>"))
|
|
|
|
{ };
|
2006-09-05 00:06:23 +03:00
|
|
|
};
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
|
2010-04-13 15:25:42 +03:00
|
|
|
static string showAttrPath(const vector<Symbol> & attrPath)
|
2009-05-14 17:29:45 +03:00
|
|
|
{
|
2009-05-15 15:35:23 +03:00
|
|
|
string s;
|
2010-04-13 15:25:42 +03:00
|
|
|
foreach (vector<Symbol>::const_iterator, i, attrPath) {
|
2009-05-15 15:35:23 +03:00
|
|
|
if (!s.empty()) s += '.';
|
2010-04-13 02:33:23 +03:00
|
|
|
s += *i;
|
2009-05-15 15:35:23 +03:00
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
2010-04-22 14:02:24 +03:00
|
|
|
|
|
|
|
|
2010-05-06 19:46:48 +03:00
|
|
|
static void dupAttr(const vector<Symbol> & 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
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
{
|
|
|
|
vector<Symbol> attrPath; attrPath.push_back(attr);
|
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
|
|
|
}
|
2009-05-15 15:35:23 +03:00
|
|
|
|
|
|
|
|
2010-04-13 15:25:42 +03:00
|
|
|
static void addAttr(ExprAttrs * attrs, const vector<Symbol> & attrPath,
|
|
|
|
Expr * e, const Pos & pos)
|
2009-05-15 15:35:23 +03:00
|
|
|
{
|
2010-04-13 02:33:23 +03:00
|
|
|
unsigned int n = 0;
|
2010-04-13 15:25:42 +03:00
|
|
|
foreach (vector<Symbol>::const_iterator, i, attrPath) {
|
2010-04-13 02:33:23 +03:00
|
|
|
n++;
|
2010-05-06 19:46:48 +03:00
|
|
|
ExprAttrs::Attrs::iterator j = attrs->attrs.find(*i);
|
|
|
|
if (j != attrs->attrs.end()) {
|
|
|
|
ExprAttrs * attrs2 = dynamic_cast<ExprAttrs *>(j->second.first);
|
|
|
|
if (!attrs2 || n == attrPath.size()) dupAttr(attrPath, pos, j->second.second);
|
2010-04-13 02:33:23 +03:00
|
|
|
attrs = attrs2;
|
|
|
|
} else {
|
2010-04-22 14:02:24 +03:00
|
|
|
if (attrs->attrNames.find(*i) != attrs->attrNames.end())
|
2010-05-06 19:46:48 +03:00
|
|
|
dupAttr(attrPath, pos, attrs->attrNames[*i]);
|
|
|
|
attrs->attrNames[*i] = pos;
|
2010-04-13 02:33:23 +03:00
|
|
|
if (n == attrPath.size())
|
2010-05-06 19:46:48 +03:00
|
|
|
attrs->attrs[*i] = ExprAttrs::Attr(e, pos);
|
2010-04-13 02:33:23 +03:00
|
|
|
else {
|
|
|
|
ExprAttrs * nested = new ExprAttrs;
|
2010-05-06 19:46:48 +03:00
|
|
|
attrs->attrs[*i] = ExprAttrs::Attr(nested, pos);
|
2010-04-13 02:33:23 +03:00
|
|
|
attrs = nested;
|
2006-09-05 00:36:15 +03:00
|
|
|
}
|
2009-05-15 15:35:23 +03:00
|
|
|
}
|
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-04-13 01:03:27 +03:00
|
|
|
static Expr * stripIndentation(vector<Expr *> & es)
|
2007-11-30 18:48:45 +02:00
|
|
|
{
|
2010-04-13 01:03:27 +03:00
|
|
|
if (es.empty()) return new ExprString("");
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
es2->push_back(new ExprString(s2));
|
2007-11-30 18:48:45 +02:00
|
|
|
}
|
|
|
|
|
2010-04-13 01:03:27 +03:00
|
|
|
return new ExprConcatStrings(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
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-02 17:43:15 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-01-30 17:21:42 +02:00
|
|
|
%}
|
|
|
|
|
|
|
|
%union {
|
2010-04-12 21:30:11 +03:00
|
|
|
nix::Expr * e;
|
|
|
|
nix::ExprList * list;
|
|
|
|
nix::ExprAttrs * attrs;
|
|
|
|
nix::Formals * formals;
|
|
|
|
nix::Formal * formal;
|
2010-04-12 13:38:18 +03:00
|
|
|
int n;
|
2010-04-13 15:25:42 +03:00
|
|
|
char * id; // !!! -> Symbol
|
2010-04-12 21:30:11 +03:00
|
|
|
char * path;
|
|
|
|
char * uri;
|
2010-04-13 15:25:42 +03:00
|
|
|
std::vector<nix::Symbol> * ids;
|
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
|
2010-04-13 01:03:27 +03:00
|
|
|
%type <ids> ids attrpath
|
|
|
|
%type <string_parts> string_parts ind_string_parts
|
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
|
2010-04-12 21:30:11 +03:00
|
|
|
%token <path> PATH
|
|
|
|
%token <uri> URI
|
2006-10-02 18:52:44 +03:00
|
|
|
%token IF THEN ELSE ASSERT WITH LET IN REC INHERIT EQ NEQ AND OR IMPL
|
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
|
2004-02-04 18:49:51 +02:00
|
|
|
%right UPDATE
|
2004-01-30 17:21:42 +02:00
|
|
|
%left NEG
|
2004-10-26 20:01:35 +03:00
|
|
|
%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 '~'
|
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
|
2010-04-13 16:42:25 +03:00
|
|
|
{ $$ = 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
|
2010-04-13 00:21:24 +03:00
|
|
|
: '!' expr_op %prec NEG { $$ = new ExprOpNot($2); }
|
|
|
|
| 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); }
|
|
|
|
| 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); }
|
2010-04-13 15:25:42 +03:00
|
|
|
| expr_op '?' ID { $$ = new ExprOpHasAttr($1, data->symbols.create($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);
|
|
|
|
$$ = new ExprConcatStrings(l);
|
|
|
|
}
|
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
|
|
|
|
: expr_select '.' ID
|
2010-04-13 15:25:42 +03:00
|
|
|
{ $$ = new ExprSelect($1, data->symbols.create($3)); }
|
2004-01-30 17:21:42 +02:00
|
|
|
| expr_simple { $$ = $1; }
|
|
|
|
;
|
|
|
|
|
|
|
|
expr_simple
|
2010-04-13 15:25:42 +03:00
|
|
|
: ID { $$ = new ExprVar(data->symbols.create($1)); }
|
2010-04-13 00:21:24 +03:00
|
|
|
| INT { $$ = new ExprInt($1); }
|
2006-05-01 17:01:47 +03:00
|
|
|
| '"' string_parts '"' {
|
2010-04-13 00:21:24 +03:00
|
|
|
/* For efficiency, and to simplify parse trees a bit. */
|
|
|
|
if ($2->empty()) $$ = new ExprString("");
|
|
|
|
else if ($2->size() == 1) $$ = $2->front();
|
|
|
|
else $$ = new ExprConcatStrings($2);
|
2006-05-01 17:01:47 +03:00
|
|
|
}
|
2007-11-30 18:48:45 +02:00
|
|
|
| IND_STRING_OPEN ind_string_parts IND_STRING_CLOSE {
|
2010-04-13 01:03:27 +03:00
|
|
|
$$ = stripIndentation(*$2);
|
2007-11-30 18:48:45 +02:00
|
|
|
}
|
2010-04-12 21:30:11 +03:00
|
|
|
| PATH { $$ = new ExprPath(absPath($1, data->basePath)); }
|
|
|
|
| URI { $$ = new ExprString($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
|
2010-04-13 00:21:24 +03:00
|
|
|
: string_parts STR { $$ = $1; $1->push_back($2); }
|
|
|
|
| string_parts DOLLAR_CURLY expr '}' { backToString(scanner); $$ = $1; $1->push_back($3); }
|
|
|
|
| { $$ = new vector<Expr *>; }
|
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
|
2010-05-06 19:46:48 +03:00
|
|
|
: binds attrpath '=' expr ';' { $$ = $1; addAttr($$, *$2, $4, makeCurPos(@2, data)); }
|
2010-04-12 21:30:11 +03:00
|
|
|
| binds INHERIT ids ';'
|
|
|
|
{ $$ = $1;
|
2010-04-22 14:02:24 +03:00
|
|
|
foreach (vector<Symbol>::iterator, i, *$3) {
|
|
|
|
if ($$->attrNames.find(*i) != $$->attrNames.end())
|
2010-05-06 19:46:48 +03:00
|
|
|
dupAttr(*i, makeCurPos(@3, data), $$->attrNames[*i]);
|
2010-05-07 15:43:57 +03:00
|
|
|
Pos pos = makeCurPos(@3, data);
|
|
|
|
$$->inherited.push_back(ExprAttrs::Inherited(*i, pos));
|
|
|
|
$$->attrNames[*i] = pos;
|
2010-04-22 14:02:24 +03:00
|
|
|
}
|
2010-04-12 21:30:11 +03:00
|
|
|
}
|
|
|
|
| binds INHERIT '(' expr ')' ids ';'
|
|
|
|
{ $$ = $1;
|
|
|
|
/* !!! Should ensure sharing of the expression in $4. */
|
2010-04-22 14:02:24 +03:00
|
|
|
foreach (vector<Symbol>::iterator, i, *$6) {
|
|
|
|
if ($$->attrNames.find(*i) != $$->attrNames.end())
|
2010-05-06 19:46:48 +03:00
|
|
|
dupAttr(*i, makeCurPos(@6, data), $$->attrNames[*i]);
|
|
|
|
$$->attrs[*i] = ExprAttrs::Attr(new ExprSelect($4, *i), makeCurPos(@6, data));
|
|
|
|
$$->attrNames[*i] = makeCurPos(@6, data);
|
|
|
|
}}
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
| { $$ = new ExprAttrs; }
|
2004-02-04 19:23:26 +02:00
|
|
|
;
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
ids
|
2010-04-13 15:25:42 +03:00
|
|
|
: ids ID { $$ = $1; $1->push_back(data->symbols.create($2)); /* !!! dangerous */ }
|
|
|
|
| { $$ = new vector<Symbol>; }
|
2004-01-30 17:21:42 +02:00
|
|
|
;
|
|
|
|
|
2009-05-15 15:35:23 +03:00
|
|
|
attrpath
|
2010-04-13 15:25:42 +03:00
|
|
|
: attrpath '.' ID { $$ = $1; $1->push_back(data->symbols.create($3)); }
|
|
|
|
| ID { $$ = new vector<Symbol>; $$->push_back(data->symbols.create($1)); }
|
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
|
|
|
;
|
|
|
|
|
|
|
|
%%
|
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 {
|
|
|
|
|
|
|
|
|
2010-04-13 15:25:42 +03:00
|
|
|
static Expr * parse(EvalState & state, const char * text,
|
|
|
|
const Path & path, const Path & basePath)
|
2006-09-05 00:36:15 +03:00
|
|
|
{
|
|
|
|
yyscan_t scanner;
|
2010-04-13 15:25:42 +03:00
|
|
|
ParseData data(state.symbols);
|
2006-09-05 00:36:15 +03:00
|
|
|
data.basePath = basePath;
|
|
|
|
data.path = path;
|
|
|
|
|
|
|
|
yylex_init(&scanner);
|
|
|
|
yy_scan_string(text, scanner);
|
|
|
|
int res = yyparse(scanner, &data);
|
|
|
|
yylex_destroy(scanner);
|
|
|
|
|
2009-05-15 15:35:23 +03:00
|
|
|
if (res) throw ParseError(data.error);
|
2006-09-05 00:36:15 +03:00
|
|
|
|
|
|
|
try {
|
2010-04-15 01:59:39 +03:00
|
|
|
data.result->bindVars(state.staticBaseEnv);
|
2006-09-05 00:36:15 +03:00
|
|
|
} catch (Error & e) {
|
2009-05-15 15:35:23 +03:00
|
|
|
throw ParseError(format("%1%, in `%2%'") % e.msg() % path);
|
2006-09-05 00:36:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return data.result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-13 15:25:42 +03:00
|
|
|
Expr * parseExprFromFile(EvalState & state, 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");
|
|
|
|
|
2007-08-07 18:00:13 +03:00
|
|
|
/* Read and parse the input file. */
|
2010-04-13 15:25:42 +03:00
|
|
|
return parse(state, readFile(path).c_str(), path, dirOf(path));
|
2006-09-05 00:36:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-13 15:25:42 +03:00
|
|
|
Expr * parseExprFromString(EvalState & state,
|
|
|
|
const string & s, const Path & basePath)
|
2006-09-05 00:36:15 +03:00
|
|
|
{
|
2010-04-13 15:25:42 +03:00
|
|
|
return parse(state, s.c_str(), "(string)", basePath);
|
2006-09-05 00:36:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|