blob: 00e985054c0042363060dc6daef15c053bf4735b [file] [log] [blame]
David Reissea2cba82009-03-30 21:35:00 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
Mark Sleee9ce01c2007-05-16 02:29:53 +00009 *
David Reissea2cba82009-03-30 21:35:00 +000010 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
Mark Sleee9ce01c2007-05-16 02:29:53 +000018 */
19
20/**
Mark Slee31985722006-05-24 21:45:31 +000021 * Thrift scanner.
Mark Slee27ed6ec2007-08-16 01:26:31 +000022 *
Mark Slee31985722006-05-24 21:45:31 +000023 * Tokenizes a thrift definition file.
Mark Slee31985722006-05-24 21:45:31 +000024 */
Mark Sleef5377b32006-10-10 01:42:59 +000025
Mark Slee31985722006-05-24 21:45:31 +000026%{
27
Christian Lavoieaf65f1b2010-11-24 21:58:05 +000028/* This is redundant with some of the flags in Makefile.am, but it works
29 * when people override CXXFLAGS without being careful. The pragmas are
30 * the 'right' way to do it, but don't work on old-enough GCC (in particular
31 * the GCC that ship on Mac OS X 10.6.5, *counter* to what the GNU docs say)
32 *
33 * We should revert the Makefile.am changes once Apple ships a reasonable
34 * GCC.
35 */
Roger Meier3b771a12010-11-17 22:11:26 +000036#pragma GCC diagnostic ignored "-Wunused-function"
37#pragma GCC diagnostic ignored "-Wunused-label"
38
David Reiss82e6fc02009-03-26 23:32:36 +000039#include <string>
David Reissf1454162008-06-30 20:45:47 +000040#include <errno.h>
Roger Meier9212e792012-06-12 21:01:06 +000041#include <stdlib.h>
David Reissf1454162008-06-30 20:45:47 +000042
Mark Slee31985722006-05-24 21:45:31 +000043#include "main.h"
David Reisscbd4bac2007-08-14 17:12:33 +000044#include "globals.h"
Mark Slee31985722006-05-24 21:45:31 +000045#include "parse/t_program.h"
46
Mark Sleef5377b32006-10-10 01:42:59 +000047/**
48 * Must be included AFTER parse/t_program.h, but I can't remember why anymore
49 * because I wrote this a while ago.
50 */
Mark Sleeeb0d0242007-01-25 07:58:55 +000051#include "thrifty.h"
Mark Slee31985722006-05-24 21:45:31 +000052
Mark Sleef12865a2007-01-12 00:23:26 +000053void thrift_reserved_keyword(char* keyword) {
54 yyerror("Cannot use reserved language keyword: \"%s\"\n", keyword);
55 exit(1);
56}
57
David Reissf1454162008-06-30 20:45:47 +000058void integer_overflow(char* text) {
59 yyerror("This integer is too big: \"%s\"\n", text);
60 exit(1);
61}
62
Bryan Duxbury235f8b52011-08-19 18:27:47 +000063void unexpected_token(char* text) {
64 yyerror("Unexpected token in input: \"%s\"\n", text);
65 exit(1);
66}
67
Mark Slee31985722006-05-24 21:45:31 +000068%}
69
Mark Sleef5377b32006-10-10 01:42:59 +000070/**
71 * Provides the yylineno global, useful for debugging output
72 */
Mark Slee27ed6ec2007-08-16 01:26:31 +000073%option lex-compat
Mark Slee31985722006-05-24 21:45:31 +000074
Mark Slee27ed6ec2007-08-16 01:26:31 +000075/**
David Reiss4563acd2010-08-31 16:51:29 +000076 * Our inputs are all single files, so no need for yywrap
77 */
78%option noyywrap
79
80/**
Christian Lavoie77215d82010-11-07 19:42:48 +000081 * We don't use it, and it fires up warnings at -Wall
82 */
83%option nounput
84
85/**
Mark Sleef5377b32006-10-10 01:42:59 +000086 * Helper definitions, comments, constants, and whatnot
87 */
88
Mark Sleebd588222007-11-21 08:43:35 +000089intconstant ([+-]?[0-9]+)
90hexconstant ("0x"[0-9A-Fa-f]+)
91dubconstant ([+-]?[0-9]*(\.[0-9]+)?([eE][+-]?[0-9]+)?)
92identifier ([a-zA-Z_][\.a-zA-Z_0-9]*)
93whitespace ([ \t\r\n]*)
94sillycomm ("/*""*"*"*/")
95multicomm ("/*"[^*]"/"*([^*/]|[^*]"/"|"*"[^/])*"*"*"*/")
96doctext ("/**"([^*/]|[^*]"/"|"*"[^/])*"*"*"*/")
97comment ("//"[^\n]*)
98unixcomment ("#"[^\n]*)
99symbol ([:;\,\{\}\(\)\=<>\[\]])
Mark Sleebd588222007-11-21 08:43:35 +0000100st_identifier ([a-zA-Z-][\.a-zA-Z_0-9-]*)
David Reiss82e6fc02009-03-26 23:32:36 +0000101literal_begin (['\"])
Mark Slee31985722006-05-24 21:45:31 +0000102
103%%
104
Mark Sleebd588222007-11-21 08:43:35 +0000105{whitespace} { /* do nothing */ }
106{sillycomm} { /* do nothing */ }
107{multicomm} { /* do nothing */ }
108{comment} { /* do nothing */ }
109{unixcomment} { /* do nothing */ }
Mark Slee31985722006-05-24 21:45:31 +0000110
Mark Sleebd588222007-11-21 08:43:35 +0000111{symbol} { return yytext[0]; }
Roger Meier0c3c8952011-08-22 21:38:16 +0000112"*" { return yytext[0]; }
Mark Slee9cb7c612006-09-01 22:17:45 +0000113
Bryan Duxbury6c928f32011-10-13 21:32:52 +0000114"false" { yylval.iconst=0; return tok_int_constant; }
115"true" { yylval.iconst=1; return tok_int_constant; }
116
Mark Sleebd588222007-11-21 08:43:35 +0000117"namespace" { return tok_namespace; }
118"cpp_namespace" { return tok_cpp_namespace; }
119"cpp_include" { return tok_cpp_include; }
120"cpp_type" { return tok_cpp_type; }
121"java_package" { return tok_java_package; }
122"cocoa_prefix" { return tok_cocoa_prefix; }
David Reiss7f42bcf2008-01-11 20:59:12 +0000123"csharp_namespace" { return tok_csharp_namespace; }
Jake Farrell7ae13e12011-10-18 14:35:26 +0000124"delphi_namespace" { return tok_delphi_namespace; }
Mark Sleebd588222007-11-21 08:43:35 +0000125"php_namespace" { return tok_php_namespace; }
126"py_module" { return tok_py_module; }
127"perl_package" { return tok_perl_package; }
128"ruby_namespace" { return tok_ruby_namespace; }
129"smalltalk_category" { return tok_smalltalk_category; }
David Reiss15457c92007-12-14 07:03:03 +0000130"smalltalk_prefix" { return tok_smalltalk_prefix; }
Mark Sleebd588222007-11-21 08:43:35 +0000131"xsd_all" { return tok_xsd_all; }
132"xsd_optional" { return tok_xsd_optional; }
133"xsd_nillable" { return tok_xsd_nillable; }
134"xsd_namespace" { return tok_xsd_namespace; }
135"xsd_attrs" { return tok_xsd_attrs; }
136"include" { return tok_include; }
137"void" { return tok_void; }
138"bool" { return tok_bool; }
139"byte" { return tok_byte; }
140"i16" { return tok_i16; }
141"i32" { return tok_i32; }
142"i64" { return tok_i64; }
143"double" { return tok_double; }
144"string" { return tok_string; }
145"binary" { return tok_binary; }
146"slist" { return tok_slist; }
147"senum" { return tok_senum; }
148"map" { return tok_map; }
149"list" { return tok_list; }
150"set" { return tok_set; }
David Reisscecbed82009-03-24 20:02:22 +0000151"oneway" { return tok_oneway; }
Mark Sleebd588222007-11-21 08:43:35 +0000152"typedef" { return tok_typedef; }
153"struct" { return tok_struct; }
Bryan Duxburyab3666e2009-09-01 23:03:47 +0000154"union" { return tok_union; }
Mark Sleebd588222007-11-21 08:43:35 +0000155"exception" { return tok_xception; }
156"extends" { return tok_extends; }
157"throws" { return tok_throws; }
158"service" { return tok_service; }
159"enum" { return tok_enum; }
160"const" { return tok_const; }
161"required" { return tok_required; }
162"optional" { return tok_optional; }
David Reisscecbed82009-03-24 20:02:22 +0000163"async" {
164 pwarning(0, "\"async\" is deprecated. It is called \"oneway\" now.\n");
165 return tok_oneway;
166}
Mark Sleef0712dc2006-10-25 19:03:57 +0000167
Mark Slee52f643d2006-08-09 00:03:43 +0000168
Bryan Duxbury7f3285e2010-08-05 23:28:14 +0000169"BEGIN" { thrift_reserved_keyword(yytext); }
170"END" { thrift_reserved_keyword(yytext); }
171"__CLASS__" { thrift_reserved_keyword(yytext); }
172"__DIR__" { thrift_reserved_keyword(yytext); }
173"__FILE__" { thrift_reserved_keyword(yytext); }
174"__FUNCTION__" { thrift_reserved_keyword(yytext); }
175"__LINE__" { thrift_reserved_keyword(yytext); }
176"__METHOD__" { thrift_reserved_keyword(yytext); }
177"__NAMESPACE__" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000178"abstract" { thrift_reserved_keyword(yytext); }
Bryan Duxbury7f3285e2010-08-05 23:28:14 +0000179"alias" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000180"and" { thrift_reserved_keyword(yytext); }
Mark Sleec27fc312007-12-21 23:52:19 +0000181"args" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000182"as" { thrift_reserved_keyword(yytext); }
183"assert" { thrift_reserved_keyword(yytext); }
Bryan Duxbury7f3285e2010-08-05 23:28:14 +0000184"begin" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000185"break" { thrift_reserved_keyword(yytext); }
186"case" { thrift_reserved_keyword(yytext); }
Bryan Duxbury7f3285e2010-08-05 23:28:14 +0000187"catch" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000188"class" { thrift_reserved_keyword(yytext); }
Bryan Duxbury7f3285e2010-08-05 23:28:14 +0000189"clone" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000190"continue" { thrift_reserved_keyword(yytext); }
191"declare" { thrift_reserved_keyword(yytext); }
192"def" { thrift_reserved_keyword(yytext); }
193"default" { thrift_reserved_keyword(yytext); }
194"del" { thrift_reserved_keyword(yytext); }
195"delete" { thrift_reserved_keyword(yytext); }
196"do" { thrift_reserved_keyword(yytext); }
Bryan Duxbury7f3285e2010-08-05 23:28:14 +0000197"dynamic" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000198"elif" { thrift_reserved_keyword(yytext); }
199"else" { thrift_reserved_keyword(yytext); }
200"elseif" { thrift_reserved_keyword(yytext); }
Bryan Duxbury7f3285e2010-08-05 23:28:14 +0000201"elsif" { thrift_reserved_keyword(yytext); }
202"end" { thrift_reserved_keyword(yytext); }
203"enddeclare" { thrift_reserved_keyword(yytext); }
204"endfor" { thrift_reserved_keyword(yytext); }
205"endforeach" { thrift_reserved_keyword(yytext); }
206"endif" { thrift_reserved_keyword(yytext); }
207"endswitch" { thrift_reserved_keyword(yytext); }
208"endwhile" { thrift_reserved_keyword(yytext); }
209"ensure" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000210"except" { thrift_reserved_keyword(yytext); }
211"exec" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000212"finally" { thrift_reserved_keyword(yytext); }
213"float" { thrift_reserved_keyword(yytext); }
214"for" { thrift_reserved_keyword(yytext); }
215"foreach" { thrift_reserved_keyword(yytext); }
216"function" { thrift_reserved_keyword(yytext); }
217"global" { thrift_reserved_keyword(yytext); }
218"goto" { thrift_reserved_keyword(yytext); }
219"if" { thrift_reserved_keyword(yytext); }
220"implements" { thrift_reserved_keyword(yytext); }
221"import" { thrift_reserved_keyword(yytext); }
222"in" { thrift_reserved_keyword(yytext); }
223"inline" { thrift_reserved_keyword(yytext); }
224"instanceof" { thrift_reserved_keyword(yytext); }
225"interface" { thrift_reserved_keyword(yytext); }
226"is" { thrift_reserved_keyword(yytext); }
227"lambda" { thrift_reserved_keyword(yytext); }
Bryan Duxbury7f3285e2010-08-05 23:28:14 +0000228"module" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000229"native" { thrift_reserved_keyword(yytext); }
230"new" { thrift_reserved_keyword(yytext); }
Bryan Duxbury7f3285e2010-08-05 23:28:14 +0000231"next" { thrift_reserved_keyword(yytext); }
232"nil" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000233"not" { thrift_reserved_keyword(yytext); }
234"or" { thrift_reserved_keyword(yytext); }
235"pass" { thrift_reserved_keyword(yytext); }
236"public" { thrift_reserved_keyword(yytext); }
237"print" { thrift_reserved_keyword(yytext); }
238"private" { thrift_reserved_keyword(yytext); }
239"protected" { thrift_reserved_keyword(yytext); }
Bryan Duxbury7f3285e2010-08-05 23:28:14 +0000240"public" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000241"raise" { thrift_reserved_keyword(yytext); }
Bryan Duxbury7f3285e2010-08-05 23:28:14 +0000242"redo" { thrift_reserved_keyword(yytext); }
243"rescue" { thrift_reserved_keyword(yytext); }
244"retry" { thrift_reserved_keyword(yytext); }
Mark Sleef5a0b3d2009-08-13 19:21:40 +0000245"register" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000246"return" { thrift_reserved_keyword(yytext); }
Bryan Duxbury7f3285e2010-08-05 23:28:14 +0000247"self" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000248"sizeof" { thrift_reserved_keyword(yytext); }
249"static" { thrift_reserved_keyword(yytext); }
Bryan Duxbury7f3285e2010-08-05 23:28:14 +0000250"super" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000251"switch" { thrift_reserved_keyword(yytext); }
252"synchronized" { thrift_reserved_keyword(yytext); }
Bryan Duxbury7f3285e2010-08-05 23:28:14 +0000253"then" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000254"this" { thrift_reserved_keyword(yytext); }
255"throw" { thrift_reserved_keyword(yytext); }
256"transient" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000257"try" { thrift_reserved_keyword(yytext); }
Bryan Duxbury7f3285e2010-08-05 23:28:14 +0000258"undef" { thrift_reserved_keyword(yytext); }
259"union" { thrift_reserved_keyword(yytext); }
260"unless" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000261"unsigned" { thrift_reserved_keyword(yytext); }
Bryan Duxbury7f3285e2010-08-05 23:28:14 +0000262"until" { thrift_reserved_keyword(yytext); }
263"use" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000264"var" { thrift_reserved_keyword(yytext); }
265"virtual" { thrift_reserved_keyword(yytext); }
266"volatile" { thrift_reserved_keyword(yytext); }
Bryan Duxbury7f3285e2010-08-05 23:28:14 +0000267"when" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000268"while" { thrift_reserved_keyword(yytext); }
269"with" { thrift_reserved_keyword(yytext); }
Bryan Duxbury7f3285e2010-08-05 23:28:14 +0000270"xor" { thrift_reserved_keyword(yytext); }
Mark Sleebd588222007-11-21 08:43:35 +0000271"yield" { thrift_reserved_keyword(yytext); }
Mark Sleef12865a2007-01-12 00:23:26 +0000272
Mark Slee4f8da1d2006-10-12 02:47:27 +0000273{intconstant} {
David Reissf1454162008-06-30 20:45:47 +0000274 errno = 0;
275 yylval.iconst = strtoll(yytext, NULL, 10);
276 if (errno == ERANGE) {
277 integer_overflow(yytext);
278 }
Mark Slee4f8da1d2006-10-12 02:47:27 +0000279 return tok_int_constant;
280}
Mark Sleef5377b32006-10-10 01:42:59 +0000281
Mark Slee600cdb32006-11-29 22:06:42 +0000282{hexconstant} {
David Reissf1454162008-06-30 20:45:47 +0000283 errno = 0;
284 yylval.iconst = strtoll(yytext+2, NULL, 16);
285 if (errno == ERANGE) {
286 integer_overflow(yytext);
287 }
Mark Slee600cdb32006-11-29 22:06:42 +0000288 return tok_int_constant;
289}
290
Mark Slee30152872006-11-28 01:24:07 +0000291{dubconstant} {
292 yylval.dconst = atof(yytext);
293 return tok_dub_constant;
294}
295
Mark Slee4f8da1d2006-10-12 02:47:27 +0000296{identifier} {
297 yylval.id = strdup(yytext);
298 return tok_identifier;
299}
300
Mark Sleebd588222007-11-21 08:43:35 +0000301{st_identifier} {
302 yylval.id = strdup(yytext);
303 return tok_st_identifier;
304}
305
David Reiss82e6fc02009-03-26 23:32:36 +0000306{literal_begin} {
307 char mark = yytext[0];
308 std::string result;
309 for(;;)
310 {
311 int ch = yyinput();
312 switch (ch) {
313 case EOF:
314 yyerror("End of file while read string at %d\n", yylineno);
315 exit(1);
316 case '\n':
317 yyerror("End of line while read string at %d\n", yylineno - 1);
318 exit(1);
319 case '\\':
320 ch = yyinput();
321 switch (ch) {
322 case 'r':
323 result.push_back('\r');
324 continue;
325 case 'n':
326 result.push_back('\n');
327 continue;
328 case 't':
329 result.push_back('\t');
330 continue;
331 case '"':
332 result.push_back('"');
333 continue;
334 case '\'':
335 result.push_back('\'');
336 continue;
337 case '\\':
338 result.push_back('\\');
339 continue;
340 default:
341 yyerror("Bad escape character\n");
342 return -1;
343 }
344 break;
345 default:
346 if (ch == mark) {
347 yylval.id = strdup(result.c_str());
348 return tok_literal;
349 } else {
350 result.push_back(ch);
351 }
352 }
353 }
Mark Slee30152872006-11-28 01:24:07 +0000354}
355
Mark Slee31985722006-05-24 21:45:31 +0000356
ccheeverf53b5cf2007-02-05 20:33:11 +0000357{doctext} {
David Reisscbd4bac2007-08-14 17:12:33 +0000358 /* This does not show up in the parse tree. */
359 /* Rather, the parser will grab it out of the global. */
360 if (g_parse_mode == PROGRAM) {
361 clear_doctext();
362 g_doctext = strdup(yytext + 3);
363 g_doctext[strlen(g_doctext) - 2] = '\0';
364 g_doctext = clean_up_doctext(g_doctext);
365 g_doctext_lineno = yylineno;
366 }
ccheeverf53b5cf2007-02-05 20:33:11 +0000367}
368
Bryan Duxbury235f8b52011-08-19 18:27:47 +0000369. {
370 unexpected_token(yytext);
371}
372
ccheeverf53b5cf2007-02-05 20:33:11 +0000373
David Reissfb790d72010-09-02 16:41:45 +0000374. {
375 /* Catch-all to let us catch "*" in the parser. */
376 return (int) yytext[0];
377}
378
Mark Slee31985722006-05-24 21:45:31 +0000379%%
David Reiss4a054342009-03-26 23:32:27 +0000380
381/* vim: filetype=lex
382*/