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
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
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
|
|
|
|
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-12 21:30:11 +03:00
|
|
|
Expr * result;
|
2006-09-05 00:06:23 +03:00
|
|
|
Path basePath;
|
|
|
|
Path path;
|
|
|
|
string error;
|
|
|
|
};
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
|
|
|
|
#if 0
|
2009-05-15 15:35:23 +03:00
|
|
|
static string showAttrPath(ATermList attrPath)
|
2009-05-14 17:29:45 +03:00
|
|
|
{
|
2009-05-15 15:35:23 +03:00
|
|
|
string s;
|
|
|
|
for (ATermIterator i(attrPath); i; ++i) {
|
|
|
|
if (!s.empty()) s += '.';
|
|
|
|
s += aterm2String(*i);
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct Tree
|
|
|
|
{
|
|
|
|
Expr leaf; ATerm pos; bool recursive;
|
|
|
|
typedef std::map<ATerm, Tree> Children;
|
|
|
|
Children children;
|
|
|
|
Tree() { leaf = 0; recursive = true; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static ATermList buildAttrs(const Tree & t, ATermList & nonrec)
|
|
|
|
{
|
|
|
|
ATermList res = ATempty;
|
|
|
|
for (Tree::Children::const_reverse_iterator i = t.children.rbegin();
|
|
|
|
i != t.children.rend(); ++i)
|
|
|
|
if (!i->second.recursive)
|
|
|
|
nonrec = ATinsert(nonrec, makeBind(i->first, i->second.leaf, i->second.pos));
|
|
|
|
else
|
|
|
|
res = ATinsert(res, i->second.leaf
|
|
|
|
? makeBind(i->first, i->second.leaf, i->second.pos)
|
|
|
|
: makeBind(i->first, makeAttrs(buildAttrs(i->second, nonrec)), makeNoPos()));
|
|
|
|
return res;
|
2009-05-14 17:29:45 +03:00
|
|
|
}
|
2010-04-12 21:30:11 +03:00
|
|
|
#endif
|
2009-05-14 17:29:45 +03:00
|
|
|
|
2004-04-06 01:27:41 +03:00
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
static void fixAttrs(ExprAttrs & attrs)
|
2004-11-03 20:12:03 +02:00
|
|
|
{
|
2010-04-12 21:30:11 +03:00
|
|
|
#if 0
|
2009-05-15 15:35:23 +03:00
|
|
|
Tree attrs;
|
2009-05-14 17:29:45 +03:00
|
|
|
|
2010-03-14 13:58:07 +02:00
|
|
|
/* This ATermMap is needed to ensure that the `leaf' fields in the
|
|
|
|
Tree nodes are not garbage collected. */
|
|
|
|
ATermMap gcRoots;
|
|
|
|
|
2006-09-05 00:36:15 +03:00
|
|
|
for (ATermIterator i(as); i; ++i) {
|
2009-05-15 15:35:23 +03:00
|
|
|
ATermList names, attrPath; Expr src, e; ATerm name, pos;
|
|
|
|
|
2006-09-05 00:36:15 +03:00
|
|
|
if (matchInherit(*i, src, names, pos)) {
|
|
|
|
bool fromScope = matchScope(src);
|
|
|
|
for (ATermIterator j(names); j; ++j) {
|
2009-05-15 15:35:23 +03:00
|
|
|
if (attrs.children.find(*j) != attrs.children.end())
|
|
|
|
throw ParseError(format("duplicate definition of attribute `%1%' at %2%")
|
|
|
|
% showAttrPath(ATmakeList1(*j)) % showPos(pos));
|
|
|
|
Tree & t(attrs.children[*j]);
|
2010-03-14 13:58:07 +02:00
|
|
|
Expr leaf = fromScope ? makeVar(*j) : makeSelect(src, *j);
|
|
|
|
gcRoots.set(leaf, leaf);
|
|
|
|
t.leaf = leaf;
|
2009-05-15 16:46:13 +03:00
|
|
|
t.pos = pos;
|
|
|
|
if (recursive && fromScope) t.recursive = false;
|
2006-09-05 00:36:15 +03:00
|
|
|
}
|
2009-05-15 15:35:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
else if (matchBindAttrPath(*i, attrPath, e, pos)) {
|
|
|
|
|
|
|
|
Tree * t(&attrs);
|
|
|
|
|
|
|
|
for (ATermIterator j(attrPath); j; ) {
|
|
|
|
name = *j; ++j;
|
|
|
|
if (t->leaf) throw ParseError(format("attribute set containing `%1%' at %2% already defined at %3%")
|
2010-04-13 00:21:24 +03:00
|
|
|
% showAttrPath(attrPath) % showPos(pos) % showPos(t->pos));
|
2009-05-15 15:35:23 +03:00
|
|
|
t = &(t->children[name]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (t->leaf)
|
|
|
|
throw ParseError(format("duplicate definition of attribute `%1%' at %2% and %3%")
|
2010-04-13 00:21:24 +03:00
|
|
|
% showAttrPath(attrPath) % showPos(pos) % showPos(t->pos));
|
2009-05-15 15:35:23 +03:00
|
|
|
if (!t->children.empty())
|
|
|
|
throw ParseError(format("duplicate definition of attribute `%1%' at %2%")
|
|
|
|
% showAttrPath(attrPath) % showPos(pos));
|
|
|
|
|
|
|
|
t->leaf = e; t->pos = pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
else abort(); /* can't happen */
|
2009-05-14 17:29:45 +03:00
|
|
|
}
|
|
|
|
|
2009-05-15 15:35:23 +03:00
|
|
|
ATermList nonrec = ATempty;
|
|
|
|
ATermList rec = buildAttrs(attrs, nonrec);
|
|
|
|
|
|
|
|
return recursive ? makeRec(rec, nonrec) : makeAttrs(rec);
|
2010-04-12 21:30:11 +03:00
|
|
|
#endif
|
2009-05-14 17:29:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
#if 0
|
2009-05-14 17:29:45 +03:00
|
|
|
static void checkPatternVars(ATerm pos, ATermMap & map, Pattern pat)
|
|
|
|
{
|
2010-03-25 14:19:41 +02:00
|
|
|
ATerm name = sNoAlias;
|
2009-05-14 17:29:45 +03:00
|
|
|
ATermList formals;
|
|
|
|
ATermBool ellipsis;
|
2010-03-25 14:19:41 +02:00
|
|
|
|
|
|
|
if (matchAttrsPat(pat, formals, ellipsis, name)) {
|
2009-05-14 17:29:45 +03:00
|
|
|
for (ATermIterator i(formals); i; ++i) {
|
2010-03-25 14:19:41 +02:00
|
|
|
ATerm d1, name2;
|
|
|
|
if (!matchFormal(*i, name2, d1)) abort();
|
|
|
|
if (map.get(name2))
|
2009-05-15 15:35:23 +03:00
|
|
|
throw ParseError(format("duplicate formal function argument `%1%' at %2%")
|
2010-03-25 14:19:41 +02:00
|
|
|
% aterm2String(name2) % showPos(pos));
|
|
|
|
map.set(name2, name2);
|
2009-05-14 17:29:45 +03:00
|
|
|
}
|
|
|
|
}
|
2010-03-25 14:19:41 +02:00
|
|
|
|
|
|
|
else matchVarPat(pat, name);
|
|
|
|
|
|
|
|
if (name != sNoAlias) {
|
|
|
|
if (map.get(name))
|
|
|
|
throw ParseError(format("duplicate formal function argument `%1%' at %2%")
|
|
|
|
% aterm2String(name) % showPos(pos));
|
|
|
|
map.set(name, name);
|
2006-09-05 00:36:15 +03:00
|
|
|
}
|
2009-05-14 17:29:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void checkPatternVars(ATerm pos, Pattern pat)
|
|
|
|
{
|
|
|
|
ATermMap map;
|
|
|
|
checkPatternVars(pos, map, pat);
|
2004-11-03 20:12:03 +02:00
|
|
|
}
|
2010-04-13 01:03:27 +03:00
|
|
|
#endif
|
2004-11-03 20:12:03 +02:00
|
|
|
|
2006-09-05 00:36:15 +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
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
static Pos makeCurPos(YYLTYPE * loc, ParseData * data)
|
2004-04-06 01:27:41 +03:00
|
|
|
{
|
2010-04-12 21:30:11 +03:00
|
|
|
Pos pos;
|
|
|
|
pos.file = data->path;
|
|
|
|
pos.line = loc->first_line;
|
|
|
|
pos.column = loc->first_column;
|
|
|
|
return pos;
|
2004-04-06 01:27:41 +03:00
|
|
|
}
|
|
|
|
|
2004-10-27 01:54:26 +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%")
|
|
|
|
% 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-12 21:30:11 +03:00
|
|
|
char * id;
|
|
|
|
char * path;
|
|
|
|
char * uri;
|
|
|
|
std::list<std::string> * 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
|
|
|
|
{ $$ = new ExprLambda(CUR_POS, $1, false, 0, $3); /* checkPatternVars(CUR_POS, $1); $$ = makeFunction($1, $3, CUR_POS); */ }
|
|
|
|
| '{' formals '}' ':' expr_function
|
|
|
|
{ $$ = new ExprLambda(CUR_POS, "", true, $2, $5); }
|
|
|
|
| '{' formals '}' '@' ID ':' expr_function
|
|
|
|
{ $$ = new ExprLambda(CUR_POS, $5, true, $2, $7); }
|
|
|
|
| ID '@' '{' formals '}' ':' expr_function
|
|
|
|
{ $$ = new ExprLambda(CUR_POS, $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-12 21:30:11 +03:00
|
|
|
{ $2->attrs["<let-body>"] = $4; $2->recursive = true; fixAttrs(*$2); $$ = new ExprSelect($2, "<let-body>"); }
|
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 00:21:24 +03:00
|
|
|
| expr_op '?' ID { $$ = new ExprOpHasAttr($1, $3); }
|
|
|
|
| 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-12 21:30:11 +03:00
|
|
|
{ $$ = new ExprSelect($1, $3); }
|
2004-01-30 17:21:42 +02:00
|
|
|
| expr_simple { $$ = $1; }
|
|
|
|
;
|
|
|
|
|
|
|
|
expr_simple
|
2010-04-12 21:30:11 +03:00
|
|
|
: ID { $$ = new ExprVar($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 00:21:24 +03:00
|
|
|
{ fixAttrs(*$3); $3->recursive = true; $$ = new ExprSelect($3, "body"); }
|
2004-02-02 23:39:33 +02:00
|
|
|
| REC '{' binds '}'
|
2010-04-12 21:30:11 +03:00
|
|
|
{ fixAttrs(*$3); $3->recursive = true; $$ = $3; }
|
2004-02-02 23:39:33 +02:00
|
|
|
| '{' binds '}'
|
2010-04-12 21:30:11 +03:00
|
|
|
{ fixAttrs(*$2); $$ = $2; }
|
|
|
|
| '[' 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-04-12 21:30:11 +03:00
|
|
|
: binds ID '=' expr ';' { $$ = $1; $$->attrs[$2] = $4; }
|
|
|
|
| binds INHERIT ids ';'
|
|
|
|
{ $$ = $1;
|
|
|
|
foreach (list<string>::iterator, i, *$3)
|
|
|
|
$$->inherited.push_back(*i);
|
|
|
|
}
|
|
|
|
| binds INHERIT '(' expr ')' ids ';'
|
|
|
|
{ $$ = $1;
|
|
|
|
/* !!! Should ensure sharing of the expression in $4. */
|
|
|
|
foreach (list<string>::iterator, i, *$6)
|
|
|
|
$$->attrs[*i] = new ExprSelect($4, *i);
|
|
|
|
}
|
|
|
|
| { $$ = new ExprAttrs; }
|
2004-02-04 19:23:26 +02:00
|
|
|
;
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
ids
|
|
|
|
: ids ID { $$ = $1; $1->push_back($2); /* !!! dangerous */ }
|
|
|
|
| { $$ = new list<string>; }
|
2004-01-30 17:21:42 +02:00
|
|
|
;
|
|
|
|
|
2009-05-15 15:35:23 +03:00
|
|
|
attrpath
|
|
|
|
: attrpath '.' ID { $$ = ATinsert($1, $3); }
|
|
|
|
| ID { $$ = ATmakeList1($1); }
|
|
|
|
;
|
|
|
|
|
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
|
|
|
|
{ $$ = $3; $$->formals.push_front(*$1); /* !!! dangerous */ }
|
2008-08-14 17:00:44 +03:00
|
|
|
| formal
|
2010-04-12 21:30:11 +03:00
|
|
|
{ $$ = new Formals; $$->formals.push_back(*$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-12 21:30:11 +03:00
|
|
|
: ID { $$ = new Formal($1, 0); }
|
|
|
|
| ID '?' expr { $$ = new Formal($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>
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
static Expr * parse(const char * text, const Path & path, const Path & basePath)
|
2006-09-05 00:36:15 +03:00
|
|
|
{
|
|
|
|
yyscan_t scanner;
|
|
|
|
ParseData data;
|
|
|
|
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-03-29 17:37:56 +03:00
|
|
|
// !!! checkVarDefs(state.primOps, data.result);
|
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-12 21:30:11 +03:00
|
|
|
Expr * 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 (stat(path.c_str(), &st))
|
|
|
|
throw SysError(format("getting status of `%1%'") % path);
|
|
|
|
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-12 21:30:11 +03:00
|
|
|
return parse(readFile(path).c_str(), path, dirOf(path));
|
2006-09-05 00:36:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-12 21:30:11 +03:00
|
|
|
Expr * parseExprFromString(const string & s, const Path & basePath)
|
2006-09-05 00:36:15 +03:00
|
|
|
{
|
2010-04-12 21:30:11 +03:00
|
|
|
return parse(s.c_str(), "(string)", basePath);
|
2006-09-05 00:36:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|