Remove nested expressions
[babeltrace.git] / formats / ctf / metadata / ctf-ast.h
CommitLineData
eb31c5e6
MD
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 */
8b9d5b5e 19
ae5193a6 20#include <stdint.h>
34d3acc4
MD
21#include <stdio.h>
22#include <glib.h>
fe41395a 23#include <babeltrace/list.h>
34d3acc4 24
9117bff7
MD
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
34d3acc4
MD
32struct ctf_node;
33struct ctf_parser;
8b9d5b5e 34
590ca879
EB
35#define FOREACH_CTF_NODES(F) \
36 F(NODE_UNKNOWN) \
37 F(NODE_ROOT) \
41485b22 38 F(NODE_ERROR) \
590ca879
EB
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)
fce8006d 63
590ca879
EB
64enum node_type {
65#define ENTRY(S) S,
66 FOREACH_CTF_NODES(ENTRY)
67#undef ENTRY
8b9d5b5e
MD
68 NR_NODE_TYPES,
69};
70
8b9d5b5e 71struct ctf_node {
6dc474b8
MD
72 /*
73 * Parent node is only set on demand by specific visitor.
74 */
8b9d5b5e 75 struct ctf_node *parent;
3122e6f0
JD
76 struct bt_list_head siblings;
77 struct bt_list_head tmp_head;
78 struct bt_list_head gc;
5c5c3455 79 unsigned int lineno;
ae5193a6
MD
80
81 enum node_type type;
82 union {
83 struct {
84 } unknown;
85 struct {
3e11b713
MD
86 /*
87 * Children nodes are ctf_expression, typedef,
88 * typealias and type_specifier_list.
89 */
3122e6f0
JD
90 struct bt_list_head declaration_list;
91 struct bt_list_head trace;
92 struct bt_list_head env;
93 struct bt_list_head stream;
94 struct bt_list_head event;
95 struct bt_list_head clock;
f133896d 96 struct bt_list_head callsite;
ae5193a6
MD
97 } root;
98 struct {
99 /*
6dc474b8 100 * Children nodes are ctf_expression, typedef,
3e11b713 101 * typealias and type_specifier_list.
ae5193a6 102 */
3122e6f0 103 struct bt_list_head declaration_list;
ae5193a6
MD
104 } event;
105 struct {
106 /*
6dc474b8 107 * Children nodes are ctf_expression, typedef,
3e11b713 108 * typealias and type_specifier_list.
ae5193a6 109 */
3122e6f0 110 struct bt_list_head declaration_list;
ae5193a6 111 } stream;
e2c76a4d
MD
112 struct {
113 /*
114 * Children nodes are ctf_expression, typedef,
115 * typealias and type_specifier_list.
116 */
3122e6f0 117 struct bt_list_head declaration_list;
e2c76a4d 118 } env;
ae5193a6
MD
119 struct {
120 /*
6dc474b8 121 * Children nodes are ctf_expression, typedef,
3e11b713 122 * typealias and type_specifier_list.
ae5193a6 123 */
3122e6f0 124 struct bt_list_head declaration_list;
ae5193a6 125 } trace;
73d15916
MD
126 struct {
127 /*
128 * Children nodes are ctf_expression, typedef,
129 * typealias and type_specifier_list.
130 */
3122e6f0 131 struct bt_list_head declaration_list;
73d15916 132 } clock;
f133896d
MD
133 struct {
134 /*
135 * Children nodes are ctf_expression, typedef,
136 * typealias and type_specifier_list.
137 */
138 struct bt_list_head declaration_list;
139 } callsite;
ae5193a6 140 struct {
3122e6f0
JD
141 struct bt_list_head left; /* Should be string */
142 struct bt_list_head right; /* Unary exp. or type */
6dc474b8
MD
143 } ctf_expression;
144 struct {
ae5193a6 145 enum {
6dc474b8
MD
146 UNARY_UNKNOWN = 0,
147 UNARY_STRING,
148 UNARY_SIGNED_CONSTANT,
149 UNARY_UNSIGNED_CONSTANT,
150 UNARY_SBRAC,
ae5193a6
MD
151 } type;
152 union {
6dc474b8
MD
153 /*
154 * string for identifier, id_type, keywords,
155 * string literals and character constants.
156 */
157 char *string;
6dc474b8 158 int64_t signed_constant;
7de8808c 159 uint64_t unsigned_constant;
6dc474b8
MD
160 struct ctf_node *sbrac_exp;
161 } u;
162 enum {
163 UNARY_LINK_UNKNOWN = 0,
164 UNARY_DOTLINK,
165 UNARY_ARROWLINK,
48a01768 166 UNARY_DOTDOTDOT,
6dc474b8
MD
167 } link;
168 } unary_expression;
ae5193a6 169 struct {
3e11b713 170 struct ctf_node *type_specifier_list;
3122e6f0 171 struct bt_list_head type_declarators;
ae5193a6 172 } _typedef;
02b234c4
MD
173 /* new type is "alias", existing type "target" */
174 struct {
3e11b713 175 struct ctf_node *type_specifier_list;
3122e6f0 176 struct bt_list_head type_declarators;
02b234c4
MD
177 } typealias_target;
178 struct {
3e11b713 179 struct ctf_node *type_specifier_list;
3122e6f0 180 struct bt_list_head type_declarators;
02b234c4 181 } typealias_alias;
ae5193a6 182 struct {
02b234c4
MD
183 struct ctf_node *target;
184 struct ctf_node *alias;
ae5193a6
MD
185 } typealias;
186 struct {
187 enum {
02b234c4 188 TYPESPEC_UNKNOWN = 0,
ae5193a6
MD
189 TYPESPEC_VOID,
190 TYPESPEC_CHAR,
191 TYPESPEC_SHORT,
192 TYPESPEC_INT,
193 TYPESPEC_LONG,
194 TYPESPEC_FLOAT,
195 TYPESPEC_DOUBLE,
196 TYPESPEC_SIGNED,
197 TYPESPEC_UNSIGNED,
198 TYPESPEC_BOOL,
199 TYPESPEC_COMPLEX,
3888a159 200 TYPESPEC_IMAGINARY,
6dc474b8 201 TYPESPEC_CONST,
ae5193a6 202 TYPESPEC_ID_TYPE,
3e11b713
MD
203 TYPESPEC_FLOATING_POINT,
204 TYPESPEC_INTEGER,
205 TYPESPEC_STRING,
206 TYPESPEC_STRUCT,
207 TYPESPEC_VARIANT,
208 TYPESPEC_ENUM,
ae5193a6 209 } type;
3e11b713
MD
210 /* For struct, variant and enum */
211 struct ctf_node *node;
6dc474b8 212 const char *id_type;
ae5193a6 213 } type_specifier;
3e11b713
MD
214 struct {
215 /* list of type_specifier */
3122e6f0 216 struct bt_list_head head;
3e11b713 217 } type_specifier_list;
ae5193a6 218 struct {
6dc474b8 219 unsigned int const_qualifier;
ae5193a6
MD
220 } pointer;
221 struct {
3122e6f0 222 struct bt_list_head pointers;
ae5193a6 223 enum {
02b234c4 224 TYPEDEC_UNKNOWN = 0,
ae5193a6 225 TYPEDEC_ID, /* identifier */
02b234c4 226 TYPEDEC_NESTED, /* (), array or sequence */
ae5193a6
MD
227 } type;
228 union {
229 char *id;
ae5193a6
MD
230 struct {
231 /* typedec has no pointer list */
02b234c4 232 struct ctf_node *type_declarator;
7d4192cb
MD
233 /*
234 * unary expression (value) or
3e11b713 235 * type_specifier_list.
7d4192cb 236 */
3122e6f0 237 struct bt_list_head length;
6dc474b8
MD
238 /* for abstract type declarator */
239 unsigned int abstract_array;
02b234c4 240 } nested;
ae5193a6 241 } u;
6dc474b8 242 struct ctf_node *bitfield_len;
ae5193a6
MD
243 } type_declarator;
244 struct {
245 /* Children nodes are ctf_expression. */
3122e6f0 246 struct bt_list_head expressions;
ae5193a6
MD
247 } floating_point;
248 struct {
249 /* Children nodes are ctf_expression. */
3122e6f0 250 struct bt_list_head expressions;
ae5193a6
MD
251 } integer;
252 struct {
253 /* Children nodes are ctf_expression. */
3122e6f0 254 struct bt_list_head expressions;
ae5193a6
MD
255 } string;
256 struct {
257 char *id;
67905e42
MD
258 /*
259 * Range list or single value node. Contains unary
260 * expressions.
261 */
3122e6f0 262 struct bt_list_head values;
ae5193a6
MD
263 } enumerator;
264 struct {
265 char *enum_id;
7d4192cb 266 /*
3e11b713
MD
267 * Either NULL, or points to unary expression or
268 * type_specifier_list.
7d4192cb 269 */
3e11b713 270 struct ctf_node *container_type;
3122e6f0 271 struct bt_list_head enumerator_list;
add40b62 272 int has_body;
ae5193a6
MD
273 } _enum;
274 struct {
3e11b713 275 struct ctf_node *type_specifier_list;
3122e6f0 276 struct bt_list_head type_declarators;
ae5193a6
MD
277 } struct_or_variant_declaration;
278 struct {
6dc474b8
MD
279 char *name;
280 char *choice;
7de8808c 281 /* list of typedef, typealias and declarations */
3122e6f0 282 struct bt_list_head declaration_list;
1ee8e81d 283 int has_body;
ae5193a6
MD
284 } variant;
285 struct {
7de8808c 286 char *name;
6dc474b8 287 /* list of typedef, typealias and declarations */
3122e6f0 288 struct bt_list_head declaration_list;
1ee8e81d 289 int has_body;
3122e6f0 290 struct bt_list_head min_align; /* align() attribute */
ae5193a6
MD
291 } _struct;
292 } u;
8b9d5b5e
MD
293};
294
34d3acc4
MD
295struct ctf_ast {
296 struct ctf_node root;
3122e6f0 297 struct bt_list_head allocated_nodes;
34d3acc4 298};
8b9d5b5e 299
34f7b02c
MD
300const char *node_type(struct ctf_node *node);
301
ab4cf058
MD
302struct ctf_trace;
303
2e937fb4 304BT_HIDDEN
7de8808c 305int ctf_visitor_print_xml(FILE *fd, int depth, struct ctf_node *node);
2e937fb4 306BT_HIDDEN
67905e42 307int ctf_visitor_semantic_check(FILE *fd, int depth, struct ctf_node *node);
2e937fb4 308BT_HIDDEN
67905e42 309int ctf_visitor_parent_links(FILE *fd, int depth, struct ctf_node *node);
2e937fb4 310BT_HIDDEN
ab4cf058
MD
311int ctf_visitor_construct_metadata(FILE *fd, int depth, struct ctf_node *node,
312 struct ctf_trace *trace, int byte_order);
2e937fb4 313BT_HIDDEN
15d4fe3c 314int ctf_destroy_metadata(struct ctf_trace *trace);
7de8808c 315
eb31c5e6 316#endif /* _CTF_AST_H */
This page took 0.044408 seconds and 4 git commands to generate.