Decouple component class from plugin subsystem, remove component factory
[babeltrace.git] / include / babeltrace / ctf-ir / trace.h
CommitLineData
bc37ae52
JG
1#ifndef BABELTRACE_CTF_IR_TRACE_H
2#define BABELTRACE_CTF_IR_TRACE_H
3
4/*
5 * BabelTrace - CTF IR: Trace
6 *
7 * Copyright 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
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
2e33ac5a 33#include <babeltrace/ctf-ir/field-types.h>
8bf65fbd 34#include <babeltrace/ctf-ir/visitor.h>
dac5c838 35#include <babeltrace/values.h>
33b34c43 36#include <babeltrace/component/notification/notification.h>
410d0373 37#include <stdint.h>
bc37ae52
JG
38
39#ifdef __cplusplus
40extern "C" {
41#endif
42
06300316
PP
43/**
44@defgroup ctfirtraceclass CTF IR trace class
45@ingroup ctfir
46@brief CTF IR trace class.
47
6dd2bd0c
PP
48@code
49#include <babeltrace/ctf-ir/trace.h>
50@endcode
51
06300316
PP
52A CTF IR <strong><em>trace class</em></strong> is a descriptor of
53traces.
54
55You can obtain a trace class in two different modes:
56
57- <strong>Normal mode</strong>: use bt_ctf_trace_create() to create a
58 default, empty trace class.
dfeca116
PP
59- <strong>CTF writer mode</strong>: use bt_ctf_writer_get_trace() to
60 get the trace class created by a given CTF writer object.
06300316
PP
61
62A trace class has the following properties:
63
64- A \b name.
65- A <strong>default byte order</strong>: all the
654515f1 66 \link ctfirfieldtypes field types\endlink eventually part of the trace
06300316
PP
67 class with a byte order set to #BT_CTF_BYTE_ORDER_NATIVE have this
68 "real" byte order.
69- An \b environment, which is a custom key-value mapping. Keys are
70 strings and values can be strings or integers.
71
72In the Babeltrace CTF IR system, a trace class contains zero or more
73\link ctfirstreamclass stream classes\endlink, and a stream class
74contains zero or more \link ctfireventclass event classes\endlink. You
75can add an event class to a stream class with
76bt_ctf_stream_class_add_event_class(). You can add a stream class to a
77trace class with bt_ctf_trace_add_stream_class().
78
79A trace class owns the <strong>trace packet header</strong>
80\link ctfirfieldtypes field type\endlink, which represents the
81\c trace.packet.header CTF scope. This field type describes the
82trace packet header fields of the traces that this trace class
83describes.
84
85The trace packet header field type \em must be a structure field type as
86of Babeltrace \btversion.
87
88As per the CTF specification, the trace packet header field type \em
89must contain a field named \c stream_id if the trace class contains more
90than one stream class.
91
92As a reminder, here's the structure of a CTF packet:
93
94@imgpacketstructure
95
96A trace class also contains zero or more
97\link ctfirclockclass clock classes\endlink.
98
99@todo
100Elaborate about clock classes irt clock values.
101
2c1c33a4 102As with any Babeltrace object, CTF IR trace class objects have
06300316
PP
103<a href="https://en.wikipedia.org/wiki/Reference_counting">reference
104counts</a>. See \ref refs to learn more about the reference counting
105management of Babeltrace objects.
106
107The following functions \em freeze their trace class parameter on
108success:
109
110- bt_ctf_trace_add_stream_class()
111- bt_ctf_writer_create_stream()
dfeca116 112 (\link ctfwriter CTF writer\endlink mode only)
06300316
PP
113
114You cannot modify a frozen trace class: it is considered immutable,
115except for:
116
117- Adding a stream class to it with
118 bt_ctf_trace_add_stream_class().
ac0c6bdd 119- Adding a clock class to it with bt_ctf_trace_add_clock_class().
06300316
PP
120- \link refs Reference counting\endlink.
121
122You can add a custom listener with bt_ctf_trace_add_listener() to get
123notified if anything changes in a trace class, that is, if an event
124class is added to one of its stream class, if a stream class is added,
125or if a clock class is added.
126
127@sa ctfirstreamclass
128@sa ctfireventclass
129@sa ctfirclockclass
130
131@file
132@brief CTF IR trace class type and functions.
133@sa ctfirtraceclass
134
135@addtogroup ctfirtraceclass
136@{
137*/
138
139/**
140@struct bt_ctf_trace
141@brief A CTF IR trace class.
142@sa ctfirtraceclass
143*/
bc37ae52
JG
144struct bt_ctf_trace;
145struct bt_ctf_stream;
146struct bt_ctf_stream_class;
ac0c6bdd 147struct bt_ctf_clock_class;
bc37ae52 148
2204c381 149/**
06300316
PP
150@name Creation function
151@{
152*/
2204c381 153
06300316
PP
154/**
155@brief Creates a default CTF IR trace class.
156
157On success, the trace packet header field type of the created trace
158class has the following fields:
159
160- <code>magic</code>: a 32-bit unsigned integer field type.
161- <code>uuid</code>: an array field type of 16 8-bit unsigned integer
162 field types.
163- <code>stream_id</code>: a 32-bit unsigned integer field type.
164
165You can modify this default trace packet header field type after the
166trace class is created with bt_ctf_trace_set_packet_header_type().
167
168The created trace class has the following initial properties:
169
170- <strong>Name</strong>: none. You can set a name
171 with bt_ctf_trace_set_name().
172- <strong>Default byte order</strong>: #BT_CTF_BYTE_ORDER_NATIVE. You
173 can set a default byte order with bt_ctf_trace_set_byte_order().
174
175 Note that you \em must set the default byte order if any field type
176 contained in the created trace class, in its stream classes, or in
177 its event classes, has a byte order set to #BT_CTF_BYTE_ORDER_NATIVE.
178- <strong>Environment</strong>: empty. You can add environment entries
179 with bt_ctf_trace_set_environment_field(),
180 bt_ctf_trace_set_environment_field_integer(), and
181 bt_ctf_trace_set_environment_field_string().
182
183@returns Created trace class, or \c NULL on error.
184
185@postsuccessrefcountret1
186*/
bc37ae52
JG
187extern struct bt_ctf_trace *bt_ctf_trace_create(void);
188
06300316 189/** @} */
e96045d4 190
06300316
PP
191/**
192@name Properties functions
193@{
194*/
e96045d4 195
06300316
PP
196/**
197@brief Returns the name of the CTF IR trace class \p trace_class.
7f800dc7 198
06300316
PP
199On success, \p trace_class remains the sole owner of the returned
200string. The returned string is valid as long as \p trace_class exists
201and is not modified.
bc37ae52 202
06300316
PP
203@param[in] trace_class Trace class of which to get the name.
204@returns Name of trace class \p trace_class, or
205 \c NULL if \p trace_class is unnamed or
206 on error.
3487c9f3 207
06300316
PP
208@prenotnull{trace_class}
209@postrefcountsame{trace_class}
210
211@sa bt_ctf_trace_set_name(): Sets the name of a given trace class.
212*/
213extern const char *bt_ctf_trace_get_name(struct bt_ctf_trace *trace_class);
214
215/**
216@brief Sets the name of the CTF IR trace class \p trace_class
217 to \p name.
218
219@param[in] trace_class Trace class of which to set the name.
220@param[in] name Name of the trace class (copied on success).
221@returns 0 on success, or a negative value on error.
222
223@prenotnull{trace_class}
224@prenotnull{name}
225@prehot{trace_class}
226@postrefcountsame{trace_class}
227
228@sa bt_ctf_trace_get_name(): Returns the name of a given trace class.
229*/
230extern int bt_ctf_trace_set_name(struct bt_ctf_trace *trace_class,
231 const char *name);
232
233/**
234@brief Returns the default byte order of the CTF IR trace class
235 \p trace_class.
236
237@param[in] trace_class Trace class of which to get the default byte
238 order.
239@returns Default byte order of trace class
240 \p trace_class, or #BT_CTF_BYTE_ORDER_UNKNOWN
241 on error.
242
243@prenotnull{trace_class}
244@postrefcountsame{trace_class}
245
246@sa bt_ctf_trace_set_name(): Sets the name of a given trace class.
247*/
248extern enum bt_ctf_byte_order bt_ctf_trace_get_byte_order(
249 struct bt_ctf_trace *trace_class);
250
251/**
252@brief Sets the default byte order of the CTF IR trace class
253 \p trace_class to \p name.
254
255\p byte_order \em must be one of:
256
257- #BT_CTF_BYTE_ORDER_LITTLE_ENDIAN
258- #BT_CTF_BYTE_ORDER_BIG_ENDIAN
259- #BT_CTF_BYTE_ORDER_NETWORK
260
261@param[in] trace_class Trace class of which to set the default byte
262 order.
263@param[in] byte_order Default byte order of the trace class.
264@returns 0 on success, or a negative value on error.
265
266@prenotnull{trace_class}
267@prenotnull{name}
268@prehot{trace_class}
269@pre \p byte_order is either #BT_CTF_BYTE_ORDER_LITTLE_ENDIAN,
270 #BT_CTF_BYTE_ORDER_BIG_ENDIAN, or
271 #BT_CTF_BYTE_ORDER_NETWORK.
272@postrefcountsame{trace_class}
273
274@sa bt_ctf_trace_get_name(): Returns the name of a given trace class.
275*/
276extern int bt_ctf_trace_set_byte_order(struct bt_ctf_trace *trace_class,
277 enum bt_ctf_byte_order byte_order);
278
279/**
280@brief Returns the number of entries contained in the environment of
281 the CTF IR trace class \p trace_class.
282
283@param[in] trace_class Trace class of which to get the number
284 of environment entries.
285@returns Number of environment entries
286 contained in \p trace_class, or
287 a negative value on error.
288
289@prenotnull{trace_class}
290@postrefcountsame{trace_class}
291*/
e6fa2160 292extern int bt_ctf_trace_get_environment_field_count(
06300316 293 struct bt_ctf_trace *trace_class);
e6fa2160 294
06300316
PP
295/**
296@brief Returns the field name of the environment entry at index
297 \p index in the CTF IR trace class \p trace_class.
298
299On success, the returned string is valid as long as this trace class
300exists and is \em not modified. \p trace_class remains the sole owner of
301the returned string.
302
303@param[in] trace_class Trace class of which to get the name of the
304 environment entry at index \p index.
305@param[in] index Index of environment entry to find.
306@returns Name of the environment entry at index \p index
307 in \p trace_class, or \c NULL on error.
308
309@prenotnull{trace_class}
310@pre \p index is lesser than the number of environment entries in
311 \p trace_class (see bt_ctf_trace_get_environment_field_count()).
312@postrefcountsame{trace_class}
313
314@sa bt_ctf_trace_get_environment_field_value(): Finds a trace class's
315 environment entry by index.
316@sa bt_ctf_trace_get_environment_field_value_by_name(): Finds a trace
317 class's environment entry by name.
318@sa bt_ctf_trace_set_environment_field(): Sets the value of a trace
319 class's environment entry.
320*/
e6fa2160 321extern const char *
06300316 322bt_ctf_trace_get_environment_field_name(struct bt_ctf_trace *trace_class,
e6fa2160
JG
323 int index);
324
06300316
PP
325/**
326@brief Returns the value of the environment entry at index
327 \p index in the CTF IR trace class \p trace_class.
328
329@param[in] trace_class Trace class of which to get the value of the
330 environment entry at index \p index.
331@param[in] index Index of the environment entry to find.
332@returns Value of the environment entry at index \p index
333 in \p trace_class, or \c NULL on error.
334
335@prenotnull{trace_class}
336@pre \p index is lesser than the number of environment entries in
337 \p trace_class (see bt_ctf_trace_get_environment_field_count()).
338@postrefcountsame{trace_class}
339@postsuccessrefcountretinc
340
341@sa bt_ctf_trace_get_environment_field_value_by_name(): Finds a trace
342 class's environment entry by name.
343@sa bt_ctf_trace_set_environment_field(): Sets the value of a trace
344 class's environment entry.
345*/
dac5c838 346extern struct bt_value *
06300316 347bt_ctf_trace_get_environment_field_value(struct bt_ctf_trace *trace_class,
e6fa2160
JG
348 int index);
349
06300316
PP
350/**
351@brief Returns the value of the environment entry named \p name
352 in the CTF IR trace class \p trace_class.
353
354@param[in] trace_class Trace class of which to get the value of the
355 environment entry named \p name.
356@param[in] name Name of the environment entry to find.
357@returns Value of the environment entry named \p name
358 in \p trace_class, or \c NULL if there's no such
359 entry or on error.
360
361@prenotnull{trace_class}
362@prenotnull{name}
363@postrefcountsame{trace_class}
364@postsuccessrefcountretinc
365
366@sa bt_ctf_trace_get_environment_field_value(): Finds a trace class's
367 environment entry by index.
368@sa bt_ctf_trace_set_environment_field(): Sets the value of a trace
369 class's environment entry.
370*/
dac5c838 371extern struct bt_value *
06300316
PP
372bt_ctf_trace_get_environment_field_value_by_name(
373 struct bt_ctf_trace *trace_class, const char *name);
e6fa2160 374
06300316
PP
375/**
376@brief Sets the environment entry named \p name in the
377 CTF IR trace class \p trace_class to \p value.
378
379If an environment entry named \p name exists in \p trace_class, its
380value is first put, and then replaced by \p value.
381
382@param[in] trace_class Trace class of which to set the environment
383 entry.
384@param[in] name Name of the environment entry to set (copied
385 on success).
386@param[in] value Value of the environment entry named \p name.
387@returns 0 on success, or a negative value on error.
388
389@prenotnull{trace_class}
390@prenotnull{name}
391@prenotnull{value}
392@prehot{trace_class}
393@pre \p value is an
394 \link bt_value_integer_create() integer value object\endlink
395 or a
396 \link bt_value_string_create() string value object\endlink.
397@postrefcountsame{trace_class}
398@postsuccessrefcountinc{value}
399
400@sa bt_ctf_trace_get_environment_field_value(): Finds a trace class's
401 environment entry by index.
402@sa bt_ctf_trace_get_environment_field_value_by_name(): Finds a trace
403 class's environment entry by name.
404*/
405extern int bt_ctf_trace_set_environment_field(
406 struct bt_ctf_trace *trace_class, const char *name,
407 struct bt_value *value);
bc37ae52 408
06300316
PP
409/**
410@brief Sets the environment entry named \p name in the
411 CTF IR trace class \p trace_class to \p value.
412
413If an environment entry named \p name exists in \p trace_class, its
414value is first put, and then replaced by a new
415\link bt_value_integer_create() integer value object\endlink
416containing \p value.
417
418@param[in] trace_class Trace class of which to set the environment
419 entry.
420@param[in] name Name of the environment entry to set (copied
421 on success).
422@param[in] value Value of the environment entry named \p name.
423@returns 0 on success, or a negative value on error.
424
425@prenotnull{trace_class}
426@prenotnull{name}
427@prehot{trace_class}
428@postrefcountsame{trace_class}
429
430@sa bt_ctf_trace_set_environment_field(): Sets the value of a trace
431 class's environment entry.
432*/
433extern int bt_ctf_trace_set_environment_field_integer(
434 struct bt_ctf_trace *trace_class, const char *name,
435 int64_t value);
884cd6c3 436
06300316
PP
437/**
438@brief Sets the environment entry named \p name in the
439 CTF IR trace class \p trace_class to \p value.
440
441If an environment entry named \p name exists in \p trace_class, its
442value is first put, and then replaced by a new
443\link bt_value_string_create() string value object\endlink
444containing \p value.
445
446@param[in] trace_class Trace class of which to set the environment
447 entry.
448@param[in] name Name of the environment entry to set (copied
449 on success).
450@param[in] value Value of the environment entry named \p name
451 (copied on success).
452@returns 0 on success, or a negative value on error.
453
454@prenotnull{trace_class}
455@prenotnull{name}
456@prenotnull{value}
457@prehot{trace_class}
458@postrefcountsame{trace_class}
459
460@sa bt_ctf_trace_set_environment_field(): Sets the value of a trace
461 class's environment entry.
462*/
463extern int bt_ctf_trace_set_environment_field_string(
464 struct bt_ctf_trace *trace_class, const char *name,
465 const char *value);
466
467/** @} */
468
469/**
470@name Contained field types functions
471@{
472*/
473
474/**
475@brief Returns the packet header field type of the CTF IR trace class
476 \p trace_class.
477
478@param[in] trace_class Trace class of which to get the packet
479 header field type.
480@returns Packet header field type of \p trace_class,
6b783f49
JG
481 or \c NULL if \p trace_class has no packet header field
482 type or on error.
06300316
PP
483
484@prenotnull{trace_class}
c2f29fb9 485@postrefcountsame{trace_class}
6b783f49
JG
486@post <strong>On success, if the return value is a field type</strong>, its
487 reference count is incremented.
06300316
PP
488
489@sa bt_ctf_trace_set_packet_header_type(): Sets the packet
490 header field type of a given trace class.
491*/
492extern struct bt_ctf_field_type *bt_ctf_trace_get_packet_header_type(
493 struct bt_ctf_trace *trace_class);
494
495/**
496@brief Sets the packet header field type of the CTF IR trace class
6b783f49
JG
497 \p trace_class to \p packet_header_type, or unsets the current packet
498 header field type from \p trace_class.
499
500If \p packet_header_type is \c NULL, then this function unsets the current
501packet header field type from \p trace_class, effectively making \p trace_class
502a trace without a packet header field type.
06300316 503
6b783f49
JG
504As of Babeltrace \btversion, if \p packet_header_type is not \c NULL,
505\p packet_header_type \em must be a CTF IR structure field type object.
06300316
PP
506
507@param[in] trace_class Trace class of which to set the packet
508 header field type.
6b783f49
JG
509@param[in] packet_header_type Packet header field type, or \c NULL to unset
510 the current packet header field type.
06300316
PP
511@returns 0 on success, or a negative value on error.
512
513@prenotnull{trace_class}
06300316 514@prehot{trace_class}
6b783f49
JG
515@pre <strong>\p packet_header_type, if not \c NULL</strong>, is a CTF IR
516 structure field type.
06300316 517@postrefcountsame{trace_class}
6b783f49
JG
518@post <strong>On success, if \p packet_header_type is not \c NULL</strong>,
519 the reference count of \p packet_header_type is incremented.
06300316
PP
520
521@sa bt_ctf_trace_get_packet_header_type(): Returns the packet
522 header field type of a given trace class.
523*/
524extern int bt_ctf_trace_set_packet_header_type(struct bt_ctf_trace *trace_class,
525 struct bt_ctf_field_type *packet_header_type);
526
527/** @} */
528
529/**
530@name Clock class children functions
531@{
532*/
533
534/**
535@brief Returns the number of clock classes contained in the
536 CTF IR trace class \p trace_class.
537
538@param[in] trace_class Trace class of which to get the number
539 of children clock classes.
540@returns Number of children clock classes
541 contained in \p trace_class, or a negative
542 value on error.
543
544@prenotnull{trace_class}
545@postrefcountsame{trace_class}
546*/
ac0c6bdd 547extern int bt_ctf_trace_get_clock_class_count(struct bt_ctf_trace *trace_class);
06300316
PP
548
549/**
550@brief Returns the clock class at index \p index in the CTF IR trace
551 class \p trace_class.
552
553@param[in] trace_class Trace class of which to get the clock class.
554@param[in] index Index of the clock class to find.
555@returns Clock class at index \p index, or \c NULL
556 on error.
557
558@prenotnull{trace_class}
559@pre \p index is lesser than the number of clock classes contained in
560 the trace class \p trace_class (see
ac0c6bdd 561 bt_ctf_trace_get_clock_class_count()).
06300316
PP
562@postrefcountsame{trace_class}
563@postsuccessrefcountretinc
564
ac0c6bdd
PP
565@sa bt_ctf_trace_get_clock_class_by_name(): Finds a clock class by name.
566@sa bt_ctf_trace_add_clock_class(): Adds a clock class to a trace class.
06300316 567*/
ac0c6bdd 568extern struct bt_ctf_clock_class *bt_ctf_trace_get_clock_class(
06300316 569 struct bt_ctf_trace *trace_class, int index);
884cd6c3 570
06300316
PP
571/**
572@brief Returns the clock class named \c name found in the CTF IR trace
573 class \p trace_class.
574
575@param[in] trace_class Trace class of which to get the clock class.
576@param[in] name Name of the clock class to find.
577@returns Clock class named \p name, or \c NULL
578 on error.
579
580@prenotnull{trace_class}
581@prenotnull{name}
582@postrefcountsame{trace_class}
583@postsuccessrefcountretinc
584
ac0c6bdd
PP
585@sa bt_ctf_trace_get_clock_class(): Returns the clock class contained
586 in a given trace class at a given index.
587@sa bt_ctf_trace_add_clock_class(): Adds a clock class to a trace class.
06300316 588*/
ac0c6bdd 589extern struct bt_ctf_clock_class *bt_ctf_trace_get_clock_class_by_name(
06300316 590 struct bt_ctf_trace *trace_class, const char *name);
ef0c4a15 591
06300316
PP
592/**
593@brief Adds the CTF IR clock class \p clock_class to the CTF IR
594 trace class \p trace_class.
ef0c4a15 595
06300316
PP
596On success, \p clock_class becomes the child of \p trace_class.
597
598You can call this function even if \p trace_class is frozen.
599
600@param[in] trace_class Trace class to which to add \p clock_class.
601@param[in] clock_class Clock class to add to \p trace_class.
602@returns 0 on success, or a negative value on error.
603
604@prenotnull{trace_class}
605@prenotnull{clock_class}
606@postrefcountsame{trace_class}
607@postsuccessrefcountinc{clock_class}
30484384 608@post <strong>On success, if \p trace_class is frozen</strong>,
2c1c33a4 609 \p clock_class is frozen.
06300316 610
ac0c6bdd
PP
611@sa bt_ctf_trace_get_clock_class(): Returns the clock class contained
612 in a given trace class at a given index.
613@sa bt_ctf_trace_get_clock_class_by_name(): Finds a clock class by name.
06300316 614*/
ac0c6bdd
PP
615extern int bt_ctf_trace_add_clock_class(struct bt_ctf_trace *trace_class,
616 struct bt_ctf_clock_class *clock_class);
06300316
PP
617
618/** @} */
619
620/**
621@name Stream class children functions
622@{
623*/
624
625/**
626@brief Returns the number of stream classes contained in the
627 CTF IR trace class \p trace_class.
628
629@param[in] trace_class Trace class of which to get the number
630 of children stream classes.
631@returns Number of children stream classes
632 contained in \p trace_class, or a negative
633 value on error.
634
635@prenotnull{trace_class}
636@postrefcountsame{trace_class}
637*/
638extern int bt_ctf_trace_get_stream_class_count(struct bt_ctf_trace *trace_class);
639
640/**
641@brief Returns the stream class at index \p index in the CTF IR trace
642 class \p trace_class.
643
644@param[in] trace_class Trace class of which to get the stream class.
645@param[in] index Index of the stream class to find.
646@returns Stream class at index \p index, or \c NULL
647 on error.
648
649@prenotnull{trace_class}
650@pre \p index is lesser than the number of stream classes contained in
651 the trace class \p trace_class (see
652 bt_ctf_trace_get_stream_class_count()).
653@postrefcountsame{trace_class}
654@postsuccessrefcountretinc
655
656@sa bt_ctf_trace_get_stream_class_by_id(): Finds a stream class by ID.
657@sa bt_ctf_trace_add_stream_class(): Adds a stream class to a trace class.
658*/
ef0c4a15 659extern struct bt_ctf_stream_class *bt_ctf_trace_get_stream_class(
06300316 660 struct bt_ctf_trace *trace_class, int index);
ef0c4a15 661
06300316
PP
662/**
663@brief Returns the stream class with ID \c id found in the CTF IR
664 trace class \p trace_class.
665
666@param[in] trace_class Trace class of which to get the stream class.
667@param[in] id ID of the stream class to find.
668@returns Stream class with ID \p id, or \c NULL
669 on error.
670
671@prenotnull{trace_class}
672@postrefcountsame{trace_class}
673@postsuccessrefcountretinc
674
ac0c6bdd
PP
675@sa bt_ctf_trace_get_stream_class(): Returns the stream class contained
676 in a given trace class at a given index.
06300316
PP
677@sa bt_ctf_trace_add_stream_class(): Adds a stream class to a trace class.
678*/
4841ccc1 679extern struct bt_ctf_stream_class *bt_ctf_trace_get_stream_class_by_id(
06300316 680 struct bt_ctf_trace *trace_class, uint32_t id);
4841ccc1 681
06300316
PP
682/**
683@brief Adds the CTF IR stream class \p stream_class to the
684 CTF IR trace class \p trace_class.
7e4347a3 685
06300316 686On success, \p stream_class becomes the child of \p trace_class.
bc37ae52 687
06300316 688You can only add a given stream class to one trace class.
4ed90fb3 689
06300316 690You can call this function even if \p trace_class is frozen.
bc37ae52 691
4cdafd51
PP
692This function tries to resolve the needed
693\link ctfirfieldtypes CTF IR field type\endlink of the dynamic field
694types that are found anywhere in the root field types of
695\p stream_class and of all its currently contained
696\link ctfireventclass CTF IR event classes\endlink. If any automatic
697resolving fails, then this function fails.
698
06300316
PP
699@param[in] trace_class Trace class to which to add \p stream_class.
700@param[in] stream_class Stream class to add to \p trace_class.
701@returns 0 on success, or a negative value on error.
d246b111 702
06300316
PP
703@prenotnull{trace_class}
704@prenotnull{stream_class}
705@postrefcountsame{trace_class}
706@postsuccessrefcountinc{stream_class}
2c1c33a4 707@postsuccessfrozen{stream_class}
d246b111 708
ac0c6bdd
PP
709@sa bt_ctf_trace_get_stream_class(): Returns the stream class contained
710 in a given trace class at a given index.
06300316
PP
711@sa bt_ctf_trace_get_stream_class_by_id(): Finds a stream class by ID.
712*/
713extern int bt_ctf_trace_add_stream_class(struct bt_ctf_trace *trace_class,
714 struct bt_ctf_stream_class *stream_class);
715
716/** @} */
717
718/**
719@name Misc. functions
720@{
721*/
722
723/**
724@brief User function type to use with bt_ctf_trace_add_listener().
725
d9a13d86
PP
726@param[in] obj New CTF IR object which is part of the trace
727 class hierarchy.
728@param[in] data User data.
06300316 729
d9a13d86 730@prenotnull{obj}
06300316 731*/
d9a13d86 732typedef void (*bt_ctf_listener_cb)(struct bt_ctf_object *obj, void *data);
06300316
PP
733
734/**
735@brief Adds the trace class modification listener \p listener to
736 the CTF IR trace class \p trace_class.
737
738Once you add \p listener to \p trace_class, whenever \p trace_class
739is modified, \p listener is called with the new element and with
740\p data (user data).
741
742@param[in] trace_class Trace class to which to add \p listener.
743@param[in] listener Modification listener function.
744@param[in] data User data.
745@returns 0 on success, or a negative value on error.
746
747@prenotnull{trace_class}
748@prenotnull{listener}
c2f29fb9 749@postrefcountsame{trace_class}
06300316
PP
750*/
751extern int bt_ctf_trace_add_listener(struct bt_ctf_trace *trace_class,
752 bt_ctf_listener_cb listener, void *data);
753
754/**
755@brief Accepts the visitor \p visitor to visit the hierarchy of the
756 CTF IR trace class \p trace_class.
757
758This function traverses the hierarchy of \p trace_class in pre-order
759and calls \p visitor on each element.
760
761The trace class itself is visited first, then, for each children stream
762class, the stream class itself, and all its children event classes.
763
764@param[in] trace_class Trace class to visit.
765@param[in] visitor Visiting function.
766@param[in] data User data.
767@returns 0 on success, or a negative value on error.
768
769@prenotnull{trace_class}
770@prenotnull{visitor}
771*/
772extern int bt_ctf_trace_visit(struct bt_ctf_trace *trace_class,
d9a13d86 773 bt_ctf_visitor visitor, void *data);
8bf65fbd 774
06300316
PP
775/** @} */
776
35827558
PP
777/** @} */
778
2204c381 779/*
06300316 780 * bt_ctf_trace_get_metadata_string: get metadata string.
2204c381 781 *
06300316
PP
782 * Get the trace's TSDL metadata. The caller assumes the ownership of the
783 * returned string.
2204c381
JG
784 *
785 * @param trace Trace instance.
2204c381 786 *
06300316 787 * Returns the metadata string on success, NULL on error.
2204c381 788 */
06300316 789extern char *bt_ctf_trace_get_metadata_string(struct bt_ctf_trace *trace);
2204c381 790
bc37ae52
JG
791#ifdef __cplusplus
792}
793#endif
794
795#endif /* BABELTRACE_CTF_IR_TRACE_H */
This page took 0.071325 seconds and 4 git commands to generate.