1 #ifndef BABELTRACE_CTF_IR_TRACE_H
2 #define BABELTRACE_CTF_IR_TRACE_H
5 * BabelTrace - CTF IR: Trace
7 * Copyright 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
9 * Author: Jérémie Galarneau <jeremie.galarneau@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.
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
29 * The Common Trace Format (CTF) Specification is available at
30 * http://www.efficios.com/ctf
34 #include <babeltrace/ref.h>
37 #include <babeltrace/ctf-ir/visitor.h>
40 #include <babeltrace/types.h>
48 @defgroup ctfirtraceclass CTF IR trace class
50 @brief CTF IR trace class.
53 #include <babeltrace/ctf-ir/trace.h>
56 A CTF IR <strong><em>trace class</em></strong> is a descriptor of
59 You can obtain a trace class in two different modes:
61 - <strong>Normal mode</strong>: use bt_trace_create() to create a
62 default, empty trace class.
63 - <strong>CTF writer mode</strong>: use bt_writer_get_trace() to
64 get the trace class created by a given CTF writer object.
66 A trace class has the following properties:
69 - A <strong>native byte order</strong>: all the
70 \link ctfirfieldtypes field types\endlink eventually part of the trace
71 class with a byte order set to #BT_BYTE_ORDER_NATIVE have this
74 - An \b environment, which is a custom key-value mapping. Keys are
75 strings and values can be strings or integers.
77 In the Babeltrace CTF IR system, a trace class contains zero or more
78 \link ctfirstreamclass stream classes\endlink, and a stream class
79 contains zero or more \link ctfireventclass event classes\endlink. You
80 can add an event class to a stream class with
81 bt_stream_class_add_event_class(). You can add a stream class to a
82 trace class with bt_trace_add_stream_class().
84 You can access the streams of a trace, that is, the streams which were
85 created from the trace's stream classes with bt_stream_create(),
86 with bt_trace_get_stream_by_index().
88 A trace class owns the <strong>trace packet header</strong>
89 \link ctfirfieldtypes field type\endlink, which represents the
90 \c trace.packet.header CTF scope. This field type describes the
91 trace packet header fields of the traces that this trace class
94 The trace packet header field type \em must be a structure field type as
95 of Babeltrace \btversion.
97 As per the CTF specification, the trace packet header field type \em
98 must contain a field named \c stream_id if the trace class contains more
99 than one stream class.
101 As a reminder, here's the structure of a CTF packet:
105 A trace class also contains zero or more
106 \link ctfirclockclass CTF IR clock classes\endlink.
109 Elaborate about clock classes irt clock values.
111 As with any Babeltrace object, CTF IR trace class objects have
112 <a href="https://en.wikipedia.org/wiki/Reference_counting">reference
113 counts</a>. See \ref refs to learn more about the reference counting
114 management of Babeltrace objects.
116 The following functions \em freeze their trace class parameter on
119 - bt_trace_add_stream_class()
120 - bt_writer_create_stream()
121 (\link ctfwriter CTF writer\endlink mode only)
123 You cannot modify a frozen trace class: it is considered immutable,
126 - Adding a stream class to it with
127 bt_trace_add_stream_class().
128 - Adding a CTF IR clock class to it with bt_trace_add_clock_class().
129 - \link refs Reference counting\endlink.
136 @brief CTF IR trace class type and functions.
139 @addtogroup ctfirtraceclass
145 @brief A CTF IR trace class.
150 struct bt_stream_class
;
151 struct bt_clock_class
;
152 struct bt_field_type
;
154 struct bt_packet_header_field
;
157 @brief User function type to use with
158 bt_trace_add_is_static_listener().
160 @param[in] trace_class Trace class which is now static.
161 @param[in] data User data as passed to
162 bt_trace_add_is_static_listener() when
163 you added the listener.
165 @prenotnull{trace_class}
167 typedef void (* bt_trace_is_static_listener
)(
168 struct bt_trace
*trace_class
, void *data
);
171 @brief User function type to use with
172 bt_trace_add_is_static_listener().
174 @param[in] trace_class Trace class to which the listener was added.
175 @param[in] data User data as passed to
176 bt_trace_add_is_static_listener() when
177 you added the listener.
179 @prenotnull{trace_class}
181 typedef void (* bt_trace_listener_removed
)(
182 struct bt_trace
*trace_class
, void *data
);
185 @name Creation function
190 @brief Creates a default CTF IR trace class.
192 On success, the trace packet header field type of the created trace
193 class is an empty structure field type. You can modify this default
194 trace packet header field type after the trace class is created with
195 bt_trace_get_packet_header_field_type() and
196 bt_trace_set_packet_header_field_type().
198 The created trace class has the following initial properties:
200 - <strong>Name</strong>: none. You can set a name
201 with bt_trace_set_name().
202 - <strong>UUID</strong>: none. You can set a UUID with
204 - <strong>Native byte order</strong>: #BT_BYTE_ORDER_UNSPECIFIED.
205 You can set a native byte order with
206 bt_trace_set_native_byte_order().
207 - <strong>Environment</strong>: empty. You can add environment entries
208 with bt_trace_set_environment_field(),
209 bt_trace_set_environment_field_integer(), and
210 bt_trace_set_environment_field_string().
212 @returns Created trace class, or \c NULL on error.
214 @postsuccessrefcountret1
216 extern struct bt_trace
*bt_trace_create(void);
221 @name Properties functions
226 @brief Returns the name of the CTF IR trace class \p trace_class.
228 On success, \p trace_class remains the sole owner of the returned
229 string. The returned string is valid as long as \p trace_class exists
232 @param[in] trace_class Trace class of which to get the name.
233 @returns Name of trace class \p trace_class, or
234 \c NULL if \p trace_class is unnamed or
237 @prenotnull{trace_class}
238 @postrefcountsame{trace_class}
240 @sa bt_trace_set_name(): Sets the name of a given trace class.
242 extern const char *bt_trace_get_name(struct bt_trace
*trace_class
);
245 @brief Sets the name of the CTF IR trace class \p trace_class
248 @param[in] trace_class Trace class of which to set the name.
249 @param[in] name Name of the trace class (copied on success).
250 @returns 0 on success, or a negative value on error.
252 @prenotnull{trace_class}
255 @postrefcountsame{trace_class}
257 @sa bt_trace_get_name(): Returns the name of a given trace class.
259 extern int bt_trace_set_name(struct bt_trace
*trace_class
,
263 @brief Returns the native byte order of the CTF IR trace class
266 @param[in] trace_class Trace class of which to get the default byte
268 @returns Native byte order of \p trace_class,
269 or #BT_BYTE_ORDER_UNKNOWN on error.
271 @prenotnull{trace_class}
272 @postrefcountsame{trace_class}
274 @sa bt_trace_set_native_byte_order(): Sets the native byte order of
277 extern enum bt_byte_order
bt_trace_get_native_byte_order(
278 struct bt_trace
*trace_class
);
281 @brief Sets the native byte order of the CTF IR trace class
282 \p trace_class to \p native_byte_order.
284 \p native_byte_order \em must be one of:
286 - #BT_BYTE_ORDER_LITTLE_ENDIAN
287 - #BT_BYTE_ORDER_BIG_ENDIAN
288 - #BT_BYTE_ORDER_NETWORK
289 - <strong>If the trace is not in CTF writer mode<strong>,
290 #BT_BYTE_ORDER_UNSPECIFIED.
292 @param[in] trace_class Trace class of which to set the native byte
294 @param[in] native_byte_order Native byte order of the trace class.
295 @returns 0 on success, or a negative value on error.
297 @prenotnull{trace_class}
299 @pre \p native_byte_order is either #BT_BYTE_ORDER_UNSPECIFIED (if the
300 trace is not in CTF writer mode),
301 #BT_BYTE_ORDER_LITTLE_ENDIAN, #BT_BYTE_ORDER_BIG_ENDIAN, or
302 #BT_BYTE_ORDER_NETWORK.
303 @postrefcountsame{trace_class}
305 @sa bt_trace_get_native_byte_order(): Returns the native byte order of a
308 extern int bt_trace_set_native_byte_order(struct bt_trace
*trace_class
,
309 enum bt_byte_order native_byte_order
);
312 @brief Returns the UUID of the CTF IR trace class \p trace_class.
314 On success, the return value is an array of 16 bytes.
316 @param[in] trace_class Trace class of which to get the UUID.
317 @returns UUID of trace class \p trace_class, or
318 \c NULL if \p trace_class has no UUID or on error.
320 @prenotnull{trace_class}
321 @postrefcountsame{trace_class}
323 @sa bt_trace_set_uuid(): Sets the UUID of a given trace class.
325 extern const unsigned char *bt_trace_get_uuid(
326 struct bt_trace
*trace_class
);
329 @brief Sets the UUID of the CTF IR trace class \p trace_class to
332 \p uuid \em must be an array of 16 bytes.
334 @param[in] trace_class Trace class of which to set the UUID.
335 @param[in] uuid UUID of the \p trace_class (copied on
337 @returns 0 on success, or a negative value on error.
339 @prenotnull{trace_class}
342 @pre \p uuid is an array of 16 bytes.
343 @postrefcountsame{trace_class}
345 @sa bt_trace_get_uuid(): Returns the UUID of a given trace class.
347 extern int bt_trace_set_uuid(struct bt_trace
*trace_class
,
348 const unsigned char *uuid
);
351 @brief Returns the number of entries contained in the environment of
352 the CTF IR trace class \p trace_class.
354 @param[in] trace_class Trace class of which to get the number
355 of environment entries.
356 @returns Number of environment entries
357 contained in \p trace_class, or
358 a negative value on error.
360 @prenotnull{trace_class}
361 @postrefcountsame{trace_class}
363 extern int64_t bt_trace_get_environment_field_count(
364 struct bt_trace
*trace_class
);
367 @brief Returns the field name of the environment entry at index
368 \p index in the CTF IR trace class \p trace_class.
370 On success, the returned string is valid as long as this trace class
371 exists and is \em not modified. \p trace_class remains the sole owner of
374 @param[in] trace_class Trace class of which to get the name of the
375 environment entry at index \p index.
376 @param[in] index Index of environment entry to find.
377 @returns Name of the environment entry at index \p index
378 in \p trace_class, or \c NULL on error.
380 @prenotnull{trace_class}
381 @pre \p index is lesser than the number of environment entries in
382 \p trace_class (see bt_trace_get_environment_field_count()).
383 @postrefcountsame{trace_class}
385 @sa bt_trace_get_environment_field_value_by_index(): Finds a trace class's
386 environment entry by index.
387 @sa bt_trace_get_environment_field_value_by_name(): Finds a trace
388 class's environment entry by name.
389 @sa bt_trace_set_environment_field(): Sets the value of a trace
390 class's environment entry.
393 bt_trace_get_environment_field_name_by_index(
394 struct bt_trace
*trace_class
, uint64_t index
);
396 extern struct bt_value
*
397 bt_trace_borrow_environment_field_value_by_index(struct bt_trace
*trace_class
,
401 @brief Returns the value of the environment entry at index
402 \p index in the CTF IR trace class \p trace_class.
404 @param[in] trace_class Trace class of which to get the value of the
405 environment entry at index \p index.
406 @param[in] index Index of the environment entry to find.
407 @returns Value of the environment entry at index \p index
408 in \p trace_class, or \c NULL on error.
410 @prenotnull{trace_class}
411 @pre \p index is lesser than the number of environment entries in
412 \p trace_class (see bt_trace_get_environment_field_count()).
413 @postrefcountsame{trace_class}
414 @postsuccessrefcountretinc
416 @sa bt_trace_get_environment_field_value_by_name(): Finds a trace
417 class's environment entry by name.
418 @sa bt_trace_set_environment_field(): Sets the value of a trace
419 class's environment entry.
422 struct bt_value
*bt_trace_get_environment_field_value_by_index(
423 struct bt_trace
*trace_class
, uint64_t index
)
425 return bt_get(bt_trace_borrow_environment_field_value_by_index(
426 trace_class
, index
));
429 extern struct bt_value
*
430 bt_trace_borrow_environment_field_value_by_name(
431 struct bt_trace
*trace_class
, const char *name
);
434 @brief Returns the value of the environment entry named \p name
435 in the CTF IR trace class \p trace_class.
437 @param[in] trace_class Trace class of which to get the value of the
438 environment entry named \p name.
439 @param[in] name Name of the environment entry to find.
440 @returns Value of the environment entry named \p name
441 in \p trace_class, or \c NULL if there's no such
444 @prenotnull{trace_class}
446 @postrefcountsame{trace_class}
447 @postsuccessrefcountretinc
449 @sa bt_trace_get_environment_field_value_by_index(): Finds a trace class's
450 environment entry by index.
451 @sa bt_trace_set_environment_field(): Sets the value of a trace
452 class's environment entry.
456 bt_trace_get_environment_field_value_by_name(
457 struct bt_trace
*trace_class
, const char *name
)
460 bt_trace_borrow_environment_field_value_by_name(
465 @brief Sets the environment entry named \p name in the
466 CTF IR trace class \p trace_class to \p value.
468 If an environment entry named \p name exists in \p trace_class, its
469 value is first put, and then replaced by \p value.
471 @param[in] trace_class Trace class of which to set the environment
473 @param[in] name Name of the environment entry to set (copied
475 @param[in] value Value of the environment entry named \p name.
476 @returns 0 on success, or a negative value on error.
478 @prenotnull{trace_class}
483 \link bt_value_integer_create() integer value object\endlink
485 \link bt_value_string_create() string value object\endlink.
486 @postrefcountsame{trace_class}
487 @postsuccessrefcountinc{value}
489 @sa bt_trace_get_environment_field_value_by_index(): Finds a trace class's
490 environment entry by index.
491 @sa bt_trace_get_environment_field_value_by_name(): Finds a trace
492 class's environment entry by name.
494 extern int bt_trace_set_environment_field(
495 struct bt_trace
*trace_class
, const char *name
,
496 struct bt_value
*value
);
499 @brief Sets the environment entry named \p name in the
500 CTF IR trace class \p trace_class to \p value.
502 If an environment entry named \p name exists in \p trace_class, its
503 value is first put, and then replaced by a new
504 \link bt_value_integer_create() integer value object\endlink
507 @param[in] trace_class Trace class of which to set the environment
509 @param[in] name Name of the environment entry to set (copied
511 @param[in] value Value of the environment entry named \p name.
512 @returns 0 on success, or a negative value on error.
514 @prenotnull{trace_class}
517 @postrefcountsame{trace_class}
519 @sa bt_trace_set_environment_field(): Sets the value of a trace
520 class's environment entry.
522 extern int bt_trace_set_environment_field_integer(
523 struct bt_trace
*trace_class
, const char *name
,
527 @brief Sets the environment entry named \p name in the
528 CTF IR trace class \p trace_class to \p value.
530 If an environment entry named \p name exists in \p trace_class, its
531 value is first put, and then replaced by a new
532 \link bt_value_string_create() string value object\endlink
535 @param[in] trace_class Trace class of which to set the environment
537 @param[in] name Name of the environment entry to set (copied
539 @param[in] value Value of the environment entry named \p name
541 @returns 0 on success, or a negative value on error.
543 @prenotnull{trace_class}
547 @postrefcountsame{trace_class}
549 @sa bt_trace_set_environment_field(): Sets the value of a trace
550 class's environment entry.
552 extern int bt_trace_set_environment_field_string(
553 struct bt_trace
*trace_class
, const char *name
,
559 @name Contained field types functions
563 extern struct bt_field_type
*bt_trace_borrow_packet_header_field_type(
564 struct bt_trace
*trace_class
);
567 @brief Returns the packet header field type of the CTF IR trace class
570 @param[in] trace_class Trace class of which to get the packet
572 @returns Packet header field type of \p trace_class,
573 or \c NULL if \p trace_class has no packet header field
576 @prenotnull{trace_class}
577 @postrefcountsame{trace_class}
578 @post <strong>On success, if the return value is a field type</strong>, its
579 reference count is incremented.
581 @sa bt_trace_set_packet_header_field_type(): Sets the packet
582 header field type of a given trace class.
585 struct bt_field_type
*bt_trace_get_packet_header_field_type(
586 struct bt_trace
*trace_class
)
588 return bt_get(bt_trace_borrow_packet_header_field_type(trace_class
));
591 extern struct bt_packet_header_field
*bt_trace_create_packet_header_field(
592 struct bt_trace
*trace
);
595 @brief Sets the packet header field type of the CTF IR trace class
596 \p trace_class to \p packet_header_type, or unsets the current packet
597 header field type from \p trace_class.
599 If \p packet_header_type is \c NULL, then this function unsets the current
600 packet header field type from \p trace_class, effectively making \p trace_class
601 a trace without a packet header field type.
603 As of Babeltrace \btversion, if \p packet_header_type is not \c NULL,
604 \p packet_header_type \em must be a CTF IR structure field type object.
606 @param[in] trace_class Trace class of which to set the packet
608 @param[in] packet_header_type Packet header field type, or \c NULL to unset
609 the current packet header field type.
610 @returns 0 on success, or a negative value on error.
612 @prenotnull{trace_class}
614 @pre <strong>\p packet_header_type, if not \c NULL</strong>, is a CTF IR
615 structure field type.
616 @postrefcountsame{trace_class}
617 @post <strong>On success, if \p packet_header_type is not \c NULL</strong>,
618 the reference count of \p packet_header_type is incremented.
620 @sa bt_trace_get_packet_header_field_type(): Returns the packet
621 header field type of a given trace class.
623 extern int bt_trace_set_packet_header_field_type(struct bt_trace
*trace_class
,
624 struct bt_field_type
*packet_header_type
);
629 @name Contained clock classes functions
634 @brief Returns the number of CTF IR clock classes contained in the
635 CTF IR trace class \p trace_class.
637 @param[in] trace_class Trace class of which to get the number
638 of contained clock classes.
639 @returns Number of contained clock classes
640 contained in \p trace_class, or a negative
643 @prenotnull{trace_class}
644 @postrefcountsame{trace_class}
646 extern int64_t bt_trace_get_clock_class_count(
647 struct bt_trace
*trace_class
);
649 extern struct bt_clock_class
*bt_trace_borrow_clock_class_by_index(
650 struct bt_trace
*trace_class
, uint64_t index
);
653 @brief Returns the CTF IR clock class at index \p index in the CTF
654 IR trace class \p trace_class.
656 @param[in] trace_class Trace class of which to get the clock class
657 contained at index \p index.
658 @param[in] index Index of the clock class to find in
660 @returns Clock class at index \p index in \p trace_class,
663 @prenotnull{trace_class}
664 @pre \p index is lesser than the number of clock classes contained in
665 the trace class \p trace_class (see
666 bt_trace_get_clock_class_count()).
667 @postrefcountsame{trace_class}
668 @postsuccessrefcountretinc
670 @sa bt_trace_get_clock_class_by_name(): Finds a clock class by name
671 in a given trace class.
672 @sa bt_trace_add_clock_class(): Adds a clock class to a trace class.
675 struct bt_clock_class
*bt_trace_get_clock_class_by_index(
676 struct bt_trace
*trace_class
, uint64_t index
)
678 return bt_get(bt_trace_borrow_clock_class_by_index(
679 trace_class
, index
));
682 extern struct bt_clock_class
*bt_trace_borrow_clock_class_by_name(
683 struct bt_trace
*trace_class
, const char *name
);
686 @brief Returns the CTF IR clock class named \c name found in the CTF
687 IR trace class \p trace_class.
689 @param[in] trace_class Trace class of which to get the clock class
691 @param[in] name Name of the clock class to find in \p trace_class.
692 @returns Clock class named \p name in \p trace_class,
695 @prenotnull{trace_class}
697 @postrefcountsame{trace_class}
698 @postsuccessrefcountretinc
700 @sa bt_trace_get_clock_class_by_index(): Returns the clock class contained
701 in a given trace class at a given index.
702 @sa bt_trace_add_clock_class(): Adds a clock class to a trace class.
705 struct bt_clock_class
*bt_trace_get_clock_class_by_name(
706 struct bt_trace
*trace_class
, const char *name
)
708 return bt_get(bt_trace_borrow_clock_class_by_name(trace_class
, name
));
712 @brief Adds the CTF IR clock class \p clock_class to the CTF IR
713 trace class \p trace_class.
715 On success, \p trace_class contains \p clock_class.
717 You can call this function even if \p trace_class or \p clock_class
720 @param[in] trace_class Trace class to which to add \p clock_class.
721 @param[in] clock_class Clock class to add to \p trace_class.
722 @returns 0 on success, or a negative value on error.
724 @prenotnull{trace_class}
725 @prenotnull{clock_class}
726 @postrefcountsame{trace_class}
727 @postsuccessrefcountinc{clock_class}
728 @post <strong>On success, if \p trace_class is frozen</strong>,
729 \p clock_class is frozen.
731 @sa bt_trace_get_clock_class_by_index(): Returns the clock class contained
732 in a given trace class at a given index.
733 @sa bt_trace_get_clock_class_by_name(): Finds a clock class by name
734 in a given trace class.
736 extern int bt_trace_add_clock_class(struct bt_trace
*trace_class
,
737 struct bt_clock_class
*clock_class
);
742 @name Stream class children functions
747 @brief Returns the number of stream classes contained in the
748 CTF IR trace class \p trace_class.
750 @param[in] trace_class Trace class of which to get the number
751 of children stream classes.
752 @returns Number of children stream classes
753 contained in \p trace_class, or a negative
756 @prenotnull{trace_class}
757 @postrefcountsame{trace_class}
759 extern int64_t bt_trace_get_stream_class_count(
760 struct bt_trace
*trace_class
);
762 extern struct bt_stream_class
*bt_trace_borrow_stream_class_by_index(
763 struct bt_trace
*trace_class
, uint64_t index
);
766 @brief Returns the stream class at index \p index in the CTF IR trace
767 class \p trace_class.
769 @param[in] trace_class Trace class of which to get the stream class.
770 @param[in] index Index of the stream class to find.
771 @returns Stream class at index \p index, or \c NULL
774 @prenotnull{trace_class}
775 @pre \p index is lesser than the number of stream classes contained in
776 the trace class \p trace_class (see
777 bt_trace_get_stream_class_count()).
778 @postrefcountsame{trace_class}
780 @sa bt_trace_get_stream_class_by_id(): Finds a stream class by ID.
781 @sa bt_trace_add_stream_class(): Adds a stream class to a trace class.
784 struct bt_stream_class
*bt_trace_get_stream_class_by_index(
785 struct bt_trace
*trace_class
, uint64_t index
)
787 return bt_get(bt_trace_borrow_stream_class_by_index(
788 trace_class
, index
));
791 extern struct bt_stream_class
*bt_trace_borrow_stream_class_by_id(
792 struct bt_trace
*trace_class
, uint64_t id
);
795 @brief Returns the stream class with ID \c id found in the CTF IR
796 trace class \p trace_class.
798 @param[in] trace_class Trace class of which to get the stream class.
799 @param[in] id ID of the stream class to find.
800 @returns Stream class with ID \p id, or \c NULL
803 @prenotnull{trace_class}
804 @postrefcountsame{trace_class}
805 @postsuccessrefcountretinc
807 @sa bt_trace_get_stream_class_by_index(): Returns the stream class contained
808 in a given trace class at a given index.
809 @sa bt_trace_add_stream_class(): Adds a stream class to a trace class.
812 struct bt_stream_class
*bt_trace_get_stream_class_by_id(
813 struct bt_trace
*trace_class
, uint64_t id
)
815 return bt_get(bt_trace_borrow_stream_class_by_id(trace_class
, id
));
819 @brief Adds the CTF IR stream class \p stream_class to the
820 CTF IR trace class \p trace_class.
822 On success, \p stream_class becomes the child of \p trace_class.
824 You can only add a given stream class to one trace class.
826 You can call this function even if \p trace_class is frozen.
828 This function tries to resolve the needed
829 \link ctfirfieldtypes CTF IR field type\endlink of the dynamic field
830 types that are found anywhere in the root field types of
831 \p stream_class and of all its currently contained
832 \link ctfireventclass CTF IR event classes\endlink. If any automatic
833 resolving fails, then this function fails.
835 @param[in] trace_class Trace class to which to add \p stream_class.
836 @param[in] stream_class Stream class to add to \p trace_class.
837 @returns 0 on success, or a negative value on error.
839 @prenotnull{trace_class}
840 @prenotnull{stream_class}
841 @postrefcountsame{trace_class}
842 @postsuccessrefcountinc{stream_class}
843 @postsuccessfrozen{stream_class}
845 @sa bt_trace_get_stream_class_by_index(): Returns the stream class contained
846 in a given trace class at a given index.
847 @sa bt_trace_get_stream_class_by_id(): Finds a stream class by ID.
849 extern int bt_trace_add_stream_class(struct bt_trace
*trace_class
,
850 struct bt_stream_class
*stream_class
);
855 @name Stream children functions
860 @brief Returns the number of streams contained in the CTF IR trace
861 class \p trace_class.
863 @param[in] trace_class Trace class of which to get the number
865 @returns Number of children streams
866 contained in \p trace_class, or a negative
869 @prenotnull{trace_class}
870 @postrefcountsame{trace_class}
872 extern int64_t bt_trace_get_stream_count(struct bt_trace
*trace_class
);
874 extern struct bt_stream
*bt_trace_borrow_stream_by_index(
875 struct bt_trace
*trace_class
, uint64_t index
);
878 @brief Returns the stream at index \p index in the CTF IR trace
879 class \p trace_class.
881 @param[in] trace_class Trace class of which to get the stream.
882 @param[in] index Index of the stream to find.
883 @returns Stream at index \p index, or \c NULL
886 @prenotnull{trace_class}
887 @pre \p index is lesser than the number of streams contained in
888 the trace class \p trace_class (see
889 bt_trace_get_stream_count()).
890 @postrefcountsame{trace_class}
893 struct bt_stream
*bt_trace_get_stream_by_index(
894 struct bt_trace
*trace_class
, uint64_t index
)
896 return bt_get(bt_trace_borrow_stream_by_index(trace_class
, index
));
902 @name Misc. functions
907 @brief Returns whether or not the CTF IR trace class \p trace_class
910 It is guaranteed that a static trace class will never contain new
911 streams, stream classes, or clock classes. A static class is always
914 This function returns #BT_TRUE if bt_trace_set_is_static() was
915 previously called on it.
917 @param[in] trace_class Trace class to check.
918 @returns #BT_TRUE if \p trace_class is static,
920 @sa bt_trace_set_is_static(): Makes a trace class static.
922 extern bt_bool
bt_trace_is_static(struct bt_trace
*trace_class
);
925 @brief Makes the CTF IR trace class \p trace_class static.
927 A static trace class is frozen and you cannot call any modifying
930 - bt_trace_add_stream_class()
931 - bt_trace_add_clock_class()
932 - bt_trace_set_environment_field()
933 - bt_trace_set_environment_field_integer()
934 - bt_trace_set_environment_field_string()
935 - bt_trace_add_is_static_listener()
937 You cannot create a stream with bt_stream_create() with any of the
938 stream classes of a static trace class.
940 @param[in] trace_class Trace class to make static.
941 @returns 0 on success, or a negative value on error.
943 @prenotnull{trace_class}
944 @postrefcountsame{trace_class}
945 @postsuccessfrozen{trace_class}
947 @sa bt_trace_is_static(): Checks whether or not a given trace class
949 @sa bt_trace_add_is_static_listener(): Adds a listener to a trace
950 class which is called when the trace class is made static.
952 extern int bt_trace_set_is_static(struct bt_trace
*trace_class
);
955 @brief Adds the listener \p listener to the CTF IR trace class
956 \p trace_class which is called when the trace is made static.
958 \p listener is called with \p data, the user data, the first time
959 bt_trace_set_is_static() is called on \p trace_class.
961 When the trace is destroyed, or when you remove the added listener with
962 bt_trace_remove_is_static_listener(), \p listener_removed is called
963 if it's not \c NULL. You can use \p listener_removed to free any dynamic
964 data which exists only for the added listener. You cannot call
965 any function which modifies \p trace_class during the execution of
966 \p listener_removed, including bt_trace_remove_is_static_listener().
968 This function fails if \p trace_class is already static: you need to
969 check the condition first with bt_trace_is_static().
971 On success, this function returns a unique numeric identifier for this
972 listener within \p trace. You can use this identifier to remove the
973 specific listener you added with
974 bt_trace_remove_is_static_listener().
976 @param[in] trace_class Trace class to which to add the
978 @param[in] listener Listener to add to \p trace_class.
979 @param[in] listener_removed Remove listener called when \p listener
980 is removed from \p trace_class, or
981 \c NULL if you don't need a remove
983 @param[in] data User data passed when \p listener or
984 \p listener_removed is called.
985 @returns A unique numeric identifier for this
986 listener on success (0 or greater), or a
987 negative value on error.
989 @prenotnull{trace_class}
990 @prenotnull{listener}
991 @pre \p trace_class is not static.
992 @postrefcountsame{trace_class}
994 @sa bt_trace_remove_is_static_listener(): Removes a "trace is
995 static" listener from a trace class previously added with this
997 @sa bt_trace_is_static(): Checks whether or not a given trace class
999 @sa bt_trace_set_is_static(): Makes a trace class static.
1001 extern int bt_trace_add_is_static_listener(
1002 struct bt_trace
*trace_class
,
1003 bt_trace_is_static_listener listener
,
1004 bt_trace_listener_removed listener_removed
, void *data
);
1007 @brief Removes the "trace is static" listener identified by
1008 \p listener_id from the trace class \p trace_class.
1010 @param[in] trace_class Trace class from which to remove the listener
1011 identified by \p listener_id.
1012 @param[in] listener_id Identifier of the listener to remove from
1014 @returns 0 if this function removed the listener, or
1015 a negative value on error.
1017 @prenotnull{trace_class}
1018 @pre \p listener_id is the identifier of a listener that you previously
1019 added with bt_trace_add_is_static_listener() and did not
1020 already remove with this function.
1021 @postrefcountsame{trace_class}
1023 @sa bt_trace_add_is_static_listener(): Adds a listener to a trace
1024 class which is called when the trace class is made static.
1026 extern int bt_trace_remove_is_static_listener(
1027 struct bt_trace
*trace_class
, int listener_id
);
1030 @brief Accepts the visitor \p visitor to visit the hierarchy of the
1031 CTF IR trace class \p trace_class.
1033 This function traverses the hierarchy of \p trace_class in pre-order
1034 and calls \p visitor on each element.
1036 The trace class itself is visited first, then, for each children stream
1037 class, the stream class itself, and all its children event classes.
1039 @param[in] trace_class Trace class to visit.
1040 @param[in] visitor Visiting function.
1041 @param[in] data User data.
1042 @returns 0 on success, or a negative value on error.
1044 @prenotnull{trace_class}
1045 @prenotnull{visitor}
1047 extern int bt_trace_visit(struct bt_trace
*trace_class
,
1048 bt_visitor visitor
, void *data
);
1058 #endif /* BABELTRACE_CTF_IR_TRACE_H */