blob: f27e9ab96b700eca34a2e6c5c2065edfe74e498f [file] [log] [blame]
Mark Slee31985722006-05-24 21:45:31 +00001%{
Mark Sleee9ce01c2007-05-16 02:29:53 +00002// Copyright (c) 2006- Facebook
3// Distributed under the Thrift Software License
4//
5// See accompanying file LICENSE or visit the Thrift site at:
6// http://developers.facebook.com/thrift/
Mark Slee31985722006-05-24 21:45:31 +00007
8/**
9 * Thrift parser.
10 *
11 * This parser is used on a thrift definition file.
12 *
13 * @author Mark Slee <mcslee@facebook.com>
14 */
15
David Reissf1454162008-06-30 20:45:47 +000016#define __STDC_LIMIT_MACROS
17#define __STDC_FORMAT_MACROS
Mark Slee31985722006-05-24 21:45:31 +000018#include <stdio.h>
David Reissf1454162008-06-30 20:45:47 +000019#include <inttypes.h>
David Reiss400a5432008-07-25 19:48:39 +000020#include <limits.h>
Mark Slee31985722006-05-24 21:45:31 +000021#include "main.h"
22#include "globals.h"
23#include "parse/t_program.h"
Mark Sleef0712dc2006-10-25 19:03:57 +000024#include "parse/t_scope.h"
Mark Slee31985722006-05-24 21:45:31 +000025
Mark Sleef5377b32006-10-10 01:42:59 +000026/**
27 * This global variable is used for automatic numbering of field indices etc.
28 * when parsing the members of a struct. Field values are automatically
29 * assigned starting from -1 and working their way down.
30 */
Mark Slee9cb7c612006-09-01 22:17:45 +000031int y_field_val = -1;
Mark Slee78165722007-09-10 22:08:49 +000032int g_arglist = 0;
Mark Slee31985722006-05-24 21:45:31 +000033
34%}
35
Mark Sleef5377b32006-10-10 01:42:59 +000036/**
37 * This structure is used by the parser to hold the data types associated with
38 * various parse nodes.
39 */
Mark Slee31985722006-05-24 21:45:31 +000040%union {
Mark Slee30152872006-11-28 01:24:07 +000041 char* id;
David Reissf1454162008-06-30 20:45:47 +000042 int64_t iconst;
Mark Slee30152872006-11-28 01:24:07 +000043 double dconst;
44 bool tbool;
David Reisscdffe262007-08-14 17:12:31 +000045 t_doc* tdoc;
Mark Slee30152872006-11-28 01:24:07 +000046 t_type* ttype;
Mark Slee6a47fed2007-02-07 02:40:59 +000047 t_base_type* tbase;
Mark Slee30152872006-11-28 01:24:07 +000048 t_typedef* ttypedef;
49 t_enum* tenum;
50 t_enum_value* tenumv;
51 t_const* tconst;
52 t_const_value* tconstv;
53 t_struct* tstruct;
54 t_service* tservice;
55 t_function* tfunction;
56 t_field* tfield;
David Reisscdffe262007-08-14 17:12:31 +000057 char* dtext;
David Reiss8320a922007-08-14 19:59:26 +000058 t_field::e_req ereq;
David Reissa2309992008-12-10 01:52:48 +000059 t_annotation* tannot;
Mark Slee31985722006-05-24 21:45:31 +000060}
61
Mark Sleef5377b32006-10-10 01:42:59 +000062/**
63 * Strings identifier
64 */
Mark Slee31985722006-05-24 21:45:31 +000065%token<id> tok_identifier
Mark Sleef0712dc2006-10-25 19:03:57 +000066%token<id> tok_literal
David Reisscdffe262007-08-14 17:12:31 +000067%token<dtext> tok_doctext
Mark Sleebd588222007-11-21 08:43:35 +000068%token<id> tok_st_identifier
Mark Sleef5377b32006-10-10 01:42:59 +000069
70/**
Mark Slee30152872006-11-28 01:24:07 +000071 * Constant values
Mark Sleef5377b32006-10-10 01:42:59 +000072 */
Mark Slee31985722006-05-24 21:45:31 +000073%token<iconst> tok_int_constant
Mark Slee30152872006-11-28 01:24:07 +000074%token<dconst> tok_dub_constant
Mark Slee31985722006-05-24 21:45:31 +000075
Mark Sleef5377b32006-10-10 01:42:59 +000076/**
David Reiss399442b2008-02-20 02:28:05 +000077 * Header keywords
Mark Sleef5377b32006-10-10 01:42:59 +000078 */
Mark Sleef0712dc2006-10-25 19:03:57 +000079%token tok_include
Mark Slee9cb7c612006-09-01 22:17:45 +000080%token tok_namespace
Mark Sleef0712dc2006-10-25 19:03:57 +000081%token tok_cpp_namespace
82%token tok_cpp_include
83%token tok_cpp_type
Mark Sleee888b372007-01-12 01:06:24 +000084%token tok_php_namespace
David Reissc6fc3292007-08-30 00:58:43 +000085%token tok_py_module
Mark Slee27ed6ec2007-08-16 01:26:31 +000086%token tok_perl_package
Mark Sleef0712dc2006-10-25 19:03:57 +000087%token tok_java_package
Mark Slee782abbb2007-01-19 00:17:02 +000088%token tok_xsd_all
Mark Slee36bfa2e2007-01-19 20:09:51 +000089%token tok_xsd_optional
Mark Slee7df0e2a2007-02-06 21:03:18 +000090%token tok_xsd_nillable
Mark Slee0d9199e2007-01-31 02:08:30 +000091%token tok_xsd_namespace
Mark Slee21135c32007-02-05 21:52:08 +000092%token tok_xsd_attrs
Mark Slee58dfb4f2007-07-06 02:45:25 +000093%token tok_ruby_namespace
Mark Sleebd588222007-11-21 08:43:35 +000094%token tok_smalltalk_category
David Reiss15457c92007-12-14 07:03:03 +000095%token tok_smalltalk_prefix
Mark Slee7e9eea42007-09-10 21:00:23 +000096%token tok_cocoa_prefix
David Reiss7f42bcf2008-01-11 20:59:12 +000097%token tok_csharp_namespace
Mark Slee9cb7c612006-09-01 22:17:45 +000098
Mark Sleef5377b32006-10-10 01:42:59 +000099/**
100 * Base datatype keywords
101 */
102%token tok_void
Mark Slee78f58e22006-09-02 04:17:07 +0000103%token tok_bool
Mark Slee31985722006-05-24 21:45:31 +0000104%token tok_byte
105%token tok_string
Mark Slee8d725a22007-04-13 01:57:12 +0000106%token tok_binary
Mark Sleeb6200d82007-01-19 19:14:36 +0000107%token tok_slist
Mark Slee6a47fed2007-02-07 02:40:59 +0000108%token tok_senum
Mark Slee9cb7c612006-09-01 22:17:45 +0000109%token tok_i16
Mark Slee31985722006-05-24 21:45:31 +0000110%token tok_i32
Mark Slee31985722006-05-24 21:45:31 +0000111%token tok_i64
Mark Slee9cb7c612006-09-01 22:17:45 +0000112%token tok_double
Mark Slee31985722006-05-24 21:45:31 +0000113
Mark Sleef5377b32006-10-10 01:42:59 +0000114/**
115 * Complex type keywords
116 */
Mark Slee31985722006-05-24 21:45:31 +0000117%token tok_map
118%token tok_list
119%token tok_set
120
Mark Sleef5377b32006-10-10 01:42:59 +0000121/**
122 * Function modifiers
Mark Slee27ed6ec2007-08-16 01:26:31 +0000123 */
Mark Slee31985722006-05-24 21:45:31 +0000124%token tok_async
125
Mark Sleef5377b32006-10-10 01:42:59 +0000126/**
127 * Thrift language keywords
128 */
Mark Slee31985722006-05-24 21:45:31 +0000129%token tok_typedef
130%token tok_struct
Mark Slee9cb7c612006-09-01 22:17:45 +0000131%token tok_xception
132%token tok_throws
Mark Sleef0712dc2006-10-25 19:03:57 +0000133%token tok_extends
Mark Slee31985722006-05-24 21:45:31 +0000134%token tok_service
135%token tok_enum
Mark Slee30152872006-11-28 01:24:07 +0000136%token tok_const
David Reiss8320a922007-08-14 19:59:26 +0000137%token tok_required
138%token tok_optional
Mark Slee31985722006-05-24 21:45:31 +0000139
Mark Sleef5377b32006-10-10 01:42:59 +0000140/**
141 * Grammar nodes
142 */
143
Mark Slee31985722006-05-24 21:45:31 +0000144%type<ttype> BaseType
Mark Sleee8540632006-05-30 09:24:40 +0000145%type<ttype> ContainerType
David Reissa2309992008-12-10 01:52:48 +0000146%type<ttype> SimpleContainerType
Mark Sleee8540632006-05-30 09:24:40 +0000147%type<ttype> MapType
148%type<ttype> SetType
149%type<ttype> ListType
Mark Slee31985722006-05-24 21:45:31 +0000150
David Reisscdffe262007-08-14 17:12:31 +0000151%type<tdoc> Definition
Mark Sleef0712dc2006-10-25 19:03:57 +0000152%type<ttype> TypeDefinition
153
Mark Slee31985722006-05-24 21:45:31 +0000154%type<ttypedef> Typedef
155%type<ttype> DefinitionType
156
David Reissa2309992008-12-10 01:52:48 +0000157%type<ttype> TypeAnnotations
158%type<ttype> TypeAnnotationList
159%type<tannot> TypeAnnotation
160
Mark Slee31985722006-05-24 21:45:31 +0000161%type<tfield> Field
Mark Slee7ff32452007-02-01 05:26:18 +0000162%type<iconst> FieldIdentifier
David Reiss8320a922007-08-14 19:59:26 +0000163%type<ereq> FieldRequiredness
Mark Slee31985722006-05-24 21:45:31 +0000164%type<ttype> FieldType
Mark Slee7ff32452007-02-01 05:26:18 +0000165%type<tconstv> FieldValue
Mark Sleee8540632006-05-30 09:24:40 +0000166%type<tstruct> FieldList
Mark Slee31985722006-05-24 21:45:31 +0000167
168%type<tenum> Enum
169%type<tenum> EnumDefList
Mark Slee30152872006-11-28 01:24:07 +0000170%type<tenumv> EnumDef
171
Mark Slee6a47fed2007-02-07 02:40:59 +0000172%type<ttypedef> Senum
173%type<tbase> SenumDefList
174%type<id> SenumDef
175
Mark Slee30152872006-11-28 01:24:07 +0000176%type<tconst> Const
177%type<tconstv> ConstValue
178%type<tconstv> ConstList
179%type<tconstv> ConstListContents
180%type<tconstv> ConstMap
181%type<tconstv> ConstMapContents
Mark Slee31985722006-05-24 21:45:31 +0000182
183%type<tstruct> Struct
Mark Slee9cb7c612006-09-01 22:17:45 +0000184%type<tstruct> Xception
Mark Slee31985722006-05-24 21:45:31 +0000185%type<tservice> Service
186
187%type<tfunction> Function
Mark Slee31985722006-05-24 21:45:31 +0000188%type<ttype> FunctionType
189%type<tservice> FunctionList
190
Mark Slee36bfa2e2007-01-19 20:09:51 +0000191%type<tstruct> Throws
192%type<tservice> Extends
193%type<tbool> Async
194%type<tbool> XsdAll
195%type<tbool> XsdOptional
Mark Slee7df0e2a2007-02-06 21:03:18 +0000196%type<tbool> XsdNillable
Mark Slee748d83f2007-02-07 01:20:08 +0000197%type<tstruct> XsdAttributes
Mark Slee36bfa2e2007-01-19 20:09:51 +0000198%type<id> CppType
Mark Slee52f643d2006-08-09 00:03:43 +0000199
David Reisscbd4bac2007-08-14 17:12:33 +0000200%type<dtext> CaptureDocText
ccheeverf53b5cf2007-02-05 20:33:11 +0000201
Mark Slee31985722006-05-24 21:45:31 +0000202%%
203
Mark Sleef5377b32006-10-10 01:42:59 +0000204/**
205 * Thrift Grammar Implementation.
206 *
207 * For the most part this source file works its way top down from what you
208 * might expect to find in a typical .thrift file, i.e. type definitions and
209 * namespaces up top followed by service definitions using those types.
210 */
Mark Slee31985722006-05-24 21:45:31 +0000211
212Program:
David Reisscbd4bac2007-08-14 17:12:33 +0000213 HeaderList DefinitionList
Mark Sleef0712dc2006-10-25 19:03:57 +0000214 {
215 pdebug("Program -> Headers DefinitionList");
David Reisscbd4bac2007-08-14 17:12:33 +0000216 /*
217 TODO(dreiss): Decide whether full-program doctext is worth the trouble.
David Reissc2532a92007-07-30 23:46:11 +0000218 if ($1 != NULL) {
219 g_program->set_doc($1);
220 }
David Reisscbd4bac2007-08-14 17:12:33 +0000221 */
222 clear_doctext();
Mark Sleef0712dc2006-10-25 19:03:57 +0000223 }
224
David Reisscbd4bac2007-08-14 17:12:33 +0000225CaptureDocText:
226 {
227 if (g_parse_mode == PROGRAM) {
Mark Sleebd588222007-11-21 08:43:35 +0000228 $$ = g_doctext;
David Reisscbd4bac2007-08-14 17:12:33 +0000229 g_doctext = NULL;
Mark Slee27ed6ec2007-08-16 01:26:31 +0000230 } else {
David Reisscbd4bac2007-08-14 17:12:33 +0000231 $$ = NULL;
232 }
233 }
234
235/* TODO(dreiss): Try to DestroyDocText in all sorts or random places. */
236DestroyDocText:
237 {
238 if (g_parse_mode == PROGRAM) {
239 clear_doctext();
240 }
241 }
242
243/* We have to DestroyDocText here, otherwise it catches the doctext
244 on the first real element. */
Mark Sleef0712dc2006-10-25 19:03:57 +0000245HeaderList:
David Reisscbd4bac2007-08-14 17:12:33 +0000246 HeaderList DestroyDocText Header
Mark Sleef0712dc2006-10-25 19:03:57 +0000247 {
248 pdebug("HeaderList -> HeaderList Header");
249 }
250|
251 {
252 pdebug("HeaderList -> ");
253 }
254
255Header:
256 Include
257 {
258 pdebug("Header -> Include");
259 }
David Reiss79eca142008-02-27 01:55:13 +0000260| tok_namespace tok_identifier tok_identifier
Mark Sleef0712dc2006-10-25 19:03:57 +0000261 {
David Reiss79eca142008-02-27 01:55:13 +0000262 pdebug("Header -> tok_namespace tok_identifier tok_identifier");
Mark Sleef0712dc2006-10-25 19:03:57 +0000263 if (g_parse_mode == PROGRAM) {
David Reiss79eca142008-02-27 01:55:13 +0000264 g_program->set_namespace($2, $3);
Mark Sleef0712dc2006-10-25 19:03:57 +0000265 }
266 }
David Reiss9a08dc62008-02-27 01:55:17 +0000267/* TODO(dreiss): Get rid of this once everyone is using the new hotness. */
Mark Sleef0712dc2006-10-25 19:03:57 +0000268| tok_cpp_namespace tok_identifier
269 {
David Reiss9a08dc62008-02-27 01:55:17 +0000270 pwarning(1, "'cpp_namespace' is deprecated. Use 'namespace cpp' instead");
Mark Sleef0712dc2006-10-25 19:03:57 +0000271 pdebug("Header -> tok_cpp_namespace tok_identifier");
272 if (g_parse_mode == PROGRAM) {
David Reiss9a08dc62008-02-27 01:55:17 +0000273 g_program->set_namespace("cpp", $2);
Mark Sleef0712dc2006-10-25 19:03:57 +0000274 }
275 }
276| tok_cpp_include tok_literal
277 {
278 pdebug("Header -> tok_cpp_include tok_literal");
279 if (g_parse_mode == PROGRAM) {
280 g_program->add_cpp_include($2);
281 }
282 }
Mark Sleee888b372007-01-12 01:06:24 +0000283| tok_php_namespace tok_identifier
284 {
285 pdebug("Header -> tok_php_namespace tok_identifier");
286 if (g_parse_mode == PROGRAM) {
287 g_program->set_php_namespace($2);
288 }
289 }
David Reiss320e45c2008-03-27 21:41:54 +0000290/* TODO(dreiss): Get rid of this once everyone is using the new hotness. */
David Reissc6fc3292007-08-30 00:58:43 +0000291| tok_py_module tok_identifier
292 {
David Reiss320e45c2008-03-27 21:41:54 +0000293 pwarning(1, "'py_module' is deprecated. Use 'namespace py' instead");
David Reissc6fc3292007-08-30 00:58:43 +0000294 pdebug("Header -> tok_py_module tok_identifier");
295 if (g_parse_mode == PROGRAM) {
David Reiss320e45c2008-03-27 21:41:54 +0000296 g_program->set_namespace("py", $2);
David Reissc6fc3292007-08-30 00:58:43 +0000297 }
298 }
David Reiss07ef3a92008-03-27 21:42:39 +0000299/* TODO(dreiss): Get rid of this once everyone is using the new hotness. */
Mark Slee27ed6ec2007-08-16 01:26:31 +0000300| tok_perl_package tok_identifier
301 {
David Reiss07ef3a92008-03-27 21:42:39 +0000302 pwarning(1, "'perl_package' is deprecated. Use 'namespace perl' instead");
Mark Slee27ed6ec2007-08-16 01:26:31 +0000303 pdebug("Header -> tok_perl_namespace tok_identifier");
304 if (g_parse_mode == PROGRAM) {
David Reiss07ef3a92008-03-27 21:42:39 +0000305 g_program->set_namespace("perl", $2);
Mark Slee27ed6ec2007-08-16 01:26:31 +0000306 }
307 }
David Reiss6a4b82c2008-03-27 21:42:16 +0000308/* TODO(dreiss): Get rid of this once everyone is using the new hotness. */
Mark Slee58dfb4f2007-07-06 02:45:25 +0000309| tok_ruby_namespace tok_identifier
310 {
David Reiss6a4b82c2008-03-27 21:42:16 +0000311 pwarning(1, "'ruby_namespace' is deprecated. Use 'namespace rb' instead");
Mark Slee58dfb4f2007-07-06 02:45:25 +0000312 pdebug("Header -> tok_ruby_namespace tok_identifier");
313 if (g_parse_mode == PROGRAM) {
David Reiss6a4b82c2008-03-27 21:42:16 +0000314 g_program->set_namespace("rb", $2);
Mark Slee58dfb4f2007-07-06 02:45:25 +0000315 }
316 }
David Reiss3b455012008-03-27 21:40:46 +0000317/* TODO(dreiss): Get rid of this once everyone is using the new hotness. */
Mark Sleebd588222007-11-21 08:43:35 +0000318| tok_smalltalk_category tok_st_identifier
319 {
David Reiss3b455012008-03-27 21:40:46 +0000320 pwarning(1, "'smalltalk_category' is deprecated. Use 'namespace smalltalk.category' instead");
Mark Sleebd588222007-11-21 08:43:35 +0000321 pdebug("Header -> tok_smalltalk_category tok_st_identifier");
322 if (g_parse_mode == PROGRAM) {
David Reiss3b455012008-03-27 21:40:46 +0000323 g_program->set_namespace("smalltalk.category", $2);
Mark Sleebd588222007-11-21 08:43:35 +0000324 }
325 }
David Reiss3b455012008-03-27 21:40:46 +0000326/* TODO(dreiss): Get rid of this once everyone is using the new hotness. */
David Reiss15457c92007-12-14 07:03:03 +0000327| tok_smalltalk_prefix tok_identifier
328 {
David Reiss3b455012008-03-27 21:40:46 +0000329 pwarning(1, "'smalltalk_prefix' is deprecated. Use 'namespace smalltalk.prefix' instead");
David Reiss15457c92007-12-14 07:03:03 +0000330 pdebug("Header -> tok_smalltalk_prefix tok_identifier");
331 if (g_parse_mode == PROGRAM) {
David Reiss3b455012008-03-27 21:40:46 +0000332 g_program->set_namespace("smalltalk.prefix", $2);
David Reiss15457c92007-12-14 07:03:03 +0000333 }
334 }
David Reiss771f8c72008-02-27 01:55:25 +0000335/* TODO(dreiss): Get rid of this once everyone is using the new hotness. */
Mark Sleef0712dc2006-10-25 19:03:57 +0000336| tok_java_package tok_identifier
337 {
David Reiss9f646152008-03-02 21:59:48 +0000338 pwarning(1, "'java_package' is deprecated. Use 'namespace java' instead");
Mark Sleef0712dc2006-10-25 19:03:57 +0000339 pdebug("Header -> tok_java_package tok_identifier");
340 if (g_parse_mode == PROGRAM) {
David Reiss771f8c72008-02-27 01:55:25 +0000341 g_program->set_namespace("java", $2);
Mark Sleef0712dc2006-10-25 19:03:57 +0000342 }
343 }
David Reiss54b602b2008-03-27 21:41:06 +0000344/* TODO(dreiss): Get rid of this once everyone is using the new hotness. */
Mark Slee7e9eea42007-09-10 21:00:23 +0000345| tok_cocoa_prefix tok_identifier
346 {
David Reiss54b602b2008-03-27 21:41:06 +0000347 pwarning(1, "'cocoa_prefix' is deprecated. Use 'namespace cocoa' instead");
Mark Slee7e9eea42007-09-10 21:00:23 +0000348 pdebug("Header -> tok_cocoa_prefix tok_identifier");
349 if (g_parse_mode == PROGRAM) {
David Reiss54b602b2008-03-27 21:41:06 +0000350 g_program->set_namespace("cocoa", $2);
Mark Slee7e9eea42007-09-10 21:00:23 +0000351 }
352 }
Mark Slee0d9199e2007-01-31 02:08:30 +0000353| tok_xsd_namespace tok_literal
354 {
355 pdebug("Header -> tok_xsd_namespace tok_literal");
356 if (g_parse_mode == PROGRAM) {
357 g_program->set_xsd_namespace($2);
358 }
359 }
David Reiss9d65bf02008-03-27 21:41:37 +0000360/* TODO(dreiss): Get rid of this once everyone is using the new hotness. */
David Reiss7f42bcf2008-01-11 20:59:12 +0000361| tok_csharp_namespace tok_identifier
362 {
David Reiss9d65bf02008-03-27 21:41:37 +0000363 pwarning(1, "'csharp_namespace' is deprecated. Use 'namespace csharp' instead");
David Reiss919ae802008-03-27 21:41:11 +0000364 pdebug("Header -> tok_csharp_namespace tok_identifier");
David Reiss7f42bcf2008-01-11 20:59:12 +0000365 if (g_parse_mode == PROGRAM) {
David Reiss9d65bf02008-03-27 21:41:37 +0000366 g_program->set_namespace("csharp", $2);
David Reiss7f42bcf2008-01-11 20:59:12 +0000367 }
368 }
Mark Sleef0712dc2006-10-25 19:03:57 +0000369
370Include:
371 tok_include tok_literal
372 {
Mark Slee27ed6ec2007-08-16 01:26:31 +0000373 pdebug("Include -> tok_include tok_literal");
Mark Sleef0712dc2006-10-25 19:03:57 +0000374 if (g_parse_mode == INCLUDES) {
375 std::string path = include_file(std::string($2));
376 if (!path.empty()) {
kholst76f2c882008-01-16 02:47:41 +0000377 g_program->add_include(path, std::string($2));
Mark Sleef0712dc2006-10-25 19:03:57 +0000378 }
379 }
380 }
Mark Slee31985722006-05-24 21:45:31 +0000381
382DefinitionList:
David Reisscbd4bac2007-08-14 17:12:33 +0000383 DefinitionList CaptureDocText Definition
Mark Slee31985722006-05-24 21:45:31 +0000384 {
385 pdebug("DefinitionList -> DefinitionList Definition");
David Reisscdffe262007-08-14 17:12:31 +0000386 if ($2 != NULL && $3 != NULL) {
387 $3->set_doc($2);
388 }
Mark Slee31985722006-05-24 21:45:31 +0000389 }
390|
391 {
392 pdebug("DefinitionList -> ");
393 }
394
395Definition:
Mark Slee30152872006-11-28 01:24:07 +0000396 Const
397 {
398 pdebug("Definition -> Const");
399 if (g_parse_mode == PROGRAM) {
400 g_program->add_const($1);
Mark Sleebd588222007-11-21 08:43:35 +0000401 }
David Reisscdffe262007-08-14 17:12:31 +0000402 $$ = $1;
Mark Slee30152872006-11-28 01:24:07 +0000403 }
404| TypeDefinition
Mark Slee9cb7c612006-09-01 22:17:45 +0000405 {
Mark Sleef0712dc2006-10-25 19:03:57 +0000406 pdebug("Definition -> TypeDefinition");
407 if (g_parse_mode == PROGRAM) {
408 g_scope->add_type($1->get_name(), $1);
409 if (g_parent_scope != NULL) {
410 g_parent_scope->add_type(g_parent_prefix + $1->get_name(), $1);
411 }
412 }
David Reisscdffe262007-08-14 17:12:31 +0000413 $$ = $1;
Mark Slee9cb7c612006-09-01 22:17:45 +0000414 }
Mark Slee31985722006-05-24 21:45:31 +0000415| Service
416 {
417 pdebug("Definition -> Service");
Mark Sleef0712dc2006-10-25 19:03:57 +0000418 if (g_parse_mode == PROGRAM) {
419 g_scope->add_service($1->get_name(), $1);
420 if (g_parent_scope != NULL) {
421 g_parent_scope->add_service(g_parent_prefix + $1->get_name(), $1);
422 }
423 g_program->add_service($1);
424 }
David Reisscdffe262007-08-14 17:12:31 +0000425 $$ = $1;
Mark Slee9cb7c612006-09-01 22:17:45 +0000426 }
427
Mark Sleef0712dc2006-10-25 19:03:57 +0000428TypeDefinition:
429 Typedef
Mark Slee9cb7c612006-09-01 22:17:45 +0000430 {
Mark Sleef0712dc2006-10-25 19:03:57 +0000431 pdebug("TypeDefinition -> Typedef");
432 if (g_parse_mode == PROGRAM) {
433 g_program->add_typedef($1);
434 }
435 }
436| Enum
437 {
438 pdebug("TypeDefinition -> Enum");
439 if (g_parse_mode == PROGRAM) {
440 g_program->add_enum($1);
441 }
442 }
Mark Slee6a47fed2007-02-07 02:40:59 +0000443| Senum
444 {
445 pdebug("TypeDefinition -> Senum");
446 if (g_parse_mode == PROGRAM) {
447 g_program->add_typedef($1);
448 }
449 }
Mark Sleef0712dc2006-10-25 19:03:57 +0000450| Struct
451 {
452 pdebug("TypeDefinition -> Struct");
453 if (g_parse_mode == PROGRAM) {
454 g_program->add_struct($1);
455 }
456 }
457| Xception
Mark Slee27ed6ec2007-08-16 01:26:31 +0000458 {
Mark Sleef0712dc2006-10-25 19:03:57 +0000459 pdebug("TypeDefinition -> Xception");
460 if (g_parse_mode == PROGRAM) {
461 g_program->add_xception($1);
462 }
Mark Slee9cb7c612006-09-01 22:17:45 +0000463 }
Mark Slee31985722006-05-24 21:45:31 +0000464
465Typedef:
Mark Sleebd588222007-11-21 08:43:35 +0000466 tok_typedef DefinitionType tok_identifier
Mark Slee31985722006-05-24 21:45:31 +0000467 {
468 pdebug("TypeDef -> tok_typedef DefinitionType tok_identifier");
David Reisscdffe262007-08-14 17:12:31 +0000469 t_typedef *td = new t_typedef(g_program, $2, $3);
Mark Slee31985722006-05-24 21:45:31 +0000470 $$ = td;
471 }
472
Mark Slee6a47fed2007-02-07 02:40:59 +0000473CommaOrSemicolonOptional:
474 ','
475 {}
476| ';'
477 {}
478|
479 {}
ccheeverf53b5cf2007-02-05 20:33:11 +0000480
Mark Slee31985722006-05-24 21:45:31 +0000481Enum:
David Reisscdffe262007-08-14 17:12:31 +0000482 tok_enum tok_identifier '{' EnumDefList '}'
Mark Slee31985722006-05-24 21:45:31 +0000483 {
484 pdebug("Enum -> tok_enum tok_identifier { EnumDefList }");
David Reisscdffe262007-08-14 17:12:31 +0000485 $$ = $4;
486 $$->set_name($2);
Mark Slee31985722006-05-24 21:45:31 +0000487 }
488
489EnumDefList:
Mark Slee207cb462006-11-02 18:43:12 +0000490 EnumDefList EnumDef
Mark Slee31985722006-05-24 21:45:31 +0000491 {
492 pdebug("EnumDefList -> EnumDefList EnumDef");
493 $$ = $1;
Mark Slee207cb462006-11-02 18:43:12 +0000494 $$->append($2);
Mark Slee31985722006-05-24 21:45:31 +0000495 }
496|
497 {
498 pdebug("EnumDefList -> ");
Mark Sleef0712dc2006-10-25 19:03:57 +0000499 $$ = new t_enum(g_program);
Mark Slee31985722006-05-24 21:45:31 +0000500 }
501
502EnumDef:
David Reisscbd4bac2007-08-14 17:12:33 +0000503 CaptureDocText tok_identifier '=' tok_int_constant CommaOrSemicolonOptional
Mark Slee31985722006-05-24 21:45:31 +0000504 {
Mark Slee30152872006-11-28 01:24:07 +0000505 pdebug("EnumDef -> tok_identifier = tok_int_constant");
ccheeverf53b5cf2007-02-05 20:33:11 +0000506 if ($4 < 0) {
507 pwarning(1, "Negative value supplied for enum %s.\n", $2);
Mark Slee31985722006-05-24 21:45:31 +0000508 }
David Reissf1454162008-06-30 20:45:47 +0000509 if ($4 > INT_MAX) {
510 pwarning(1, "64-bit value supplied for enum %s.\n", $2);
511 }
ccheeverf53b5cf2007-02-05 20:33:11 +0000512 $$ = new t_enum_value($2, $4);
513 if ($1 != NULL) {
514 $$->set_doc($1);
515 }
Mark Sleed0767c52007-07-27 22:14:41 +0000516 if (g_parse_mode == PROGRAM) {
517 g_scope->add_constant($2, new t_const(g_type_i32, $2, new t_const_value($4)));
518 if (g_parent_scope != NULL) {
519 g_parent_scope->add_constant(g_parent_prefix + $2, new t_const(g_type_i32, $2, new t_const_value($4)));
520 }
521 }
Mark Slee31985722006-05-24 21:45:31 +0000522 }
523|
David Reisscbd4bac2007-08-14 17:12:33 +0000524 CaptureDocText tok_identifier CommaOrSemicolonOptional
Mark Slee31985722006-05-24 21:45:31 +0000525 {
Mark Slee30152872006-11-28 01:24:07 +0000526 pdebug("EnumDef -> tok_identifier");
ccheeverf53b5cf2007-02-05 20:33:11 +0000527 $$ = new t_enum_value($2);
528 if ($1 != NULL) {
529 $$->set_doc($1);
530 }
Mark Slee30152872006-11-28 01:24:07 +0000531 }
532
Mark Slee6a47fed2007-02-07 02:40:59 +0000533Senum:
David Reisscdffe262007-08-14 17:12:31 +0000534 tok_senum tok_identifier '{' SenumDefList '}'
Mark Slee6a47fed2007-02-07 02:40:59 +0000535 {
536 pdebug("Senum -> tok_senum tok_identifier { SenumDefList }");
David Reisscdffe262007-08-14 17:12:31 +0000537 $$ = new t_typedef(g_program, $4, $2);
Mark Slee6a47fed2007-02-07 02:40:59 +0000538 }
539
540SenumDefList:
541 SenumDefList SenumDef
542 {
543 pdebug("SenumDefList -> SenumDefList SenumDef");
544 $$ = $1;
545 $$->add_string_enum_val($2);
546 }
547|
548 {
549 pdebug("SenumDefList -> ");
550 $$ = new t_base_type("string", t_base_type::TYPE_STRING);
551 $$->set_string_enum(true);
552 }
553
554SenumDef:
555 tok_literal CommaOrSemicolonOptional
556 {
557 pdebug("SenumDef -> tok_literal");
558 $$ = $1;
559 }
560
Mark Slee30152872006-11-28 01:24:07 +0000561Const:
562 tok_const FieldType tok_identifier '=' ConstValue CommaOrSemicolonOptional
563 {
564 pdebug("Const -> tok_const FieldType tok_identifier = ConstValue");
Mark Sleeaa7671d2006-11-29 03:19:31 +0000565 if (g_parse_mode == PROGRAM) {
566 $$ = new t_const($2, $3, $5);
567 validate_const_type($$);
Mark Sleed0767c52007-07-27 22:14:41 +0000568
569 g_scope->add_constant($3, $$);
570 if (g_parent_scope != NULL) {
571 g_parent_scope->add_constant(g_parent_prefix + $3, $$);
572 }
573
Mark Sleeaa7671d2006-11-29 03:19:31 +0000574 } else {
575 $$ = NULL;
576 }
Mark Slee30152872006-11-28 01:24:07 +0000577 }
578
579ConstValue:
580 tok_int_constant
581 {
582 pdebug("ConstValue => tok_int_constant");
583 $$ = new t_const_value();
584 $$->set_integer($1);
David Reissf1454162008-06-30 20:45:47 +0000585 if ($1 < INT32_MIN || $1 > INT32_MAX) {
586 pwarning(1, "64-bit constant \"%"PRIi64"\" may not work in all languages.\n", $1);
587 }
Mark Slee30152872006-11-28 01:24:07 +0000588 }
589| tok_dub_constant
590 {
591 pdebug("ConstValue => tok_dub_constant");
592 $$ = new t_const_value();
593 $$->set_double($1);
594 }
595| tok_literal
596 {
597 pdebug("ConstValue => tok_literal");
Mark Sleed0767c52007-07-27 22:14:41 +0000598 $$ = new t_const_value($1);
Mark Slee30152872006-11-28 01:24:07 +0000599 }
Mark Slee67fc6342006-11-29 03:37:04 +0000600| tok_identifier
601 {
602 pdebug("ConstValue => tok_identifier");
Mark Sleed0767c52007-07-27 22:14:41 +0000603 t_const* constant = g_scope->get_constant($1);
604 if (constant != NULL) {
605 $$ = constant->get_value();
606 } else {
607 if (g_parse_mode == PROGRAM) {
608 pwarning(1, "Constant strings should be quoted: %s\n", $1);
609 }
610 $$ = new t_const_value($1);
611 }
Mark Slee67fc6342006-11-29 03:37:04 +0000612 }
Mark Slee30152872006-11-28 01:24:07 +0000613| ConstList
614 {
615 pdebug("ConstValue => ConstList");
616 $$ = $1;
617 }
618| ConstMap
619 {
620 pdebug("ConstValue => ConstMap");
Mark Slee27ed6ec2007-08-16 01:26:31 +0000621 $$ = $1;
Mark Slee30152872006-11-28 01:24:07 +0000622 }
623
624ConstList:
625 '[' ConstListContents ']'
626 {
627 pdebug("ConstList => [ ConstListContents ]");
628 $$ = $2;
629 }
630
631ConstListContents:
632 ConstListContents ConstValue CommaOrSemicolonOptional
633 {
634 pdebug("ConstListContents => ConstListContents ConstValue CommaOrSemicolonOptional");
635 $$ = $1;
636 $$->add_list($2);
637 }
638|
639 {
640 pdebug("ConstListContents =>");
641 $$ = new t_const_value();
642 $$->set_list();
643 }
644
645ConstMap:
646 '{' ConstMapContents '}'
647 {
648 pdebug("ConstMap => { ConstMapContents }");
649 $$ = $2;
650 }
651
652ConstMapContents:
653 ConstMapContents ConstValue ':' ConstValue CommaOrSemicolonOptional
654 {
655 pdebug("ConstMapContents => ConstMapContents ConstValue CommaOrSemicolonOptional");
656 $$ = $1;
657 $$->add_map($2, $4);
658 }
659|
660 {
661 pdebug("ConstMapContents =>");
662 $$ = new t_const_value();
663 $$->set_map();
Mark Slee31985722006-05-24 21:45:31 +0000664 }
665
666Struct:
David Reissa2309992008-12-10 01:52:48 +0000667 tok_struct tok_identifier XsdAll '{' FieldList '}' TypeAnnotations
Mark Slee31985722006-05-24 21:45:31 +0000668 {
669 pdebug("Struct -> tok_struct tok_identifier { FieldList }");
David Reisscdffe262007-08-14 17:12:31 +0000670 $5->set_xsd_all($3);
671 $$ = $5;
David Reissa2309992008-12-10 01:52:48 +0000672 $$->set_name($2);
673 if ($7 != NULL) {
674 $$->annotations_ = $7->annotations_;
675 delete $7;
676 }
Mark Slee9cb7c612006-09-01 22:17:45 +0000677 y_field_val = -1;
678 }
679
Mark Slee36bfa2e2007-01-19 20:09:51 +0000680XsdAll:
Mark Slee782abbb2007-01-19 00:17:02 +0000681 tok_xsd_all
682 {
683 $$ = true;
684 }
685|
686 {
687 $$ = false;
688 }
689
Mark Slee36bfa2e2007-01-19 20:09:51 +0000690XsdOptional:
691 tok_xsd_optional
692 {
693 $$ = true;
694 }
695|
696 {
697 $$ = false;
698 }
699
Mark Slee7df0e2a2007-02-06 21:03:18 +0000700XsdNillable:
701 tok_xsd_nillable
702 {
703 $$ = true;
704 }
705|
706 {
707 $$ = false;
708 }
709
Mark Slee21135c32007-02-05 21:52:08 +0000710XsdAttributes:
Mark Slee748d83f2007-02-07 01:20:08 +0000711 tok_xsd_attrs '{' FieldList '}'
Mark Slee21135c32007-02-05 21:52:08 +0000712 {
Mark Slee748d83f2007-02-07 01:20:08 +0000713 $$ = $3;
Mark Slee21135c32007-02-05 21:52:08 +0000714 }
715|
716 {
717 $$ = NULL;
718 }
719
Mark Slee9cb7c612006-09-01 22:17:45 +0000720Xception:
721 tok_xception tok_identifier '{' FieldList '}'
722 {
723 pdebug("Xception -> tok_xception tok_identifier { FieldList }");
724 $4->set_name($2);
725 $4->set_xception(true);
726 $$ = $4;
727 y_field_val = -1;
Mark Slee31985722006-05-24 21:45:31 +0000728 }
729
730Service:
Mark Slee78165722007-09-10 22:08:49 +0000731 tok_service tok_identifier Extends '{' FlagArgs FunctionList UnflagArgs '}'
Mark Slee31985722006-05-24 21:45:31 +0000732 {
733 pdebug("Service -> tok_service tok_identifier { FunctionList }");
Mark Slee78165722007-09-10 22:08:49 +0000734 $$ = $6;
David Reisscdffe262007-08-14 17:12:31 +0000735 $$->set_name($2);
736 $$->set_extends($3);
Mark Sleef0712dc2006-10-25 19:03:57 +0000737 }
738
Mark Slee78165722007-09-10 22:08:49 +0000739FlagArgs:
740 {
741 g_arglist = 1;
742 }
743
744UnflagArgs:
745 {
746 g_arglist = 0;
747 }
748
Mark Slee36bfa2e2007-01-19 20:09:51 +0000749Extends:
Mark Sleef0712dc2006-10-25 19:03:57 +0000750 tok_extends tok_identifier
751 {
Mark Slee36bfa2e2007-01-19 20:09:51 +0000752 pdebug("Extends -> tok_extends tok_identifier");
Mark Sleef0712dc2006-10-25 19:03:57 +0000753 $$ = NULL;
754 if (g_parse_mode == PROGRAM) {
755 $$ = g_scope->get_service($2);
756 if ($$ == NULL) {
757 yyerror("Service \"%s\" has not been defined.", $2);
758 exit(1);
759 }
760 }
761 }
762|
763 {
764 $$ = NULL;
Mark Slee31985722006-05-24 21:45:31 +0000765 }
766
767FunctionList:
Mark Slee207cb462006-11-02 18:43:12 +0000768 FunctionList Function
Mark Slee31985722006-05-24 21:45:31 +0000769 {
770 pdebug("FunctionList -> FunctionList Function");
771 $$ = $1;
772 $1->add_function($2);
773 }
774|
775 {
776 pdebug("FunctionList -> ");
Mark Sleef0712dc2006-10-25 19:03:57 +0000777 $$ = new t_service(g_program);
Mark Slee31985722006-05-24 21:45:31 +0000778 }
779
780Function:
David Reisscbd4bac2007-08-14 17:12:33 +0000781 CaptureDocText Async FunctionType tok_identifier '(' FieldList ')' Throws CommaOrSemicolonOptional
Mark Slee31985722006-05-24 21:45:31 +0000782 {
ccheeverf53b5cf2007-02-05 20:33:11 +0000783 $6->set_name(std::string($4) + "_args");
784 $$ = new t_function($3, $4, $6, $8, $2);
785 if ($1 != NULL) {
786 $$->set_doc($1);
787 }
Mark Slee9cb7c612006-09-01 22:17:45 +0000788 y_field_val = -1;
Mark Slee31985722006-05-24 21:45:31 +0000789 }
790
Mark Slee36bfa2e2007-01-19 20:09:51 +0000791Async:
Mark Slee52f643d2006-08-09 00:03:43 +0000792 tok_async
Mark Slee31985722006-05-24 21:45:31 +0000793 {
Mark Slee52f643d2006-08-09 00:03:43 +0000794 $$ = true;
795 }
796|
797 {
798 $$ = false;
Mark Slee31985722006-05-24 21:45:31 +0000799 }
800
Mark Slee36bfa2e2007-01-19 20:09:51 +0000801Throws:
Mark Slee9cb7c612006-09-01 22:17:45 +0000802 tok_throws '(' FieldList ')'
803 {
Mark Slee36bfa2e2007-01-19 20:09:51 +0000804 pdebug("Throws -> tok_throws ( FieldList )");
Mark Slee9cb7c612006-09-01 22:17:45 +0000805 $$ = $3;
Mark Sleef07d48e2008-02-01 01:36:26 +0000806 if (g_parse_mode == PROGRAM && !validate_throws($$)) {
Mark Slee91f2b7b2008-01-31 01:49:16 +0000807 yyerror("Throws clause may not contain non-exception types");
808 exit(1);
809 }
Mark Slee9cb7c612006-09-01 22:17:45 +0000810 }
811|
812 {
Mark Sleef0712dc2006-10-25 19:03:57 +0000813 $$ = new t_struct(g_program);
Mark Slee9cb7c612006-09-01 22:17:45 +0000814 }
815
Mark Slee31985722006-05-24 21:45:31 +0000816FieldList:
Mark Slee207cb462006-11-02 18:43:12 +0000817 FieldList Field
Mark Slee31985722006-05-24 21:45:31 +0000818 {
819 pdebug("FieldList -> FieldList , Field");
820 $$ = $1;
Mark Slee6f9ac3f2007-11-28 22:28:13 +0000821 if (!($$->validate_field($2))) {
822 yyerror("Field identifier %d for \"%s\" has already been used", $2->get_key(), $2->get_name().c_str());
823 exit(1);
824 }
Mark Slee207cb462006-11-02 18:43:12 +0000825 $$->append($2);
Mark Slee31985722006-05-24 21:45:31 +0000826 }
827|
828 {
829 pdebug("FieldList -> ");
Mark Sleef0712dc2006-10-25 19:03:57 +0000830 $$ = new t_struct(g_program);
Mark Slee31985722006-05-24 21:45:31 +0000831 }
832
833Field:
David Reiss8320a922007-08-14 19:59:26 +0000834 CaptureDocText FieldIdentifier FieldRequiredness FieldType tok_identifier FieldValue XsdOptional XsdNillable XsdAttributes CommaOrSemicolonOptional
Mark Slee31985722006-05-24 21:45:31 +0000835 {
Mark Sleef0712dc2006-10-25 19:03:57 +0000836 pdebug("tok_int_constant : Field -> FieldType tok_identifier");
ccheeverf53b5cf2007-02-05 20:33:11 +0000837 if ($2 < 0) {
David Reiss8320a922007-08-14 19:59:26 +0000838 pwarning(2, "No field key specified for %s, resulting protocol may have conflicts or not be backwards compatible!\n", $5);
Mark Slee31985722006-05-24 21:45:31 +0000839 }
David Reiss8320a922007-08-14 19:59:26 +0000840 $$ = new t_field($4, $5, $2);
841 $$->set_req($3);
842 if ($6 != NULL) {
843 validate_field_value($$, $6);
844 $$->set_value($6);
Mark Slee7ff32452007-02-01 05:26:18 +0000845 }
David Reiss8320a922007-08-14 19:59:26 +0000846 $$->set_xsd_optional($7);
847 $$->set_xsd_nillable($8);
ccheeverf53b5cf2007-02-05 20:33:11 +0000848 if ($1 != NULL) {
849 $$->set_doc($1);
850 }
David Reiss8320a922007-08-14 19:59:26 +0000851 if ($9 != NULL) {
852 $$->set_xsd_attrs($9);
Mark Slee21135c32007-02-05 21:52:08 +0000853 }
Mark Slee31985722006-05-24 21:45:31 +0000854 }
Mark Slee7ff32452007-02-01 05:26:18 +0000855
856FieldIdentifier:
857 tok_int_constant ':'
Mark Slee31985722006-05-24 21:45:31 +0000858 {
Mark Slee7ff32452007-02-01 05:26:18 +0000859 if ($1 <= 0) {
860 pwarning(1, "Nonpositive value (%d) not allowed as a field key.\n", $1);
861 $1 = y_field_val--;
Mark Sleef0712dc2006-10-25 19:03:57 +0000862 }
Mark Slee7ff32452007-02-01 05:26:18 +0000863 $$ = $1;
864 }
865|
866 {
867 $$ = y_field_val--;
868 }
869
David Reiss8320a922007-08-14 19:59:26 +0000870FieldRequiredness:
871 tok_required
872 {
Mark Slee78165722007-09-10 22:08:49 +0000873 if (g_arglist) {
874 if (g_parse_mode == PROGRAM) {
875 pwarning(1, "required keyword is ignored in argument lists.\n");
876 }
David Reiss204420f2008-01-11 20:59:03 +0000877 $$ = t_field::T_OPT_IN_REQ_OUT;
Mark Slee78165722007-09-10 22:08:49 +0000878 } else {
David Reiss204420f2008-01-11 20:59:03 +0000879 $$ = t_field::T_REQUIRED;
Mark Slee78165722007-09-10 22:08:49 +0000880 }
David Reiss8320a922007-08-14 19:59:26 +0000881 }
882| tok_optional
883 {
Mark Slee78165722007-09-10 22:08:49 +0000884 if (g_arglist) {
885 if (g_parse_mode == PROGRAM) {
886 pwarning(1, "optional keyword is ignored in argument lists.\n");
887 }
David Reiss204420f2008-01-11 20:59:03 +0000888 $$ = t_field::T_OPT_IN_REQ_OUT;
Mark Slee78165722007-09-10 22:08:49 +0000889 } else {
David Reiss204420f2008-01-11 20:59:03 +0000890 $$ = t_field::T_OPTIONAL;
Mark Slee78165722007-09-10 22:08:49 +0000891 }
David Reiss8320a922007-08-14 19:59:26 +0000892 }
893|
894 {
David Reiss204420f2008-01-11 20:59:03 +0000895 $$ = t_field::T_OPT_IN_REQ_OUT;
David Reiss8320a922007-08-14 19:59:26 +0000896 }
897
Mark Slee7ff32452007-02-01 05:26:18 +0000898FieldValue:
899 '=' ConstValue
900 {
Mark Slee27ed6ec2007-08-16 01:26:31 +0000901 if (g_parse_mode == PROGRAM) {
Mark Slee7ff32452007-02-01 05:26:18 +0000902 $$ = $2;
903 } else {
904 $$ = NULL;
905 }
906 }
907|
908 {
909 $$ = NULL;
Mark Sleef0712dc2006-10-25 19:03:57 +0000910 }
Mark Slee31985722006-05-24 21:45:31 +0000911
912DefinitionType:
913 BaseType
914 {
915 pdebug("DefinitionType -> BaseType");
916 $$ = $1;
917 }
Mark Sleee8540632006-05-30 09:24:40 +0000918| ContainerType
919 {
920 pdebug("DefinitionType -> ContainerType");
921 $$ = $1;
922 }
Mark Slee31985722006-05-24 21:45:31 +0000923
924FunctionType:
925 FieldType
926 {
Mark Sleee8540632006-05-30 09:24:40 +0000927 pdebug("FunctionType -> FieldType");
Mark Slee31985722006-05-24 21:45:31 +0000928 $$ = $1;
929 }
930| tok_void
931 {
Mark Sleee8540632006-05-30 09:24:40 +0000932 pdebug("FunctionType -> tok_void");
Mark Sleef0712dc2006-10-25 19:03:57 +0000933 $$ = g_type_void;
Mark Slee31985722006-05-24 21:45:31 +0000934 }
935
936FieldType:
937 tok_identifier
938 {
Mark Sleee8540632006-05-30 09:24:40 +0000939 pdebug("FieldType -> tok_identifier");
Mark Sleef0712dc2006-10-25 19:03:57 +0000940 if (g_parse_mode == INCLUDES) {
941 // Ignore identifiers in include mode
942 $$ = NULL;
943 } else {
944 // Lookup the identifier in the current scope
945 $$ = g_scope->get_type($1);
946 if ($$ == NULL) {
947 yyerror("Type \"%s\" has not been defined.", $1);
948 exit(1);
949 }
Mark Sleee8540632006-05-30 09:24:40 +0000950 }
Mark Slee31985722006-05-24 21:45:31 +0000951 }
952| BaseType
953 {
Mark Sleee8540632006-05-30 09:24:40 +0000954 pdebug("FieldType -> BaseType");
955 $$ = $1;
956 }
957| ContainerType
958 {
959 pdebug("FieldType -> ContainerType");
Mark Slee31985722006-05-24 21:45:31 +0000960 $$ = $1;
961 }
962
963BaseType:
964 tok_string
965 {
966 pdebug("BaseType -> tok_string");
Mark Sleef0712dc2006-10-25 19:03:57 +0000967 $$ = g_type_string;
Mark Slee31985722006-05-24 21:45:31 +0000968 }
Mark Slee8d725a22007-04-13 01:57:12 +0000969| tok_binary
970 {
971 pdebug("BaseType -> tok_binary");
972 $$ = g_type_binary;
973 }
Mark Sleeb6200d82007-01-19 19:14:36 +0000974| tok_slist
975 {
976 pdebug("BaseType -> tok_slist");
977 $$ = g_type_slist;
978 }
Mark Slee78f58e22006-09-02 04:17:07 +0000979| tok_bool
980 {
981 pdebug("BaseType -> tok_bool");
Mark Sleef0712dc2006-10-25 19:03:57 +0000982 $$ = g_type_bool;
Mark Slee78f58e22006-09-02 04:17:07 +0000983 }
Mark Slee31985722006-05-24 21:45:31 +0000984| tok_byte
985 {
986 pdebug("BaseType -> tok_byte");
Mark Sleef0712dc2006-10-25 19:03:57 +0000987 $$ = g_type_byte;
Mark Slee31985722006-05-24 21:45:31 +0000988 }
Mark Slee9cb7c612006-09-01 22:17:45 +0000989| tok_i16
990 {
991 pdebug("BaseType -> tok_i16");
Mark Sleef0712dc2006-10-25 19:03:57 +0000992 $$ = g_type_i16;
Mark Slee9cb7c612006-09-01 22:17:45 +0000993 }
Mark Slee31985722006-05-24 21:45:31 +0000994| tok_i32
995 {
996 pdebug("BaseType -> tok_i32");
Mark Sleef0712dc2006-10-25 19:03:57 +0000997 $$ = g_type_i32;
Mark Slee31985722006-05-24 21:45:31 +0000998 }
Mark Slee31985722006-05-24 21:45:31 +0000999| tok_i64
1000 {
1001 pdebug("BaseType -> tok_i64");
Mark Sleef0712dc2006-10-25 19:03:57 +00001002 $$ = g_type_i64;
Mark Slee31985722006-05-24 21:45:31 +00001003 }
Mark Sleec98d0502006-09-06 02:42:25 +00001004| tok_double
1005 {
1006 pdebug("BaseType -> tok_double");
Mark Sleef0712dc2006-10-25 19:03:57 +00001007 $$ = g_type_double;
Mark Sleec98d0502006-09-06 02:42:25 +00001008 }
Mark Slee31985722006-05-24 21:45:31 +00001009
David Reissa2309992008-12-10 01:52:48 +00001010ContainerType: SimpleContainerType TypeAnnotations
1011 {
1012 pdebug("ContainerType -> SimpleContainerType TypeAnnotations");
1013 $$ = $1;
1014 if ($2 != NULL) {
1015 $$->annotations_ = $2->annotations_;
1016 delete $2;
1017 }
1018 }
1019
1020SimpleContainerType:
Mark Sleee8540632006-05-30 09:24:40 +00001021 MapType
1022 {
David Reissa2309992008-12-10 01:52:48 +00001023 pdebug("SimpleContainerType -> MapType");
Mark Sleee8540632006-05-30 09:24:40 +00001024 $$ = $1;
1025 }
1026| SetType
1027 {
David Reissa2309992008-12-10 01:52:48 +00001028 pdebug("SimpleContainerType -> SetType");
Mark Sleee8540632006-05-30 09:24:40 +00001029 $$ = $1;
1030 }
1031| ListType
1032 {
David Reissa2309992008-12-10 01:52:48 +00001033 pdebug("SimpleContainerType -> ListType");
Mark Sleee8540632006-05-30 09:24:40 +00001034 $$ = $1;
1035 }
1036
1037MapType:
Mark Slee36bfa2e2007-01-19 20:09:51 +00001038 tok_map CppType '<' FieldType ',' FieldType '>'
Mark Sleee8540632006-05-30 09:24:40 +00001039 {
1040 pdebug("MapType -> tok_map <FieldType, FieldType>");
Mark Slee4f8da1d2006-10-12 02:47:27 +00001041 $$ = new t_map($4, $6);
1042 if ($2 != NULL) {
1043 ((t_container*)$$)->set_cpp_name(std::string($2));
1044 }
Mark Sleee8540632006-05-30 09:24:40 +00001045 }
1046
1047SetType:
Mark Slee36bfa2e2007-01-19 20:09:51 +00001048 tok_set CppType '<' FieldType '>'
Mark Sleee8540632006-05-30 09:24:40 +00001049 {
1050 pdebug("SetType -> tok_set<FieldType>");
Mark Slee4f8da1d2006-10-12 02:47:27 +00001051 $$ = new t_set($4);
1052 if ($2 != NULL) {
1053 ((t_container*)$$)->set_cpp_name(std::string($2));
1054 }
Mark Sleee8540632006-05-30 09:24:40 +00001055 }
1056
1057ListType:
Mark Slee36bfa2e2007-01-19 20:09:51 +00001058 tok_list '<' FieldType '>' CppType
Mark Sleee8540632006-05-30 09:24:40 +00001059 {
1060 pdebug("ListType -> tok_list<FieldType>");
Mark Sleef0712dc2006-10-25 19:03:57 +00001061 $$ = new t_list($3);
1062 if ($5 != NULL) {
1063 ((t_container*)$$)->set_cpp_name(std::string($5));
Mark Slee4f8da1d2006-10-12 02:47:27 +00001064 }
1065 }
1066
Mark Slee36bfa2e2007-01-19 20:09:51 +00001067CppType:
Mark Sleeafc76542007-02-09 21:55:44 +00001068 tok_cpp_type tok_literal
Mark Slee4f8da1d2006-10-12 02:47:27 +00001069 {
Mark Sleeafc76542007-02-09 21:55:44 +00001070 $$ = $2;
Mark Slee4f8da1d2006-10-12 02:47:27 +00001071 }
1072|
1073 {
1074 $$ = NULL;
Mark Sleee8540632006-05-30 09:24:40 +00001075 }
1076
David Reissa2309992008-12-10 01:52:48 +00001077TypeAnnotations:
1078 '(' TypeAnnotationList ')'
1079 {
1080 pdebug("TypeAnnotations -> ( TypeAnnotationList )");
1081 $$ = $2;
1082 }
1083|
1084 {
1085 $$ = NULL;
1086 }
1087
1088TypeAnnotationList:
1089 TypeAnnotationList TypeAnnotation
1090 {
1091 pdebug("TypeAnnotationList -> TypeAnnotationList , TypeAnnotation");
1092 $$ = $1;
1093 $$->annotations_[$2->key] = $2->val;
1094 delete $2;
1095 }
1096|
1097 {
1098 /* Just use a dummy structure to hold the annotations. */
1099 $$ = new t_struct(g_program);
1100 }
1101
1102TypeAnnotation:
1103 tok_identifier '=' tok_literal CommaOrSemicolonOptional
1104 {
1105 pdebug("TypeAnnotation -> tok_identifier = tok_literal");
1106 $$ = new t_annotation;
1107 $$->key = $1;
1108 $$->val = $3;
1109 }
1110
Mark Slee31985722006-05-24 21:45:31 +00001111%%