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 }
|
2010-10-24 00:11:59 +03:00
|
|
|
|
%lex-param { 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 {
|
|
|
|
|
|
|
|
|
|
#ifndef BISON_HEADER
|
|
|
|
|
#define BISON_HEADER
|
|
|
|
|
|
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"
|
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 {
|
|
|
|
|
|
|
|
|
|
struct ParseData
|
|
|
|
|
{
|
2011-08-06 19:05:24 +03:00
|
|
|
|
EvalState & state;
|
2010-10-24 00:11:59 +03:00
|
|
|
|
SymbolTable & symbols;
|
|
|
|
|
Expr * result;
|
|
|
|
|
Path basePath;
|
|
|
|
|
Path path;
|
|
|
|
|
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>"))
|
|
|
|
|
{ };
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#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"
|
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>
|
|
|
|
|
|
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 {
|
2006-09-05 00:36: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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
{
|
2011-07-06 13:58:17 +03:00
|
|
|
|
AttrPath 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
|
|
|
|
|
|
|
|
|
|
2011-07-06 13:58:17 +03: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
|
|
|
|
{
|
2010-04-13 02:33:23 +03:00
|
|
|
|
unsigned int n = 0;
|
2011-07-06 13:58:17 +03:00
|
|
|
|
foreach (AttrPath::const_iterator, i, attrPath) {
|
2010-04-13 02:33:23 +03:00
|
|
|
|
n++;
|
2010-10-24 22:52:33 +03:00
|
|
|
|
ExprAttrs::AttrDefs::iterator j = attrs->attrs.find(*i);
|
2010-05-06 19:46:48 +03:00
|
|
|
|
if (j != attrs->attrs.end()) {
|
2010-10-24 22:52:33 +03:00
|
|
|
|
if (!j->second.inherited) {
|
|
|
|
|
ExprAttrs * attrs2 = dynamic_cast<ExprAttrs *>(j->second.e);
|
|
|
|
|
if (!attrs2 || n == attrPath.size()) dupAttr(attrPath, pos, j->second.pos);
|
|
|
|
|
attrs = attrs2;
|
|
|
|
|
} else
|
|
|
|
|
dupAttr(attrPath, pos, j->second.pos);
|
2010-04-13 02:33:23 +03:00
|
|
|
|
} else {
|
|
|
|
|
if (n == attrPath.size())
|
2010-10-24 22:52:33 +03:00
|
|
|
|
attrs->attrs[*i] = ExprAttrs::AttrDef(e, pos);
|
2010-04-13 02:33:23 +03:00
|
|
|
|
else {
|
|
|
|
|
ExprAttrs * nested = new ExprAttrs;
|
2010-10-24 22:52:33 +03:00
|
|
|
|
attrs->attrs[*i] = ExprAttrs::AttrDef(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-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(""));
|
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
|
|
|
|
|
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-03-08 02:24:59 +02:00
|
|
|
|
return es2->size() == 1 ? (*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 {
|
2011-07-06 13:58:17 +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;
|
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;
|
2011-07-13 15:19:57 +03:00
|
|
|
|
std::vector<nix::Symbol> * 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
|
2011-07-13 15:19:57 +03:00
|
|
|
|
%type <attrNames> attrs attrpath
|
2010-04-13 01:03:27 +03:00
|
|
|
|
%type <string_parts> string_parts ind_string_parts
|
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
|
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); }
|
2011-07-06 13:58:17 +03: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
|
|
|
|
}
|
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
|
2011-07-13 15:19:57 +03:00
|
|
|
|
{ $$ = new ExprSelect($1, *$3, 0); }
|
|
|
|
|
| expr_simple '.' attrpath OR_KW expr_select
|
|
|
|
|
{ $$ = new ExprSelect($1, *$3, $5); }
|
|
|
|
|
| /* Backwards compatibility: because Nixpkgs has a rarely used
|
|
|
|
|
function named ‘or’, allow stuff like ‘map or [...]’. */
|
|
|
|
|
expr_simple OR_KW
|
|
|
|
|
{ $$ = new ExprApp($1, new ExprVar(data->symbols.create("or"))); }
|
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. */
|
2010-10-24 00:11:59 +03:00
|
|
|
|
if ($2->empty()) $$ = new ExprString(data->symbols.create(""));
|
2010-04-13 00:21:24 +03:00
|
|
|
|
else if ($2->size() == 1) $$ = $2->front();
|
2013-03-08 02:24:59 +02:00
|
|
|
|
else $$ = new ExprConcatStrings(true, $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-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
|
|
|
|
|
‘abort’. */
|
|
|
|
|
$$ = path2 == ""
|
|
|
|
|
? (Expr * ) new ExprApp(
|
|
|
|
|
new ExprVar(data->symbols.create("throw")),
|
|
|
|
|
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
|
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)); }
|
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) {
|
2010-10-24 22:52:33 +03:00
|
|
|
|
if ($$->attrs.find(*i) != $$->attrs.end())
|
|
|
|
|
dupAttr(*i, makeCurPos(@3, data), $$->attrs[*i].pos);
|
2010-05-07 15:43:57 +03:00
|
|
|
|
Pos pos = makeCurPos(@3, data);
|
2010-10-24 22:52:33 +03:00
|
|
|
|
$$->attrs[*i] = ExprAttrs::AttrDef(*i, pos);
|
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. */
|
2011-07-06 15:28:57 +03:00
|
|
|
|
foreach (vector<Symbol>::iterator, i, *$6) {
|
2010-10-24 22:52:33 +03:00
|
|
|
|
if ($$->attrs.find(*i) != $$->attrs.end())
|
|
|
|
|
dupAttr(*i, makeCurPos(@6, data), $$->attrs[*i].pos);
|
|
|
|
|
$$->attrs[*i] = ExprAttrs::AttrDef(new ExprSelect($4, *i), 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
|
|
|
|
|
: attrs attr { $$ = $1; $1->push_back(data->symbols.create($2)); /* !!! dangerous */ }
|
2010-04-13 15:25:42 +03:00
|
|
|
|
| { $$ = new vector<Symbol>; }
|
2004-01-30 17:21:42 +02:00
|
|
|
|
;
|
|
|
|
|
|
2009-05-15 15:35:23 +03:00
|
|
|
|
attrpath
|
2011-07-13 15:19:57 +03:00
|
|
|
|
: attrpath '.' attr { $$ = $1; $1->push_back(data->symbols.create($3)); }
|
|
|
|
|
| attr { $$ = new vector<Symbol>; $$->push_back(data->symbols.create($1)); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
attr
|
|
|
|
|
: ID { $$ = $1; }
|
|
|
|
|
| OR_KW { $$ = "or"; }
|
2011-07-13 18:53:24 +03:00
|
|
|
|
| '"' STR '"'
|
|
|
|
|
{ $$ = strdup(((string) ((ExprString *) $2)->s).c_str()); delete $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
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
%%
|
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 {
|
|
|
|
|
|
|
|
|
|
|
2011-08-06 16:02:55 +03:00
|
|
|
|
Expr * EvalState::parse(const char * text,
|
2010-04-13 15:25:42 +03:00
|
|
|
|
const Path & path, const Path & basePath)
|
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;
|
|
|
|
|
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 {
|
2011-08-06 16:02:55 +03:00
|
|
|
|
data.result->bindVars(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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-08-06 16:02:55 +03:00
|
|
|
|
Expr * EvalState::parseExprFromFile(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");
|
|
|
|
|
|
2011-08-06 16:02:55 +03:00
|
|
|
|
/* Read and parse the input file, unless it's already in the parse
|
|
|
|
|
tree cache. */
|
|
|
|
|
Expr * e = parseTrees[path];
|
|
|
|
|
if (!e) {
|
|
|
|
|
e = parse(readFile(path).c_str(), path, dirOf(path));
|
|
|
|
|
parseTrees[path] = e;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return e;
|
2006-09-05 00:36:15 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
{
|
2011-08-06 16:02:55 +03:00
|
|
|
|
return parse(s.c_str(), "(string)", basePath);
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
if (i->first.empty())
|
|
|
|
|
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
|
|
|
|
}
|