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 | |
Doug Zongker | 583fc12 | 2010-02-19 16:07:57 -0800 | [diff] [blame] | 18 | #include <string.h> |
Yabin Cui | 12f499e | 2016-01-27 12:26:18 -0800 | [diff] [blame] | 19 | #include <string> |
Doug Zongker | 583fc12 | 2010-02-19 16:07:57 -0800 | [diff] [blame] | 20 | |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 21 | #include "expr.h" |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 22 | #include "yydefs.h" |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 23 | #include "parser.h" |
| 24 | |
| 25 | int gLine = 1; |
| 26 | int gColumn = 1; |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 27 | int gPos = 0; |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 28 | |
Yabin Cui | 12f499e | 2016-01-27 12:26:18 -0800 | [diff] [blame] | 29 | std::string string_buffer; |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 30 | |
| 31 | #define ADVANCE do {yylloc.start=gPos; yylloc.end=gPos+yyleng; \ |
| 32 | gColumn+=yyleng; gPos+=yyleng;} while(0) |
| 33 | |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 34 | %} |
| 35 | |
| 36 | %x STR |
| 37 | |
| 38 | %option noyywrap |
| 39 | |
| 40 | %% |
| 41 | |
| 42 | |
| 43 | \" { |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 44 | BEGIN(STR); |
Yabin Cui | 12f499e | 2016-01-27 12:26:18 -0800 | [diff] [blame] | 45 | string_buffer.clear(); |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 46 | yylloc.start = gPos; |
| 47 | ++gColumn; |
| 48 | ++gPos; |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | <STR>{ |
| 52 | \" { |
| 53 | ++gColumn; |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 54 | ++gPos; |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 55 | BEGIN(INITIAL); |
Yabin Cui | 12f499e | 2016-01-27 12:26:18 -0800 | [diff] [blame] | 56 | yylval.str = strdup(string_buffer.c_str()); |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 57 | yylloc.end = gPos; |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 58 | return STRING; |
| 59 | } |
| 60 | |
Yabin Cui | 12f499e | 2016-01-27 12:26:18 -0800 | [diff] [blame] | 61 | \\n { gColumn += yyleng; gPos += yyleng; string_buffer.push_back('\n'); } |
| 62 | \\t { gColumn += yyleng; gPos += yyleng; string_buffer.push_back('\t'); } |
| 63 | \\\" { gColumn += yyleng; gPos += yyleng; string_buffer.push_back('\"'); } |
| 64 | \\\\ { gColumn += yyleng; gPos += yyleng; string_buffer.push_back('\\'); } |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 65 | |
| 66 | \\x[0-9a-fA-F]{2} { |
| 67 | gColumn += yyleng; |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 68 | gPos += yyleng; |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 69 | int val; |
| 70 | sscanf(yytext+2, "%x", &val); |
Yabin Cui | 12f499e | 2016-01-27 12:26:18 -0800 | [diff] [blame] | 71 | string_buffer.push_back(static_cast<char>(val)); |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | \n { |
| 75 | ++gLine; |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 76 | ++gPos; |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 77 | gColumn = 1; |
Yabin Cui | 12f499e | 2016-01-27 12:26:18 -0800 | [diff] [blame] | 78 | string_buffer.push_back(yytext[0]); |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | . { |
| 82 | ++gColumn; |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 83 | ++gPos; |
Yabin Cui | 12f499e | 2016-01-27 12:26:18 -0800 | [diff] [blame] | 84 | string_buffer.push_back(yytext[0]); |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 85 | } |
| 86 | } |
| 87 | |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 88 | if ADVANCE; return IF; |
| 89 | then ADVANCE; return THEN; |
| 90 | else ADVANCE; return ELSE; |
| 91 | endif ADVANCE; return ENDIF; |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 92 | |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 93 | [a-zA-Z0-9_:/.]+ { |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 94 | ADVANCE; |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 95 | yylval.str = strdup(yytext); |
| 96 | return STRING; |
| 97 | } |
| 98 | |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 99 | \&\& ADVANCE; return AND; |
| 100 | \|\| ADVANCE; return OR; |
| 101 | == ADVANCE; return EQ; |
| 102 | != ADVANCE; return NE; |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 103 | |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 104 | [+(),!;] ADVANCE; return yytext[0]; |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 105 | |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 106 | [ \t]+ ADVANCE; |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 107 | |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 108 | (#.*)?\n gPos += yyleng; ++gLine; gColumn = 1; |
Doug Zongker | 37bee62 | 2009-06-08 17:35:39 -0700 | [diff] [blame] | 109 | |
| 110 | . return BAD; |