blob: 24f4edac8e384747941a6cb7fa7655efce33573a [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 }
David Reiss92e10d82009-02-17 20:28:19 +0000353/* TODO(dreiss): Get rid of this once everyone is using the new hotness. */
Mark Slee0d9199e2007-01-31 02:08:30 +0000354| tok_xsd_namespace tok_literal
355 {
David Reiss92e10d82009-02-17 20:28:19 +0000356 pwarning(1, "'xsd_namespace' is deprecated. Use 'namespace xsd' instead");
Mark Slee0d9199e2007-01-31 02:08:30 +0000357 pdebug("Header -> tok_xsd_namespace tok_literal");
358 if (g_parse_mode == PROGRAM) {
David Reiss92e10d82009-02-17 20:28:19 +0000359 g_program->set_namespace("cocoa", $2);
Mark Slee0d9199e2007-01-31 02:08:30 +0000360 }
361 }
David Reiss9d65bf02008-03-27 21:41:37 +0000362/* TODO(dreiss): Get rid of this once everyone is using the new hotness. */
David Reiss7f42bcf2008-01-11 20:59:12 +0000363| tok_csharp_namespace tok_identifier
364 {
David Reiss9d65bf02008-03-27 21:41:37 +0000365 pwarning(1, "'csharp_namespace' is deprecated. Use 'namespace csharp' instead");
David Reiss919ae802008-03-27 21:41:11 +0000366 pdebug("Header -> tok_csharp_namespace tok_identifier");
David Reiss7f42bcf2008-01-11 20:59:12 +0000367 if (g_parse_mode == PROGRAM) {
David Reiss9d65bf02008-03-27 21:41:37 +0000368 g_program->set_namespace("csharp", $2);
David Reiss7f42bcf2008-01-11 20:59:12 +0000369 }
370 }
Mark Sleef0712dc2006-10-25 19:03:57 +0000371
372Include:
373 tok_include tok_literal
374 {
Mark Slee27ed6ec2007-08-16 01:26:31 +0000375 pdebug("Include -> tok_include tok_literal");
Mark Sleef0712dc2006-10-25 19:03:57 +0000376 if (g_parse_mode == INCLUDES) {
377 std::string path = include_file(std::string($2));
378 if (!path.empty()) {
kholst76f2c882008-01-16 02:47:41 +0000379 g_program->add_include(path, std::string($2));
Mark Sleef0712dc2006-10-25 19:03:57 +0000380 }
381 }
382 }
Mark Slee31985722006-05-24 21:45:31 +0000383
384DefinitionList:
David Reisscbd4bac2007-08-14 17:12:33 +0000385 DefinitionList CaptureDocText Definition
Mark Slee31985722006-05-24 21:45:31 +0000386 {
387 pdebug("DefinitionList -> DefinitionList Definition");
David Reisscdffe262007-08-14 17:12:31 +0000388 if ($2 != NULL && $3 != NULL) {
389 $3->set_doc($2);
390 }
Mark Slee31985722006-05-24 21:45:31 +0000391 }
392|
393 {
394 pdebug("DefinitionList -> ");
395 }
396
397Definition:
Mark Slee30152872006-11-28 01:24:07 +0000398 Const
399 {
400 pdebug("Definition -> Const");
401 if (g_parse_mode == PROGRAM) {
402 g_program->add_const($1);
Mark Sleebd588222007-11-21 08:43:35 +0000403 }
David Reisscdffe262007-08-14 17:12:31 +0000404 $$ = $1;
Mark Slee30152872006-11-28 01:24:07 +0000405 }
406| TypeDefinition
Mark Slee9cb7c612006-09-01 22:17:45 +0000407 {
Mark Sleef0712dc2006-10-25 19:03:57 +0000408 pdebug("Definition -> TypeDefinition");
409 if (g_parse_mode == PROGRAM) {
410 g_scope->add_type($1->get_name(), $1);
411 if (g_parent_scope != NULL) {
412 g_parent_scope->add_type(g_parent_prefix + $1->get_name(), $1);
413 }
414 }
David Reisscdffe262007-08-14 17:12:31 +0000415 $$ = $1;
Mark Slee9cb7c612006-09-01 22:17:45 +0000416 }
Mark Slee31985722006-05-24 21:45:31 +0000417| Service
418 {
419 pdebug("Definition -> Service");
Mark Sleef0712dc2006-10-25 19:03:57 +0000420 if (g_parse_mode == PROGRAM) {
421 g_scope->add_service($1->get_name(), $1);
422 if (g_parent_scope != NULL) {
423 g_parent_scope->add_service(g_parent_prefix + $1->get_name(), $1);
424 }
425 g_program->add_service($1);
426 }
David Reisscdffe262007-08-14 17:12:31 +0000427 $$ = $1;
Mark Slee9cb7c612006-09-01 22:17:45 +0000428 }
429
Mark Sleef0712dc2006-10-25 19:03:57 +0000430TypeDefinition:
431 Typedef
Mark Slee9cb7c612006-09-01 22:17:45 +0000432 {
Mark Sleef0712dc2006-10-25 19:03:57 +0000433 pdebug("TypeDefinition -> Typedef");
434 if (g_parse_mode == PROGRAM) {
435 g_program->add_typedef($1);
436 }
437 }
438| Enum
439 {
440 pdebug("TypeDefinition -> Enum");
441 if (g_parse_mode == PROGRAM) {
442 g_program->add_enum($1);
443 }
444 }
Mark Slee6a47fed2007-02-07 02:40:59 +0000445| Senum
446 {
447 pdebug("TypeDefinition -> Senum");
448 if (g_parse_mode == PROGRAM) {
449 g_program->add_typedef($1);
450 }
451 }
Mark Sleef0712dc2006-10-25 19:03:57 +0000452| Struct
453 {
454 pdebug("TypeDefinition -> Struct");
455 if (g_parse_mode == PROGRAM) {
456 g_program->add_struct($1);
457 }
458 }
459| Xception
Mark Slee27ed6ec2007-08-16 01:26:31 +0000460 {
Mark Sleef0712dc2006-10-25 19:03:57 +0000461 pdebug("TypeDefinition -> Xception");
462 if (g_parse_mode == PROGRAM) {
463 g_program->add_xception($1);
464 }
Mark Slee9cb7c612006-09-01 22:17:45 +0000465 }
Mark Slee31985722006-05-24 21:45:31 +0000466
467Typedef:
Mark Sleebd588222007-11-21 08:43:35 +0000468 tok_typedef DefinitionType tok_identifier
Mark Slee31985722006-05-24 21:45:31 +0000469 {
470 pdebug("TypeDef -> tok_typedef DefinitionType tok_identifier");
David Reisscdffe262007-08-14 17:12:31 +0000471 t_typedef *td = new t_typedef(g_program, $2, $3);
Mark Slee31985722006-05-24 21:45:31 +0000472 $$ = td;
473 }
474
Mark Slee6a47fed2007-02-07 02:40:59 +0000475CommaOrSemicolonOptional:
476 ','
477 {}
478| ';'
479 {}
480|
481 {}
ccheeverf53b5cf2007-02-05 20:33:11 +0000482
Mark Slee31985722006-05-24 21:45:31 +0000483Enum:
David Reisscdffe262007-08-14 17:12:31 +0000484 tok_enum tok_identifier '{' EnumDefList '}'
Mark Slee31985722006-05-24 21:45:31 +0000485 {
486 pdebug("Enum -> tok_enum tok_identifier { EnumDefList }");
David Reisscdffe262007-08-14 17:12:31 +0000487 $$ = $4;
488 $$->set_name($2);
Mark Slee31985722006-05-24 21:45:31 +0000489 }
490
491EnumDefList:
Mark Slee207cb462006-11-02 18:43:12 +0000492 EnumDefList EnumDef
Mark Slee31985722006-05-24 21:45:31 +0000493 {
494 pdebug("EnumDefList -> EnumDefList EnumDef");
495 $$ = $1;
Mark Slee207cb462006-11-02 18:43:12 +0000496 $$->append($2);
Mark Slee31985722006-05-24 21:45:31 +0000497 }
498|
499 {
500 pdebug("EnumDefList -> ");
Mark Sleef0712dc2006-10-25 19:03:57 +0000501 $$ = new t_enum(g_program);
Mark Slee31985722006-05-24 21:45:31 +0000502 }
503
504EnumDef:
David Reisscbd4bac2007-08-14 17:12:33 +0000505 CaptureDocText tok_identifier '=' tok_int_constant CommaOrSemicolonOptional
Mark Slee31985722006-05-24 21:45:31 +0000506 {
Mark Slee30152872006-11-28 01:24:07 +0000507 pdebug("EnumDef -> tok_identifier = tok_int_constant");
ccheeverf53b5cf2007-02-05 20:33:11 +0000508 if ($4 < 0) {
509 pwarning(1, "Negative value supplied for enum %s.\n", $2);
Mark Slee31985722006-05-24 21:45:31 +0000510 }
David Reissf1454162008-06-30 20:45:47 +0000511 if ($4 > INT_MAX) {
512 pwarning(1, "64-bit value supplied for enum %s.\n", $2);
513 }
ccheeverf53b5cf2007-02-05 20:33:11 +0000514 $$ = new t_enum_value($2, $4);
515 if ($1 != NULL) {
516 $$->set_doc($1);
517 }
Mark Sleed0767c52007-07-27 22:14:41 +0000518 if (g_parse_mode == PROGRAM) {
519 g_scope->add_constant($2, new t_const(g_type_i32, $2, new t_const_value($4)));
520 if (g_parent_scope != NULL) {
521 g_parent_scope->add_constant(g_parent_prefix + $2, new t_const(g_type_i32, $2, new t_const_value($4)));
522 }
523 }
Mark Slee31985722006-05-24 21:45:31 +0000524 }
525|
David Reisscbd4bac2007-08-14 17:12:33 +0000526 CaptureDocText tok_identifier CommaOrSemicolonOptional
Mark Slee31985722006-05-24 21:45:31 +0000527 {
Mark Slee30152872006-11-28 01:24:07 +0000528 pdebug("EnumDef -> tok_identifier");
ccheeverf53b5cf2007-02-05 20:33:11 +0000529 $$ = new t_enum_value($2);
530 if ($1 != NULL) {
531 $$->set_doc($1);
532 }
Mark Slee30152872006-11-28 01:24:07 +0000533 }
534
Mark Slee6a47fed2007-02-07 02:40:59 +0000535Senum:
David Reisscdffe262007-08-14 17:12:31 +0000536 tok_senum tok_identifier '{' SenumDefList '}'
Mark Slee6a47fed2007-02-07 02:40:59 +0000537 {
538 pdebug("Senum -> tok_senum tok_identifier { SenumDefList }");
David Reisscdffe262007-08-14 17:12:31 +0000539 $$ = new t_typedef(g_program, $4, $2);
Mark Slee6a47fed2007-02-07 02:40:59 +0000540 }
541
542SenumDefList:
543 SenumDefList SenumDef
544 {
545 pdebug("SenumDefList -> SenumDefList SenumDef");
546 $$ = $1;
547 $$->add_string_enum_val($2);
548 }
549|
550 {
551 pdebug("SenumDefList -> ");
552 $$ = new t_base_type("string", t_base_type::TYPE_STRING);
553 $$->set_string_enum(true);
554 }
555
556SenumDef:
557 tok_literal CommaOrSemicolonOptional
558 {
559 pdebug("SenumDef -> tok_literal");
560 $$ = $1;
561 }
562
Mark Slee30152872006-11-28 01:24:07 +0000563Const:
564 tok_const FieldType tok_identifier '=' ConstValue CommaOrSemicolonOptional
565 {
566 pdebug("Const -> tok_const FieldType tok_identifier = ConstValue");
Mark Sleeaa7671d2006-11-29 03:19:31 +0000567 if (g_parse_mode == PROGRAM) {
568 $$ = new t_const($2, $3, $5);
569 validate_const_type($$);
Mark Sleed0767c52007-07-27 22:14:41 +0000570
571 g_scope->add_constant($3, $$);
572 if (g_parent_scope != NULL) {
573 g_parent_scope->add_constant(g_parent_prefix + $3, $$);
574 }
575
Mark Sleeaa7671d2006-11-29 03:19:31 +0000576 } else {
577 $$ = NULL;
578 }
Mark Slee30152872006-11-28 01:24:07 +0000579 }
580
581ConstValue:
582 tok_int_constant
583 {
584 pdebug("ConstValue => tok_int_constant");
585 $$ = new t_const_value();
586 $$->set_integer($1);
David Reissf1454162008-06-30 20:45:47 +0000587 if ($1 < INT32_MIN || $1 > INT32_MAX) {
588 pwarning(1, "64-bit constant \"%"PRIi64"\" may not work in all languages.\n", $1);
589 }
Mark Slee30152872006-11-28 01:24:07 +0000590 }
591| tok_dub_constant
592 {
593 pdebug("ConstValue => tok_dub_constant");
594 $$ = new t_const_value();
595 $$->set_double($1);
596 }
597| tok_literal
598 {
599 pdebug("ConstValue => tok_literal");
Mark Sleed0767c52007-07-27 22:14:41 +0000600 $$ = new t_const_value($1);
Mark Slee30152872006-11-28 01:24:07 +0000601 }
Mark Slee67fc6342006-11-29 03:37:04 +0000602| tok_identifier
603 {
604 pdebug("ConstValue => tok_identifier");
Mark Sleed0767c52007-07-27 22:14:41 +0000605 t_const* constant = g_scope->get_constant($1);
606 if (constant != NULL) {
607 $$ = constant->get_value();
608 } else {
609 if (g_parse_mode == PROGRAM) {
610 pwarning(1, "Constant strings should be quoted: %s\n", $1);
611 }
612 $$ = new t_const_value($1);
613 }
Mark Slee67fc6342006-11-29 03:37:04 +0000614 }
Mark Slee30152872006-11-28 01:24:07 +0000615| ConstList
616 {
617 pdebug("ConstValue => ConstList");
618 $$ = $1;
619 }
620| ConstMap
621 {
622 pdebug("ConstValue => ConstMap");
Mark Slee27ed6ec2007-08-16 01:26:31 +0000623 $$ = $1;
Mark Slee30152872006-11-28 01:24:07 +0000624 }
625
626ConstList:
627 '[' ConstListContents ']'
628 {
629 pdebug("ConstList => [ ConstListContents ]");
630 $$ = $2;
631 }
632
633ConstListContents:
634 ConstListContents ConstValue CommaOrSemicolonOptional
635 {
636 pdebug("ConstListContents => ConstListContents ConstValue CommaOrSemicolonOptional");
637 $$ = $1;
638 $$->add_list($2);
639 }
640|
641 {
642 pdebug("ConstListContents =>");
643 $$ = new t_const_value();
644 $$->set_list();
645 }
646
647ConstMap:
648 '{' ConstMapContents '}'
649 {
650 pdebug("ConstMap => { ConstMapContents }");
651 $$ = $2;
652 }
653
654ConstMapContents:
655 ConstMapContents ConstValue ':' ConstValue CommaOrSemicolonOptional
656 {
657 pdebug("ConstMapContents => ConstMapContents ConstValue CommaOrSemicolonOptional");
658 $$ = $1;
659 $$->add_map($2, $4);
660 }
661|
662 {
663 pdebug("ConstMapContents =>");
664 $$ = new t_const_value();
665 $$->set_map();
Mark Slee31985722006-05-24 21:45:31 +0000666 }
667
668Struct:
David Reissa2309992008-12-10 01:52:48 +0000669 tok_struct tok_identifier XsdAll '{' FieldList '}' TypeAnnotations
Mark Slee31985722006-05-24 21:45:31 +0000670 {
671 pdebug("Struct -> tok_struct tok_identifier { FieldList }");
David Reisscdffe262007-08-14 17:12:31 +0000672 $5->set_xsd_all($3);
673 $$ = $5;
David Reissa2309992008-12-10 01:52:48 +0000674 $$->set_name($2);
675 if ($7 != NULL) {
676 $$->annotations_ = $7->annotations_;
677 delete $7;
678 }
Mark Slee9cb7c612006-09-01 22:17:45 +0000679 y_field_val = -1;
680 }
681
Mark Slee36bfa2e2007-01-19 20:09:51 +0000682XsdAll:
Mark Slee782abbb2007-01-19 00:17:02 +0000683 tok_xsd_all
684 {
685 $$ = true;
686 }
687|
688 {
689 $$ = false;
690 }
691
Mark Slee36bfa2e2007-01-19 20:09:51 +0000692XsdOptional:
693 tok_xsd_optional
694 {
695 $$ = true;
696 }
697|
698 {
699 $$ = false;
700 }
701
Mark Slee7df0e2a2007-02-06 21:03:18 +0000702XsdNillable:
703 tok_xsd_nillable
704 {
705 $$ = true;
706 }
707|
708 {
709 $$ = false;
710 }
711
Mark Slee21135c32007-02-05 21:52:08 +0000712XsdAttributes:
Mark Slee748d83f2007-02-07 01:20:08 +0000713 tok_xsd_attrs '{' FieldList '}'
Mark Slee21135c32007-02-05 21:52:08 +0000714 {
Mark Slee748d83f2007-02-07 01:20:08 +0000715 $$ = $3;
Mark Slee21135c32007-02-05 21:52:08 +0000716 }
717|
718 {
719 $$ = NULL;
720 }
721
Mark Slee9cb7c612006-09-01 22:17:45 +0000722Xception:
723 tok_xception tok_identifier '{' FieldList '}'
724 {
725 pdebug("Xception -> tok_xception tok_identifier { FieldList }");
726 $4->set_name($2);
727 $4->set_xception(true);
728 $$ = $4;
729 y_field_val = -1;
Mark Slee31985722006-05-24 21:45:31 +0000730 }
731
732Service:
Mark Slee78165722007-09-10 22:08:49 +0000733 tok_service tok_identifier Extends '{' FlagArgs FunctionList UnflagArgs '}'
Mark Slee31985722006-05-24 21:45:31 +0000734 {
735 pdebug("Service -> tok_service tok_identifier { FunctionList }");
Mark Slee78165722007-09-10 22:08:49 +0000736 $$ = $6;
David Reisscdffe262007-08-14 17:12:31 +0000737 $$->set_name($2);
738 $$->set_extends($3);
Mark Sleef0712dc2006-10-25 19:03:57 +0000739 }
740
Mark Slee78165722007-09-10 22:08:49 +0000741FlagArgs:
742 {
743 g_arglist = 1;
744 }
745
746UnflagArgs:
747 {
748 g_arglist = 0;
749 }
750
Mark Slee36bfa2e2007-01-19 20:09:51 +0000751Extends:
Mark Sleef0712dc2006-10-25 19:03:57 +0000752 tok_extends tok_identifier
753 {
Mark Slee36bfa2e2007-01-19 20:09:51 +0000754 pdebug("Extends -> tok_extends tok_identifier");
Mark Sleef0712dc2006-10-25 19:03:57 +0000755 $$ = NULL;
756 if (g_parse_mode == PROGRAM) {
757 $$ = g_scope->get_service($2);
758 if ($$ == NULL) {
759 yyerror("Service \"%s\" has not been defined.", $2);
760 exit(1);
761 }
762 }
763 }
764|
765 {
766 $$ = NULL;
Mark Slee31985722006-05-24 21:45:31 +0000767 }
768
769FunctionList:
Mark Slee207cb462006-11-02 18:43:12 +0000770 FunctionList Function
Mark Slee31985722006-05-24 21:45:31 +0000771 {
772 pdebug("FunctionList -> FunctionList Function");
773 $$ = $1;
774 $1->add_function($2);
775 }
776|
777 {
778 pdebug("FunctionList -> ");
Mark Sleef0712dc2006-10-25 19:03:57 +0000779 $$ = new t_service(g_program);
Mark Slee31985722006-05-24 21:45:31 +0000780 }
781
782Function:
David Reisscbd4bac2007-08-14 17:12:33 +0000783 CaptureDocText Async FunctionType tok_identifier '(' FieldList ')' Throws CommaOrSemicolonOptional
Mark Slee31985722006-05-24 21:45:31 +0000784 {
ccheeverf53b5cf2007-02-05 20:33:11 +0000785 $6->set_name(std::string($4) + "_args");
786 $$ = new t_function($3, $4, $6, $8, $2);
787 if ($1 != NULL) {
788 $$->set_doc($1);
789 }
Mark Slee9cb7c612006-09-01 22:17:45 +0000790 y_field_val = -1;
Mark Slee31985722006-05-24 21:45:31 +0000791 }
792
Mark Slee36bfa2e2007-01-19 20:09:51 +0000793Async:
Mark Slee52f643d2006-08-09 00:03:43 +0000794 tok_async
Mark Slee31985722006-05-24 21:45:31 +0000795 {
Mark Slee52f643d2006-08-09 00:03:43 +0000796 $$ = true;
797 }
798|
799 {
800 $$ = false;
Mark Slee31985722006-05-24 21:45:31 +0000801 }
802
Mark Slee36bfa2e2007-01-19 20:09:51 +0000803Throws:
Mark Slee9cb7c612006-09-01 22:17:45 +0000804 tok_throws '(' FieldList ')'
805 {
Mark Slee36bfa2e2007-01-19 20:09:51 +0000806 pdebug("Throws -> tok_throws ( FieldList )");
Mark Slee9cb7c612006-09-01 22:17:45 +0000807 $$ = $3;
Mark Sleef07d48e2008-02-01 01:36:26 +0000808 if (g_parse_mode == PROGRAM && !validate_throws($$)) {
Mark Slee91f2b7b2008-01-31 01:49:16 +0000809 yyerror("Throws clause may not contain non-exception types");
810 exit(1);
811 }
Mark Slee9cb7c612006-09-01 22:17:45 +0000812 }
813|
814 {
Mark Sleef0712dc2006-10-25 19:03:57 +0000815 $$ = new t_struct(g_program);
Mark Slee9cb7c612006-09-01 22:17:45 +0000816 }
817
Mark Slee31985722006-05-24 21:45:31 +0000818FieldList:
Mark Slee207cb462006-11-02 18:43:12 +0000819 FieldList Field
Mark Slee31985722006-05-24 21:45:31 +0000820 {
821 pdebug("FieldList -> FieldList , Field");
822 $$ = $1;
Mark Slee6f9ac3f2007-11-28 22:28:13 +0000823 if (!($$->validate_field($2))) {
824 yyerror("Field identifier %d for \"%s\" has already been used", $2->get_key(), $2->get_name().c_str());
825 exit(1);
826 }
Mark Slee207cb462006-11-02 18:43:12 +0000827 $$->append($2);
Mark Slee31985722006-05-24 21:45:31 +0000828 }
829|
830 {
831 pdebug("FieldList -> ");
Mark Sleef0712dc2006-10-25 19:03:57 +0000832 $$ = new t_struct(g_program);
Mark Slee31985722006-05-24 21:45:31 +0000833 }
834
835Field:
David Reiss8320a922007-08-14 19:59:26 +0000836 CaptureDocText FieldIdentifier FieldRequiredness FieldType tok_identifier FieldValue XsdOptional XsdNillable XsdAttributes CommaOrSemicolonOptional
Mark Slee31985722006-05-24 21:45:31 +0000837 {
Mark Sleef0712dc2006-10-25 19:03:57 +0000838 pdebug("tok_int_constant : Field -> FieldType tok_identifier");
ccheeverf53b5cf2007-02-05 20:33:11 +0000839 if ($2 < 0) {
David Reiss8320a922007-08-14 19:59:26 +0000840 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 +0000841 }
David Reiss8320a922007-08-14 19:59:26 +0000842 $$ = new t_field($4, $5, $2);
843 $$->set_req($3);
844 if ($6 != NULL) {
845 validate_field_value($$, $6);
846 $$->set_value($6);
Mark Slee7ff32452007-02-01 05:26:18 +0000847 }
David Reiss8320a922007-08-14 19:59:26 +0000848 $$->set_xsd_optional($7);
849 $$->set_xsd_nillable($8);
ccheeverf53b5cf2007-02-05 20:33:11 +0000850 if ($1 != NULL) {
851 $$->set_doc($1);
852 }
David Reiss8320a922007-08-14 19:59:26 +0000853 if ($9 != NULL) {
854 $$->set_xsd_attrs($9);
Mark Slee21135c32007-02-05 21:52:08 +0000855 }
Mark Slee31985722006-05-24 21:45:31 +0000856 }
Mark Slee7ff32452007-02-01 05:26:18 +0000857
858FieldIdentifier:
859 tok_int_constant ':'
Mark Slee31985722006-05-24 21:45:31 +0000860 {
Mark Slee7ff32452007-02-01 05:26:18 +0000861 if ($1 <= 0) {
862 pwarning(1, "Nonpositive value (%d) not allowed as a field key.\n", $1);
863 $1 = y_field_val--;
Mark Sleef0712dc2006-10-25 19:03:57 +0000864 }
Mark Slee7ff32452007-02-01 05:26:18 +0000865 $$ = $1;
866 }
867|
868 {
869 $$ = y_field_val--;
870 }
871
David Reiss8320a922007-08-14 19:59:26 +0000872FieldRequiredness:
873 tok_required
874 {
Mark Slee78165722007-09-10 22:08:49 +0000875 if (g_arglist) {
876 if (g_parse_mode == PROGRAM) {
877 pwarning(1, "required keyword is ignored in argument lists.\n");
878 }
David Reiss204420f2008-01-11 20:59:03 +0000879 $$ = t_field::T_OPT_IN_REQ_OUT;
Mark Slee78165722007-09-10 22:08:49 +0000880 } else {
David Reiss204420f2008-01-11 20:59:03 +0000881 $$ = t_field::T_REQUIRED;
Mark Slee78165722007-09-10 22:08:49 +0000882 }
David Reiss8320a922007-08-14 19:59:26 +0000883 }
884| tok_optional
885 {
Mark Slee78165722007-09-10 22:08:49 +0000886 if (g_arglist) {
887 if (g_parse_mode == PROGRAM) {
888 pwarning(1, "optional keyword is ignored in argument lists.\n");
889 }
David Reiss204420f2008-01-11 20:59:03 +0000890 $$ = t_field::T_OPT_IN_REQ_OUT;
Mark Slee78165722007-09-10 22:08:49 +0000891 } else {
David Reiss204420f2008-01-11 20:59:03 +0000892 $$ = t_field::T_OPTIONAL;
Mark Slee78165722007-09-10 22:08:49 +0000893 }
David Reiss8320a922007-08-14 19:59:26 +0000894 }
895|
896 {
David Reiss204420f2008-01-11 20:59:03 +0000897 $$ = t_field::T_OPT_IN_REQ_OUT;
David Reiss8320a922007-08-14 19:59:26 +0000898 }
899
Mark Slee7ff32452007-02-01 05:26:18 +0000900FieldValue:
901 '=' ConstValue
902 {
Mark Slee27ed6ec2007-08-16 01:26:31 +0000903 if (g_parse_mode == PROGRAM) {
Mark Slee7ff32452007-02-01 05:26:18 +0000904 $$ = $2;
905 } else {
906 $$ = NULL;
907 }
908 }
909|
910 {
911 $$ = NULL;
Mark Sleef0712dc2006-10-25 19:03:57 +0000912 }
Mark Slee31985722006-05-24 21:45:31 +0000913
914DefinitionType:
915 BaseType
916 {
917 pdebug("DefinitionType -> BaseType");
918 $$ = $1;
919 }
Mark Sleee8540632006-05-30 09:24:40 +0000920| ContainerType
921 {
922 pdebug("DefinitionType -> ContainerType");
923 $$ = $1;
924 }
Mark Slee31985722006-05-24 21:45:31 +0000925
926FunctionType:
927 FieldType
928 {
Mark Sleee8540632006-05-30 09:24:40 +0000929 pdebug("FunctionType -> FieldType");
Mark Slee31985722006-05-24 21:45:31 +0000930 $$ = $1;
931 }
932| tok_void
933 {
Mark Sleee8540632006-05-30 09:24:40 +0000934 pdebug("FunctionType -> tok_void");
Mark Sleef0712dc2006-10-25 19:03:57 +0000935 $$ = g_type_void;
Mark Slee31985722006-05-24 21:45:31 +0000936 }
937
938FieldType:
939 tok_identifier
940 {
Mark Sleee8540632006-05-30 09:24:40 +0000941 pdebug("FieldType -> tok_identifier");
Mark Sleef0712dc2006-10-25 19:03:57 +0000942 if (g_parse_mode == INCLUDES) {
943 // Ignore identifiers in include mode
944 $$ = NULL;
945 } else {
946 // Lookup the identifier in the current scope
947 $$ = g_scope->get_type($1);
948 if ($$ == NULL) {
949 yyerror("Type \"%s\" has not been defined.", $1);
950 exit(1);
951 }
Mark Sleee8540632006-05-30 09:24:40 +0000952 }
Mark Slee31985722006-05-24 21:45:31 +0000953 }
954| BaseType
955 {
Mark Sleee8540632006-05-30 09:24:40 +0000956 pdebug("FieldType -> BaseType");
957 $$ = $1;
958 }
959| ContainerType
960 {
961 pdebug("FieldType -> ContainerType");
Mark Slee31985722006-05-24 21:45:31 +0000962 $$ = $1;
963 }
964
965BaseType:
966 tok_string
967 {
968 pdebug("BaseType -> tok_string");
Mark Sleef0712dc2006-10-25 19:03:57 +0000969 $$ = g_type_string;
Mark Slee31985722006-05-24 21:45:31 +0000970 }
Mark Slee8d725a22007-04-13 01:57:12 +0000971| tok_binary
972 {
973 pdebug("BaseType -> tok_binary");
974 $$ = g_type_binary;
975 }
Mark Sleeb6200d82007-01-19 19:14:36 +0000976| tok_slist
977 {
978 pdebug("BaseType -> tok_slist");
979 $$ = g_type_slist;
980 }
Mark Slee78f58e22006-09-02 04:17:07 +0000981| tok_bool
982 {
983 pdebug("BaseType -> tok_bool");
Mark Sleef0712dc2006-10-25 19:03:57 +0000984 $$ = g_type_bool;
Mark Slee78f58e22006-09-02 04:17:07 +0000985 }
Mark Slee31985722006-05-24 21:45:31 +0000986| tok_byte
987 {
988 pdebug("BaseType -> tok_byte");
Mark Sleef0712dc2006-10-25 19:03:57 +0000989 $$ = g_type_byte;
Mark Slee31985722006-05-24 21:45:31 +0000990 }
Mark Slee9cb7c612006-09-01 22:17:45 +0000991| tok_i16
992 {
993 pdebug("BaseType -> tok_i16");
Mark Sleef0712dc2006-10-25 19:03:57 +0000994 $$ = g_type_i16;
Mark Slee9cb7c612006-09-01 22:17:45 +0000995 }
Mark Slee31985722006-05-24 21:45:31 +0000996| tok_i32
997 {
998 pdebug("BaseType -> tok_i32");
Mark Sleef0712dc2006-10-25 19:03:57 +0000999 $$ = g_type_i32;
Mark Slee31985722006-05-24 21:45:31 +00001000 }
Mark Slee31985722006-05-24 21:45:31 +00001001| tok_i64
1002 {
1003 pdebug("BaseType -> tok_i64");
Mark Sleef0712dc2006-10-25 19:03:57 +00001004 $$ = g_type_i64;
Mark Slee31985722006-05-24 21:45:31 +00001005 }
Mark Sleec98d0502006-09-06 02:42:25 +00001006| tok_double
1007 {
1008 pdebug("BaseType -> tok_double");
Mark Sleef0712dc2006-10-25 19:03:57 +00001009 $$ = g_type_double;
Mark Sleec98d0502006-09-06 02:42:25 +00001010 }
Mark Slee31985722006-05-24 21:45:31 +00001011
David Reissa2309992008-12-10 01:52:48 +00001012ContainerType: SimpleContainerType TypeAnnotations
1013 {
1014 pdebug("ContainerType -> SimpleContainerType TypeAnnotations");
1015 $$ = $1;
1016 if ($2 != NULL) {
1017 $$->annotations_ = $2->annotations_;
1018 delete $2;
1019 }
1020 }
1021
1022SimpleContainerType:
Mark Sleee8540632006-05-30 09:24:40 +00001023 MapType
1024 {
David Reissa2309992008-12-10 01:52:48 +00001025 pdebug("SimpleContainerType -> MapType");
Mark Sleee8540632006-05-30 09:24:40 +00001026 $$ = $1;
1027 }
1028| SetType
1029 {
David Reissa2309992008-12-10 01:52:48 +00001030 pdebug("SimpleContainerType -> SetType");
Mark Sleee8540632006-05-30 09:24:40 +00001031 $$ = $1;
1032 }
1033| ListType
1034 {
David Reissa2309992008-12-10 01:52:48 +00001035 pdebug("SimpleContainerType -> ListType");
Mark Sleee8540632006-05-30 09:24:40 +00001036 $$ = $1;
1037 }
1038
1039MapType:
Mark Slee36bfa2e2007-01-19 20:09:51 +00001040 tok_map CppType '<' FieldType ',' FieldType '>'
Mark Sleee8540632006-05-30 09:24:40 +00001041 {
1042 pdebug("MapType -> tok_map <FieldType, FieldType>");
Mark Slee4f8da1d2006-10-12 02:47:27 +00001043 $$ = new t_map($4, $6);
1044 if ($2 != NULL) {
1045 ((t_container*)$$)->set_cpp_name(std::string($2));
1046 }
Mark Sleee8540632006-05-30 09:24:40 +00001047 }
1048
1049SetType:
Mark Slee36bfa2e2007-01-19 20:09:51 +00001050 tok_set CppType '<' FieldType '>'
Mark Sleee8540632006-05-30 09:24:40 +00001051 {
1052 pdebug("SetType -> tok_set<FieldType>");
Mark Slee4f8da1d2006-10-12 02:47:27 +00001053 $$ = new t_set($4);
1054 if ($2 != NULL) {
1055 ((t_container*)$$)->set_cpp_name(std::string($2));
1056 }
Mark Sleee8540632006-05-30 09:24:40 +00001057 }
1058
1059ListType:
Mark Slee36bfa2e2007-01-19 20:09:51 +00001060 tok_list '<' FieldType '>' CppType
Mark Sleee8540632006-05-30 09:24:40 +00001061 {
1062 pdebug("ListType -> tok_list<FieldType>");
Mark Sleef0712dc2006-10-25 19:03:57 +00001063 $$ = new t_list($3);
1064 if ($5 != NULL) {
1065 ((t_container*)$$)->set_cpp_name(std::string($5));
Mark Slee4f8da1d2006-10-12 02:47:27 +00001066 }
1067 }
1068
Mark Slee36bfa2e2007-01-19 20:09:51 +00001069CppType:
Mark Sleeafc76542007-02-09 21:55:44 +00001070 tok_cpp_type tok_literal
Mark Slee4f8da1d2006-10-12 02:47:27 +00001071 {
Mark Sleeafc76542007-02-09 21:55:44 +00001072 $$ = $2;
Mark Slee4f8da1d2006-10-12 02:47:27 +00001073 }
1074|
1075 {
1076 $$ = NULL;
Mark Sleee8540632006-05-30 09:24:40 +00001077 }
1078
David Reissa2309992008-12-10 01:52:48 +00001079TypeAnnotations:
1080 '(' TypeAnnotationList ')'
1081 {
1082 pdebug("TypeAnnotations -> ( TypeAnnotationList )");
1083 $$ = $2;
1084 }
1085|
1086 {
1087 $$ = NULL;
1088 }
1089
1090TypeAnnotationList:
1091 TypeAnnotationList TypeAnnotation
1092 {
1093 pdebug("TypeAnnotationList -> TypeAnnotationList , TypeAnnotation");
1094 $$ = $1;
1095 $$->annotations_[$2->key] = $2->val;
1096 delete $2;
1097 }
1098|
1099 {
1100 /* Just use a dummy structure to hold the annotations. */
1101 $$ = new t_struct(g_program);
1102 }
1103
1104TypeAnnotation:
1105 tok_identifier '=' tok_literal CommaOrSemicolonOptional
1106 {
1107 pdebug("TypeAnnotation -> tok_identifier = tok_literal");
1108 $$ = new t_annotation;
1109 $$->key = $1;
1110 $$->val = $3;
1111 }
1112
Mark Slee31985722006-05-24 21:45:31 +00001113%%