X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;ds=sidebyside;f=formats%2Fctf%2Fmetadata%2Fctf-ast.h;h=3fb38b2d6295c4eca0f0500374c68e7f17bd307d;hb=590ca879d080e496026281003b6455a7db5d5ee9;hp=ea46d3a3b3da6dfaa283760de0a55de9be2be9b6;hpb=3122e6f075647374e7a98ae9501d100de8d004a9;p=babeltrace.git diff --git a/formats/ctf/metadata/ctf-ast.h b/formats/ctf/metadata/ctf-ast.h index ea46d3a3..3fb38b2d 100644 --- a/formats/ctf/metadata/ctf-ast.h +++ b/formats/ctf/metadata/ctf-ast.h @@ -1,5 +1,21 @@ -#ifndef _CTF_PARSER_H -#define _CTF_PARSER_H +#ifndef _CTF_AST_H +#define _CTF_AST_H + +/* + * ctf-ast.h + * + * Copyright 2011-2012 - Mathieu Desnoyers + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + */ #include #include @@ -16,38 +32,38 @@ struct ctf_node; struct ctf_parser; -enum node_type { - NODE_UNKNOWN = 0, - NODE_ROOT, - - NODE_EVENT, - NODE_STREAM, - NODE_ENV, - NODE_TRACE, - NODE_CLOCK, - - NODE_CTF_EXPRESSION, - NODE_UNARY_EXPRESSION, - - NODE_TYPEDEF, - NODE_TYPEALIAS_TARGET, - NODE_TYPEALIAS_ALIAS, - NODE_TYPEALIAS, - - NODE_TYPE_SPECIFIER, - NODE_TYPE_SPECIFIER_LIST, - NODE_POINTER, - NODE_TYPE_DECLARATOR, - - NODE_FLOATING_POINT, - NODE_INTEGER, - NODE_STRING, - NODE_ENUMERATOR, - NODE_ENUM, - NODE_STRUCT_OR_VARIANT_DECLARATION, - NODE_VARIANT, - NODE_STRUCT, +#define FOREACH_CTF_NODES(F) \ + F(NODE_UNKNOWN) \ + F(NODE_ROOT) \ + F(NODE_EVENT) \ + F(NODE_STREAM) \ + F(NODE_ENV) \ + F(NODE_TRACE) \ + F(NODE_CLOCK) \ + F(NODE_CALLSITE) \ + F(NODE_CTF_EXPRESSION) \ + F(NODE_UNARY_EXPRESSION) \ + F(NODE_TYPEDEF) \ + F(NODE_TYPEALIAS_TARGET) \ + F(NODE_TYPEALIAS_ALIAS) \ + F(NODE_TYPEALIAS) \ + F(NODE_TYPE_SPECIFIER) \ + F(NODE_TYPE_SPECIFIER_LIST) \ + F(NODE_POINTER) \ + F(NODE_TYPE_DECLARATOR) \ + F(NODE_FLOATING_POINT) \ + F(NODE_INTEGER) \ + F(NODE_STRING) \ + F(NODE_ENUMERATOR) \ + F(NODE_ENUM) \ + F(NODE_STRUCT_OR_VARIANT_DECLARATION) \ + F(NODE_VARIANT) \ + F(NODE_STRUCT) +enum node_type { +#define ENTRY(S) S, + FOREACH_CTF_NODES(ENTRY) +#undef ENTRY NR_NODE_TYPES, }; @@ -59,6 +75,7 @@ struct ctf_node { struct bt_list_head siblings; struct bt_list_head tmp_head; struct bt_list_head gc; + unsigned int lineno; enum node_type type; union { @@ -75,6 +92,7 @@ struct ctf_node { struct bt_list_head stream; struct bt_list_head event; struct bt_list_head clock; + struct bt_list_head callsite; } root; struct { /* @@ -111,6 +129,13 @@ struct ctf_node { */ struct bt_list_head declaration_list; } clock; + struct { + /* + * Children nodes are ctf_expression, typedef, + * typealias and type_specifier_list. + */ + struct bt_list_head declaration_list; + } callsite; struct { struct bt_list_head left; /* Should be string */ struct bt_list_head right; /* Unary exp. or type */ @@ -277,10 +302,16 @@ const char *node_type(struct ctf_node *node); struct ctf_trace; +BT_HIDDEN int ctf_visitor_print_xml(FILE *fd, int depth, struct ctf_node *node); +BT_HIDDEN int ctf_visitor_semantic_check(FILE *fd, int depth, struct ctf_node *node); +BT_HIDDEN int ctf_visitor_parent_links(FILE *fd, int depth, struct ctf_node *node); +BT_HIDDEN int ctf_visitor_construct_metadata(FILE *fd, int depth, struct ctf_node *node, struct ctf_trace *trace, int byte_order); +BT_HIDDEN +int ctf_destroy_metadata(struct ctf_trace *trace); -#endif /* _CTF_PARSER_H */ +#endif /* _CTF_AST_H */