4 * Babeltrace CTF IR - Trace
6 * Copyright 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
8 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29 #include <babeltrace/ctf-ir/trace-internal.h>
30 #include <babeltrace/ctf-ir/clock-class-internal.h>
31 #include <babeltrace/ctf-ir/stream-internal.h>
32 #include <babeltrace/ctf-ir/stream-class-internal.h>
33 #include <babeltrace/ctf-ir/event-internal.h>
34 #include <babeltrace/ctf-ir/event-class.h>
35 #include <babeltrace/ctf-ir/event-class-internal.h>
36 #include <babeltrace/ctf-writer/functor-internal.h>
37 #include <babeltrace/ctf-writer/clock-internal.h>
38 #include <babeltrace/ctf-ir/field-types-internal.h>
39 #include <babeltrace/ctf-ir/attributes-internal.h>
40 #include <babeltrace/ctf-ir/validation-internal.h>
41 #include <babeltrace/ctf-ir/visitor-internal.h>
42 #include <babeltrace/ctf-ir/utils.h>
43 #include <babeltrace/graph/notification-schema.h>
44 #include <babeltrace/compiler.h>
45 #include <babeltrace/values.h>
46 #include <babeltrace/ref.h>
47 #include <babeltrace/endian.h>
50 #define DEFAULT_IDENTIFIER_SIZE 128
51 #define DEFAULT_METADATA_STRING_SIZE 4096
53 struct listener_wrapper
{
54 bt_ctf_listener_cb listener
;
59 void bt_ctf_trace_destroy(struct bt_object
*obj
);
61 int init_trace_packet_header(struct bt_ctf_trace
*trace
);
63 void bt_ctf_trace_freeze(struct bt_ctf_trace
*trace
);
66 const unsigned int field_type_aliases_alignments
[] = {
67 [FIELD_TYPE_ALIAS_UINT5_T
] = 1,
68 [FIELD_TYPE_ALIAS_UINT8_T
... FIELD_TYPE_ALIAS_UINT16_T
] = 8,
69 [FIELD_TYPE_ALIAS_UINT27_T
] = 1,
70 [FIELD_TYPE_ALIAS_UINT32_T
... FIELD_TYPE_ALIAS_UINT64_T
] = 8,
74 const unsigned int field_type_aliases_sizes
[] = {
75 [FIELD_TYPE_ALIAS_UINT5_T
] = 5,
76 [FIELD_TYPE_ALIAS_UINT8_T
] = 8,
77 [FIELD_TYPE_ALIAS_UINT16_T
] = 16,
78 [FIELD_TYPE_ALIAS_UINT27_T
] = 27,
79 [FIELD_TYPE_ALIAS_UINT32_T
] = 32,
80 [FIELD_TYPE_ALIAS_UINT64_T
] = 64,
83 struct bt_ctf_trace
*bt_ctf_trace_create(void)
85 struct bt_ctf_trace
*trace
= NULL
;
87 trace
= g_new0(struct bt_ctf_trace
, 1);
92 bt_ctf_trace_set_byte_order(trace
, BT_CTF_BYTE_ORDER_NATIVE
);
93 bt_object_init(trace
, bt_ctf_trace_destroy
);
94 trace
->clocks
= g_ptr_array_new_with_free_func(
95 (GDestroyNotify
) bt_put
);
96 trace
->streams
= g_ptr_array_new_with_free_func(
97 (GDestroyNotify
) bt_object_release
);
98 trace
->stream_classes
= g_ptr_array_new_with_free_func(
99 (GDestroyNotify
) bt_object_release
);
100 if (!trace
->clocks
|| !trace
->stream_classes
|| !trace
->streams
) {
104 /* Generate a trace UUID */
105 uuid_generate(trace
->uuid
);
106 if (init_trace_packet_header(trace
)) {
110 /* Create the environment array object */
111 trace
->environment
= bt_ctf_attributes_create();
112 if (!trace
->environment
) {
116 trace
->listeners
= g_ptr_array_new_with_free_func(
117 (GDestroyNotify
) g_free
);
118 if (!trace
->listeners
) {
129 const char *bt_ctf_trace_get_name(struct bt_ctf_trace
*trace
)
131 const char *name
= NULL
;
133 if (!trace
|| !trace
->name
) {
137 name
= trace
->name
->str
;
142 int bt_ctf_trace_set_name(struct bt_ctf_trace
*trace
, const char *name
)
146 if (!trace
|| !name
|| trace
->frozen
) {
151 trace
->name
= trace
->name
? g_string_assign(trace
->name
, name
) :
161 void bt_ctf_trace_destroy(struct bt_object
*obj
)
163 struct bt_ctf_trace
*trace
;
165 trace
= container_of(obj
, struct bt_ctf_trace
, base
);
166 if (trace
->environment
) {
167 bt_ctf_attributes_destroy(trace
->environment
);
171 g_string_free(trace
->name
, TRUE
);
175 g_ptr_array_free(trace
->clocks
, TRUE
);
178 if (trace
->streams
) {
179 g_ptr_array_free(trace
->streams
, TRUE
);
182 if (trace
->stream_classes
) {
183 g_ptr_array_free(trace
->stream_classes
, TRUE
);
186 if (trace
->listeners
) {
187 g_ptr_array_free(trace
->listeners
, TRUE
);
190 bt_put(trace
->packet_header_type
);
194 int bt_ctf_trace_set_environment_field(struct bt_ctf_trace
*trace
,
195 const char *name
, struct bt_value
*value
)
199 if (!trace
|| !name
|| !value
||
200 bt_ctf_validate_identifier(name
) ||
201 !(bt_value_is_integer(value
) || bt_value_is_string(value
))) {
206 if (strchr(name
, ' ')) {
213 * New environment fields may be added to a frozen trace,
214 * but existing fields may not be changed.
216 * The object passed is frozen like all other attributes.
218 struct bt_value
*attribute
=
219 bt_ctf_attributes_get_field_value_by_name(
220 trace
->environment
, name
);
228 bt_value_freeze(value
);
231 ret
= bt_ctf_attributes_set_field_value(trace
->environment
, name
,
238 int bt_ctf_trace_set_environment_field_string(struct bt_ctf_trace
*trace
,
239 const char *name
, const char *value
)
242 struct bt_value
*env_value_string_obj
= NULL
;
244 if (!trace
|| !name
|| !value
) {
251 * New environment fields may be added to a frozen trace,
252 * but existing fields may not be changed.
254 struct bt_value
*attribute
=
255 bt_ctf_attributes_get_field_value_by_name(
256 trace
->environment
, name
);
265 env_value_string_obj
= bt_value_string_create_init(value
);
267 if (!env_value_string_obj
) {
273 bt_value_freeze(env_value_string_obj
);
275 ret
= bt_ctf_trace_set_environment_field(trace
, name
,
276 env_value_string_obj
);
279 BT_PUT(env_value_string_obj
);
283 int bt_ctf_trace_set_environment_field_integer(struct bt_ctf_trace
*trace
,
284 const char *name
, int64_t value
)
287 struct bt_value
*env_value_integer_obj
= NULL
;
289 if (!trace
|| !name
) {
296 * New environment fields may be added to a frozen trace,
297 * but existing fields may not be changed.
299 struct bt_value
*attribute
=
300 bt_ctf_attributes_get_field_value_by_name(
301 trace
->environment
, name
);
310 env_value_integer_obj
= bt_value_integer_create_init(value
);
311 if (!env_value_integer_obj
) {
316 ret
= bt_ctf_trace_set_environment_field(trace
, name
,
317 env_value_integer_obj
);
319 bt_value_freeze(env_value_integer_obj
);
322 BT_PUT(env_value_integer_obj
);
326 int bt_ctf_trace_get_environment_field_count(struct bt_ctf_trace
*trace
)
335 ret
= bt_ctf_attributes_get_count(trace
->environment
);
342 bt_ctf_trace_get_environment_field_name(struct bt_ctf_trace
*trace
,
345 const char *ret
= NULL
;
351 ret
= bt_ctf_attributes_get_field_name(trace
->environment
, index
);
357 struct bt_value
*bt_ctf_trace_get_environment_field_value(
358 struct bt_ctf_trace
*trace
, int index
)
360 struct bt_value
*ret
= NULL
;
366 ret
= bt_ctf_attributes_get_field_value(trace
->environment
, index
);
372 struct bt_value
*bt_ctf_trace_get_environment_field_value_by_name(
373 struct bt_ctf_trace
*trace
, const char *name
)
375 struct bt_value
*ret
= NULL
;
377 if (!trace
|| !name
) {
381 ret
= bt_ctf_attributes_get_field_value_by_name(trace
->environment
,
388 int bt_ctf_trace_add_clock_class(struct bt_ctf_trace
*trace
,
389 struct bt_ctf_clock_class
*clock_class
)
392 struct search_query query
= { .value
= clock_class
, .found
= 0 };
394 if (!trace
|| !bt_ctf_clock_class_is_valid(clock_class
)) {
399 /* Check for duplicate clock classes */
400 g_ptr_array_foreach(trace
->clocks
, value_exists
, &query
);
407 g_ptr_array_add(trace
->clocks
, clock_class
);
410 bt_ctf_clock_class_freeze(clock_class
);
416 int bt_ctf_trace_get_clock_class_count(struct bt_ctf_trace
*trace
)
424 ret
= trace
->clocks
->len
;
429 struct bt_ctf_clock_class
*bt_ctf_trace_get_clock_class(
430 struct bt_ctf_trace
*trace
, int index
)
432 struct bt_ctf_clock_class
*clock_class
= NULL
;
434 if (!trace
|| index
< 0 || index
>= trace
->clocks
->len
) {
438 clock_class
= g_ptr_array_index(trace
->clocks
, index
);
444 int bt_ctf_trace_add_stream_class(struct bt_ctf_trace
*trace
,
445 struct bt_ctf_stream_class
*stream_class
)
449 struct bt_ctf_validation_output trace_sc_validation_output
= { 0 };
450 struct bt_ctf_validation_output
*ec_validation_outputs
= NULL
;
451 const enum bt_ctf_validation_flag trace_sc_validation_flags
=
452 BT_CTF_VALIDATION_FLAG_TRACE
|
453 BT_CTF_VALIDATION_FLAG_STREAM
;
454 const enum bt_ctf_validation_flag ec_validation_flags
=
455 BT_CTF_VALIDATION_FLAG_EVENT
;
456 struct bt_ctf_field_type
*packet_header_type
= NULL
;
457 struct bt_ctf_field_type
*packet_context_type
= NULL
;
458 struct bt_ctf_field_type
*event_header_type
= NULL
;
459 struct bt_ctf_field_type
*stream_event_ctx_type
= NULL
;
460 int event_class_count
;
461 struct bt_ctf_trace
*current_parent_trace
= NULL
;
463 if (!trace
|| !stream_class
) {
468 current_parent_trace
= bt_ctf_stream_class_get_trace(stream_class
);
469 if (current_parent_trace
) {
470 /* Stream class is already associated to a trace, abort. */
476 bt_ctf_stream_class_get_event_class_count(stream_class
);
477 assert(event_class_count
>= 0);
479 /* Check for duplicate stream classes */
480 for (i
= 0; i
< trace
->stream_classes
->len
; i
++) {
481 if (trace
->stream_classes
->pdata
[i
] == stream_class
) {
482 /* Stream class already registered to the trace */
488 if (stream_class
->clock
) {
489 struct bt_ctf_clock_class
*stream_clock_class
=
490 stream_class
->clock
->clock_class
;
492 if (trace
->is_created_by_writer
) {
494 * Make sure this clock was also added to the
495 * trace (potentially through its CTF writer
500 for (i
= 0; i
< trace
->clocks
->len
; i
++) {
501 if (trace
->clocks
->pdata
[i
] ==
502 stream_clock_class
) {
508 if (i
== trace
->clocks
->len
) {
515 * This trace was NOT created by a CTF writer,
516 * thus do not allow the stream class to add to
517 * have a clock at all. Those are two
518 * independent APIs (non-writer and writer
519 * APIs), and isolating them simplifies things.
527 * We're about to freeze both the trace and the stream class.
528 * Also, each event class contained in this stream class are
531 * This trace, this stream class, and all its event classes
532 * should be valid at this point.
534 * Validate trace and stream class first, then each event
535 * class of this stream class can be validated individually.
538 bt_ctf_trace_get_packet_header_type(trace
);
539 packet_context_type
=
540 bt_ctf_stream_class_get_packet_context_type(stream_class
);
542 bt_ctf_stream_class_get_event_header_type(stream_class
);
543 stream_event_ctx_type
=
544 bt_ctf_stream_class_get_event_context_type(stream_class
);
545 ret
= bt_ctf_validate_class_types(trace
->environment
,
546 packet_header_type
, packet_context_type
, event_header_type
,
547 stream_event_ctx_type
, NULL
, NULL
, trace
->valid
,
548 stream_class
->valid
, 1, &trace_sc_validation_output
,
549 trace_sc_validation_flags
);
550 BT_PUT(packet_header_type
);
551 BT_PUT(packet_context_type
);
552 BT_PUT(event_header_type
);
553 BT_PUT(stream_event_ctx_type
);
557 * This means something went wrong during the validation
558 * process, not that the objects are invalid.
563 if ((trace_sc_validation_output
.valid_flags
&
564 trace_sc_validation_flags
) !=
565 trace_sc_validation_flags
) {
566 /* Invalid trace/stream class */
571 if (event_class_count
> 0) {
572 ec_validation_outputs
= g_new0(struct bt_ctf_validation_output
,
574 if (!ec_validation_outputs
) {
580 /* Validate each event class individually */
581 for (i
= 0; i
< event_class_count
; i
++) {
582 struct bt_ctf_event_class
*event_class
=
583 bt_ctf_stream_class_get_event_class(stream_class
, i
);
584 struct bt_ctf_field_type
*event_context_type
= NULL
;
585 struct bt_ctf_field_type
*event_payload_type
= NULL
;
588 bt_ctf_event_class_get_context_type(event_class
);
590 bt_ctf_event_class_get_payload_type(event_class
);
593 * It is important to use the field types returned by
594 * the previous trace and stream class validation here
595 * because copies could have been made.
597 ret
= bt_ctf_validate_class_types(trace
->environment
,
598 trace_sc_validation_output
.packet_header_type
,
599 trace_sc_validation_output
.packet_context_type
,
600 trace_sc_validation_output
.event_header_type
,
601 trace_sc_validation_output
.stream_event_ctx_type
,
602 event_context_type
, event_payload_type
,
603 1, 1, event_class
->valid
, &ec_validation_outputs
[i
],
604 ec_validation_flags
);
605 BT_PUT(event_context_type
);
606 BT_PUT(event_payload_type
);
613 if ((ec_validation_outputs
[i
].valid_flags
&
614 ec_validation_flags
) != ec_validation_flags
) {
615 /* Invalid event class */
621 stream_id
= bt_ctf_stream_class_get_id(stream_class
);
623 stream_id
= trace
->next_stream_id
++;
625 /* Try to assign a new stream id */
626 for (i
= 0; i
< trace
->stream_classes
->len
; i
++) {
627 if (stream_id
== bt_ctf_stream_class_get_id(
628 trace
->stream_classes
->pdata
[i
])) {
629 /* Duplicate stream id found */
635 if (bt_ctf_stream_class_set_id_no_check(stream_class
,
637 /* TODO Should retry with a different stream id */
643 bt_object_set_parent(stream_class
, trace
);
644 g_ptr_array_add(trace
->stream_classes
, stream_class
);
647 * At this point we know that the function will be successful.
648 * Therefore we can replace the trace and stream class field
649 * types with what's in their validation output structure and
650 * mark them as valid. We can also replace the field types of
651 * all the event classes of the stream class and mark them as
654 bt_ctf_validation_replace_types(trace
, stream_class
, NULL
,
655 &trace_sc_validation_output
, trace_sc_validation_flags
);
657 stream_class
->valid
= 1;
660 * Put what was not moved in bt_ctf_validation_replace_types().
662 bt_ctf_validation_output_put_types(&trace_sc_validation_output
);
664 for (i
= 0; i
< event_class_count
; i
++) {
665 struct bt_ctf_event_class
*event_class
=
666 bt_ctf_stream_class_get_event_class(stream_class
, i
);
668 bt_ctf_validation_replace_types(NULL
, NULL
, event_class
,
669 &ec_validation_outputs
[i
], ec_validation_flags
);
670 event_class
->valid
= 1;
674 * Put what was not moved in
675 * bt_ctf_validation_replace_types().
677 bt_ctf_validation_output_put_types(&ec_validation_outputs
[i
]);
681 * Freeze the trace and the stream class.
683 bt_ctf_stream_class_freeze(stream_class
);
684 bt_ctf_trace_freeze(trace
);
686 /* Notifiy listeners of the trace's schema modification. */
687 bt_ctf_stream_class_visit(stream_class
,
688 bt_ctf_trace_object_modification
, trace
);
691 bt_object_set_parent(stream_class
, NULL
);
693 if (ec_validation_outputs
) {
694 for (i
= 0; i
< event_class_count
; i
++) {
695 bt_ctf_validation_output_put_types(
696 &ec_validation_outputs
[i
]);
701 g_free(ec_validation_outputs
);
702 bt_ctf_validation_output_put_types(&trace_sc_validation_output
);
703 bt_put(current_parent_trace
);
704 assert(!packet_header_type
);
705 assert(!packet_context_type
);
706 assert(!event_header_type
);
707 assert(!stream_event_ctx_type
);
712 int bt_ctf_trace_get_stream_class_count(struct bt_ctf_trace
*trace
)
721 ret
= trace
->stream_classes
->len
;
726 struct bt_ctf_stream_class
*bt_ctf_trace_get_stream_class(
727 struct bt_ctf_trace
*trace
, int index
)
729 struct bt_ctf_stream_class
*stream_class
= NULL
;
731 if (!trace
|| index
< 0 || index
>= trace
->stream_classes
->len
) {
735 stream_class
= g_ptr_array_index(trace
->stream_classes
, index
);
736 bt_get(stream_class
);
741 struct bt_ctf_stream_class
*bt_ctf_trace_get_stream_class_by_id(
742 struct bt_ctf_trace
*trace
, uint32_t id
)
745 struct bt_ctf_stream_class
*stream_class
= NULL
;
751 for (i
= 0; i
< trace
->stream_classes
->len
; i
++) {
752 struct bt_ctf_stream_class
*stream_class_candidate
;
754 stream_class_candidate
=
755 g_ptr_array_index(trace
->stream_classes
, i
);
757 if (bt_ctf_stream_class_get_id(stream_class_candidate
) ==
759 stream_class
= stream_class_candidate
;
760 bt_get(stream_class
);
769 struct bt_ctf_clock_class
*bt_ctf_trace_get_clock_class_by_name(
770 struct bt_ctf_trace
*trace
, const char *name
)
773 struct bt_ctf_clock_class
*clock_class
= NULL
;
775 if (!trace
|| !name
) {
779 for (i
= 0; i
< trace
->clocks
->len
; i
++) {
780 struct bt_ctf_clock_class
*cur_clk
=
781 g_ptr_array_index(trace
->clocks
, i
);
782 const char *cur_clk_name
= bt_ctf_clock_class_get_name(cur_clk
);
788 if (!strcmp(cur_clk_name
, name
)) {
789 clock_class
= cur_clk
;
800 const char *get_byte_order_string(enum bt_ctf_byte_order byte_order
)
804 switch (byte_order
) {
805 case BT_CTF_BYTE_ORDER_LITTLE_ENDIAN
:
808 case BT_CTF_BYTE_ORDER_BIG_ENDIAN
:
811 case BT_CTF_BYTE_ORDER_NATIVE
:
822 int append_trace_metadata(struct bt_ctf_trace
*trace
,
823 struct metadata_context
*context
)
825 unsigned char *uuid
= trace
->uuid
;
828 g_string_append(context
->string
, "trace {\n");
830 g_string_append(context
->string
, "\tmajor = 1;\n");
831 g_string_append(context
->string
, "\tminor = 8;\n");
832 assert(trace
->native_byte_order
== BT_CTF_BYTE_ORDER_LITTLE_ENDIAN
||
833 trace
->native_byte_order
== BT_CTF_BYTE_ORDER_BIG_ENDIAN
||
834 trace
->native_byte_order
== BT_CTF_BYTE_ORDER_NETWORK
);
835 g_string_append_printf(context
->string
,
836 "\tuuid = \"%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x\";\n",
837 uuid
[0], uuid
[1], uuid
[2], uuid
[3],
838 uuid
[4], uuid
[5], uuid
[6], uuid
[7],
839 uuid
[8], uuid
[9], uuid
[10], uuid
[11],
840 uuid
[12], uuid
[13], uuid
[14], uuid
[15]);
841 g_string_append_printf(context
->string
, "\tbyte_order = %s;\n",
842 get_byte_order_string(trace
->native_byte_order
));
844 g_string_append(context
->string
, "\tpacket.header := ");
845 context
->current_indentation_level
++;
846 g_string_assign(context
->field_name
, "");
847 ret
= bt_ctf_field_type_serialize(trace
->packet_header_type
,
852 context
->current_indentation_level
--;
854 g_string_append(context
->string
, ";\n};\n\n");
860 void append_env_metadata(struct bt_ctf_trace
*trace
,
861 struct metadata_context
*context
)
866 env_size
= bt_ctf_attributes_get_count(trace
->environment
);
872 g_string_append(context
->string
, "env {\n");
874 for (i
= 0; i
< env_size
; i
++) {
875 struct bt_value
*env_field_value_obj
= NULL
;
876 const char *entry_name
;
878 entry_name
= bt_ctf_attributes_get_field_name(
879 trace
->environment
, i
);
880 env_field_value_obj
= bt_ctf_attributes_get_field_value(
881 trace
->environment
, i
);
883 if (!entry_name
|| !env_field_value_obj
) {
887 switch (bt_value_get_type(env_field_value_obj
)) {
888 case BT_VALUE_TYPE_INTEGER
:
893 ret
= bt_value_integer_get(env_field_value_obj
,
900 g_string_append_printf(context
->string
,
901 "\t%s = %" PRId64
";\n", entry_name
,
905 case BT_VALUE_TYPE_STRING
:
908 const char *str_value
;
909 char *escaped_str
= NULL
;
911 ret
= bt_value_string_get(env_field_value_obj
,
918 escaped_str
= g_strescape(str_value
, NULL
);
924 g_string_append_printf(context
->string
,
925 "\t%s = \"%s\";\n", entry_name
, escaped_str
);
935 BT_PUT(env_field_value_obj
);
938 g_string_append(context
->string
, "};\n\n");
941 char *bt_ctf_trace_get_metadata_string(struct bt_ctf_trace
*trace
)
943 char *metadata
= NULL
;
944 struct metadata_context
*context
= NULL
;
952 context
= g_new0(struct metadata_context
, 1);
957 context
->field_name
= g_string_sized_new(DEFAULT_IDENTIFIER_SIZE
);
958 context
->string
= g_string_sized_new(DEFAULT_METADATA_STRING_SIZE
);
959 g_string_append(context
->string
, "/* CTF 1.8 */\n\n");
960 if (append_trace_metadata(trace
, context
)) {
963 append_env_metadata(trace
, context
);
964 g_ptr_array_foreach(trace
->clocks
,
965 (GFunc
)bt_ctf_clock_class_serialize
, context
);
967 for (i
= 0; i
< trace
->stream_classes
->len
; i
++) {
968 err
= bt_ctf_stream_class_serialize(
969 trace
->stream_classes
->pdata
[i
], context
);
975 metadata
= context
->string
->str
;
977 g_string_free(context
->string
, err
? TRUE
: FALSE
);
978 g_string_free(context
->field_name
, TRUE
);
984 enum bt_ctf_byte_order
bt_ctf_trace_get_byte_order(struct bt_ctf_trace
*trace
)
986 enum bt_ctf_byte_order ret
= BT_CTF_BYTE_ORDER_UNKNOWN
;
992 ret
= trace
->native_byte_order
;
998 int bt_ctf_trace_set_byte_order(struct bt_ctf_trace
*trace
,
999 enum bt_ctf_byte_order byte_order
)
1003 if (!trace
|| trace
->frozen
) {
1008 if (byte_order
!= BT_CTF_BYTE_ORDER_LITTLE_ENDIAN
&&
1009 byte_order
!= BT_CTF_BYTE_ORDER_BIG_ENDIAN
&&
1010 byte_order
!= BT_CTF_BYTE_ORDER_NETWORK
) {
1015 trace
->native_byte_order
= byte_order
;
1021 struct bt_ctf_field_type
*bt_ctf_trace_get_packet_header_type(
1022 struct bt_ctf_trace
*trace
)
1024 struct bt_ctf_field_type
*field_type
= NULL
;
1030 bt_get(trace
->packet_header_type
);
1031 field_type
= trace
->packet_header_type
;
1036 int bt_ctf_trace_set_packet_header_type(struct bt_ctf_trace
*trace
,
1037 struct bt_ctf_field_type
*packet_header_type
)
1041 if (!trace
|| trace
->frozen
) {
1046 /* packet_header_type must be a structure. */
1047 if (packet_header_type
&&
1048 bt_ctf_field_type_get_type_id(packet_header_type
) !=
1049 BT_CTF_TYPE_ID_STRUCT
) {
1054 bt_put(trace
->packet_header_type
);
1055 trace
->packet_header_type
= bt_get(packet_header_type
);
1061 int get_stream_class_count(void *element
)
1063 return bt_ctf_trace_get_stream_class_count(
1064 (struct bt_ctf_trace
*) element
);
1068 void *get_stream_class(void *element
, int i
)
1070 return bt_ctf_trace_get_stream_class(
1071 (struct bt_ctf_trace
*) element
, i
);
1075 int visit_stream_class(void *object
, bt_ctf_visitor visitor
,void *data
)
1077 return bt_ctf_stream_class_visit(object
, visitor
, data
);
1080 int bt_ctf_trace_visit(struct bt_ctf_trace
*trace
,
1081 bt_ctf_visitor visitor
, void *data
)
1084 struct bt_ctf_object obj
=
1085 { .object
= trace
, .type
= BT_CTF_OBJECT_TYPE_TRACE
};
1087 if (!trace
|| !visitor
) {
1092 ret
= visitor_helper(&obj
, get_stream_class_count
,
1093 get_stream_class
, visit_stream_class
, visitor
, data
);
1099 int invoke_listener(struct bt_ctf_object
*object
, void *data
)
1101 struct listener_wrapper
*listener_wrapper
= data
;
1103 listener_wrapper
->listener(object
, listener_wrapper
->data
);
1107 int bt_ctf_trace_add_listener(struct bt_ctf_trace
*trace
,
1108 bt_ctf_listener_cb listener
, void *listener_data
)
1111 struct listener_wrapper
*listener_wrapper
=
1112 g_new0(struct listener_wrapper
, 1);
1114 if (!trace
|| !listener
|| !listener_wrapper
) {
1119 listener_wrapper
->listener
= listener
;
1120 listener_wrapper
->data
= listener_data
;
1122 /* Visit the current schema. */
1123 ret
= bt_ctf_trace_visit(trace
, invoke_listener
, listener_wrapper
);
1129 * Add listener to the array of callbacks which will be invoked on
1132 g_ptr_array_add(trace
->listeners
, listener_wrapper
);
1135 g_free(listener_wrapper
);
1140 int bt_ctf_trace_object_modification(struct bt_ctf_object
*object
,
1144 struct bt_ctf_trace
*trace
= trace_ptr
;
1149 if (trace
->listeners
->len
== 0) {
1153 for (i
= 0; i
< trace
->listeners
->len
; i
++) {
1154 struct listener_wrapper
*listener
=
1155 g_ptr_array_index(trace
->listeners
, i
);
1157 listener
->listener(object
, listener
->data
);
1164 struct bt_ctf_field_type
*get_field_type(enum field_type_alias alias
)
1167 unsigned int alignment
, size
;
1168 struct bt_ctf_field_type
*field_type
= NULL
;
1170 if (alias
>= NR_FIELD_TYPE_ALIAS
) {
1174 alignment
= field_type_aliases_alignments
[alias
];
1175 size
= field_type_aliases_sizes
[alias
];
1176 field_type
= bt_ctf_field_type_integer_create(size
);
1177 ret
= bt_ctf_field_type_set_alignment(field_type
, alignment
);
1186 void bt_ctf_trace_freeze(struct bt_ctf_trace
*trace
)
1190 bt_ctf_field_type_freeze(trace
->packet_header_type
);
1191 bt_ctf_attributes_freeze(trace
->environment
);
1193 for (i
= 0; i
< trace
->clocks
->len
; i
++) {
1194 struct bt_ctf_clock_class
*clock_class
=
1195 g_ptr_array_index(trace
->clocks
, i
);
1197 bt_ctf_clock_class_freeze(clock_class
);
1204 int init_trace_packet_header(struct bt_ctf_trace
*trace
)
1207 struct bt_ctf_field
*magic
= NULL
, *uuid_array
= NULL
;
1208 struct bt_ctf_field_type
*_uint32_t
=
1209 get_field_type(FIELD_TYPE_ALIAS_UINT32_T
);
1210 struct bt_ctf_field_type
*_uint8_t
=
1211 get_field_type(FIELD_TYPE_ALIAS_UINT8_T
);
1212 struct bt_ctf_field_type
*trace_packet_header_type
=
1213 bt_ctf_field_type_structure_create();
1214 struct bt_ctf_field_type
*uuid_array_type
=
1215 bt_ctf_field_type_array_create(_uint8_t
, 16);
1217 if (!trace_packet_header_type
|| !uuid_array_type
) {
1222 ret
= bt_ctf_field_type_structure_add_field(trace_packet_header_type
,
1223 _uint32_t
, "magic");
1228 ret
= bt_ctf_field_type_structure_add_field(trace_packet_header_type
,
1229 uuid_array_type
, "uuid");
1234 ret
= bt_ctf_field_type_structure_add_field(trace_packet_header_type
,
1235 _uint32_t
, "stream_id");
1240 ret
= bt_ctf_trace_set_packet_header_type(trace
,
1241 trace_packet_header_type
);
1246 bt_put(uuid_array_type
);
1251 bt_put(trace_packet_header_type
);