blob: d54a2ade52ca39e42745c6503f6cb86813e7f774 [file] [log] [blame]
Mark Slee31985722006-05-24 21:45:31 +00001/**
2 * Thrift scanner.
3 *
4 * Tokenizes a thrift definition file.
5 * @author Mark Slee <mcslee@facebook.com>
6 */
Mark Sleef5377b32006-10-10 01:42:59 +00007
Mark Slee31985722006-05-24 21:45:31 +00008%{
9
10#include "main.h"
11#include "parse/t_program.h"
12
Mark Sleef5377b32006-10-10 01:42:59 +000013/**
14 * Must be included AFTER parse/t_program.h, but I can't remember why anymore
15 * because I wrote this a while ago.
16 */
Mark Sleeeb0d0242007-01-25 07:58:55 +000017#include "thrifty.h"
Mark Slee31985722006-05-24 21:45:31 +000018
Mark Sleef12865a2007-01-12 00:23:26 +000019void thrift_reserved_keyword(char* keyword) {
20 yyerror("Cannot use reserved language keyword: \"%s\"\n", keyword);
21 exit(1);
22}
23
Mark Slee31985722006-05-24 21:45:31 +000024%}
25
Mark Sleef5377b32006-10-10 01:42:59 +000026/**
27 * Provides the yylineno global, useful for debugging output
28 */
Mark Slee31985722006-05-24 21:45:31 +000029%option lex-compat
30
Mark Sleef5377b32006-10-10 01:42:59 +000031/**
32 * Helper definitions, comments, constants, and whatnot
33 */
34
Mark Slee30152872006-11-28 01:24:07 +000035intconstant ([+-]?[0-9]+)
Mark Slee600cdb32006-11-29 22:06:42 +000036hexconstant ("0x"[0-9A-Fa-f]+)
Mark Slee30152872006-11-28 01:24:07 +000037dubconstant ([+-]?[0-9]*(\.[0-9]+)?([eE][+-]?[0-9]+)?)
Mark Slee9cb7c612006-09-01 22:17:45 +000038identifier ([a-zA-Z_][\.a-zA-Z_0-9]*)
Mark Slee31985722006-05-24 21:45:31 +000039whitespace ([ \t\r\n]*)
40multicomm ("/*""/"*([^*/]|[^*]"/"|"*"[^/])*"*"*"*/")
41comment ("//"[^\n]*)
Mark Sleec98d0502006-09-06 02:42:25 +000042unixcomment ("#"[^\n]*)
Mark Sleeae2bc3c2006-11-08 23:44:59 +000043symbol ([:;\,\{\}\(\)\=<>\[\]])
Mark Slee30152872006-11-28 01:24:07 +000044dliteral ("\""[^"]*"\"")
45sliteral ("'"[^']*"'")
Mark Slee31985722006-05-24 21:45:31 +000046
47%%
48
49{whitespace} { /* do nothing */ }
50{multicomm} { /* do nothing */ }
51{comment} { /* do nothing */ }
Mark Sleec98d0502006-09-06 02:42:25 +000052{unixcomment} { /* do nothing */ }
Mark Slee31985722006-05-24 21:45:31 +000053
Mark Slee9cb7c612006-09-01 22:17:45 +000054{symbol} { return yytext[0]; }
55
Mark Sleef0712dc2006-10-25 19:03:57 +000056"namespace" { return tok_namespace; }
57"cpp_namespace" { return tok_cpp_namespace; }
58"cpp_include" { return tok_cpp_include; }
59"cpp_type" { return tok_cpp_type; }
60"java_package" { return tok_java_package; }
Mark Sleee888b372007-01-12 01:06:24 +000061"php_namespace" { return tok_php_namespace; }
Mark Slee782abbb2007-01-19 00:17:02 +000062"xsd_all" { return tok_xsd_all; }
Mark Slee36bfa2e2007-01-19 20:09:51 +000063"xsd_optional" { return tok_xsd_optional; }
Mark Slee0d9199e2007-01-31 02:08:30 +000064"xsd_namespace" { return tok_xsd_namespace; }
Mark Sleef0712dc2006-10-25 19:03:57 +000065"include" { return tok_include; }
66
67"void" { return tok_void; }
68"bool" { return tok_bool; }
69"byte" { return tok_byte; }
70"i16" { return tok_i16; }
71"i32" { return tok_i32; }
72"i64" { return tok_i64; }
73"double" { return tok_double; }
74"string" { return tok_string; }
Mark Sleeb6200d82007-01-19 19:14:36 +000075"slist" { return tok_slist; }
Mark Sleef0712dc2006-10-25 19:03:57 +000076"map" { return tok_map; }
77"list" { return tok_list; }
78"set" { return tok_set; }
79"async" { return tok_async; }
80"typedef" { return tok_typedef; }
81"struct" { return tok_struct; }
82"exception" { return tok_xception; }
83"extends" { return tok_extends; }
84"throws" { return tok_throws; }
85"service" { return tok_service; }
86"enum" { return tok_enum; }
Mark Slee30152872006-11-28 01:24:07 +000087"const" { return tok_const; }
Mark Slee52f643d2006-08-09 00:03:43 +000088
Mark Sleef12865a2007-01-12 00:23:26 +000089"abstract" { thrift_reserved_keyword(yytext); }
90"and" { thrift_reserved_keyword(yytext); }
91"as" { thrift_reserved_keyword(yytext); }
92"assert" { thrift_reserved_keyword(yytext); }
93"break" { thrift_reserved_keyword(yytext); }
94"case" { thrift_reserved_keyword(yytext); }
95"class" { thrift_reserved_keyword(yytext); }
96"continue" { thrift_reserved_keyword(yytext); }
97"declare" { thrift_reserved_keyword(yytext); }
98"def" { thrift_reserved_keyword(yytext); }
99"default" { thrift_reserved_keyword(yytext); }
100"del" { thrift_reserved_keyword(yytext); }
101"delete" { thrift_reserved_keyword(yytext); }
102"do" { thrift_reserved_keyword(yytext); }
103"elif" { thrift_reserved_keyword(yytext); }
104"else" { thrift_reserved_keyword(yytext); }
105"elseif" { thrift_reserved_keyword(yytext); }
106"except" { thrift_reserved_keyword(yytext); }
107"exec" { thrift_reserved_keyword(yytext); }
108"false" { thrift_reserved_keyword(yytext); }
109"final" { thrift_reserved_keyword(yytext); }
110"finally" { thrift_reserved_keyword(yytext); }
111"float" { thrift_reserved_keyword(yytext); }
112"for" { thrift_reserved_keyword(yytext); }
113"foreach" { thrift_reserved_keyword(yytext); }
114"function" { thrift_reserved_keyword(yytext); }
115"global" { thrift_reserved_keyword(yytext); }
116"goto" { thrift_reserved_keyword(yytext); }
117"if" { thrift_reserved_keyword(yytext); }
118"implements" { thrift_reserved_keyword(yytext); }
119"import" { thrift_reserved_keyword(yytext); }
120"in" { thrift_reserved_keyword(yytext); }
121"inline" { thrift_reserved_keyword(yytext); }
122"instanceof" { thrift_reserved_keyword(yytext); }
123"interface" { thrift_reserved_keyword(yytext); }
124"is" { thrift_reserved_keyword(yytext); }
125"lambda" { thrift_reserved_keyword(yytext); }
126"native" { thrift_reserved_keyword(yytext); }
127"new" { thrift_reserved_keyword(yytext); }
128"not" { thrift_reserved_keyword(yytext); }
129"or" { thrift_reserved_keyword(yytext); }
130"pass" { thrift_reserved_keyword(yytext); }
131"public" { thrift_reserved_keyword(yytext); }
132"print" { thrift_reserved_keyword(yytext); }
133"private" { thrift_reserved_keyword(yytext); }
134"protected" { thrift_reserved_keyword(yytext); }
135"raise" { thrift_reserved_keyword(yytext); }
136"return" { thrift_reserved_keyword(yytext); }
137"sizeof" { thrift_reserved_keyword(yytext); }
138"static" { thrift_reserved_keyword(yytext); }
139"switch" { thrift_reserved_keyword(yytext); }
140"synchronized" { thrift_reserved_keyword(yytext); }
141"this" { thrift_reserved_keyword(yytext); }
142"throw" { thrift_reserved_keyword(yytext); }
143"transient" { thrift_reserved_keyword(yytext); }
144"true" { thrift_reserved_keyword(yytext); }
145"try" { thrift_reserved_keyword(yytext); }
146"unsigned" { thrift_reserved_keyword(yytext); }
147"var" { thrift_reserved_keyword(yytext); }
148"virtual" { thrift_reserved_keyword(yytext); }
149"volatile" { thrift_reserved_keyword(yytext); }
150"while" { thrift_reserved_keyword(yytext); }
151"with" { thrift_reserved_keyword(yytext); }
152"union" { thrift_reserved_keyword(yytext); }
153"yield" { thrift_reserved_keyword(yytext); }
154
Mark Slee4f8da1d2006-10-12 02:47:27 +0000155{intconstant} {
156 yylval.iconst = atoi(yytext);
157 return tok_int_constant;
158}
Mark Sleef5377b32006-10-10 01:42:59 +0000159
Mark Slee600cdb32006-11-29 22:06:42 +0000160{hexconstant} {
161 sscanf(yytext+2, "%x", &yylval.iconst);
Mark Slee600cdb32006-11-29 22:06:42 +0000162 return tok_int_constant;
163}
164
Mark Slee30152872006-11-28 01:24:07 +0000165{dubconstant} {
166 yylval.dconst = atof(yytext);
167 return tok_dub_constant;
168}
169
Mark Slee4f8da1d2006-10-12 02:47:27 +0000170{identifier} {
171 yylval.id = strdup(yytext);
172 return tok_identifier;
173}
174
Mark Slee30152872006-11-28 01:24:07 +0000175{dliteral} {
176 yylval.id = strdup(yytext+1);
177 yylval.id[strlen(yylval.id)-1] = '\0';
178 return tok_literal;
179}
180
181{sliteral} {
Mark Sleef0712dc2006-10-25 19:03:57 +0000182 yylval.id = strdup(yytext+1);
183 yylval.id[strlen(yylval.id)-1] = '\0';
184 return tok_literal;
185}
Mark Slee31985722006-05-24 21:45:31 +0000186
187%%