forked from arut/nginx-let-module
-
Notifications
You must be signed in to change notification settings - Fork 2
/
let.y
225 lines (137 loc) · 4.08 KB
/
let.y
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
%{
#define YYSTYPE ngx_let_node_t*
#include "let.h"
#include "let.tab.h"
#include <ngx_http.h>
static ngx_conf_t *conf;
static unsigned inpos;
static ngx_let_node_t *result;
int yylex();
void yyerror(char *s) {
ngx_str_t* token = conf->args->elts;
if (inpos < conf->args->nelts)
token += inpos;
else
token = 0;
ngx_log_debug(NGX_LOG_INFO, conf->log, 0,
"error parsing let expression: %s[%d]: %*s", s, inpos,
token ? token->len : 0, token ? (char*)token->data : "");
yylval = NULL;
}
ngx_let_node_t* ngx_let_binop_node_create(
ngx_let_node_t* left,
char op,
ngx_let_node_t* right)
{
ngx_let_node_t** args;
ngx_let_node_t* node;
node = ngx_pcalloc(conf->pool, sizeof(ngx_let_node_t));
node->type = NGX_LTYPE_OPERATION;
node->index = op;
ngx_array_init(&node->args, conf->pool, 2, sizeof(ngx_let_node_t*));
args = ngx_array_push_n(&node->args, 2);
args[0] = left;
args[1] = right;
/* yylval = node;*/
ngx_log_debug(NGX_LOG_INFO, conf->log, 0, "let operation reduce '%c'", op);
return node;
}
ngx_let_node_t* ngx_let_fun_arg(
ngx_let_node_t* fun,
ngx_let_node_t* arg)
{
ngx_let_node_t** args;
if (!fun->args.nalloc)
ngx_array_init(&fun->args, conf->pool, 1, sizeof(ngx_let_node_t*));
args = ngx_array_push(&fun->args);
*args = arg;
ngx_log_debug(NGX_LOG_INFO, conf->log, 0, "let function argument: %d : %d", fun->type, arg->type);
/* yylval = fun;*/
return fun;
}
%}
%%
%token NGXLEAF NGXFUNC NGXFUNC0 NGXDONE;
%left '+' '-' ;
%left '*' '/' '%' '.' ;
%left '&' '|' ;
letexpr : expr NGXDONE { result = $1; YYACCEPT; }
expr: '(' expr ')' { $$ = $2; }
| NGXLEAF
| NGXFUNC0
| funopen ')'
| expr '*' expr { $$ = ngx_let_binop_node_create($1, '*', $3); }
| expr '/' expr { $$ = ngx_let_binop_node_create($1, '/', $3); }
| expr '%' expr { $$ = ngx_let_binop_node_create($1, '%', $3); }
| expr '+' expr { $$ = ngx_let_binop_node_create($1, '+', $3); }
| expr '-' expr { $$ = ngx_let_binop_node_create($1, '-', $3); }
| expr '&' expr { $$ = ngx_let_binop_node_create($1, '&', $3); }
| expr '|' expr { $$ = ngx_let_binop_node_create($1, '|', $3); }
| expr '.' expr { $$ = ngx_let_binop_node_create($1, '.', $3); }
;
funopen: NGXFUNC
| funopen expr { $$ = ngx_let_fun_arg($1, $2); }
;
%%
int yylex() {
ngx_str_t* str;
ngx_let_node_t* node;
++inpos;
if (conf == NULL
|| conf->args == NULL
|| conf->args->nelts <= inpos)
{
return NGXDONE;
}
str = ((ngx_str_t*)conf->args->elts + inpos);
if (str->len == 1 && strchr("+-*/%&|.()", str->data[0])) {
/* terminal */
yylval = 0;
ngx_log_debug(NGX_LOG_INFO, conf->log, 0, "let terminal '%c'", str->data[0]);
return str->data[0];
}
node = ngx_pcalloc(conf->pool, sizeof(ngx_let_node_t));
yylval = node;
if (str->len > 1 && str->data[0] == '$') {
/* variable */
ngx_log_debug(NGX_LOG_INFO, conf->log, 0, "let variable %*s", str->len, str->data);
str->data++;
str->len--;
if (str->data[0] >= '1' && str->data[0] <= '9') {
node->type = NGX_LTYPE_CAPTURE;
node->index = str->data[0] - '0';
} else {
node->type = NGX_LTYPE_VARIABLE;
node->index = ngx_http_get_variable_index(conf, str);
}
return NGXLEAF;
} else if (str->len > 2 && str->data[str->len - 2] == '('
&& str->data[str->len - 1] == ')') {
/* function w/o arguments*/
ngx_log_debug(NGX_LOG_INFO, conf->log, 0, "let function0 %*s", str->len - 1, str->data);
node->type = NGX_LTYPE_FUNCTION;
node->name = *str;
node->name.len -= 2;
return NGXFUNC0;
} else if (str->len > 1 && str->data[str->len - 1] == '(' ) {
/* function */
ngx_log_debug(NGX_LOG_INFO, conf->log, 0, "let function %*s", str->len - 1, str->data);
node->type = NGX_LTYPE_FUNCTION;
node->name = *str;
node->name.len--;
return NGXFUNC;
} else {
/* literal */
ngx_log_debug(NGX_LOG_INFO, conf->log, 0, "let literal %*s", str->len, str->data);
node->type = NGX_LTYPE_LITERAL;
node->name = *str;
return NGXLEAF;
}
}
ngx_let_node_t* ngx_parse_let_expr(ngx_conf_t* cf) {
conf = cf;
inpos = 1; /* #1 is dest variable */
result = 0;
yyparse();
return result;
}