blob: 5486adac36d3cd2483d483863d11e28872b724de [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]*)
ccheeverf53b5cf2007-02-05 20:33:11 +000043doctext ("["(("["[^\]\[]*"]")|[^\]\[])*"]") /* allows one level of nesting */
Mark Sleeae2bc3c2006-11-08 23:44:59 +000044symbol ([:;\,\{\}\(\)\=<>\[\]])
ccheeverf53b5cf2007-02-05 20:33:11 +000045dliteral ("\""[^"]*"\"")
46sliteral ("'"[^']*"'")
47
Mark Slee31985722006-05-24 21:45:31 +000048
49%%
50
51{whitespace} { /* do nothing */ }
52{multicomm} { /* do nothing */ }
53{comment} { /* do nothing */ }
Mark Sleec98d0502006-09-06 02:42:25 +000054{unixcomment} { /* do nothing */ }
Mark Slee31985722006-05-24 21:45:31 +000055
Mark Slee9cb7c612006-09-01 22:17:45 +000056{symbol} { return yytext[0]; }
57
Mark Sleef0712dc2006-10-25 19:03:57 +000058"namespace" { return tok_namespace; }
59"cpp_namespace" { return tok_cpp_namespace; }
60"cpp_include" { return tok_cpp_include; }
61"cpp_type" { return tok_cpp_type; }
62"java_package" { return tok_java_package; }
Mark Sleee888b372007-01-12 01:06:24 +000063"php_namespace" { return tok_php_namespace; }
Mark Slee782abbb2007-01-19 00:17:02 +000064"xsd_all" { return tok_xsd_all; }
Mark Slee36bfa2e2007-01-19 20:09:51 +000065"xsd_optional" { return tok_xsd_optional; }
Mark Slee0d9199e2007-01-31 02:08:30 +000066"xsd_namespace" { return tok_xsd_namespace; }
Mark Slee21135c32007-02-05 21:52:08 +000067"xsd_attrs" { return tok_xsd_attrs; }
Mark Sleef0712dc2006-10-25 19:03:57 +000068"include" { return tok_include; }
69
70"void" { return tok_void; }
71"bool" { return tok_bool; }
72"byte" { return tok_byte; }
73"i16" { return tok_i16; }
74"i32" { return tok_i32; }
75"i64" { return tok_i64; }
76"double" { return tok_double; }
77"string" { return tok_string; }
Mark Sleeb6200d82007-01-19 19:14:36 +000078"slist" { return tok_slist; }
Mark Sleef0712dc2006-10-25 19:03:57 +000079"map" { return tok_map; }
80"list" { return tok_list; }
81"set" { return tok_set; }
82"async" { return tok_async; }
83"typedef" { return tok_typedef; }
84"struct" { return tok_struct; }
85"exception" { return tok_xception; }
86"extends" { return tok_extends; }
87"throws" { return tok_throws; }
88"service" { return tok_service; }
89"enum" { return tok_enum; }
Mark Slee30152872006-11-28 01:24:07 +000090"const" { return tok_const; }
Mark Slee52f643d2006-08-09 00:03:43 +000091
Mark Sleef12865a2007-01-12 00:23:26 +000092"abstract" { thrift_reserved_keyword(yytext); }
93"and" { thrift_reserved_keyword(yytext); }
94"as" { thrift_reserved_keyword(yytext); }
95"assert" { thrift_reserved_keyword(yytext); }
96"break" { thrift_reserved_keyword(yytext); }
97"case" { thrift_reserved_keyword(yytext); }
98"class" { thrift_reserved_keyword(yytext); }
99"continue" { thrift_reserved_keyword(yytext); }
100"declare" { thrift_reserved_keyword(yytext); }
101"def" { thrift_reserved_keyword(yytext); }
102"default" { thrift_reserved_keyword(yytext); }
103"del" { thrift_reserved_keyword(yytext); }
104"delete" { thrift_reserved_keyword(yytext); }
105"do" { thrift_reserved_keyword(yytext); }
106"elif" { thrift_reserved_keyword(yytext); }
107"else" { thrift_reserved_keyword(yytext); }
108"elseif" { thrift_reserved_keyword(yytext); }
109"except" { thrift_reserved_keyword(yytext); }
110"exec" { thrift_reserved_keyword(yytext); }
111"false" { thrift_reserved_keyword(yytext); }
112"final" { thrift_reserved_keyword(yytext); }
113"finally" { thrift_reserved_keyword(yytext); }
114"float" { thrift_reserved_keyword(yytext); }
115"for" { thrift_reserved_keyword(yytext); }
116"foreach" { thrift_reserved_keyword(yytext); }
117"function" { thrift_reserved_keyword(yytext); }
118"global" { thrift_reserved_keyword(yytext); }
119"goto" { thrift_reserved_keyword(yytext); }
120"if" { thrift_reserved_keyword(yytext); }
121"implements" { thrift_reserved_keyword(yytext); }
122"import" { thrift_reserved_keyword(yytext); }
123"in" { thrift_reserved_keyword(yytext); }
124"inline" { thrift_reserved_keyword(yytext); }
125"instanceof" { thrift_reserved_keyword(yytext); }
126"interface" { thrift_reserved_keyword(yytext); }
127"is" { thrift_reserved_keyword(yytext); }
128"lambda" { thrift_reserved_keyword(yytext); }
129"native" { thrift_reserved_keyword(yytext); }
130"new" { thrift_reserved_keyword(yytext); }
131"not" { thrift_reserved_keyword(yytext); }
132"or" { thrift_reserved_keyword(yytext); }
133"pass" { thrift_reserved_keyword(yytext); }
134"public" { thrift_reserved_keyword(yytext); }
135"print" { thrift_reserved_keyword(yytext); }
136"private" { thrift_reserved_keyword(yytext); }
137"protected" { thrift_reserved_keyword(yytext); }
138"raise" { thrift_reserved_keyword(yytext); }
139"return" { thrift_reserved_keyword(yytext); }
140"sizeof" { thrift_reserved_keyword(yytext); }
141"static" { thrift_reserved_keyword(yytext); }
142"switch" { thrift_reserved_keyword(yytext); }
143"synchronized" { thrift_reserved_keyword(yytext); }
144"this" { thrift_reserved_keyword(yytext); }
145"throw" { thrift_reserved_keyword(yytext); }
146"transient" { thrift_reserved_keyword(yytext); }
147"true" { thrift_reserved_keyword(yytext); }
148"try" { thrift_reserved_keyword(yytext); }
149"unsigned" { thrift_reserved_keyword(yytext); }
150"var" { thrift_reserved_keyword(yytext); }
151"virtual" { thrift_reserved_keyword(yytext); }
152"volatile" { thrift_reserved_keyword(yytext); }
153"while" { thrift_reserved_keyword(yytext); }
154"with" { thrift_reserved_keyword(yytext); }
155"union" { thrift_reserved_keyword(yytext); }
156"yield" { thrift_reserved_keyword(yytext); }
157
Mark Slee4f8da1d2006-10-12 02:47:27 +0000158{intconstant} {
159 yylval.iconst = atoi(yytext);
160 return tok_int_constant;
161}
Mark Sleef5377b32006-10-10 01:42:59 +0000162
Mark Slee600cdb32006-11-29 22:06:42 +0000163{hexconstant} {
164 sscanf(yytext+2, "%x", &yylval.iconst);
Mark Slee600cdb32006-11-29 22:06:42 +0000165 return tok_int_constant;
166}
167
Mark Slee30152872006-11-28 01:24:07 +0000168{dubconstant} {
169 yylval.dconst = atof(yytext);
170 return tok_dub_constant;
171}
172
Mark Slee4f8da1d2006-10-12 02:47:27 +0000173{identifier} {
174 yylval.id = strdup(yytext);
175 return tok_identifier;
176}
177
Mark Slee30152872006-11-28 01:24:07 +0000178{dliteral} {
179 yylval.id = strdup(yytext+1);
180 yylval.id[strlen(yylval.id)-1] = '\0';
181 return tok_literal;
182}
183
184{sliteral} {
Mark Sleef0712dc2006-10-25 19:03:57 +0000185 yylval.id = strdup(yytext+1);
186 yylval.id[strlen(yylval.id)-1] = '\0';
187 return tok_literal;
188}
Mark Slee31985722006-05-24 21:45:31 +0000189
ccheeverf53b5cf2007-02-05 20:33:11 +0000190{doctext} {
191 yylval.id = strdup(yytext + 1);
192 yylval.id[strlen(yylval.id) - 1] = '\0';
193 return tok_doctext;
194}
195
196
Mark Slee31985722006-05-24 21:45:31 +0000197%%