Shinichiro Hamaji | 1d545aa | 2015-06-23 15:29:13 +0900 | [diff] [blame] | 1 | // Copyright 2015 Google Inc. All rights reserved |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
Shinichiro Hamaji | 776ca30 | 2015-06-06 03:52:48 +0900 | [diff] [blame] | 15 | #ifndef RULE_H_ |
| 16 | #define RULE_H_ |
| 17 | |
Shinichiro Hamaji | c4f7662 | 2016-06-30 13:05:10 +0900 | [diff] [blame] | 18 | #include <functional> |
| 19 | #include <string> |
Shinichiro Hamaji | 776ca30 | 2015-06-06 03:52:48 +0900 | [diff] [blame] | 20 | #include <vector> |
| 21 | |
| 22 | #include "loc.h" |
| 23 | #include "log.h" |
Shinichiro Hamaji | 645cca7 | 2015-09-24 17:04:21 +0900 | [diff] [blame] | 24 | #include "stmt.h" |
Shinichiro Hamaji | 776ca30 | 2015-06-06 03:52:48 +0900 | [diff] [blame] | 25 | #include "string_piece.h" |
Shinichiro Hamaji | e799275 | 2015-06-29 18:38:35 +0900 | [diff] [blame] | 26 | #include "symtab.h" |
Shinichiro Hamaji | 776ca30 | 2015-06-06 03:52:48 +0900 | [diff] [blame] | 27 | |
| 28 | using namespace std; |
| 29 | |
| 30 | class Value; |
| 31 | |
| 32 | class Rule { |
| 33 | public: |
| 34 | Rule(); |
Shinichiro Hamaji | 776ca30 | 2015-06-06 03:52:48 +0900 | [diff] [blame] | 35 | |
Shinichiro Hamaji | e30b3be | 2015-06-19 16:15:42 +0900 | [diff] [blame] | 36 | Loc cmd_loc() const { return Loc(loc.filename, cmd_lineno); } |
| 37 | |
Shinichiro Hamaji | 776ca30 | 2015-06-06 03:52:48 +0900 | [diff] [blame] | 38 | string DebugString() const; |
| 39 | |
Shinichiro Hamaji | e799275 | 2015-06-29 18:38:35 +0900 | [diff] [blame] | 40 | vector<Symbol> outputs; |
| 41 | vector<Symbol> inputs; |
| 42 | vector<Symbol> order_only_inputs; |
| 43 | vector<Symbol> output_patterns; |
Shinichiro Hamaji | 776ca30 | 2015-06-06 03:52:48 +0900 | [diff] [blame] | 44 | bool is_double_colon; |
| 45 | bool is_suffix_rule; |
| 46 | vector<Value*> cmds; |
| 47 | Loc loc; |
| 48 | int cmd_lineno; |
| 49 | |
| 50 | private: |
| 51 | void Error(const string& msg) { |
Dan Willemsen | e41c755 | 2017-02-22 14:31:16 -0800 | [diff] [blame] | 52 | ERROR_LOC(loc, "%s", msg.c_str()); |
Shinichiro Hamaji | 776ca30 | 2015-06-06 03:52:48 +0900 | [diff] [blame] | 53 | } |
| 54 | }; |
| 55 | |
Shinichiro Hamaji | ffc52c3 | 2015-06-23 16:51:07 +0900 | [diff] [blame] | 56 | struct RuleVarAssignment { |
Shinichiro Hamaji | e799275 | 2015-06-29 18:38:35 +0900 | [diff] [blame] | 57 | vector<Symbol> outputs; |
Shinichiro Hamaji | 9b16bda | 2015-06-19 14:25:17 +0900 | [diff] [blame] | 58 | StringPiece lhs; |
| 59 | StringPiece rhs; |
| 60 | AssignOp op; |
| 61 | }; |
| 62 | |
Shinichiro Hamaji | c4f7662 | 2016-06-30 13:05:10 +0900 | [diff] [blame] | 63 | // If |rule| is not NULL, |rule_var| is filled. If the expression |
| 64 | // after the terminator |term| is needed (this happens only when |
| 65 | // |term| is '='), |after_term_fn| will be called to obtain the right |
| 66 | // hand side. |
Shinichiro Hamaji | 2928f46 | 2015-06-23 20:24:53 +0900 | [diff] [blame] | 67 | void ParseRule(Loc& loc, StringPiece line, char term, |
Dan Willemsen | cb2ff85 | 2016-11-01 14:49:08 -0700 | [diff] [blame] | 68 | const function<string()> &after_term_fn, |
Shinichiro Hamaji | ffc52c3 | 2015-06-23 16:51:07 +0900 | [diff] [blame] | 69 | Rule** rule, RuleVarAssignment* rule_var); |
Shinichiro Hamaji | 9b16bda | 2015-06-19 14:25:17 +0900 | [diff] [blame] | 70 | |
Shinichiro Hamaji | 776ca30 | 2015-06-06 03:52:48 +0900 | [diff] [blame] | 71 | #endif // RULE_H_ |