blob: 37bcdd0312303be4aed6c47fd56f89fb38d88adc [file] [log] [blame]
Doug Zongker37bee622009-06-08 17:35:39 -07001%{
2/*
3 * Copyright (C) 2009 The Android Open Source Project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#include <stdio.h>
19#include <stdlib.h>
20#include <string.h>
21
Tianjie Xuc4447322017-03-06 14:44:59 -080022#include <memory>
23#include <string>
24#include <vector>
25
Tianjie Xuc3c34962017-03-28 11:49:15 -070026#include <android-base/macros.h>
27
Tao Baoe6f7f952017-10-04 09:33:01 -070028#include "edify/expr.h"
Doug Zongkerd9c9d102009-06-12 12:24:39 -070029#include "yydefs.h"
Doug Zongker37bee622009-06-08 17:35:39 -070030#include "parser.h"
31
32extern int gLine;
33extern int gColumn;
34
Tianjie Xuc4447322017-03-06 14:44:59 -080035void yyerror(std::unique_ptr<Expr>* root, int* error_count, const char* s);
36int yyparse(std::unique_ptr<Expr>* root, int* error_count);
Doug Zongker37bee622009-06-08 17:35:39 -070037
Doug Zongker0d32f252014-02-13 15:07:56 -080038struct yy_buffer_state;
39void yy_switch_to_buffer(struct yy_buffer_state* new_buffer);
40struct yy_buffer_state* yy_scan_string(const char* yystr);
41
Tao Bao39119ad2016-10-10 22:52:18 -070042// Convenience function for building expressions with a fixed number
43// of arguments.
44static Expr* Build(Function fn, YYLTYPE loc, size_t count, ...) {
45 va_list v;
46 va_start(v, count);
Tianjie Xuc4447322017-03-06 14:44:59 -080047 Expr* e = new Expr(fn, "(operator)", loc.start, loc.end);
Tao Bao39119ad2016-10-10 22:52:18 -070048 for (size_t i = 0; i < count; ++i) {
Tianjie Xuc4447322017-03-06 14:44:59 -080049 e->argv.emplace_back(va_arg(v, Expr*));
Tao Bao39119ad2016-10-10 22:52:18 -070050 }
51 va_end(v);
Tao Bao39119ad2016-10-10 22:52:18 -070052 return e;
53}
54
Doug Zongker37bee622009-06-08 17:35:39 -070055%}
56
Doug Zongkerd9c9d102009-06-12 12:24:39 -070057%locations
58
Doug Zongker37bee622009-06-08 17:35:39 -070059%union {
60 char* str;
61 Expr* expr;
Tianjie Xuc4447322017-03-06 14:44:59 -080062 std::vector<std::unique_ptr<Expr>>* args;
Doug Zongker37bee622009-06-08 17:35:39 -070063}
64
65%token AND OR SUBSTR SUPERSTR EQ NE IF THEN ELSE ENDIF
66%token <str> STRING BAD
67%type <expr> expr
68%type <args> arglist
69
Tianjie Xuc4447322017-03-06 14:44:59 -080070%destructor { delete $$; } expr
71%destructor { delete $$; } arglist
72
73%parse-param {std::unique_ptr<Expr>* root}
Doug Zongker8edb00c2009-06-11 17:21:44 -070074%parse-param {int* error_count}
Steven Morelandee3dd452020-01-14 12:54:14 -080075%define parse.error verbose
Doug Zongker37bee622009-06-08 17:35:39 -070076
77/* declarations in increasing order of precedence */
78%left ';'
79%left ','
80%left OR
81%left AND
82%left EQ NE
83%left '+'
84%right '!'
85
86%%
87
Tianjie Xuc4447322017-03-06 14:44:59 -080088input: expr { root->reset($1); }
Doug Zongker37bee622009-06-08 17:35:39 -070089;
90
91expr: STRING {
Tianjie Xuc4447322017-03-06 14:44:59 -080092 $$ = new Expr(Literal, $1, @$.start, @$.end);
Doug Zongker37bee622009-06-08 17:35:39 -070093}
Doug Zongkerd9c9d102009-06-12 12:24:39 -070094| '(' expr ')' { $$ = $2; $$->start=@$.start; $$->end=@$.end; }
95| expr ';' { $$ = $1; $$->start=@1.start; $$->end=@1.end; }
96| expr ';' expr { $$ = Build(SequenceFn, @$, 2, $1, $3); }
97| error ';' expr { $$ = $3; $$->start=@$.start; $$->end=@$.end; }
98| expr '+' expr { $$ = Build(ConcatFn, @$, 2, $1, $3); }
99| expr EQ expr { $$ = Build(EqualityFn, @$, 2, $1, $3); }
100| expr NE expr { $$ = Build(InequalityFn, @$, 2, $1, $3); }
101| expr AND expr { $$ = Build(LogicalAndFn, @$, 2, $1, $3); }
102| expr OR expr { $$ = Build(LogicalOrFn, @$, 2, $1, $3); }
103| '!' expr { $$ = Build(LogicalNotFn, @$, 1, $2); }
104| IF expr THEN expr ENDIF { $$ = Build(IfElseFn, @$, 2, $2, $4); }
105| IF expr THEN expr ELSE expr ENDIF { $$ = Build(IfElseFn, @$, 3, $2, $4, $6); }
Doug Zongker37bee622009-06-08 17:35:39 -0700106| STRING '(' arglist ')' {
Tianjie Xuc4447322017-03-06 14:44:59 -0800107 Function fn = FindFunction($1);
108 if (fn == nullptr) {
109 std::string msg = "unknown function \"" + std::string($1) + "\"";
110 yyerror(root, error_count, msg.c_str());
Doug Zongker37bee622009-06-08 17:35:39 -0700111 YYERROR;
112 }
Tianjie Xuc4447322017-03-06 14:44:59 -0800113 $$ = new Expr(fn, $1, @$.start, @$.end);
114 $$->argv = std::move(*$3);
Doug Zongker37bee622009-06-08 17:35:39 -0700115}
116;
117
118arglist: /* empty */ {
Tianjie Xuc4447322017-03-06 14:44:59 -0800119 $$ = new std::vector<std::unique_ptr<Expr>>;
Doug Zongker37bee622009-06-08 17:35:39 -0700120}
121| expr {
Tianjie Xuc4447322017-03-06 14:44:59 -0800122 $$ = new std::vector<std::unique_ptr<Expr>>;
123 $$->emplace_back($1);
Doug Zongker37bee622009-06-08 17:35:39 -0700124}
125| arglist ',' expr {
Tianjie Xuc3c34962017-03-28 11:49:15 -0700126 UNUSED($1);
Tianjie Xuc4447322017-03-06 14:44:59 -0800127 $$->push_back(std::unique_ptr<Expr>($3));
Doug Zongker37bee622009-06-08 17:35:39 -0700128}
129;
130
131%%
132
Tianjie Xuc4447322017-03-06 14:44:59 -0800133void yyerror(std::unique_ptr<Expr>* root, int* error_count, const char* s) {
Doug Zongker37bee622009-06-08 17:35:39 -0700134 if (strlen(s) == 0) {
135 s = "syntax error";
136 }
137 printf("line %d col %d: %s\n", gLine, gColumn, s);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700138 ++*error_count;
Doug Zongker37bee622009-06-08 17:35:39 -0700139}
Doug Zongker0d32f252014-02-13 15:07:56 -0800140
Tao Baod8d514f2018-07-09 13:32:28 -0700141int ParseString(const std::string& str, std::unique_ptr<Expr>* root, int* error_count) {
142 yy_switch_to_buffer(yy_scan_string(str.c_str()));
143 return yyparse(root, error_count);
Doug Zongker0d32f252014-02-13 15:07:56 -0800144}