1 #ifndef _BABELTRACE_CTF_IR_METADATA_H
2 #define _BABELTRACE_CTF_IR_METADATA_H
7 * CTF Intermediate Representation Metadata Header
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 <babeltrace/format.h>
24 #include <babeltrace/ctf/types.h>
25 #include <sys/types.h>
27 #include <uuid/uuid.h>
32 struct ctf_stream_class
;
37 struct ctf_stream_class
*stream_class
;
38 uint64_t timestamp
; /* Current timestamp, in ns */
39 uint64_t event_id
; /* Current event ID */
43 struct definition_struct
*trace_packet_header
;
44 struct definition_struct
*stream_packet_context
;
45 struct definition_struct
*stream_event_header
;
46 struct definition_struct
*stream_event_context
;
47 GPtrArray
*events_by_id
; /* Array of struct ctf_stream_event pointers indexed by id */
48 struct definition_scope
*parent_def_scope
; /* for initialization */
49 int stream_definitions_created
;
52 struct ctf_stream_event
{
53 struct definition_struct
*event_context
;
54 struct definition_struct
*event_fields
;
57 #define CTF_CLOCK_SET_FIELD(ctf_clock, field) \
59 (ctf_clock)->field_mask |= CTF_CLOCK_ ## field; \
62 #define CTF_CLOCK_FIELD_IS_SET(ctf_clock, field) \
63 ((ctf_clock)->field_mask & CTF_CLOCK_ ## field)
65 #define CTF_CLOCK_GET_FIELD(ctf_clock, field) \
67 assert(CTF_CLOCK_FIELD_IS_SET(ctf_clock, field)); \
68 (ctf_clock)->(field); \
75 uint64_t freq
; /* frequency, in HZ */
76 /* precision in seconds is: precision * (1/freq) */
79 * The offset from Epoch is: offset_s + (offset * (1/freq))
80 * Coarse clock offset from Epoch (in seconds).
83 /* Fine clock offset from Epoch, in (1/freq) units. */
87 enum { /* Fields populated mask */
88 CTF_CLOCK_name
= (1U << 0),
92 #define CTF_TRACE_SET_FIELD(ctf_trace, field) \
94 (ctf_trace)->field_mask |= CTF_TRACE_ ## field; \
97 #define CTF_TRACE_FIELD_IS_SET(ctf_trace, field) \
98 ((ctf_trace)->field_mask & CTF_TRACE_ ## field)
100 #define CTF_TRACE_GET_FIELD(ctf_trace, field) \
102 assert(CTF_TRACE_FIELD_IS_SET(ctf_trace, field)); \
103 (ctf_trace)->(field); \
107 struct trace_descriptor parent
;
109 struct declaration_scope
*root_declaration_scope
;
111 struct declaration_scope
*declaration_scope
;
112 /* innermost definition scope. to be used as parent of stream. */
113 struct definition_scope
*definition_scope
;
114 GPtrArray
*streams
; /* Array of struct ctf_stream_class pointers */
115 struct ctf_stream
*metadata
;
118 struct declaration_struct
*packet_header_decl
;
123 int byte_order
; /* trace BYTE_ORDER. 0 if unset. */
125 enum { /* Fields populated mask */
126 CTF_TRACE_major
= (1U << 0),
127 CTF_TRACE_minor
= (1U << 1),
128 CTF_TRACE_uuid
= (1U << 2),
129 CTF_TRACE_byte_order
= (1U << 3),
130 CTF_TRACE_packet_header
= (1U << 4),
133 /* Information about trace backing directory and files */
136 int flags
; /* open flags */
138 /* Heap of streams, ordered to always get the lowest timestam */
139 struct ptr_heap
*stream_heap
;
140 char collection_path
[PATH_MAX
];
142 char domain
[PATH_MAX
];
143 char procname
[PATH_MAX
];
147 #define CTF_STREAM_SET_FIELD(ctf_stream, field) \
149 (ctf_stream)->field_mask |= CTF_STREAM_ ## field; \
152 #define CTF_STREAM_FIELD_IS_SET(ctf_stream, field) \
153 ((ctf_stream)->field_mask & CTF_STREAM_ ## field)
155 #define CTF_STREAM_GET_FIELD(ctf_stream, field) \
157 assert(CTF_STREAM_FIELD_IS_SET(ctf_stream, field)); \
158 (ctf_stream)->(field); \
161 struct ctf_stream_class
{
162 struct ctf_trace
*trace
;
163 /* parent is lexical scope conaining the stream scope */
164 struct declaration_scope
*declaration_scope
;
165 /* innermost definition scope. to be used as parent of event. */
166 struct definition_scope
*definition_scope
;
167 GPtrArray
*events_by_id
; /* Array of struct ctf_event pointers indexed by id */
168 GHashTable
*event_quark_to_id
; /* GQuark to numeric id */
170 struct declaration_struct
*packet_context_decl
;
171 struct declaration_struct
*event_header_decl
;
172 struct declaration_struct
*event_context_decl
;
176 enum { /* Fields populated mask */
177 CTF_STREAM_stream_id
= (1 << 0),
180 GPtrArray
*streams
; /* Array of struct ctf_stream pointers */
183 #define CTF_EVENT_SET_FIELD(ctf_event, field) \
185 (ctf_event)->field_mask |= CTF_EVENT_ ## field; \
188 #define CTF_EVENT_FIELD_IS_SET(ctf_event, field) \
189 ((ctf_event)->field_mask & CTF_EVENT_ ## field)
191 #define CTF_EVENT_GET_FIELD(ctf_event, field) \
193 assert(CTF_EVENT_FIELD_IS_SET(ctf_event, field)); \
194 (ctf_event)->(field); \
198 /* stream mapped by stream_id */
199 struct ctf_stream_class
*stream
;
200 /* parent is lexical scope conaining the event scope */
201 struct declaration_scope
*declaration_scope
;
203 struct declaration_struct
*context_decl
;
204 struct declaration_struct
*fields_decl
;
207 uint64_t id
; /* Numeric identifier within the stream */
209 GQuark loglevel_identifier
;
210 int64_t loglevel_value
;
212 enum { /* Fields populated mask */
213 CTF_EVENT_name
= (1 << 0),
214 CTF_EVENT_id
= (1 << 1),
215 CTF_EVENT_stream_id
= (1 << 2),
216 CTF_EVENT_loglevel_identifier
= (1 << 3),
217 CTF_EVENT_loglevel_value
= (1 << 4),
221 #endif /* _BABELTRACE_CTF_IR_METADATA_H */