blob: 36b9316995fabfc4bbfd9e867237400923298d29 [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
16#include <stdio.h>
17#include "main.h"
18#include "globals.h"
19#include "parse/t_program.h"
Mark Sleef0712dc2006-10-25 19:03:57 +000020#include "parse/t_scope.h"
Mark Slee31985722006-05-24 21:45:31 +000021
Mark Sleef5377b32006-10-10 01:42:59 +000022/**
23 * This global variable is used for automatic numbering of field indices etc.
24 * when parsing the members of a struct. Field values are automatically
25 * assigned starting from -1 and working their way down.
26 */
Mark Slee9cb7c612006-09-01 22:17:45 +000027int y_field_val = -1;
Mark Slee78165722007-09-10 22:08:49 +000028int g_arglist = 0;
Mark Slee31985722006-05-24 21:45:31 +000029
30%}
31
Mark Sleef5377b32006-10-10 01:42:59 +000032/**
33 * This structure is used by the parser to hold the data types associated with
34 * various parse nodes.
35 */
Mark Slee31985722006-05-24 21:45:31 +000036%union {
Mark Slee30152872006-11-28 01:24:07 +000037 char* id;
38 int iconst;
39 double dconst;
40 bool tbool;
David Reisscdffe262007-08-14 17:12:31 +000041 t_doc* tdoc;
Mark Slee30152872006-11-28 01:24:07 +000042 t_type* ttype;
Mark Slee6a47fed2007-02-07 02:40:59 +000043 t_base_type* tbase;
Mark Slee30152872006-11-28 01:24:07 +000044 t_typedef* ttypedef;
45 t_enum* tenum;
46 t_enum_value* tenumv;
47 t_const* tconst;
48 t_const_value* tconstv;
49 t_struct* tstruct;
50 t_service* tservice;
51 t_function* tfunction;
52 t_field* tfield;
David Reisscdffe262007-08-14 17:12:31 +000053 char* dtext;
David Reiss8320a922007-08-14 19:59:26 +000054 t_field::e_req ereq;
Mark Slee31985722006-05-24 21:45:31 +000055}
56
Mark Sleef5377b32006-10-10 01:42:59 +000057/**
58 * Strings identifier
59 */
Mark Slee31985722006-05-24 21:45:31 +000060%token<id> tok_identifier
Mark Sleef0712dc2006-10-25 19:03:57 +000061%token<id> tok_literal
David Reisscdffe262007-08-14 17:12:31 +000062%token<dtext> tok_doctext
Mark Sleebd588222007-11-21 08:43:35 +000063%token<id> tok_st_identifier
Mark Sleef5377b32006-10-10 01:42:59 +000064
65/**
Mark Slee30152872006-11-28 01:24:07 +000066 * Constant values
Mark Sleef5377b32006-10-10 01:42:59 +000067 */
Mark Slee31985722006-05-24 21:45:31 +000068%token<iconst> tok_int_constant
Mark Slee30152872006-11-28 01:24:07 +000069%token<dconst> tok_dub_constant
Mark Slee31985722006-05-24 21:45:31 +000070
Mark Sleef5377b32006-10-10 01:42:59 +000071/**
David Reiss399442b2008-02-20 02:28:05 +000072 * Header keywords
Mark Sleef5377b32006-10-10 01:42:59 +000073 */
Mark Sleef0712dc2006-10-25 19:03:57 +000074%token tok_include
Mark Slee9cb7c612006-09-01 22:17:45 +000075%token tok_namespace
Mark Sleef0712dc2006-10-25 19:03:57 +000076%token tok_cpp_namespace
77%token tok_cpp_include
78%token tok_cpp_type
Mark Sleee888b372007-01-12 01:06:24 +000079%token tok_php_namespace
David Reissc6fc3292007-08-30 00:58:43 +000080%token tok_py_module
Mark Slee27ed6ec2007-08-16 01:26:31 +000081%token tok_perl_package
Mark Sleef0712dc2006-10-25 19:03:57 +000082%token tok_java_package
Mark Slee782abbb2007-01-19 00:17:02 +000083%token tok_xsd_all
Mark Slee36bfa2e2007-01-19 20:09:51 +000084%token tok_xsd_optional
Mark Slee7df0e2a2007-02-06 21:03:18 +000085%token tok_xsd_nillable
Mark Slee0d9199e2007-01-31 02:08:30 +000086%token tok_xsd_namespace
Mark Slee21135c32007-02-05 21:52:08 +000087%token tok_xsd_attrs
Mark Slee58dfb4f2007-07-06 02:45:25 +000088%token tok_ruby_namespace
Mark Sleebd588222007-11-21 08:43:35 +000089%token tok_smalltalk_category
David Reiss15457c92007-12-14 07:03:03 +000090%token tok_smalltalk_prefix
Mark Slee7e9eea42007-09-10 21:00:23 +000091%token tok_cocoa_prefix
David Reiss7f42bcf2008-01-11 20:59:12 +000092%token tok_csharp_namespace
Mark Slee9cb7c612006-09-01 22:17:45 +000093
Mark Sleef5377b32006-10-10 01:42:59 +000094/**
95 * Base datatype keywords
96 */
97%token tok_void
Mark Slee78f58e22006-09-02 04:17:07 +000098%token tok_bool
Mark Slee31985722006-05-24 21:45:31 +000099%token tok_byte
100%token tok_string
Mark Slee8d725a22007-04-13 01:57:12 +0000101%token tok_binary
Mark Sleeb6200d82007-01-19 19:14:36 +0000102%token tok_slist
Mark Slee6a47fed2007-02-07 02:40:59 +0000103%token tok_senum
Mark Slee9cb7c612006-09-01 22:17:45 +0000104%token tok_i16
Mark Slee31985722006-05-24 21:45:31 +0000105%token tok_i32
Mark Slee31985722006-05-24 21:45:31 +0000106%token tok_i64
Mark Slee9cb7c612006-09-01 22:17:45 +0000107%token tok_double
Mark Slee31985722006-05-24 21:45:31 +0000108
Mark Sleef5377b32006-10-10 01:42:59 +0000109/**
110 * Complex type keywords
111 */
Mark Slee31985722006-05-24 21:45:31 +0000112%token tok_map
113%token tok_list
114%token tok_set
115
Mark Sleef5377b32006-10-10 01:42:59 +0000116/**
117 * Function modifiers
Mark Slee27ed6ec2007-08-16 01:26:31 +0000118 */
Mark Slee31985722006-05-24 21:45:31 +0000119%token tok_async
120
Mark Sleef5377b32006-10-10 01:42:59 +0000121/**
122 * Thrift language keywords
123 */
Mark Slee31985722006-05-24 21:45:31 +0000124%token tok_typedef
125%token tok_struct
Mark Slee9cb7c612006-09-01 22:17:45 +0000126%token tok_xception
127%token tok_throws
Mark Sleef0712dc2006-10-25 19:03:57 +0000128%token tok_extends
Mark Slee31985722006-05-24 21:45:31 +0000129%token tok_service
130%token tok_enum
Mark Slee30152872006-11-28 01:24:07 +0000131%token tok_const
David Reiss8320a922007-08-14 19:59:26 +0000132%token tok_required
133%token tok_optional
Mark Slee31985722006-05-24 21:45:31 +0000134
Mark Sleef5377b32006-10-10 01:42:59 +0000135/**
136 * Grammar nodes
137 */
138
Mark Slee31985722006-05-24 21:45:31 +0000139%type<ttype> BaseType
Mark Sleee8540632006-05-30 09:24:40 +0000140%type<ttype> ContainerType
141%type<ttype> MapType
142%type<ttype> SetType
143%type<ttype> ListType
Mark Slee31985722006-05-24 21:45:31 +0000144
David Reisscdffe262007-08-14 17:12:31 +0000145%type<tdoc> Definition
Mark Sleef0712dc2006-10-25 19:03:57 +0000146%type<ttype> TypeDefinition
147
Mark Slee31985722006-05-24 21:45:31 +0000148%type<ttypedef> Typedef
149%type<ttype> DefinitionType
150
151%type<tfield> Field
Mark Slee7ff32452007-02-01 05:26:18 +0000152%type<iconst> FieldIdentifier
David Reiss8320a922007-08-14 19:59:26 +0000153%type<ereq> FieldRequiredness
Mark Slee31985722006-05-24 21:45:31 +0000154%type<ttype> FieldType
Mark Slee7ff32452007-02-01 05:26:18 +0000155%type<tconstv> FieldValue
Mark Sleee8540632006-05-30 09:24:40 +0000156%type<tstruct> FieldList
Mark Slee31985722006-05-24 21:45:31 +0000157
158%type<tenum> Enum
159%type<tenum> EnumDefList
Mark Slee30152872006-11-28 01:24:07 +0000160%type<tenumv> EnumDef
161
Mark Slee6a47fed2007-02-07 02:40:59 +0000162%type<ttypedef> Senum
163%type<tbase> SenumDefList
164%type<id> SenumDef
165
Mark Slee30152872006-11-28 01:24:07 +0000166%type<tconst> Const
167%type<tconstv> ConstValue
168%type<tconstv> ConstList
169%type<tconstv> ConstListContents
170%type<tconstv> ConstMap
171%type<tconstv> ConstMapContents
Mark Slee31985722006-05-24 21:45:31 +0000172
173%type<tstruct> Struct
Mark Slee9cb7c612006-09-01 22:17:45 +0000174%type<tstruct> Xception
Mark Slee31985722006-05-24 21:45:31 +0000175%type<tservice> Service
176
177%type<tfunction> Function
Mark Slee31985722006-05-24 21:45:31 +0000178%type<ttype> FunctionType
179%type<tservice> FunctionList
180
Mark Slee36bfa2e2007-01-19 20:09:51 +0000181%type<tstruct> Throws
182%type<tservice> Extends
183%type<tbool> Async
184%type<tbool> XsdAll
185%type<tbool> XsdOptional
Mark Slee7df0e2a2007-02-06 21:03:18 +0000186%type<tbool> XsdNillable
Mark Slee748d83f2007-02-07 01:20:08 +0000187%type<tstruct> XsdAttributes
Mark Slee36bfa2e2007-01-19 20:09:51 +0000188%type<id> CppType
Mark Slee52f643d2006-08-09 00:03:43 +0000189
David Reisscbd4bac2007-08-14 17:12:33 +0000190%type<dtext> CaptureDocText
ccheeverf53b5cf2007-02-05 20:33:11 +0000191
Mark Slee31985722006-05-24 21:45:31 +0000192%%
193
Mark Sleef5377b32006-10-10 01:42:59 +0000194/**
195 * Thrift Grammar Implementation.
196 *
197 * For the most part this source file works its way top down from what you
198 * might expect to find in a typical .thrift file, i.e. type definitions and
199 * namespaces up top followed by service definitions using those types.
200 */
Mark Slee31985722006-05-24 21:45:31 +0000201
202Program:
David Reisscbd4bac2007-08-14 17:12:33 +0000203 HeaderList DefinitionList
Mark Sleef0712dc2006-10-25 19:03:57 +0000204 {
205 pdebug("Program -> Headers DefinitionList");
David Reisscbd4bac2007-08-14 17:12:33 +0000206 /*
207 TODO(dreiss): Decide whether full-program doctext is worth the trouble.
David Reissc2532a92007-07-30 23:46:11 +0000208 if ($1 != NULL) {
209 g_program->set_doc($1);
210 }
David Reisscbd4bac2007-08-14 17:12:33 +0000211 */
212 clear_doctext();
Mark Sleef0712dc2006-10-25 19:03:57 +0000213 }
214
David Reisscbd4bac2007-08-14 17:12:33 +0000215CaptureDocText:
216 {
217 if (g_parse_mode == PROGRAM) {
Mark Sleebd588222007-11-21 08:43:35 +0000218 $$ = g_doctext;
David Reisscbd4bac2007-08-14 17:12:33 +0000219 g_doctext = NULL;
Mark Slee27ed6ec2007-08-16 01:26:31 +0000220 } else {
David Reisscbd4bac2007-08-14 17:12:33 +0000221 $$ = NULL;
222 }
223 }
224
225/* TODO(dreiss): Try to DestroyDocText in all sorts or random places. */
226DestroyDocText:
227 {
228 if (g_parse_mode == PROGRAM) {
229 clear_doctext();
230 }
231 }
232
233/* We have to DestroyDocText here, otherwise it catches the doctext
234 on the first real element. */
Mark Sleef0712dc2006-10-25 19:03:57 +0000235HeaderList:
David Reisscbd4bac2007-08-14 17:12:33 +0000236 HeaderList DestroyDocText Header
Mark Sleef0712dc2006-10-25 19:03:57 +0000237 {
238 pdebug("HeaderList -> HeaderList Header");
239 }
240|
241 {
242 pdebug("HeaderList -> ");
243 }
244
245Header:
246 Include
247 {
248 pdebug("Header -> Include");
249 }
David Reiss79eca142008-02-27 01:55:13 +0000250| tok_namespace tok_identifier tok_identifier
Mark Sleef0712dc2006-10-25 19:03:57 +0000251 {
David Reiss79eca142008-02-27 01:55:13 +0000252 pdebug("Header -> tok_namespace tok_identifier tok_identifier");
Mark Sleef0712dc2006-10-25 19:03:57 +0000253 if (g_parse_mode == PROGRAM) {
David Reiss79eca142008-02-27 01:55:13 +0000254 g_program->set_namespace($2, $3);
Mark Sleef0712dc2006-10-25 19:03:57 +0000255 }
256 }
David Reiss9a08dc62008-02-27 01:55:17 +0000257/* TODO(dreiss): Get rid of this once everyone is using the new hotness. */
Mark Sleef0712dc2006-10-25 19:03:57 +0000258| tok_cpp_namespace tok_identifier
259 {
David Reiss9a08dc62008-02-27 01:55:17 +0000260 pwarning(1, "'cpp_namespace' is deprecated. Use 'namespace cpp' instead");
Mark Sleef0712dc2006-10-25 19:03:57 +0000261 pdebug("Header -> tok_cpp_namespace tok_identifier");
262 if (g_parse_mode == PROGRAM) {
David Reiss9a08dc62008-02-27 01:55:17 +0000263 g_program->set_namespace("cpp", $2);
Mark Sleef0712dc2006-10-25 19:03:57 +0000264 }
265 }
266| tok_cpp_include tok_literal
267 {
268 pdebug("Header -> tok_cpp_include tok_literal");
269 if (g_parse_mode == PROGRAM) {
270 g_program->add_cpp_include($2);
271 }
272 }
Mark Sleee888b372007-01-12 01:06:24 +0000273| tok_php_namespace tok_identifier
274 {
275 pdebug("Header -> tok_php_namespace tok_identifier");
276 if (g_parse_mode == PROGRAM) {
277 g_program->set_php_namespace($2);
278 }
279 }
David Reissc6fc3292007-08-30 00:58:43 +0000280| tok_py_module tok_identifier
281 {
282 pdebug("Header -> tok_py_module tok_identifier");
283 if (g_parse_mode == PROGRAM) {
284 g_program->set_py_module($2);
285 }
286 }
Mark Slee27ed6ec2007-08-16 01:26:31 +0000287| tok_perl_package tok_identifier
288 {
289 pdebug("Header -> tok_perl_namespace tok_identifier");
290 if (g_parse_mode == PROGRAM) {
291 g_program->set_perl_package($2);
292 }
293 }
Mark Slee58dfb4f2007-07-06 02:45:25 +0000294| tok_ruby_namespace tok_identifier
295 {
296 pdebug("Header -> tok_ruby_namespace tok_identifier");
297 if (g_parse_mode == PROGRAM) {
298 g_program->set_ruby_namespace($2);
299 }
300 }
David Reiss3b455012008-03-27 21:40:46 +0000301/* TODO(dreiss): Get rid of this once everyone is using the new hotness. */
Mark Sleebd588222007-11-21 08:43:35 +0000302| tok_smalltalk_category tok_st_identifier
303 {
David Reiss3b455012008-03-27 21:40:46 +0000304 pwarning(1, "'smalltalk_category' is deprecated. Use 'namespace smalltalk.category' instead");
Mark Sleebd588222007-11-21 08:43:35 +0000305 pdebug("Header -> tok_smalltalk_category tok_st_identifier");
306 if (g_parse_mode == PROGRAM) {
David Reiss3b455012008-03-27 21:40:46 +0000307 g_program->set_namespace("smalltalk.category", $2);
Mark Sleebd588222007-11-21 08:43:35 +0000308 }
309 }
David Reiss3b455012008-03-27 21:40:46 +0000310/* TODO(dreiss): Get rid of this once everyone is using the new hotness. */
David Reiss15457c92007-12-14 07:03:03 +0000311| tok_smalltalk_prefix tok_identifier
312 {
David Reiss3b455012008-03-27 21:40:46 +0000313 pwarning(1, "'smalltalk_prefix' is deprecated. Use 'namespace smalltalk.prefix' instead");
David Reiss15457c92007-12-14 07:03:03 +0000314 pdebug("Header -> tok_smalltalk_prefix tok_identifier");
315 if (g_parse_mode == PROGRAM) {
David Reiss3b455012008-03-27 21:40:46 +0000316 g_program->set_namespace("smalltalk.prefix", $2);
David Reiss15457c92007-12-14 07:03:03 +0000317 }
318 }
David Reiss771f8c72008-02-27 01:55:25 +0000319/* TODO(dreiss): Get rid of this once everyone is using the new hotness. */
Mark Sleef0712dc2006-10-25 19:03:57 +0000320| tok_java_package tok_identifier
321 {
David Reiss9f646152008-03-02 21:59:48 +0000322 pwarning(1, "'java_package' is deprecated. Use 'namespace java' instead");
Mark Sleef0712dc2006-10-25 19:03:57 +0000323 pdebug("Header -> tok_java_package tok_identifier");
324 if (g_parse_mode == PROGRAM) {
David Reiss771f8c72008-02-27 01:55:25 +0000325 g_program->set_namespace("java", $2);
Mark Sleef0712dc2006-10-25 19:03:57 +0000326 }
327 }
Mark Slee7e9eea42007-09-10 21:00:23 +0000328| tok_cocoa_prefix tok_identifier
329 {
330 pdebug("Header -> tok_cocoa_prefix tok_identifier");
331 if (g_parse_mode == PROGRAM) {
332 g_program->set_cocoa_prefix($2);
333 }
334 }
Mark Slee0d9199e2007-01-31 02:08:30 +0000335| tok_xsd_namespace tok_literal
336 {
337 pdebug("Header -> tok_xsd_namespace tok_literal");
338 if (g_parse_mode == PROGRAM) {
339 g_program->set_xsd_namespace($2);
340 }
341 }
David Reiss7f42bcf2008-01-11 20:59:12 +0000342| tok_csharp_namespace tok_identifier
343 {
344 pdebug("Header -> tok_csharp_package tok_identifier");
345 if (g_parse_mode == PROGRAM) {
346 g_program->set_csharp_namespace($2);
347 }
348 }
Mark Sleef0712dc2006-10-25 19:03:57 +0000349
350Include:
351 tok_include tok_literal
352 {
Mark Slee27ed6ec2007-08-16 01:26:31 +0000353 pdebug("Include -> tok_include tok_literal");
Mark Sleef0712dc2006-10-25 19:03:57 +0000354 if (g_parse_mode == INCLUDES) {
355 std::string path = include_file(std::string($2));
356 if (!path.empty()) {
kholst76f2c882008-01-16 02:47:41 +0000357 g_program->add_include(path, std::string($2));
Mark Sleef0712dc2006-10-25 19:03:57 +0000358 }
359 }
360 }
Mark Slee31985722006-05-24 21:45:31 +0000361
362DefinitionList:
David Reisscbd4bac2007-08-14 17:12:33 +0000363 DefinitionList CaptureDocText Definition
Mark Slee31985722006-05-24 21:45:31 +0000364 {
365 pdebug("DefinitionList -> DefinitionList Definition");
David Reisscdffe262007-08-14 17:12:31 +0000366 if ($2 != NULL && $3 != NULL) {
367 $3->set_doc($2);
368 }
Mark Slee31985722006-05-24 21:45:31 +0000369 }
370|
371 {
372 pdebug("DefinitionList -> ");
373 }
374
375Definition:
Mark Slee30152872006-11-28 01:24:07 +0000376 Const
377 {
378 pdebug("Definition -> Const");
379 if (g_parse_mode == PROGRAM) {
380 g_program->add_const($1);
Mark Sleebd588222007-11-21 08:43:35 +0000381 }
David Reisscdffe262007-08-14 17:12:31 +0000382 $$ = $1;
Mark Slee30152872006-11-28 01:24:07 +0000383 }
384| TypeDefinition
Mark Slee9cb7c612006-09-01 22:17:45 +0000385 {
Mark Sleef0712dc2006-10-25 19:03:57 +0000386 pdebug("Definition -> TypeDefinition");
387 if (g_parse_mode == PROGRAM) {
388 g_scope->add_type($1->get_name(), $1);
389 if (g_parent_scope != NULL) {
390 g_parent_scope->add_type(g_parent_prefix + $1->get_name(), $1);
391 }
392 }
David Reisscdffe262007-08-14 17:12:31 +0000393 $$ = $1;
Mark Slee9cb7c612006-09-01 22:17:45 +0000394 }
Mark Slee31985722006-05-24 21:45:31 +0000395| Service
396 {
397 pdebug("Definition -> Service");
Mark Sleef0712dc2006-10-25 19:03:57 +0000398 if (g_parse_mode == PROGRAM) {
399 g_scope->add_service($1->get_name(), $1);
400 if (g_parent_scope != NULL) {
401 g_parent_scope->add_service(g_parent_prefix + $1->get_name(), $1);
402 }
403 g_program->add_service($1);
404 }
David Reisscdffe262007-08-14 17:12:31 +0000405 $$ = $1;
Mark Slee9cb7c612006-09-01 22:17:45 +0000406 }
407
Mark Sleef0712dc2006-10-25 19:03:57 +0000408TypeDefinition:
409 Typedef
Mark Slee9cb7c612006-09-01 22:17:45 +0000410 {
Mark Sleef0712dc2006-10-25 19:03:57 +0000411 pdebug("TypeDefinition -> Typedef");
412 if (g_parse_mode == PROGRAM) {
413 g_program->add_typedef($1);
414 }
415 }
416| Enum
417 {
418 pdebug("TypeDefinition -> Enum");
419 if (g_parse_mode == PROGRAM) {
420 g_program->add_enum($1);
421 }
422 }
Mark Slee6a47fed2007-02-07 02:40:59 +0000423| Senum
424 {
425 pdebug("TypeDefinition -> Senum");
426 if (g_parse_mode == PROGRAM) {
427 g_program->add_typedef($1);
428 }
429 }
Mark Sleef0712dc2006-10-25 19:03:57 +0000430| Struct
431 {
432 pdebug("TypeDefinition -> Struct");
433 if (g_parse_mode == PROGRAM) {
434 g_program->add_struct($1);
435 }
436 }
437| Xception
Mark Slee27ed6ec2007-08-16 01:26:31 +0000438 {
Mark Sleef0712dc2006-10-25 19:03:57 +0000439 pdebug("TypeDefinition -> Xception");
440 if (g_parse_mode == PROGRAM) {
441 g_program->add_xception($1);
442 }
Mark Slee9cb7c612006-09-01 22:17:45 +0000443 }
Mark Slee31985722006-05-24 21:45:31 +0000444
445Typedef:
Mark Sleebd588222007-11-21 08:43:35 +0000446 tok_typedef DefinitionType tok_identifier
Mark Slee31985722006-05-24 21:45:31 +0000447 {
448 pdebug("TypeDef -> tok_typedef DefinitionType tok_identifier");
David Reisscdffe262007-08-14 17:12:31 +0000449 t_typedef *td = new t_typedef(g_program, $2, $3);
Mark Slee31985722006-05-24 21:45:31 +0000450 $$ = td;
451 }
452
Mark Slee6a47fed2007-02-07 02:40:59 +0000453CommaOrSemicolonOptional:
454 ','
455 {}
456| ';'
457 {}
458|
459 {}
ccheeverf53b5cf2007-02-05 20:33:11 +0000460
Mark Slee31985722006-05-24 21:45:31 +0000461Enum:
David Reisscdffe262007-08-14 17:12:31 +0000462 tok_enum tok_identifier '{' EnumDefList '}'
Mark Slee31985722006-05-24 21:45:31 +0000463 {
464 pdebug("Enum -> tok_enum tok_identifier { EnumDefList }");
David Reisscdffe262007-08-14 17:12:31 +0000465 $$ = $4;
466 $$->set_name($2);
Mark Slee31985722006-05-24 21:45:31 +0000467 }
468
469EnumDefList:
Mark Slee207cb462006-11-02 18:43:12 +0000470 EnumDefList EnumDef
Mark Slee31985722006-05-24 21:45:31 +0000471 {
472 pdebug("EnumDefList -> EnumDefList EnumDef");
473 $$ = $1;
Mark Slee207cb462006-11-02 18:43:12 +0000474 $$->append($2);
Mark Slee31985722006-05-24 21:45:31 +0000475 }
476|
477 {
478 pdebug("EnumDefList -> ");
Mark Sleef0712dc2006-10-25 19:03:57 +0000479 $$ = new t_enum(g_program);
Mark Slee31985722006-05-24 21:45:31 +0000480 }
481
482EnumDef:
David Reisscbd4bac2007-08-14 17:12:33 +0000483 CaptureDocText tok_identifier '=' tok_int_constant CommaOrSemicolonOptional
Mark Slee31985722006-05-24 21:45:31 +0000484 {
Mark Slee30152872006-11-28 01:24:07 +0000485 pdebug("EnumDef -> tok_identifier = tok_int_constant");
ccheeverf53b5cf2007-02-05 20:33:11 +0000486 if ($4 < 0) {
487 pwarning(1, "Negative value supplied for enum %s.\n", $2);
Mark Slee31985722006-05-24 21:45:31 +0000488 }
ccheeverf53b5cf2007-02-05 20:33:11 +0000489 $$ = new t_enum_value($2, $4);
490 if ($1 != NULL) {
491 $$->set_doc($1);
492 }
Mark Sleed0767c52007-07-27 22:14:41 +0000493 if (g_parse_mode == PROGRAM) {
494 g_scope->add_constant($2, new t_const(g_type_i32, $2, new t_const_value($4)));
495 if (g_parent_scope != NULL) {
496 g_parent_scope->add_constant(g_parent_prefix + $2, new t_const(g_type_i32, $2, new t_const_value($4)));
497 }
498 }
Mark Slee31985722006-05-24 21:45:31 +0000499 }
500|
David Reisscbd4bac2007-08-14 17:12:33 +0000501 CaptureDocText tok_identifier CommaOrSemicolonOptional
Mark Slee31985722006-05-24 21:45:31 +0000502 {
Mark Slee30152872006-11-28 01:24:07 +0000503 pdebug("EnumDef -> tok_identifier");
ccheeverf53b5cf2007-02-05 20:33:11 +0000504 $$ = new t_enum_value($2);
505 if ($1 != NULL) {
506 $$->set_doc($1);
507 }
Mark Slee30152872006-11-28 01:24:07 +0000508 }
509
Mark Slee6a47fed2007-02-07 02:40:59 +0000510Senum:
David Reisscdffe262007-08-14 17:12:31 +0000511 tok_senum tok_identifier '{' SenumDefList '}'
Mark Slee6a47fed2007-02-07 02:40:59 +0000512 {
513 pdebug("Senum -> tok_senum tok_identifier { SenumDefList }");
David Reisscdffe262007-08-14 17:12:31 +0000514 $$ = new t_typedef(g_program, $4, $2);
Mark Slee6a47fed2007-02-07 02:40:59 +0000515 }
516
517SenumDefList:
518 SenumDefList SenumDef
519 {
520 pdebug("SenumDefList -> SenumDefList SenumDef");
521 $$ = $1;
522 $$->add_string_enum_val($2);
523 }
524|
525 {
526 pdebug("SenumDefList -> ");
527 $$ = new t_base_type("string", t_base_type::TYPE_STRING);
528 $$->set_string_enum(true);
529 }
530
531SenumDef:
532 tok_literal CommaOrSemicolonOptional
533 {
534 pdebug("SenumDef -> tok_literal");
535 $$ = $1;
536 }
537
Mark Slee30152872006-11-28 01:24:07 +0000538Const:
539 tok_const FieldType tok_identifier '=' ConstValue CommaOrSemicolonOptional
540 {
541 pdebug("Const -> tok_const FieldType tok_identifier = ConstValue");
Mark Sleeaa7671d2006-11-29 03:19:31 +0000542 if (g_parse_mode == PROGRAM) {
543 $$ = new t_const($2, $3, $5);
544 validate_const_type($$);
Mark Sleed0767c52007-07-27 22:14:41 +0000545
546 g_scope->add_constant($3, $$);
547 if (g_parent_scope != NULL) {
548 g_parent_scope->add_constant(g_parent_prefix + $3, $$);
549 }
550
Mark Sleeaa7671d2006-11-29 03:19:31 +0000551 } else {
552 $$ = NULL;
553 }
Mark Slee30152872006-11-28 01:24:07 +0000554 }
555
556ConstValue:
557 tok_int_constant
558 {
559 pdebug("ConstValue => tok_int_constant");
560 $$ = new t_const_value();
561 $$->set_integer($1);
562 }
563| tok_dub_constant
564 {
565 pdebug("ConstValue => tok_dub_constant");
566 $$ = new t_const_value();
567 $$->set_double($1);
568 }
569| tok_literal
570 {
571 pdebug("ConstValue => tok_literal");
Mark Sleed0767c52007-07-27 22:14:41 +0000572 $$ = new t_const_value($1);
Mark Slee30152872006-11-28 01:24:07 +0000573 }
Mark Slee67fc6342006-11-29 03:37:04 +0000574| tok_identifier
575 {
576 pdebug("ConstValue => tok_identifier");
Mark Sleed0767c52007-07-27 22:14:41 +0000577 t_const* constant = g_scope->get_constant($1);
578 if (constant != NULL) {
579 $$ = constant->get_value();
580 } else {
581 if (g_parse_mode == PROGRAM) {
582 pwarning(1, "Constant strings should be quoted: %s\n", $1);
583 }
584 $$ = new t_const_value($1);
585 }
Mark Slee67fc6342006-11-29 03:37:04 +0000586 }
Mark Slee30152872006-11-28 01:24:07 +0000587| ConstList
588 {
589 pdebug("ConstValue => ConstList");
590 $$ = $1;
591 }
592| ConstMap
593 {
594 pdebug("ConstValue => ConstMap");
Mark Slee27ed6ec2007-08-16 01:26:31 +0000595 $$ = $1;
Mark Slee30152872006-11-28 01:24:07 +0000596 }
597
598ConstList:
599 '[' ConstListContents ']'
600 {
601 pdebug("ConstList => [ ConstListContents ]");
602 $$ = $2;
603 }
604
605ConstListContents:
606 ConstListContents ConstValue CommaOrSemicolonOptional
607 {
608 pdebug("ConstListContents => ConstListContents ConstValue CommaOrSemicolonOptional");
609 $$ = $1;
610 $$->add_list($2);
611 }
612|
613 {
614 pdebug("ConstListContents =>");
615 $$ = new t_const_value();
616 $$->set_list();
617 }
618
619ConstMap:
620 '{' ConstMapContents '}'
621 {
622 pdebug("ConstMap => { ConstMapContents }");
623 $$ = $2;
624 }
625
626ConstMapContents:
627 ConstMapContents ConstValue ':' ConstValue CommaOrSemicolonOptional
628 {
629 pdebug("ConstMapContents => ConstMapContents ConstValue CommaOrSemicolonOptional");
630 $$ = $1;
631 $$->add_map($2, $4);
632 }
633|
634 {
635 pdebug("ConstMapContents =>");
636 $$ = new t_const_value();
637 $$->set_map();
Mark Slee31985722006-05-24 21:45:31 +0000638 }
639
640Struct:
David Reisscdffe262007-08-14 17:12:31 +0000641 tok_struct tok_identifier XsdAll '{' FieldList '}'
Mark Slee31985722006-05-24 21:45:31 +0000642 {
643 pdebug("Struct -> tok_struct tok_identifier { FieldList }");
David Reisscdffe262007-08-14 17:12:31 +0000644 $5->set_name($2);
645 $5->set_xsd_all($3);
646 $$ = $5;
Mark Slee9cb7c612006-09-01 22:17:45 +0000647 y_field_val = -1;
648 }
649
Mark Slee36bfa2e2007-01-19 20:09:51 +0000650XsdAll:
Mark Slee782abbb2007-01-19 00:17:02 +0000651 tok_xsd_all
652 {
653 $$ = true;
654 }
655|
656 {
657 $$ = false;
658 }
659
Mark Slee36bfa2e2007-01-19 20:09:51 +0000660XsdOptional:
661 tok_xsd_optional
662 {
663 $$ = true;
664 }
665|
666 {
667 $$ = false;
668 }
669
Mark Slee7df0e2a2007-02-06 21:03:18 +0000670XsdNillable:
671 tok_xsd_nillable
672 {
673 $$ = true;
674 }
675|
676 {
677 $$ = false;
678 }
679
Mark Slee21135c32007-02-05 21:52:08 +0000680XsdAttributes:
Mark Slee748d83f2007-02-07 01:20:08 +0000681 tok_xsd_attrs '{' FieldList '}'
Mark Slee21135c32007-02-05 21:52:08 +0000682 {
Mark Slee748d83f2007-02-07 01:20:08 +0000683 $$ = $3;
Mark Slee21135c32007-02-05 21:52:08 +0000684 }
685|
686 {
687 $$ = NULL;
688 }
689
Mark Slee9cb7c612006-09-01 22:17:45 +0000690Xception:
691 tok_xception tok_identifier '{' FieldList '}'
692 {
693 pdebug("Xception -> tok_xception tok_identifier { FieldList }");
694 $4->set_name($2);
695 $4->set_xception(true);
696 $$ = $4;
697 y_field_val = -1;
Mark Slee31985722006-05-24 21:45:31 +0000698 }
699
700Service:
Mark Slee78165722007-09-10 22:08:49 +0000701 tok_service tok_identifier Extends '{' FlagArgs FunctionList UnflagArgs '}'
Mark Slee31985722006-05-24 21:45:31 +0000702 {
703 pdebug("Service -> tok_service tok_identifier { FunctionList }");
Mark Slee78165722007-09-10 22:08:49 +0000704 $$ = $6;
David Reisscdffe262007-08-14 17:12:31 +0000705 $$->set_name($2);
706 $$->set_extends($3);
Mark Sleef0712dc2006-10-25 19:03:57 +0000707 }
708
Mark Slee78165722007-09-10 22:08:49 +0000709FlagArgs:
710 {
711 g_arglist = 1;
712 }
713
714UnflagArgs:
715 {
716 g_arglist = 0;
717 }
718
Mark Slee36bfa2e2007-01-19 20:09:51 +0000719Extends:
Mark Sleef0712dc2006-10-25 19:03:57 +0000720 tok_extends tok_identifier
721 {
Mark Slee36bfa2e2007-01-19 20:09:51 +0000722 pdebug("Extends -> tok_extends tok_identifier");
Mark Sleef0712dc2006-10-25 19:03:57 +0000723 $$ = NULL;
724 if (g_parse_mode == PROGRAM) {
725 $$ = g_scope->get_service($2);
726 if ($$ == NULL) {
727 yyerror("Service \"%s\" has not been defined.", $2);
728 exit(1);
729 }
730 }
731 }
732|
733 {
734 $$ = NULL;
Mark Slee31985722006-05-24 21:45:31 +0000735 }
736
737FunctionList:
Mark Slee207cb462006-11-02 18:43:12 +0000738 FunctionList Function
Mark Slee31985722006-05-24 21:45:31 +0000739 {
740 pdebug("FunctionList -> FunctionList Function");
741 $$ = $1;
742 $1->add_function($2);
743 }
744|
745 {
746 pdebug("FunctionList -> ");
Mark Sleef0712dc2006-10-25 19:03:57 +0000747 $$ = new t_service(g_program);
Mark Slee31985722006-05-24 21:45:31 +0000748 }
749
750Function:
David Reisscbd4bac2007-08-14 17:12:33 +0000751 CaptureDocText Async FunctionType tok_identifier '(' FieldList ')' Throws CommaOrSemicolonOptional
Mark Slee31985722006-05-24 21:45:31 +0000752 {
ccheeverf53b5cf2007-02-05 20:33:11 +0000753 $6->set_name(std::string($4) + "_args");
754 $$ = new t_function($3, $4, $6, $8, $2);
755 if ($1 != NULL) {
756 $$->set_doc($1);
757 }
Mark Slee9cb7c612006-09-01 22:17:45 +0000758 y_field_val = -1;
Mark Slee31985722006-05-24 21:45:31 +0000759 }
760
Mark Slee36bfa2e2007-01-19 20:09:51 +0000761Async:
Mark Slee52f643d2006-08-09 00:03:43 +0000762 tok_async
Mark Slee31985722006-05-24 21:45:31 +0000763 {
Mark Slee52f643d2006-08-09 00:03:43 +0000764 $$ = true;
765 }
766|
767 {
768 $$ = false;
Mark Slee31985722006-05-24 21:45:31 +0000769 }
770
Mark Slee36bfa2e2007-01-19 20:09:51 +0000771Throws:
Mark Slee9cb7c612006-09-01 22:17:45 +0000772 tok_throws '(' FieldList ')'
773 {
Mark Slee36bfa2e2007-01-19 20:09:51 +0000774 pdebug("Throws -> tok_throws ( FieldList )");
Mark Slee9cb7c612006-09-01 22:17:45 +0000775 $$ = $3;
Mark Sleef07d48e2008-02-01 01:36:26 +0000776 if (g_parse_mode == PROGRAM && !validate_throws($$)) {
Mark Slee91f2b7b2008-01-31 01:49:16 +0000777 yyerror("Throws clause may not contain non-exception types");
778 exit(1);
779 }
Mark Slee9cb7c612006-09-01 22:17:45 +0000780 }
781|
782 {
Mark Sleef0712dc2006-10-25 19:03:57 +0000783 $$ = new t_struct(g_program);
Mark Slee9cb7c612006-09-01 22:17:45 +0000784 }
785
Mark Slee31985722006-05-24 21:45:31 +0000786FieldList:
Mark Slee207cb462006-11-02 18:43:12 +0000787 FieldList Field
Mark Slee31985722006-05-24 21:45:31 +0000788 {
789 pdebug("FieldList -> FieldList , Field");
790 $$ = $1;
Mark Slee6f9ac3f2007-11-28 22:28:13 +0000791 if (!($$->validate_field($2))) {
792 yyerror("Field identifier %d for \"%s\" has already been used", $2->get_key(), $2->get_name().c_str());
793 exit(1);
794 }
Mark Slee207cb462006-11-02 18:43:12 +0000795 $$->append($2);
Mark Slee31985722006-05-24 21:45:31 +0000796 }
797|
798 {
799 pdebug("FieldList -> ");
Mark Sleef0712dc2006-10-25 19:03:57 +0000800 $$ = new t_struct(g_program);
Mark Slee31985722006-05-24 21:45:31 +0000801 }
802
803Field:
David Reiss8320a922007-08-14 19:59:26 +0000804 CaptureDocText FieldIdentifier FieldRequiredness FieldType tok_identifier FieldValue XsdOptional XsdNillable XsdAttributes CommaOrSemicolonOptional
Mark Slee31985722006-05-24 21:45:31 +0000805 {
Mark Sleef0712dc2006-10-25 19:03:57 +0000806 pdebug("tok_int_constant : Field -> FieldType tok_identifier");
ccheeverf53b5cf2007-02-05 20:33:11 +0000807 if ($2 < 0) {
David Reiss8320a922007-08-14 19:59:26 +0000808 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 +0000809 }
David Reiss8320a922007-08-14 19:59:26 +0000810 $$ = new t_field($4, $5, $2);
811 $$->set_req($3);
812 if ($6 != NULL) {
813 validate_field_value($$, $6);
814 $$->set_value($6);
Mark Slee7ff32452007-02-01 05:26:18 +0000815 }
David Reiss8320a922007-08-14 19:59:26 +0000816 $$->set_xsd_optional($7);
817 $$->set_xsd_nillable($8);
ccheeverf53b5cf2007-02-05 20:33:11 +0000818 if ($1 != NULL) {
819 $$->set_doc($1);
820 }
David Reiss8320a922007-08-14 19:59:26 +0000821 if ($9 != NULL) {
822 $$->set_xsd_attrs($9);
Mark Slee21135c32007-02-05 21:52:08 +0000823 }
Mark Slee31985722006-05-24 21:45:31 +0000824 }
Mark Slee7ff32452007-02-01 05:26:18 +0000825
826FieldIdentifier:
827 tok_int_constant ':'
Mark Slee31985722006-05-24 21:45:31 +0000828 {
Mark Slee7ff32452007-02-01 05:26:18 +0000829 if ($1 <= 0) {
830 pwarning(1, "Nonpositive value (%d) not allowed as a field key.\n", $1);
831 $1 = y_field_val--;
Mark Sleef0712dc2006-10-25 19:03:57 +0000832 }
Mark Slee7ff32452007-02-01 05:26:18 +0000833 $$ = $1;
834 }
835|
836 {
837 $$ = y_field_val--;
838 }
839
David Reiss8320a922007-08-14 19:59:26 +0000840FieldRequiredness:
841 tok_required
842 {
Mark Slee78165722007-09-10 22:08:49 +0000843 if (g_arglist) {
844 if (g_parse_mode == PROGRAM) {
845 pwarning(1, "required keyword is ignored in argument lists.\n");
846 }
David Reiss204420f2008-01-11 20:59:03 +0000847 $$ = t_field::T_OPT_IN_REQ_OUT;
Mark Slee78165722007-09-10 22:08:49 +0000848 } else {
David Reiss204420f2008-01-11 20:59:03 +0000849 $$ = t_field::T_REQUIRED;
Mark Slee78165722007-09-10 22:08:49 +0000850 }
David Reiss8320a922007-08-14 19:59:26 +0000851 }
852| tok_optional
853 {
Mark Slee78165722007-09-10 22:08:49 +0000854 if (g_arglist) {
855 if (g_parse_mode == PROGRAM) {
856 pwarning(1, "optional keyword is ignored in argument lists.\n");
857 }
David Reiss204420f2008-01-11 20:59:03 +0000858 $$ = t_field::T_OPT_IN_REQ_OUT;
Mark Slee78165722007-09-10 22:08:49 +0000859 } else {
David Reiss204420f2008-01-11 20:59:03 +0000860 $$ = t_field::T_OPTIONAL;
Mark Slee78165722007-09-10 22:08:49 +0000861 }
David Reiss8320a922007-08-14 19:59:26 +0000862 }
863|
864 {
David Reiss204420f2008-01-11 20:59:03 +0000865 $$ = t_field::T_OPT_IN_REQ_OUT;
David Reiss8320a922007-08-14 19:59:26 +0000866 }
867
Mark Slee7ff32452007-02-01 05:26:18 +0000868FieldValue:
869 '=' ConstValue
870 {
Mark Slee27ed6ec2007-08-16 01:26:31 +0000871 if (g_parse_mode == PROGRAM) {
Mark Slee7ff32452007-02-01 05:26:18 +0000872 $$ = $2;
873 } else {
874 $$ = NULL;
875 }
876 }
877|
878 {
879 $$ = NULL;
Mark Sleef0712dc2006-10-25 19:03:57 +0000880 }
Mark Slee31985722006-05-24 21:45:31 +0000881
882DefinitionType:
883 BaseType
884 {
885 pdebug("DefinitionType -> BaseType");
886 $$ = $1;
887 }
Mark Sleee8540632006-05-30 09:24:40 +0000888| ContainerType
889 {
890 pdebug("DefinitionType -> ContainerType");
891 $$ = $1;
892 }
Mark Slee31985722006-05-24 21:45:31 +0000893
894FunctionType:
895 FieldType
896 {
Mark Sleee8540632006-05-30 09:24:40 +0000897 pdebug("FunctionType -> FieldType");
Mark Slee31985722006-05-24 21:45:31 +0000898 $$ = $1;
899 }
900| tok_void
901 {
Mark Sleee8540632006-05-30 09:24:40 +0000902 pdebug("FunctionType -> tok_void");
Mark Sleef0712dc2006-10-25 19:03:57 +0000903 $$ = g_type_void;
Mark Slee31985722006-05-24 21:45:31 +0000904 }
905
906FieldType:
907 tok_identifier
908 {
Mark Sleee8540632006-05-30 09:24:40 +0000909 pdebug("FieldType -> tok_identifier");
Mark Sleef0712dc2006-10-25 19:03:57 +0000910 if (g_parse_mode == INCLUDES) {
911 // Ignore identifiers in include mode
912 $$ = NULL;
913 } else {
914 // Lookup the identifier in the current scope
915 $$ = g_scope->get_type($1);
916 if ($$ == NULL) {
917 yyerror("Type \"%s\" has not been defined.", $1);
918 exit(1);
919 }
Mark Sleee8540632006-05-30 09:24:40 +0000920 }
Mark Slee31985722006-05-24 21:45:31 +0000921 }
922| BaseType
923 {
Mark Sleee8540632006-05-30 09:24:40 +0000924 pdebug("FieldType -> BaseType");
925 $$ = $1;
926 }
927| ContainerType
928 {
929 pdebug("FieldType -> ContainerType");
Mark Slee31985722006-05-24 21:45:31 +0000930 $$ = $1;
931 }
932
933BaseType:
934 tok_string
935 {
936 pdebug("BaseType -> tok_string");
Mark Sleef0712dc2006-10-25 19:03:57 +0000937 $$ = g_type_string;
Mark Slee31985722006-05-24 21:45:31 +0000938 }
Mark Slee8d725a22007-04-13 01:57:12 +0000939| tok_binary
940 {
941 pdebug("BaseType -> tok_binary");
942 $$ = g_type_binary;
943 }
Mark Sleeb6200d82007-01-19 19:14:36 +0000944| tok_slist
945 {
946 pdebug("BaseType -> tok_slist");
947 $$ = g_type_slist;
948 }
Mark Slee78f58e22006-09-02 04:17:07 +0000949| tok_bool
950 {
951 pdebug("BaseType -> tok_bool");
Mark Sleef0712dc2006-10-25 19:03:57 +0000952 $$ = g_type_bool;
Mark Slee78f58e22006-09-02 04:17:07 +0000953 }
Mark Slee31985722006-05-24 21:45:31 +0000954| tok_byte
955 {
956 pdebug("BaseType -> tok_byte");
Mark Sleef0712dc2006-10-25 19:03:57 +0000957 $$ = g_type_byte;
Mark Slee31985722006-05-24 21:45:31 +0000958 }
Mark Slee9cb7c612006-09-01 22:17:45 +0000959| tok_i16
960 {
961 pdebug("BaseType -> tok_i16");
Mark Sleef0712dc2006-10-25 19:03:57 +0000962 $$ = g_type_i16;
Mark Slee9cb7c612006-09-01 22:17:45 +0000963 }
Mark Slee31985722006-05-24 21:45:31 +0000964| tok_i32
965 {
966 pdebug("BaseType -> tok_i32");
Mark Sleef0712dc2006-10-25 19:03:57 +0000967 $$ = g_type_i32;
Mark Slee31985722006-05-24 21:45:31 +0000968 }
Mark Slee31985722006-05-24 21:45:31 +0000969| tok_i64
970 {
971 pdebug("BaseType -> tok_i64");
Mark Sleef0712dc2006-10-25 19:03:57 +0000972 $$ = g_type_i64;
Mark Slee31985722006-05-24 21:45:31 +0000973 }
Mark Sleec98d0502006-09-06 02:42:25 +0000974| tok_double
975 {
976 pdebug("BaseType -> tok_double");
Mark Sleef0712dc2006-10-25 19:03:57 +0000977 $$ = g_type_double;
Mark Sleec98d0502006-09-06 02:42:25 +0000978 }
Mark Slee31985722006-05-24 21:45:31 +0000979
Mark Sleee8540632006-05-30 09:24:40 +0000980ContainerType:
981 MapType
982 {
983 pdebug("ContainerType -> MapType");
984 $$ = $1;
985 }
986| SetType
987 {
988 pdebug("ContainerType -> SetType");
989 $$ = $1;
990 }
991| ListType
992 {
993 pdebug("ContainerType -> ListType");
994 $$ = $1;
995 }
996
997MapType:
Mark Slee36bfa2e2007-01-19 20:09:51 +0000998 tok_map CppType '<' FieldType ',' FieldType '>'
Mark Sleee8540632006-05-30 09:24:40 +0000999 {
1000 pdebug("MapType -> tok_map <FieldType, FieldType>");
Mark Slee4f8da1d2006-10-12 02:47:27 +00001001 $$ = new t_map($4, $6);
1002 if ($2 != NULL) {
1003 ((t_container*)$$)->set_cpp_name(std::string($2));
1004 }
Mark Sleee8540632006-05-30 09:24:40 +00001005 }
1006
1007SetType:
Mark Slee36bfa2e2007-01-19 20:09:51 +00001008 tok_set CppType '<' FieldType '>'
Mark Sleee8540632006-05-30 09:24:40 +00001009 {
1010 pdebug("SetType -> tok_set<FieldType>");
Mark Slee4f8da1d2006-10-12 02:47:27 +00001011 $$ = new t_set($4);
1012 if ($2 != NULL) {
1013 ((t_container*)$$)->set_cpp_name(std::string($2));
1014 }
Mark Sleee8540632006-05-30 09:24:40 +00001015 }
1016
1017ListType:
Mark Slee36bfa2e2007-01-19 20:09:51 +00001018 tok_list '<' FieldType '>' CppType
Mark Sleee8540632006-05-30 09:24:40 +00001019 {
1020 pdebug("ListType -> tok_list<FieldType>");
Mark Sleef0712dc2006-10-25 19:03:57 +00001021 $$ = new t_list($3);
1022 if ($5 != NULL) {
1023 ((t_container*)$$)->set_cpp_name(std::string($5));
Mark Slee4f8da1d2006-10-12 02:47:27 +00001024 }
1025 }
1026
Mark Slee36bfa2e2007-01-19 20:09:51 +00001027CppType:
Mark Sleeafc76542007-02-09 21:55:44 +00001028 tok_cpp_type tok_literal
Mark Slee4f8da1d2006-10-12 02:47:27 +00001029 {
Mark Sleeafc76542007-02-09 21:55:44 +00001030 $$ = $2;
Mark Slee4f8da1d2006-10-12 02:47:27 +00001031 }
1032|
1033 {
1034 $$ = NULL;
Mark Sleee8540632006-05-30 09:24:40 +00001035 }
1036
Mark Slee31985722006-05-24 21:45:31 +00001037%%