Add callsite support
[babeltrace.git] / include / babeltrace / ctf-ir / metadata.h
CommitLineData
145b8090
MD
1#ifndef _BABELTRACE_CTF_IR_METADATA_H
2#define _BABELTRACE_CTF_IR_METADATA_H
3
4/*
5 * BabelTrace
6 *
7 * CTF Intermediate Representation Metadata Header
8 *
9 * Copyright 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10 *
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:
17 *
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 */
21
22#include <babeltrace/types.h>
23#include <babeltrace/format.h>
24#include <babeltrace/ctf/types.h>
25#include <sys/types.h>
26#include <dirent.h>
1b1d76c0 27#include <babeltrace/uuid.h>
145b8090
MD
28#include <assert.h>
29#include <glib.h>
30
31struct ctf_trace;
f380e105 32struct ctf_stream_declaration;
4716614a 33struct ctf_event_declaration;
25ccc85b 34struct ctf_clock;
f133896d 35struct ctf_callsite;
145b8090 36
9e88d150 37struct ctf_stream_definition {
f380e105 38 struct ctf_stream_declaration *stream_class;
03798a93
JD
39 uint64_t real_timestamp; /* Current timestamp, in ns */
40 uint64_t cycles_timestamp; /* Current timestamp, in cycles */
c87a8eb2 41 uint64_t event_id; /* Current event ID */
5e2eb0ae 42 int has_timestamp;
661c4ce8 43 uint64_t stream_id;
145b8090
MD
44
45 struct definition_struct *trace_packet_header;
46 struct definition_struct *stream_packet_context;
47 struct definition_struct *stream_event_header;
48 struct definition_struct *stream_event_context;
c716f83b 49 GPtrArray *events_by_id; /* Array of struct ctf_event_definition pointers indexed by id */
145b8090
MD
50 struct definition_scope *parent_def_scope; /* for initialization */
51 int stream_definitions_created;
fca04958 52
25ccc85b
MD
53 struct ctf_clock *current_clock;
54
fca04958 55 /* Event discarded information */
4c4ba021 56 uint64_t events_discarded;
03798a93
JD
57 uint64_t prev_real_timestamp; /* Start-of-last-packet timestamp in ns */
58 uint64_t prev_real_timestamp_end; /* End-of-last-packet timestamp in ns */
59 uint64_t prev_cycles_timestamp; /* Start-of-last-packet timestamp in cycles */
60 uint64_t prev_cycles_timestamp_end; /* End-of-last-packet timestamp in cycles */
145b8090
MD
61};
62
c716f83b 63struct ctf_event_definition {
d3ded99d 64 struct ctf_stream_definition *stream;
145b8090
MD
65 struct definition_struct *event_context;
66 struct definition_struct *event_fields;
67};
68
50cb9c56
MD
69#define CTF_CLOCK_SET_FIELD(ctf_clock, field) \
70 do { \
71 (ctf_clock)->field_mask |= CTF_CLOCK_ ## field; \
72 } while (0)
73
74#define CTF_CLOCK_FIELD_IS_SET(ctf_clock, field) \
75 ((ctf_clock)->field_mask & CTF_CLOCK_ ## field)
76
77#define CTF_CLOCK_GET_FIELD(ctf_clock, field) \
78 ({ \
79 assert(CTF_CLOCK_FIELD_IS_SET(ctf_clock, field)); \
80 (ctf_clock)->(field); \
81 })
82
83struct ctf_clock {
84 GQuark name;
85 GQuark uuid;
86 char *description;
87 uint64_t freq; /* frequency, in HZ */
88 /* precision in seconds is: precision * (1/freq) */
89 uint64_t precision;
90 /*
91 * The offset from Epoch is: offset_s + (offset * (1/freq))
92 * Coarse clock offset from Epoch (in seconds).
93 */
94 uint64_t offset_s;
95 /* Fine clock offset from Epoch, in (1/freq) units. */
96 uint64_t offset;
11ac6674 97 int absolute;
50cb9c56
MD
98
99 enum { /* Fields populated mask */
100 CTF_CLOCK_name = (1U << 0),
bf94ab2b 101 CTF_CLOCK_freq = (1U << 1),
50cb9c56
MD
102 } field_mask;
103};
104
f133896d
MD
105#define CTF_CALLSITE_SET_FIELD(ctf_callsite, field) \
106 do { \
107 (ctf_callsite)->field_mask |= CTF_CALLSITE_ ## field; \
108 } while (0)
109
110#define CTF_CALLSITE_FIELD_IS_SET(ctf_callsite, field) \
111 ((ctf_callsite)->field_mask & CTF_CALLSITE_ ## field)
112
113#define CTF_CALLSITE_GET_FIELD(ctf_callsite, field) \
114 ({ \
115 assert(CTF_CALLSITE_FIELD_IS_SET(ctf_callsite, field)); \
116 (ctf_callsite)->(field); \
117 })
118
119struct ctf_callsite {
120 GQuark name; /* event name associated with callsite */
121 char *func;
122 char *file;
123 uint64_t line;
124 enum { /* Fields populated mask */
125 CTF_CALLSITE_name = (1U << 0),
126 CTF_CALLSITE_func = (1U << 1),
127 CTF_CALLSITE_file = (1U << 2),
128 CTF_CALLSITE_line = (1U << 3),
129 } field_mask;
130};
131
145b8090
MD
132#define CTF_TRACE_SET_FIELD(ctf_trace, field) \
133 do { \
134 (ctf_trace)->field_mask |= CTF_TRACE_ ## field; \
135 } while (0)
136
137#define CTF_TRACE_FIELD_IS_SET(ctf_trace, field) \
138 ((ctf_trace)->field_mask & CTF_TRACE_ ## field)
139
140#define CTF_TRACE_GET_FIELD(ctf_trace, field) \
141 ({ \
142 assert(CTF_TRACE_FIELD_IS_SET(ctf_trace, field)); \
143 (ctf_trace)->(field); \
144 })
145
cadd09e9
MD
146#define TRACER_ENV_LEN 128
147
148/* tracer-specific environment */
149struct ctf_tracer_env {
150 int vpid; /* negative if unset */
151
152 /* All strings below: "" if unset. */
153 char procname[TRACER_ENV_LEN];
32cfb8ad 154 char hostname[TRACER_ENV_LEN];
cadd09e9
MD
155 char domain[TRACER_ENV_LEN];
156 char sysname[TRACER_ENV_LEN];
157 char release[TRACER_ENV_LEN];
158 char version[TRACER_ENV_LEN];
159};
160
145b8090
MD
161struct ctf_trace {
162 struct trace_descriptor parent;
163 /* root scope */
164 struct declaration_scope *root_declaration_scope;
165
166 struct declaration_scope *declaration_scope;
167 /* innermost definition scope. to be used as parent of stream. */
168 struct definition_scope *definition_scope;
f380e105 169 GPtrArray *streams; /* Array of struct ctf_stream_declaration pointers */
9e88d150 170 struct ctf_stream_definition *metadata;
50cb9c56 171 GHashTable *clocks;
f133896d 172 GHashTable *callsites;
25ccc85b 173 struct ctf_clock *single_clock; /* currently supports only one clock */
fa709ab2 174 struct trace_collection *collection; /* Container of this trace */
e003ab50 175 GPtrArray *event_declarations; /* Array of all the struct bt_ctf_event_decl */
145b8090 176
145b8090
MD
177 struct declaration_struct *packet_header_decl;
178
179 uint64_t major;
180 uint64_t minor;
ce9cc1bc 181 unsigned char uuid[BABELTRACE_UUID_LEN];
145b8090 182 int byte_order; /* trace BYTE_ORDER. 0 if unset. */
cadd09e9 183 struct ctf_tracer_env env;
145b8090
MD
184
185 enum { /* Fields populated mask */
186 CTF_TRACE_major = (1U << 0),
187 CTF_TRACE_minor = (1U << 1),
188 CTF_TRACE_uuid = (1U << 2),
189 CTF_TRACE_byte_order = (1U << 3),
190 CTF_TRACE_packet_header = (1U << 4),
191 } field_mask;
192
193 /* Information about trace backing directory and files */
194 DIR *dir;
195 int dirfd;
196 int flags; /* open flags */
197
198 /* Heap of streams, ordered to always get the lowest timestam */
199 struct ptr_heap *stream_heap;
82662ad4 200 char path[PATH_MAX];
98a04903
JD
201
202 struct bt_context *ctx;
203 struct bt_trace_handle *handle;
145b8090
MD
204};
205
206#define CTF_STREAM_SET_FIELD(ctf_stream, field) \
207 do { \
208 (ctf_stream)->field_mask |= CTF_STREAM_ ## field; \
209 } while (0)
210
211#define CTF_STREAM_FIELD_IS_SET(ctf_stream, field) \
212 ((ctf_stream)->field_mask & CTF_STREAM_ ## field)
213
214#define CTF_STREAM_GET_FIELD(ctf_stream, field) \
215 ({ \
216 assert(CTF_STREAM_FIELD_IS_SET(ctf_stream, field)); \
217 (ctf_stream)->(field); \
218 })
219
f380e105 220struct ctf_stream_declaration {
145b8090
MD
221 struct ctf_trace *trace;
222 /* parent is lexical scope conaining the stream scope */
223 struct declaration_scope *declaration_scope;
224 /* innermost definition scope. to be used as parent of event. */
225 struct definition_scope *definition_scope;
4716614a 226 GPtrArray *events_by_id; /* Array of struct ctf_event_declaration pointers indexed by id */
145b8090
MD
227 GHashTable *event_quark_to_id; /* GQuark to numeric id */
228
145b8090
MD
229 struct declaration_struct *packet_context_decl;
230 struct declaration_struct *event_header_decl;
231 struct declaration_struct *event_context_decl;
232
233 uint64_t stream_id;
234
235 enum { /* Fields populated mask */
236 CTF_STREAM_stream_id = (1 << 0),
237 } field_mask;
238
9e88d150 239 GPtrArray *streams; /* Array of struct ctf_stream_definition pointers */
145b8090
MD
240};
241
242#define CTF_EVENT_SET_FIELD(ctf_event, field) \
243 do { \
244 (ctf_event)->field_mask |= CTF_EVENT_ ## field; \
245 } while (0)
246
247#define CTF_EVENT_FIELD_IS_SET(ctf_event, field) \
248 ((ctf_event)->field_mask & CTF_EVENT_ ## field)
249
250#define CTF_EVENT_GET_FIELD(ctf_event, field) \
251 ({ \
252 assert(CTF_EVENT_FIELD_IS_SET(ctf_event, field)); \
253 (ctf_event)->(field); \
254 })
255
4716614a 256struct ctf_event_declaration {
145b8090 257 /* stream mapped by stream_id */
f380e105 258 struct ctf_stream_declaration *stream;
145b8090
MD
259 /* parent is lexical scope conaining the event scope */
260 struct declaration_scope *declaration_scope;
261
145b8090
MD
262 struct declaration_struct *context_decl;
263 struct declaration_struct *fields_decl;
264
265 GQuark name;
266 uint64_t id; /* Numeric identifier within the stream */
267 uint64_t stream_id;
306eeaa6 268 int loglevel;
f6714e20 269 GQuark model_emf_uri;
145b8090
MD
270
271 enum { /* Fields populated mask */
d86d62f8
MD
272 CTF_EVENT_name = (1 << 0),
273 CTF_EVENT_id = (1 << 1),
274 CTF_EVENT_stream_id = (1 << 2),
306eeaa6 275 CTF_EVENT_loglevel = (1 << 4),
f6714e20 276 CTF_EVENT_model_emf_uri = (1 << 5),
145b8090
MD
277 } field_mask;
278};
279
280#endif /* _BABELTRACE_CTF_IR_METADATA_H */
This page took 0.037989 seconds and 4 git commands to generate.