Add event context accessors
[babeltrace.git] / include / babeltrace / ctf-ir / event.h
CommitLineData
adc315b8
JG
1#ifndef BABELTRACE_CTF_IR_EVENT_H
2#define BABELTRACE_CTF_IR_EVENT_H
3
4/*
5 * BabelTrace - CTF IR: Event
6 *
de9dd397 7 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
adc315b8
JG
8 *
9 * Author: Jérémie Galarneau <jeremie.galarneau@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 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27 * SOFTWARE.
28 *
29 * The Common Trace Format (CTF) Specification is available at
30 * http://www.efficios.com/ctf
31 */
32
2f100782
JG
33#include <stdint.h>
34#include <stddef.h>
35
adc315b8
JG
36#ifdef __cplusplus
37extern "C" {
38#endif
39
40struct bt_ctf_event_class;
41struct bt_ctf_event;
42struct bt_ctf_field;
43struct bt_ctf_field_type;
2f100782 44struct bt_ctf_stream_class;
adc315b8
JG
45
46/*
47 * bt_ctf_event_class_create: create an event class.
48 *
49 * Allocate a new event class of the given name. The creation of an event class
2f100782
JG
50 * sets its reference count to 1. A unique event id is automatically assigned
51 * to the event class.
adc315b8
JG
52 *
53 * @param name Event class name (will be copied).
54 *
55 * Returns an allocated event class on success, NULL on error.
56 */
57extern struct bt_ctf_event_class *bt_ctf_event_class_create(const char *name);
58
2f100782
JG
59/*
60 * bt_ctf_event_class_get_name: Get an event class' name.
61 *
62 * @param event_class Event class.
63 *
64 * Returns the event class' name, NULL on error.
65 */
66extern const char *bt_ctf_event_class_get_name(
67 struct bt_ctf_event_class *event_class);
68
69/*
70 * bt_ctf_event_class_get_id: Get an event class' id.
71 *
72 * @param event_class Event class.
73 *
74 * Returns the event class' id, a negative value on error.
75 */
76extern int64_t bt_ctf_event_class_get_id(
77 struct bt_ctf_event_class *event_class);
78
79/*
80 * bt_ctf_event_class_set_id: Set an event class' id.
81 *
82 * Set an event class' id. Must be unique stream-wise.
83 * Note that event classes are already assigned a unique id when added to a
84 * stream class if none was set explicitly.
85 *
86 * @param event_class Event class.
87 * @param id Event class id.
88 *
89 * Returns 0 on success, a negative value on error.
90 */
91extern int bt_ctf_event_class_set_id(
92 struct bt_ctf_event_class *event_class, uint32_t id);
93
94/*
95 * bt_ctf_event_class_get_stream_class: Get an event class' stream class.
96 *
97 * @param event_class Event class.
98 *
99 * Returns the event class' stream class, NULL on error or if the event class
100 * is not associated with a stream class.
101 */
102extern struct bt_ctf_stream_class *bt_ctf_event_class_get_stream_class(
103 struct bt_ctf_event_class *event_class);
104
adc315b8
JG
105/*
106 * bt_ctf_event_class_add_field: add a field to an event class.
107 *
108 * Add a field of type "type" to the event class. The event class will share
109 * type's ownership by increasing its reference count. The "name" will be
110 * copied.
111 *
112 * @param event_class Event class.
113 * @param type Field type to add to the event class.
114 * @param name Name of the new field.
115 *
116 * Returns 0 on success, a negative value on error.
117 */
118extern int bt_ctf_event_class_add_field(struct bt_ctf_event_class *event_class,
119 struct bt_ctf_field_type *type,
120 const char *name);
121
2f100782
JG
122/*
123 * bt_ctf_event_class_get_field_count: Get an event class' field count.
124 *
125 * @param event_class Event class.
126 *
127 * Returns the event class' field count, a negative value on error.
128 */
074ee56d 129extern int bt_ctf_event_class_get_field_count(
2f100782
JG
130 struct bt_ctf_event_class *event_class);
131
132/*
133 * bt_ctf_event_class_get_field: Get event class' field type and name by index.
134 *
135 * @param event_class Event class.
136 * @param field_name Pointer to a const char* where the field's name will
137 * be returned.
138 * @param field_type Pointer to a bt_ctf_field_type* where the field's type will
139 * be returned.
140 * @param index Index of field.
141 *
142 * Returns 0 on success, a negative error on value.
143 */
144extern int bt_ctf_event_class_get_field(struct bt_ctf_event_class *event_class,
145 const char **field_name, struct bt_ctf_field_type **field_type,
074ee56d 146 int index);
2f100782
JG
147
148/*
149 * bt_ctf_event_class_get_field_type_by_name: Get an event class's field by name
150 *
151 * @param event_class Event class.
152 * @param name Name of the field.
153 *
154 * Returns a field type on success, NULL on error.
155 */
156extern struct bt_ctf_field_type *bt_ctf_event_class_get_field_by_name(
157 struct bt_ctf_event_class *event_class, const char *name);
158
f655a84d
JG
159/*
160 * bt_ctf_event_class_get_context_type: Get an event class's context type
161 *
162 * @param event_class Event class.
163 *
164 * Returns a field type (a structure) on success, NULL on error.
165 */
166extern struct bt_ctf_field_type *bt_ctf_event_class_get_context_type(
167 struct bt_ctf_event_class *event_class);
168
169/*
170 * bt_ctf_event_class_set_context_type: Set an event class's context type
171 *
172 * @param event_class Event class.
173 * @param context Event context field type (must be a structure).
174 *
175 * Returns 0 on success, a negative value on error.
176 */
177extern int bt_ctf_event_class_set_context_type(
178 struct bt_ctf_event_class *event_class,
179 struct bt_ctf_field_type *context);
180
adc315b8 181/*
25faeb22 182 * bt_ctf_event_class_get and bt_ctf_event_class_put: increment and decrement
adc315b8
JG
183 * the event class' reference count.
184 *
185 * These functions ensure that the event class won't be destroyed while it
186 * is in use. The same number of get and put (plus one extra put to
187 * release the initial reference done at creation) have to be done to
188 * destroy an event class.
189 *
190 * When the event class' reference count is decremented to 0 by a
191 * bt_ctf_event_class_put, the event class is freed.
192 *
193 * @param event_class Event class.
194 */
195extern void bt_ctf_event_class_get(struct bt_ctf_event_class *event_class);
196extern void bt_ctf_event_class_put(struct bt_ctf_event_class *event_class);
197
198/*
199 * bt_ctf_event_create: instanciate an event.
200 *
201 * Allocate a new event of the given event class. The creation of an event
202 * sets its reference count to 1. Each instance shares the ownership of the
203 * event class using its reference count.
204 *
205 * @param event_class Event class.
206 *
207 * Returns an allocated field type on success, NULL on error.
208 */
209extern struct bt_ctf_event *bt_ctf_event_create(
210 struct bt_ctf_event_class *event_class);
211
2f100782
JG
212/*
213 * bt_ctf_event_get_class: get an event's class.
214 *
215 * @param event Event.
216 *
217 * Returns the event's class, NULL on error.
218 */
219extern struct bt_ctf_event_class *bt_ctf_event_get_class(
220 struct bt_ctf_event *event);
221
222/*
223 * bt_ctf_event_get_clock: get an event's associated clock.
224 *
225 * @param event Event.
226 *
227 * Returns the event's clock, NULL on error.
228 */
229extern struct bt_ctf_clock *bt_ctf_event_get_clock(
230 struct bt_ctf_event *event);
231
232/*
233 * bt_ctf_event_get_payload: get an event's field.
234 *
235 * Returns the field matching "name". bt_ctf_field_put() must be called on the
236 * returned value.
237 *
238 * @param event Event instance.
239 * @param name Event field name.
240 *
241 * Returns a field instance on success, NULL on error.
242 */
243extern struct bt_ctf_field *bt_ctf_event_get_payload(struct bt_ctf_event *event,
244 const char *name);
245
adc315b8
JG
246/*
247 * bt_ctf_event_set_payload: set an event's field.
248 *
249 * Set a manually allocated field as an event's payload. The event will share
250 * the field's ownership by using its reference count.
251 * bt_ctf_field_put() must be called on the returned value.
252 *
253 * @param event Event instance.
254 * @param name Event field name.
255 * @param value Instance of a field whose type corresponds to the event's field.
256 *
257 * Returns 0 on success, a negative value on error.
258 */
259extern int bt_ctf_event_set_payload(struct bt_ctf_event *event,
260 const char *name,
261 struct bt_ctf_field *value);
262
263/*
2f100782 264 * bt_ctf_event_get_payload_by_index: Get event's field by index.
adc315b8 265 *
2f100782
JG
266 * Returns the field associated with the provided index. bt_ctf_field_put()
267 * must be called on the returned value. The indexes to be provided are
268 * the same as can be retrieved from the event class.
adc315b8 269 *
2f100782
JG
270 * @param event Event.
271 * @param index Index of field.
adc315b8 272 *
2f100782 273 * Returns the event's field, NULL on error.
adc315b8 274 */
2f100782 275extern struct bt_ctf_field *bt_ctf_event_get_payload_by_index(
074ee56d 276 struct bt_ctf_event *event, int index);
adc315b8 277
f655a84d
JG
278/*
279 * bt_ctf_event_get_event_context: Get an event's context
280 *
281 * @param event_class Event class.
282 *
283 * Returns a field on success (a structure), NULL on error.
284 *
285 * Note: This function is named this way instead of the expected
286 * "bt_ctf_event_get_context" in order to work around a name clash with
287 * an unrelated function bearing this name in context.h.
288 */
289extern struct bt_ctf_field *bt_ctf_event_get_event_context(
290 struct bt_ctf_event *event);
291
292/*
293 * bt_ctf_event_set_event_context: Set an event's context
294 *
295 * @param event Event.
296 * @param context Event context field (must match the event class'
297 * context type).
298 *
299 * Returns 0 on success, a negative value on error.
300 */
301extern int bt_ctf_event_set_event_context(struct bt_ctf_event *event,
302 struct bt_ctf_field *context);
303
adc315b8
JG
304/*
305 * bt_ctf_event_get and bt_ctf_event_put: increment and decrement
306 * the event's reference count.
307 *
308 * These functions ensure that the event won't be destroyed while it
309 * is in use. The same number of get and put (plus one extra put to
310 * release the initial reference done at creation) have to be done to
311 * destroy an event.
312 *
313 * When the event's reference count is decremented to 0 by a
314 * bt_ctf_event_put, the event is freed.
315 *
316 * @param event Event instance.
317 */
318extern void bt_ctf_event_get(struct bt_ctf_event *event);
319extern void bt_ctf_event_put(struct bt_ctf_event *event);
320
321#ifdef __cplusplus
322}
323#endif
324
325#endif /* BABELTRACE_CTF_IR_EVENT_H */
This page took 0.037279 seconds and 4 git commands to generate.