aboutsummaryrefslogtreecommitdiff
path: root/src/parser.y
blob: a87b6c6a25a1c0afe9b09eccbac554687a76bea7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */

%{

/* TODO: clean up this mess and I guess fix location tracking, it works for the
 * parser but each ast node should also get some location data
 * I'm trying something over in ast.c, but I'm not sure about it
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>

#include <lyn/parser.h>
#include <lyn/ast.h>

%}

%locations

%define parse.trace
%define parse.error verbose
%define api.pure full
%define lr.type ielr

%lex-param {void *scanner} {struct parser *parser}
%parse-param {void *scanner} {struct parser* parser}

%union {
	struct lyn_value ast;
	char *str;
	long long integer;
	double floating;
};

%token <str> STRING
%token <str> ID
%token <integer> INT
%token <floating> FLOAT

%token LPAREN "("
%token RPAREN ")"
%token LBRACE "{"
%token RBRACE "}"
%token SEMICOLON ";"
%token NL "nl"

%nterm <ast> arg args rev_args
%nterm <ast> cmd cmds rev_cmds

%{

/** Modifies the signature of yylex to fit our parser better. */
#define YY_DECL int yylex(YYSTYPE *yylval, YYLTYPE *yylloc, \
	                  void *yyscanner, struct parser *parser)

/**
 * Declare yylex.
 *
 * @param yylval Bison current value.
 * @param yylloc Bison location info.
 * @param yyscanner Flex scanner.
 * @param parser Current parser state.
 * @return \c 0 when succesful, \c 1 otherwise.
 * More info on yylex() can be found in the flex manual.
 */
YY_DECL;

/**
 * Convert bison location info to our own source location info.
 *
 * @param yylloc Bison location info.
 * @return Internal location info.
 */
static struct src_loc src_loc(YYLTYPE yylloc);

/**
 * Print parsing error.
 * Automatically called by bison.
 *
 * @param yylloc Location of error.
 * @param lexer Lexer.
 * @param parser Parser state.
 * @param msg Message to print.
 */
static void yyerror(YYLTYPE *yylloc, void *lexer,
		struct parser *parser, const char *msg);

%}

%start input;
%%

arg
	: "(" cmds ")" {$$ = $2; $$.kind = LYN_APPLY;}
	| "{" cmds "}" {$$ = $2; $$.kind = LYN_GROUP;}
	| ID {$$ = gen_id($1);}
	| STRING {$$ = gen_str($1);}
	| INT {$$ = gen_int($1);}
	| FLOAT {$$ = gen_float($1);}

rev_args
	: rev_args arg {$$ = $1; vect_append(struct lyn_value, $$.args, &$2);}
	| arg {$$ = gen_list(); vect_append(struct lyn_value, $$.args, &$1);}

args
	: rev_args

sep
	: sep ";"
	| sep NL
	| ";"
	| NL

cmd
	: args {$$ = $1; $$.kind = LYN_CMD;}

rev_cmds
	: rev_cmds sep cmd {$$ = $1; vect_append(struct lyn_value, $$.args, &$3);}
	| cmd {$$ = gen_list(); vect_append(struct lyn_value, $$.args, &$1);}

cmds
	: rev_cmds
	| rev_cmds sep
	| sep rev_cmds {$$ = $2;}
	| sep rev_cmds sep {$$ = $2;}
	| {$$ = gen_list();}

input
	: cmds {$1.kind = LYN_GROUP; parser->tree = $1;}
	| error {parser->failed = true;}

%%

#include "gen_lexer.inc"

static struct src_loc src_loc(YYLTYPE yylloc)
{
	struct src_loc loc;
	loc.first_line = yylloc.first_line;
	loc.last_line = yylloc.last_line;
	loc.first_col = yylloc.first_column;
	loc.last_col = yylloc.last_column;
	return loc;
}

static void yyerror(YYLTYPE *yylloc, void *lexer,
		struct parser *parser, const char *msg)
{
	(void)lexer;

	struct src_issue issue;
	issue.level = SRC_ERROR;
	issue.loc = src_loc(*yylloc);
	issue.fctx.fbuf = parser->buf;
	issue.fctx.fname = parser->fname;
	src_issue(issue, msg);
}

struct parser *create_parser()
{
	return calloc(1, sizeof(struct parser));
}

void destroy_parser(struct parser *p)
{
	yylex_destroy(p->lexer);
	free(p);
}

void parse(struct parser *p, const char *fname, const char *buf)
{
	p->fname = fname;
	p->buf = buf;

	p->failed = false;

	yylex_init(&p->lexer);
	yy_scan_string(buf, p->lexer);
	yyparse(p->lexer, p);
}