6c17b4102ad046424490d92e3534ec38841d648b
1 #ifndef _BABELTRACE_CTF_METADATA_H
2 #define _BABELTRACE_CTF_METADATA_H
9 * Copyright 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
22 #include <babeltrace/types.h>
23 #include <uuid/uuid.h>
31 #define CTF_TRACE_SET_FIELD(ctf_trace, field, value) \
33 (ctf_trace)->(field) = (value); \
34 (ctf_trace)->field_mask |= CTF_TRACE_ ## field; \
37 #define CTF_TRACE_FIELD_IS_SET(ctf_trace, field) \
38 ((ctf_trace)->field_mask & CTF_TRACE_ ## field)
40 #define CTF_TRACE_GET_FIELD(ctf_trace, field) \
42 assert(CTF_TRACE_FIELD_IS_SET(ctf_trace, field)); \
43 (ctf_trace)->(field); \
49 struct declaration_scope
*root_declaration_scope
;
51 struct declaration_scope
*declaration_scope
;
52 GPtrArray
*streams
; /* Array of struct ctf_stream pointers*/
60 enum { /* Fields populated mask */
61 CTF_TRACE_major
= (1U << 0),
62 CTF_TRACE_minor
= (1U << 1),
63 CTF_TRACE_uuid
= (1U << 2),
64 CTF_TRACE_word_size
= (1U << 3),
68 #define CTF_STREAM_SET_FIELD(ctf_stream, field, value) \
70 (ctf_stream)->(field) = (value); \
71 (ctf_stream)->field_mask |= CTF_STREAM_ ## field; \
74 #define CTF_STREAM_FIELD_IS_SET(ctf_stream, field) \
75 ((ctf_stream)->field_mask & CTF_STREAM_ ## field)
77 #define CTF_STREAM_GET_FIELD(ctf_stream, field) \
79 assert(CTF_STREAM_FIELD_IS_SET(ctf_stream, field)); \
80 (ctf_stream)->(field); \
84 struct ctf_trace
*trace
;
85 /* parent is lexical scope conaining the stream scope */
86 struct declaration_scope
*declaration_scope
;
87 /* innermost definition scope. to be used as parent of event. */
88 struct definition_scope
*definition_scope
;
89 GPtrArray
*events_by_id
; /* Array of struct ctf_event pointers indexed by id */
90 GHashTable
*event_quark_to_id
; /* GQuark to numeric id */
92 /* Declarations only used when parsing */
93 struct declaration_struct
*packet_context_decl
;
94 struct declaration_struct
*event_header_decl
;
95 struct declaration_struct
*event_context_decl
;
97 /* Definitions used afterward */
98 struct definition_struct
*packet_context
;
99 struct definition_struct
*event_header
;
100 struct definition_struct
*event_context
;
104 enum { /* Fields populated mask */
105 CTF_STREAM_stream_id
= (1 << 0),
109 #define CTF_EVENT_SET_FIELD(ctf_event, field) \
111 (ctf_event)->field_mask |= CTF_EVENT_ ## field; \
114 #define CTF_EVENT_FIELD_IS_SET(ctf_event, field) \
115 ((ctf_event)->field_mask & CTF_EVENT_ ## field)
117 #define CTF_EVENT_GET_FIELD(ctf_event, field) \
119 assert(CTF_EVENT_FIELD_IS_SET(ctf_event, field)); \
120 (ctf_event)->(field); \
124 /* stream mapped by stream_id */
125 struct ctf_stream
*stream
;
126 /* parent is lexical scope conaining the event scope */
127 struct declaration_scope
*declaration_scope
;
129 /* Declarations only used when parsing */
130 struct declaration_struct
*context_decl
;
131 struct declaration_struct
*fields_decl
;
133 /* Definitions used afterward */
134 struct definition_struct
*context
;
135 struct definition_struct
*fields
;
138 uint64_t id
; /* Numeric identifier within the stream */
141 enum { /* Fields populated mask */
142 CTF_EVENT_name
= (1 << 0),
143 CTF_EVENT_id
= (1 << 1),
144 CTF_EVENT_stream_id
= (1 << 2),
148 #endif /* _BABELTRACE_CTF_METADATA_H */
This page took 0.031616 seconds and 3 git commands to generate.