a8e58cef121eb82dbbe37427f8014ca798f7114c
[babeltrace.git] / formats / ctf / metadata / ctf-ast.h
1 #ifndef _CTF_AST_H
2 #define _CTF_AST_H
3
4 /*
5 * ctf-ast.h
6 *
7 * Copyright 2011-2012 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
18 */
19
20 #include <stdint.h>
21 #include <stdio.h>
22 #include <glib.h>
23 #include <babeltrace/list.h>
24
25 // the parameter name (of the reentrant 'yyparse' function)
26 // data is a pointer to a 'SParserParam' structure
27 //#define YYPARSE_PARAM scanner
28
29 // the argument for the 'yylex' function
30 #define YYLEX_PARAM ((struct ctf_scanner *) scanner)->scanner
31
32 struct ctf_node;
33 struct ctf_parser;
34
35 #define FOREACH_CTF_NODES(F) \
36 F(NODE_UNKNOWN) \
37 F(NODE_ROOT) \
38 F(NODE_ERROR) \
39 F(NODE_EVENT) \
40 F(NODE_STREAM) \
41 F(NODE_ENV) \
42 F(NODE_TRACE) \
43 F(NODE_CLOCK) \
44 F(NODE_CALLSITE) \
45 F(NODE_CTF_EXPRESSION) \
46 F(NODE_UNARY_EXPRESSION) \
47 F(NODE_TYPEDEF) \
48 F(NODE_TYPEALIAS_TARGET) \
49 F(NODE_TYPEALIAS_ALIAS) \
50 F(NODE_TYPEALIAS) \
51 F(NODE_TYPE_SPECIFIER) \
52 F(NODE_TYPE_SPECIFIER_LIST) \
53 F(NODE_POINTER) \
54 F(NODE_TYPE_DECLARATOR) \
55 F(NODE_FLOATING_POINT) \
56 F(NODE_INTEGER) \
57 F(NODE_STRING) \
58 F(NODE_ENUMERATOR) \
59 F(NODE_ENUM) \
60 F(NODE_STRUCT_OR_VARIANT_DECLARATION) \
61 F(NODE_VARIANT) \
62 F(NODE_STRUCT)
63
64 enum node_type {
65 #define ENTRY(S) S,
66 FOREACH_CTF_NODES(ENTRY)
67 #undef ENTRY
68 NR_NODE_TYPES,
69 };
70
71 struct ctf_node {
72 /*
73 * Parent node is only set on demand by specific visitor.
74 */
75 struct ctf_node *parent;
76 struct bt_list_head siblings;
77 struct bt_list_head tmp_head;
78 unsigned int lineno;
79
80 enum node_type type;
81 union {
82 struct {
83 } unknown;
84 struct {
85 /*
86 * Children nodes are ctf_expression, typedef,
87 * typealias and type_specifier_list.
88 */
89 struct bt_list_head declaration_list;
90 struct bt_list_head trace;
91 struct bt_list_head env;
92 struct bt_list_head stream;
93 struct bt_list_head event;
94 struct bt_list_head clock;
95 struct bt_list_head callsite;
96 } root;
97 struct {
98 /*
99 * Children nodes are ctf_expression, typedef,
100 * typealias and type_specifier_list.
101 */
102 struct bt_list_head declaration_list;
103 } event;
104 struct {
105 /*
106 * Children nodes are ctf_expression, typedef,
107 * typealias and type_specifier_list.
108 */
109 struct bt_list_head declaration_list;
110 } stream;
111 struct {
112 /*
113 * Children nodes are ctf_expression, typedef,
114 * typealias and type_specifier_list.
115 */
116 struct bt_list_head declaration_list;
117 } env;
118 struct {
119 /*
120 * Children nodes are ctf_expression, typedef,
121 * typealias and type_specifier_list.
122 */
123 struct bt_list_head declaration_list;
124 } trace;
125 struct {
126 /*
127 * Children nodes are ctf_expression, typedef,
128 * typealias and type_specifier_list.
129 */
130 struct bt_list_head declaration_list;
131 } clock;
132 struct {
133 /*
134 * Children nodes are ctf_expression, typedef,
135 * typealias and type_specifier_list.
136 */
137 struct bt_list_head declaration_list;
138 } callsite;
139 struct {
140 struct bt_list_head left; /* Should be string */
141 struct bt_list_head right; /* Unary exp. or type */
142 } ctf_expression;
143 struct {
144 enum {
145 UNARY_UNKNOWN = 0,
146 UNARY_STRING,
147 UNARY_SIGNED_CONSTANT,
148 UNARY_UNSIGNED_CONSTANT,
149 UNARY_SBRAC,
150 } type;
151 union {
152 /*
153 * string for identifier, id_type, keywords,
154 * string literals and character constants.
155 */
156 char *string;
157 int64_t signed_constant;
158 uint64_t unsigned_constant;
159 struct ctf_node *sbrac_exp;
160 } u;
161 enum {
162 UNARY_LINK_UNKNOWN = 0,
163 UNARY_DOTLINK,
164 UNARY_ARROWLINK,
165 UNARY_DOTDOTDOT,
166 } link;
167 } unary_expression;
168 struct {
169 struct ctf_node *type_specifier_list;
170 struct bt_list_head type_declarators;
171 } _typedef;
172 /* new type is "alias", existing type "target" */
173 struct {
174 struct ctf_node *type_specifier_list;
175 struct bt_list_head type_declarators;
176 } typealias_target;
177 struct {
178 struct ctf_node *type_specifier_list;
179 struct bt_list_head type_declarators;
180 } typealias_alias;
181 struct {
182 struct ctf_node *target;
183 struct ctf_node *alias;
184 } typealias;
185 struct {
186 enum {
187 TYPESPEC_UNKNOWN = 0,
188 TYPESPEC_VOID,
189 TYPESPEC_CHAR,
190 TYPESPEC_SHORT,
191 TYPESPEC_INT,
192 TYPESPEC_LONG,
193 TYPESPEC_FLOAT,
194 TYPESPEC_DOUBLE,
195 TYPESPEC_SIGNED,
196 TYPESPEC_UNSIGNED,
197 TYPESPEC_BOOL,
198 TYPESPEC_COMPLEX,
199 TYPESPEC_IMAGINARY,
200 TYPESPEC_CONST,
201 TYPESPEC_ID_TYPE,
202 TYPESPEC_FLOATING_POINT,
203 TYPESPEC_INTEGER,
204 TYPESPEC_STRING,
205 TYPESPEC_STRUCT,
206 TYPESPEC_VARIANT,
207 TYPESPEC_ENUM,
208 } type;
209 /* For struct, variant and enum */
210 struct ctf_node *node;
211 const char *id_type;
212 } type_specifier;
213 struct {
214 /* list of type_specifier */
215 struct bt_list_head head;
216 } type_specifier_list;
217 struct {
218 unsigned int const_qualifier;
219 } pointer;
220 struct {
221 struct bt_list_head pointers;
222 enum {
223 TYPEDEC_UNKNOWN = 0,
224 TYPEDEC_ID, /* identifier */
225 TYPEDEC_NESTED, /* (), array or sequence */
226 } type;
227 union {
228 char *id;
229 struct {
230 /* typedec has no pointer list */
231 struct ctf_node *type_declarator;
232 /*
233 * unary expression (value) or
234 * type_specifier_list.
235 */
236 struct bt_list_head length;
237 /* for abstract type declarator */
238 unsigned int abstract_array;
239 } nested;
240 } u;
241 struct ctf_node *bitfield_len;
242 } type_declarator;
243 struct {
244 /* Children nodes are ctf_expression. */
245 struct bt_list_head expressions;
246 } floating_point;
247 struct {
248 /* Children nodes are ctf_expression. */
249 struct bt_list_head expressions;
250 } integer;
251 struct {
252 /* Children nodes are ctf_expression. */
253 struct bt_list_head expressions;
254 } string;
255 struct {
256 char *id;
257 /*
258 * Range list or single value node. Contains unary
259 * expressions.
260 */
261 struct bt_list_head values;
262 } enumerator;
263 struct {
264 char *enum_id;
265 /*
266 * Either NULL, or points to unary expression or
267 * type_specifier_list.
268 */
269 struct ctf_node *container_type;
270 struct bt_list_head enumerator_list;
271 int has_body;
272 } _enum;
273 struct {
274 struct ctf_node *type_specifier_list;
275 struct bt_list_head type_declarators;
276 } struct_or_variant_declaration;
277 struct {
278 char *name;
279 char *choice;
280 /* list of typedef, typealias and declarations */
281 struct bt_list_head declaration_list;
282 int has_body;
283 } variant;
284 struct {
285 char *name;
286 /* list of typedef, typealias and declarations */
287 struct bt_list_head declaration_list;
288 int has_body;
289 struct bt_list_head min_align; /* align() attribute */
290 } _struct;
291 } u;
292 };
293
294 struct ctf_ast {
295 struct ctf_node root;
296 };
297
298 const char *node_type(struct ctf_node *node);
299
300 struct ctf_trace;
301
302 BT_HIDDEN
303 int ctf_visitor_print_xml(FILE *fd, int depth, struct ctf_node *node);
304 BT_HIDDEN
305 int ctf_visitor_semantic_check(FILE *fd, int depth, struct ctf_node *node);
306 BT_HIDDEN
307 int ctf_visitor_parent_links(FILE *fd, int depth, struct ctf_node *node);
308 BT_HIDDEN
309 int ctf_visitor_construct_metadata(FILE *fd, int depth, struct ctf_node *node,
310 struct ctf_trace *trace, int byte_order);
311 BT_HIDDEN
312 int ctf_destroy_metadata(struct ctf_trace *trace);
313
314 #endif /* _CTF_AST_H */
This page took 0.053589 seconds and 3 git commands to generate.