Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 1 | %{ |
| 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 Xu | c444732 | 2017-03-06 14:44:59 -0800 | [diff] [blame] | 22 | #include <memory> |
| 23 | #include <string> |
| 24 | #include <vector> |
| 25 | |
Tianjie Xu | c3c3496 | 2017-03-28 11:49:15 -0700 | [diff] [blame] | 26 | #include <android-base/macros.h> |
| 27 | |
Tao Bao | e6f7f95 | 2017-10-04 09:33:01 -0700 | [diff] [blame] | 28 | #include "edify/expr.h" |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 29 | #include "yydefs.h" |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 30 | #include "parser.h" |
| 31 | |
| 32 | extern int gLine; |
| 33 | extern int gColumn; |
| 34 | |
Tianjie Xu | c444732 | 2017-03-06 14:44:59 -0800 | [diff] [blame] | 35 | void yyerror(std::unique_ptr<Expr>* root, int* error_count, const char* s); |
| 36 | int yyparse(std::unique_ptr<Expr>* root, int* error_count); |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 37 | |
Doug Zongker | 0d32f25 | 2014-02-13 15:07:56 -0800 | [diff] [blame] | 38 | struct yy_buffer_state; |
| 39 | void yy_switch_to_buffer(struct yy_buffer_state* new_buffer); |
| 40 | struct yy_buffer_state* yy_scan_string(const char* yystr); |
| 41 | |
Tao Bao | 39119ad | 2016-10-10 22:52:18 -0700 | [diff] [blame] | 42 | // Convenience function for building expressions with a fixed number |
| 43 | // of arguments. |
| 44 | static Expr* Build(Function fn, YYLTYPE loc, size_t count, ...) { |
| 45 | va_list v; |
| 46 | va_start(v, count); |
Tianjie Xu | c444732 | 2017-03-06 14:44:59 -0800 | [diff] [blame] | 47 | Expr* e = new Expr(fn, "(operator)", loc.start, loc.end); |
Tao Bao | 39119ad | 2016-10-10 22:52:18 -0700 | [diff] [blame] | 48 | for (size_t i = 0; i < count; ++i) { |
Tianjie Xu | c444732 | 2017-03-06 14:44:59 -0800 | [diff] [blame] | 49 | e->argv.emplace_back(va_arg(v, Expr*)); |
Tao Bao | 39119ad | 2016-10-10 22:52:18 -0700 | [diff] [blame] | 50 | } |
| 51 | va_end(v); |
Tao Bao | 39119ad | 2016-10-10 22:52:18 -0700 | [diff] [blame] | 52 | return e; |
| 53 | } |
| 54 | |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 55 | %} |
| 56 | |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 57 | %locations |
| 58 | |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 59 | %union { |
| 60 | char* str; |
| 61 | Expr* expr; |
Tianjie Xu | c444732 | 2017-03-06 14:44:59 -0800 | [diff] [blame] | 62 | std::vector<std::unique_ptr<Expr>>* args; |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 63 | } |
| 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 Xu | c444732 | 2017-03-06 14:44:59 -0800 | [diff] [blame] | 70 | %destructor { delete $$; } expr |
| 71 | %destructor { delete $$; } arglist |
| 72 | |
| 73 | %parse-param {std::unique_ptr<Expr>* root} |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 74 | %parse-param {int* error_count} |
Steven Moreland | ee3dd45 | 2020-01-14 12:54:14 -0800 | [diff] [blame] | 75 | %define parse.error verbose |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 76 | |
| 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 Xu | c444732 | 2017-03-06 14:44:59 -0800 | [diff] [blame] | 88 | input: expr { root->reset($1); } |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 89 | ; |
| 90 | |
| 91 | expr: STRING { |
Tianjie Xu | c444732 | 2017-03-06 14:44:59 -0800 | [diff] [blame] | 92 | $$ = new Expr(Literal, $1, @$.start, @$.end); |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 93 | } |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 94 | | '(' 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 Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 106 | | STRING '(' arglist ')' { |
Tianjie Xu | c444732 | 2017-03-06 14:44:59 -0800 | [diff] [blame] | 107 | 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 Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 111 | YYERROR; |
| 112 | } |
Tianjie Xu | c444732 | 2017-03-06 14:44:59 -0800 | [diff] [blame] | 113 | $$ = new Expr(fn, $1, @$.start, @$.end); |
| 114 | $$->argv = std::move(*$3); |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 115 | } |
| 116 | ; |
| 117 | |
| 118 | arglist: /* empty */ { |
Tianjie Xu | c444732 | 2017-03-06 14:44:59 -0800 | [diff] [blame] | 119 | $$ = new std::vector<std::unique_ptr<Expr>>; |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 120 | } |
| 121 | | expr { |
Tianjie Xu | c444732 | 2017-03-06 14:44:59 -0800 | [diff] [blame] | 122 | $$ = new std::vector<std::unique_ptr<Expr>>; |
| 123 | $$->emplace_back($1); |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 124 | } |
| 125 | | arglist ',' expr { |
Tianjie Xu | c3c3496 | 2017-03-28 11:49:15 -0700 | [diff] [blame] | 126 | UNUSED($1); |
Tianjie Xu | c444732 | 2017-03-06 14:44:59 -0800 | [diff] [blame] | 127 | $$->push_back(std::unique_ptr<Expr>($3)); |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 128 | } |
| 129 | ; |
| 130 | |
| 131 | %% |
| 132 | |
Tianjie Xu | c444732 | 2017-03-06 14:44:59 -0800 | [diff] [blame] | 133 | void yyerror(std::unique_ptr<Expr>* root, int* error_count, const char* s) { |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 134 | if (strlen(s) == 0) { |
| 135 | s = "syntax error"; |
| 136 | } |
| 137 | printf("line %d col %d: %s\n", gLine, gColumn, s); |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 138 | ++*error_count; |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 139 | } |
Doug Zongker | 0d32f25 | 2014-02-13 15:07:56 -0800 | [diff] [blame] | 140 | |
Tao Bao | d8d514f | 2018-07-09 13:32:28 -0700 | [diff] [blame] | 141 | int 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 Zongker | 0d32f25 | 2014-02-13 15:07:56 -0800 | [diff] [blame] | 144 | } |