blob: 2c4489cc6c49ae99c62f1ee23b81f12709a96ab1 [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 "expr.h"
Doug Zongkerd9c9d102009-06-12 12:24:39 -070019#include "yydefs.h"
Doug Zongker37bee622009-06-08 17:35:39 -070020#include "parser.h"
21
22int gLine = 1;
23int gColumn = 1;
Doug Zongkerd9c9d102009-06-12 12:24:39 -070024int gPos = 0;
Doug Zongker37bee622009-06-08 17:35:39 -070025
26// TODO: enforce MAX_STRING_LEN during lexing
27char string_buffer[MAX_STRING_LEN];
28char* string_pos;
Doug Zongkerd9c9d102009-06-12 12:24:39 -070029
30#define ADVANCE do {yylloc.start=gPos; yylloc.end=gPos+yyleng; \
31 gColumn+=yyleng; gPos+=yyleng;} while(0)
32
Doug Zongker37bee622009-06-08 17:35:39 -070033%}
34
35%x STR
36
37%option noyywrap
38
39%%
40
41
42\" {
Doug Zongker37bee622009-06-08 17:35:39 -070043 BEGIN(STR);
44 string_pos = string_buffer;
Doug Zongkerd9c9d102009-06-12 12:24:39 -070045 yylloc.start = gPos;
46 ++gColumn;
47 ++gPos;
Doug Zongker37bee622009-06-08 17:35:39 -070048}
49
50<STR>{
51 \" {
52 ++gColumn;
Doug Zongkerd9c9d102009-06-12 12:24:39 -070053 ++gPos;
Doug Zongker37bee622009-06-08 17:35:39 -070054 BEGIN(INITIAL);
55 *string_pos = '\0';
56 yylval.str = strdup(string_buffer);
Doug Zongkerd9c9d102009-06-12 12:24:39 -070057 yylloc.end = gPos;
Doug Zongker37bee622009-06-08 17:35:39 -070058 return STRING;
59 }
60
Doug Zongkerd9c9d102009-06-12 12:24:39 -070061 \\n { gColumn += yyleng; gPos += yyleng; *string_pos++ = '\n'; }
62 \\t { gColumn += yyleng; gPos += yyleng; *string_pos++ = '\t'; }
63 \\\" { gColumn += yyleng; gPos += yyleng; *string_pos++ = '\"'; }
64 \\\\ { gColumn += yyleng; gPos += yyleng; *string_pos++ = '\\'; }
Doug Zongker37bee622009-06-08 17:35:39 -070065
66 \\x[0-9a-fA-F]{2} {
67 gColumn += yyleng;
Doug Zongkerd9c9d102009-06-12 12:24:39 -070068 gPos += yyleng;
Doug Zongker37bee622009-06-08 17:35:39 -070069 int val;
70 sscanf(yytext+2, "%x", &val);
71 *string_pos++ = val;
72 }
73
74 \n {
75 ++gLine;
Doug Zongkerd9c9d102009-06-12 12:24:39 -070076 ++gPos;
Doug Zongker37bee622009-06-08 17:35:39 -070077 gColumn = 1;
78 *string_pos++ = yytext[0];
79 }
80
81 . {
82 ++gColumn;
Doug Zongkerd9c9d102009-06-12 12:24:39 -070083 ++gPos;
Doug Zongker37bee622009-06-08 17:35:39 -070084 *string_pos++ = yytext[0];
85 }
86}
87
Doug Zongkerd9c9d102009-06-12 12:24:39 -070088if ADVANCE; return IF;
89then ADVANCE; return THEN;
90else ADVANCE; return ELSE;
91endif ADVANCE; return ENDIF;
Doug Zongker37bee622009-06-08 17:35:39 -070092
Doug Zongker9931f7f2009-06-10 14:11:53 -070093[a-zA-Z0-9_:/.]+ {
Doug Zongkerd9c9d102009-06-12 12:24:39 -070094 ADVANCE;
Doug Zongker37bee622009-06-08 17:35:39 -070095 yylval.str = strdup(yytext);
96 return STRING;
97}
98
Doug Zongkerd9c9d102009-06-12 12:24:39 -070099\&\& ADVANCE; return AND;
100\|\| ADVANCE; return OR;
101== ADVANCE; return EQ;
102!= ADVANCE; return NE;
Doug Zongker37bee622009-06-08 17:35:39 -0700103
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700104[+(),!;] ADVANCE; return yytext[0];
Doug Zongker37bee622009-06-08 17:35:39 -0700105
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700106[ \t]+ ADVANCE;
Doug Zongker37bee622009-06-08 17:35:39 -0700107
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700108(#.*)?\n gPos += yyleng; ++gLine; gColumn = 1;
Doug Zongker37bee622009-06-08 17:35:39 -0700109
110. return BAD;