Rename ctf_stream_event to ctf_event_definition
[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;
145b8090
MD
33struct ctf_stream;
34struct ctf_event;
25ccc85b
MD
35struct ctf_stream;
36struct ctf_clock;
145b8090
MD
37
38struct ctf_stream {
f380e105 39 struct ctf_stream_declaration *stream_class;
145b8090 40 uint64_t timestamp; /* Current timestamp, in ns */
c87a8eb2 41 uint64_t event_id; /* Current event ID */
5e2eb0ae 42 int has_timestamp;
661c4ce8 43 uint64_t stream_id;
90fcbacc 44 int consumed; /* Last packet used by caller */
145b8090
MD
45
46 struct definition_struct *trace_packet_header;
47 struct definition_struct *stream_packet_context;
48 struct definition_struct *stream_event_header;
49 struct definition_struct *stream_event_context;
c716f83b 50 GPtrArray *events_by_id; /* Array of struct ctf_event_definition pointers indexed by id */
145b8090
MD
51 struct definition_scope *parent_def_scope; /* for initialization */
52 int stream_definitions_created;
fca04958 53
25ccc85b
MD
54 struct ctf_clock *current_clock;
55
fca04958
MD
56 /* Event discarded information */
57 uint32_t events_discarded;
3217ac37
MD
58 uint64_t prev_timestamp; /* Last event */
59 uint64_t prev_timestamp_end; /* End-of-packet timestamp */
145b8090
MD
60};
61
c716f83b 62struct ctf_event_definition {
145b8090
MD
63 struct definition_struct *event_context;
64 struct definition_struct *event_fields;
65};
66
50cb9c56
MD
67#define CTF_CLOCK_SET_FIELD(ctf_clock, field) \
68 do { \
69 (ctf_clock)->field_mask |= CTF_CLOCK_ ## field; \
70 } while (0)
71
72#define CTF_CLOCK_FIELD_IS_SET(ctf_clock, field) \
73 ((ctf_clock)->field_mask & CTF_CLOCK_ ## field)
74
75#define CTF_CLOCK_GET_FIELD(ctf_clock, field) \
76 ({ \
77 assert(CTF_CLOCK_FIELD_IS_SET(ctf_clock, field)); \
78 (ctf_clock)->(field); \
79 })
80
81struct ctf_clock {
82 GQuark name;
83 GQuark uuid;
84 char *description;
85 uint64_t freq; /* frequency, in HZ */
86 /* precision in seconds is: precision * (1/freq) */
87 uint64_t precision;
88 /*
89 * The offset from Epoch is: offset_s + (offset * (1/freq))
90 * Coarse clock offset from Epoch (in seconds).
91 */
92 uint64_t offset_s;
93 /* Fine clock offset from Epoch, in (1/freq) units. */
94 uint64_t offset;
11ac6674 95 int absolute;
50cb9c56
MD
96
97 enum { /* Fields populated mask */
98 CTF_CLOCK_name = (1U << 0),
bf94ab2b 99 CTF_CLOCK_freq = (1U << 1),
50cb9c56
MD
100 } field_mask;
101};
102
145b8090
MD
103#define CTF_TRACE_SET_FIELD(ctf_trace, field) \
104 do { \
105 (ctf_trace)->field_mask |= CTF_TRACE_ ## field; \
106 } while (0)
107
108#define CTF_TRACE_FIELD_IS_SET(ctf_trace, field) \
109 ((ctf_trace)->field_mask & CTF_TRACE_ ## field)
110
111#define CTF_TRACE_GET_FIELD(ctf_trace, field) \
112 ({ \
113 assert(CTF_TRACE_FIELD_IS_SET(ctf_trace, field)); \
114 (ctf_trace)->(field); \
115 })
116
cadd09e9
MD
117#define TRACER_ENV_LEN 128
118
119/* tracer-specific environment */
120struct ctf_tracer_env {
121 int vpid; /* negative if unset */
122
123 /* All strings below: "" if unset. */
124 char procname[TRACER_ENV_LEN];
125 char domain[TRACER_ENV_LEN];
126 char sysname[TRACER_ENV_LEN];
127 char release[TRACER_ENV_LEN];
128 char version[TRACER_ENV_LEN];
129};
130
145b8090
MD
131struct ctf_trace {
132 struct trace_descriptor parent;
133 /* root scope */
134 struct declaration_scope *root_declaration_scope;
135
136 struct declaration_scope *declaration_scope;
137 /* innermost definition scope. to be used as parent of stream. */
138 struct definition_scope *definition_scope;
f380e105 139 GPtrArray *streams; /* Array of struct ctf_stream_declaration pointers */
2d0bea29 140 struct ctf_stream *metadata;
50cb9c56 141 GHashTable *clocks;
25ccc85b 142 struct ctf_clock *single_clock; /* currently supports only one clock */
fa709ab2 143 struct trace_collection *collection; /* Container of this trace */
145b8090 144
145b8090
MD
145 struct declaration_struct *packet_header_decl;
146
147 uint64_t major;
148 uint64_t minor;
ce9cc1bc 149 unsigned char uuid[BABELTRACE_UUID_LEN];
145b8090 150 int byte_order; /* trace BYTE_ORDER. 0 if unset. */
cadd09e9 151 struct ctf_tracer_env env;
145b8090
MD
152
153 enum { /* Fields populated mask */
154 CTF_TRACE_major = (1U << 0),
155 CTF_TRACE_minor = (1U << 1),
156 CTF_TRACE_uuid = (1U << 2),
157 CTF_TRACE_byte_order = (1U << 3),
158 CTF_TRACE_packet_header = (1U << 4),
159 } field_mask;
160
161 /* Information about trace backing directory and files */
162 DIR *dir;
163 int dirfd;
164 int flags; /* open flags */
165
166 /* Heap of streams, ordered to always get the lowest timestam */
167 struct ptr_heap *stream_heap;
82662ad4 168 char path[PATH_MAX];
98a04903
JD
169
170 struct bt_context *ctx;
171 struct bt_trace_handle *handle;
145b8090
MD
172};
173
174#define CTF_STREAM_SET_FIELD(ctf_stream, field) \
175 do { \
176 (ctf_stream)->field_mask |= CTF_STREAM_ ## field; \
177 } while (0)
178
179#define CTF_STREAM_FIELD_IS_SET(ctf_stream, field) \
180 ((ctf_stream)->field_mask & CTF_STREAM_ ## field)
181
182#define CTF_STREAM_GET_FIELD(ctf_stream, field) \
183 ({ \
184 assert(CTF_STREAM_FIELD_IS_SET(ctf_stream, field)); \
185 (ctf_stream)->(field); \
186 })
187
f380e105 188struct ctf_stream_declaration {
145b8090
MD
189 struct ctf_trace *trace;
190 /* parent is lexical scope conaining the stream scope */
191 struct declaration_scope *declaration_scope;
192 /* innermost definition scope. to be used as parent of event. */
193 struct definition_scope *definition_scope;
194 GPtrArray *events_by_id; /* Array of struct ctf_event pointers indexed by id */
195 GHashTable *event_quark_to_id; /* GQuark to numeric id */
196
145b8090
MD
197 struct declaration_struct *packet_context_decl;
198 struct declaration_struct *event_header_decl;
199 struct declaration_struct *event_context_decl;
200
201 uint64_t stream_id;
202
203 enum { /* Fields populated mask */
204 CTF_STREAM_stream_id = (1 << 0),
205 } field_mask;
206
2d0bea29 207 GPtrArray *streams; /* Array of struct ctf_stream pointers */
145b8090
MD
208};
209
210#define CTF_EVENT_SET_FIELD(ctf_event, field) \
211 do { \
212 (ctf_event)->field_mask |= CTF_EVENT_ ## field; \
213 } while (0)
214
215#define CTF_EVENT_FIELD_IS_SET(ctf_event, field) \
216 ((ctf_event)->field_mask & CTF_EVENT_ ## field)
217
218#define CTF_EVENT_GET_FIELD(ctf_event, field) \
219 ({ \
220 assert(CTF_EVENT_FIELD_IS_SET(ctf_event, field)); \
221 (ctf_event)->(field); \
222 })
223
224struct ctf_event {
225 /* stream mapped by stream_id */
f380e105 226 struct ctf_stream_declaration *stream;
145b8090
MD
227 /* parent is lexical scope conaining the event scope */
228 struct declaration_scope *declaration_scope;
229
145b8090
MD
230 struct declaration_struct *context_decl;
231 struct declaration_struct *fields_decl;
232
233 GQuark name;
234 uint64_t id; /* Numeric identifier within the stream */
235 uint64_t stream_id;
306eeaa6 236 int loglevel;
145b8090
MD
237
238 enum { /* Fields populated mask */
d86d62f8
MD
239 CTF_EVENT_name = (1 << 0),
240 CTF_EVENT_id = (1 << 1),
241 CTF_EVENT_stream_id = (1 << 2),
306eeaa6 242 CTF_EVENT_loglevel = (1 << 4),
145b8090
MD
243 } field_mask;
244};
245
246#endif /* _BABELTRACE_CTF_IR_METADATA_H */
This page took 0.034193 seconds and 4 git commands to generate.