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/compiler-internal.h>
44 #include <babeltrace/values.h>
45 #include <babeltrace/ref.h>
46 #include <babeltrace/endian-internal.h>
51 #define DEFAULT_IDENTIFIER_SIZE 128
52 #define DEFAULT_METADATA_STRING_SIZE 4096
54 struct listener_wrapper
{
55 bt_ctf_listener_cb listener
;
60 void bt_ctf_trace_destroy(struct bt_object
*obj
);
62 int init_trace_packet_header(struct bt_ctf_trace
*trace
);
64 void bt_ctf_trace_freeze(struct bt_ctf_trace
*trace
);
67 const unsigned int field_type_aliases_alignments
[] = {
68 [FIELD_TYPE_ALIAS_UINT5_T
] = 1,
69 [FIELD_TYPE_ALIAS_UINT8_T
... FIELD_TYPE_ALIAS_UINT16_T
] = 8,
70 [FIELD_TYPE_ALIAS_UINT27_T
] = 1,
71 [FIELD_TYPE_ALIAS_UINT32_T
... FIELD_TYPE_ALIAS_UINT64_T
] = 8,
75 const unsigned int field_type_aliases_sizes
[] = {
76 [FIELD_TYPE_ALIAS_UINT5_T
] = 5,
77 [FIELD_TYPE_ALIAS_UINT8_T
] = 8,
78 [FIELD_TYPE_ALIAS_UINT16_T
] = 16,
79 [FIELD_TYPE_ALIAS_UINT27_T
] = 27,
80 [FIELD_TYPE_ALIAS_UINT32_T
] = 32,
81 [FIELD_TYPE_ALIAS_UINT64_T
] = 64,
84 struct bt_ctf_trace
*bt_ctf_trace_create(void)
86 struct bt_ctf_trace
*trace
= NULL
;
88 trace
= g_new0(struct bt_ctf_trace
, 1);
93 trace
->native_byte_order
= BT_CTF_BYTE_ORDER_NATIVE
;
94 bt_object_init(trace
, bt_ctf_trace_destroy
);
95 trace
->clocks
= g_ptr_array_new_with_free_func(
96 (GDestroyNotify
) bt_put
);
97 trace
->streams
= g_ptr_array_new_with_free_func(
98 (GDestroyNotify
) bt_object_release
);
99 trace
->stream_classes
= g_ptr_array_new_with_free_func(
100 (GDestroyNotify
) bt_object_release
);
101 if (!trace
->clocks
|| !trace
->stream_classes
|| !trace
->streams
) {
105 if (init_trace_packet_header(trace
)) {
109 /* Create the environment array object */
110 trace
->environment
= bt_ctf_attributes_create();
111 if (!trace
->environment
) {
115 trace
->listeners
= g_ptr_array_new_with_free_func(
116 (GDestroyNotify
) g_free
);
117 if (!trace
->listeners
) {
128 const char *bt_ctf_trace_get_name(struct bt_ctf_trace
*trace
)
130 const char *name
= NULL
;
132 if (!trace
|| !trace
->name
) {
136 name
= trace
->name
->str
;
141 int bt_ctf_trace_set_name(struct bt_ctf_trace
*trace
, const char *name
)
145 if (!trace
|| !name
|| trace
->frozen
) {
150 trace
->name
= trace
->name
? g_string_assign(trace
->name
, name
) :
160 const unsigned char *bt_ctf_trace_get_uuid(struct bt_ctf_trace
*trace
)
162 return trace
&& trace
->uuid_set
? trace
->uuid
: NULL
;
165 int bt_ctf_trace_set_uuid(struct bt_ctf_trace
*trace
, const unsigned char *uuid
)
169 if (!trace
|| !uuid
|| trace
->frozen
) {
174 memcpy(trace
->uuid
, uuid
, sizeof(uuid_t
));
175 trace
->uuid_set
= true;
181 void bt_ctf_trace_destroy(struct bt_object
*obj
)
183 struct bt_ctf_trace
*trace
;
185 trace
= container_of(obj
, struct bt_ctf_trace
, base
);
186 if (trace
->environment
) {
187 bt_ctf_attributes_destroy(trace
->environment
);
191 g_string_free(trace
->name
, TRUE
);
195 g_ptr_array_free(trace
->clocks
, TRUE
);
198 if (trace
->streams
) {
199 g_ptr_array_free(trace
->streams
, TRUE
);
202 if (trace
->stream_classes
) {
203 g_ptr_array_free(trace
->stream_classes
, TRUE
);
206 if (trace
->listeners
) {
207 g_ptr_array_free(trace
->listeners
, TRUE
);
210 bt_put(trace
->packet_header_type
);
214 int bt_ctf_trace_set_environment_field(struct bt_ctf_trace
*trace
,
215 const char *name
, struct bt_value
*value
)
219 if (!trace
|| !name
|| !value
||
220 bt_ctf_validate_identifier(name
) ||
221 !(bt_value_is_integer(value
) || bt_value_is_string(value
))) {
226 if (strchr(name
, ' ')) {
233 * New environment fields may be added to a frozen trace,
234 * but existing fields may not be changed.
236 * The object passed is frozen like all other attributes.
238 struct bt_value
*attribute
=
239 bt_ctf_attributes_get_field_value_by_name(
240 trace
->environment
, name
);
248 bt_value_freeze(value
);
251 ret
= bt_ctf_attributes_set_field_value(trace
->environment
, name
,
258 int bt_ctf_trace_set_environment_field_string(struct bt_ctf_trace
*trace
,
259 const char *name
, const char *value
)
262 struct bt_value
*env_value_string_obj
= NULL
;
264 if (!trace
|| !name
|| !value
) {
271 * New environment fields may be added to a frozen trace,
272 * but existing fields may not be changed.
274 struct bt_value
*attribute
=
275 bt_ctf_attributes_get_field_value_by_name(
276 trace
->environment
, name
);
285 env_value_string_obj
= bt_value_string_create_init(value
);
287 if (!env_value_string_obj
) {
293 bt_value_freeze(env_value_string_obj
);
295 ret
= bt_ctf_trace_set_environment_field(trace
, name
,
296 env_value_string_obj
);
299 BT_PUT(env_value_string_obj
);
303 int bt_ctf_trace_set_environment_field_integer(struct bt_ctf_trace
*trace
,
304 const char *name
, int64_t value
)
307 struct bt_value
*env_value_integer_obj
= NULL
;
309 if (!trace
|| !name
) {
316 * New environment fields may be added to a frozen trace,
317 * but existing fields may not be changed.
319 struct bt_value
*attribute
=
320 bt_ctf_attributes_get_field_value_by_name(
321 trace
->environment
, name
);
330 env_value_integer_obj
= bt_value_integer_create_init(value
);
331 if (!env_value_integer_obj
) {
336 ret
= bt_ctf_trace_set_environment_field(trace
, name
,
337 env_value_integer_obj
);
339 bt_value_freeze(env_value_integer_obj
);
342 BT_PUT(env_value_integer_obj
);
346 int64_t bt_ctf_trace_get_environment_field_count(struct bt_ctf_trace
*trace
)
355 ret
= bt_ctf_attributes_get_count(trace
->environment
);
362 bt_ctf_trace_get_environment_field_name_by_index(struct bt_ctf_trace
*trace
,
365 const char *ret
= NULL
;
371 ret
= bt_ctf_attributes_get_field_name(trace
->environment
, index
);
377 struct bt_value
*bt_ctf_trace_get_environment_field_value_by_index(
378 struct bt_ctf_trace
*trace
, uint64_t index
)
380 struct bt_value
*ret
= NULL
;
386 ret
= bt_ctf_attributes_get_field_value(trace
->environment
, index
);
392 struct bt_value
*bt_ctf_trace_get_environment_field_value_by_name(
393 struct bt_ctf_trace
*trace
, const char *name
)
395 struct bt_value
*ret
= NULL
;
397 if (!trace
|| !name
) {
401 ret
= bt_ctf_attributes_get_field_value_by_name(trace
->environment
,
408 int bt_ctf_trace_add_clock_class(struct bt_ctf_trace
*trace
,
409 struct bt_ctf_clock_class
*clock_class
)
413 if (!trace
|| trace
->is_static
||
414 !bt_ctf_clock_class_is_valid(clock_class
)) {
419 /* Check for duplicate clock classes */
420 if (bt_ctf_trace_has_clock_class(trace
, clock_class
)) {
426 g_ptr_array_add(trace
->clocks
, clock_class
);
429 bt_ctf_clock_class_freeze(clock_class
);
435 int64_t bt_ctf_trace_get_clock_class_count(struct bt_ctf_trace
*trace
)
437 int64_t ret
= (int64_t) -1;
443 ret
= trace
->clocks
->len
;
448 struct bt_ctf_clock_class
*bt_ctf_trace_get_clock_class_by_index(
449 struct bt_ctf_trace
*trace
, uint64_t index
)
451 struct bt_ctf_clock_class
*clock_class
= NULL
;
453 if (!trace
|| index
>= trace
->clocks
->len
) {
457 clock_class
= g_ptr_array_index(trace
->clocks
, index
);
463 int bt_ctf_trace_add_stream_class(struct bt_ctf_trace
*trace
,
464 struct bt_ctf_stream_class
*stream_class
)
469 struct bt_ctf_validation_output trace_sc_validation_output
= { 0 };
470 struct bt_ctf_validation_output
*ec_validation_outputs
= NULL
;
471 const enum bt_ctf_validation_flag trace_sc_validation_flags
=
472 BT_CTF_VALIDATION_FLAG_TRACE
|
473 BT_CTF_VALIDATION_FLAG_STREAM
;
474 const enum bt_ctf_validation_flag ec_validation_flags
=
475 BT_CTF_VALIDATION_FLAG_EVENT
;
476 struct bt_ctf_field_type
*packet_header_type
= NULL
;
477 struct bt_ctf_field_type
*packet_context_type
= NULL
;
478 struct bt_ctf_field_type
*event_header_type
= NULL
;
479 struct bt_ctf_field_type
*stream_event_ctx_type
= NULL
;
480 int64_t event_class_count
;
481 struct bt_ctf_trace
*current_parent_trace
= NULL
;
483 if (!trace
|| !stream_class
|| trace
->is_static
) {
489 * At the end of this function we freeze the trace, so its
490 * native byte order must NOT be BT_CTF_BYTE_ORDER_NATIVE.
492 if (trace
->native_byte_order
== BT_CTF_BYTE_ORDER_NATIVE
) {
497 current_parent_trace
= bt_ctf_stream_class_get_trace(stream_class
);
498 if (current_parent_trace
) {
499 /* Stream class is already associated to a trace, abort. */
505 bt_ctf_stream_class_get_event_class_count(stream_class
);
506 assert(event_class_count
>= 0);
508 /* Check for duplicate stream classes */
509 for (i
= 0; i
< trace
->stream_classes
->len
; i
++) {
510 if (trace
->stream_classes
->pdata
[i
] == stream_class
) {
511 /* Stream class already registered to the trace */
517 if (stream_class
->clock
) {
518 struct bt_ctf_clock_class
*stream_clock_class
=
519 stream_class
->clock
->clock_class
;
521 if (trace
->is_created_by_writer
) {
523 * Make sure this clock was also added to the
524 * trace (potentially through its CTF writer
529 for (i
= 0; i
< trace
->clocks
->len
; i
++) {
530 if (trace
->clocks
->pdata
[i
] ==
531 stream_clock_class
) {
537 if (i
== trace
->clocks
->len
) {
544 * This trace was NOT created by a CTF writer,
545 * thus do not allow the stream class to add to
546 * have a clock at all. Those are two
547 * independent APIs (non-writer and writer
548 * APIs), and isolating them simplifies things.
556 * We're about to freeze both the trace and the stream class.
557 * Also, each event class contained in this stream class are
560 * This trace, this stream class, and all its event classes
561 * should be valid at this point.
563 * Validate trace and stream class first, then each event
564 * class of this stream class can be validated individually.
567 bt_ctf_trace_get_packet_header_type(trace
);
568 packet_context_type
=
569 bt_ctf_stream_class_get_packet_context_type(stream_class
);
571 bt_ctf_stream_class_get_event_header_type(stream_class
);
572 stream_event_ctx_type
=
573 bt_ctf_stream_class_get_event_context_type(stream_class
);
574 ret
= bt_ctf_validate_class_types(trace
->environment
,
575 packet_header_type
, packet_context_type
, event_header_type
,
576 stream_event_ctx_type
, NULL
, NULL
, trace
->valid
,
577 stream_class
->valid
, 1, &trace_sc_validation_output
,
578 trace_sc_validation_flags
);
579 BT_PUT(packet_header_type
);
580 BT_PUT(packet_context_type
);
581 BT_PUT(event_header_type
);
582 BT_PUT(stream_event_ctx_type
);
586 * This means something went wrong during the validation
587 * process, not that the objects are invalid.
592 if ((trace_sc_validation_output
.valid_flags
&
593 trace_sc_validation_flags
) !=
594 trace_sc_validation_flags
) {
595 /* Invalid trace/stream class */
600 if (event_class_count
> 0) {
601 ec_validation_outputs
= g_new0(struct bt_ctf_validation_output
,
603 if (!ec_validation_outputs
) {
609 /* Validate each event class individually */
610 for (i
= 0; i
< event_class_count
; i
++) {
611 struct bt_ctf_event_class
*event_class
=
612 bt_ctf_stream_class_get_event_class_by_index(
614 struct bt_ctf_field_type
*event_context_type
= NULL
;
615 struct bt_ctf_field_type
*event_payload_type
= NULL
;
618 bt_ctf_event_class_get_context_type(event_class
);
620 bt_ctf_event_class_get_payload_type(event_class
);
623 * It is important to use the field types returned by
624 * the previous trace and stream class validation here
625 * because copies could have been made.
627 ret
= bt_ctf_validate_class_types(trace
->environment
,
628 trace_sc_validation_output
.packet_header_type
,
629 trace_sc_validation_output
.packet_context_type
,
630 trace_sc_validation_output
.event_header_type
,
631 trace_sc_validation_output
.stream_event_ctx_type
,
632 event_context_type
, event_payload_type
,
633 1, 1, event_class
->valid
, &ec_validation_outputs
[i
],
634 ec_validation_flags
);
635 BT_PUT(event_context_type
);
636 BT_PUT(event_payload_type
);
643 if ((ec_validation_outputs
[i
].valid_flags
&
644 ec_validation_flags
) != ec_validation_flags
) {
645 /* Invalid event class */
651 stream_id
= bt_ctf_stream_class_get_id(stream_class
);
653 stream_id
= trace
->next_stream_id
++;
659 /* Try to assign a new stream id */
660 for (i
= 0; i
< trace
->stream_classes
->len
; i
++) {
661 if (stream_id
== bt_ctf_stream_class_get_id(
662 trace
->stream_classes
->pdata
[i
])) {
663 /* Duplicate stream id found */
669 if (bt_ctf_stream_class_set_id_no_check(stream_class
,
671 /* TODO Should retry with a different stream id */
677 bt_object_set_parent(stream_class
, trace
);
678 g_ptr_array_add(trace
->stream_classes
, stream_class
);
681 * At this point we know that the function will be successful.
682 * Therefore we can replace the trace and stream class field
683 * types with what's in their validation output structure and
684 * mark them as valid. We can also replace the field types of
685 * all the event classes of the stream class and mark them as
688 bt_ctf_validation_replace_types(trace
, stream_class
, NULL
,
689 &trace_sc_validation_output
, trace_sc_validation_flags
);
691 stream_class
->valid
= 1;
694 * Put what was not moved in bt_ctf_validation_replace_types().
696 bt_ctf_validation_output_put_types(&trace_sc_validation_output
);
698 for (i
= 0; i
< event_class_count
; i
++) {
699 struct bt_ctf_event_class
*event_class
=
700 bt_ctf_stream_class_get_event_class_by_index(
703 bt_ctf_validation_replace_types(NULL
, NULL
, event_class
,
704 &ec_validation_outputs
[i
], ec_validation_flags
);
705 event_class
->valid
= 1;
709 * Put what was not moved in
710 * bt_ctf_validation_replace_types().
712 bt_ctf_validation_output_put_types(&ec_validation_outputs
[i
]);
716 * Freeze the trace and the stream class.
718 bt_ctf_stream_class_freeze(stream_class
);
719 bt_ctf_trace_freeze(trace
);
721 /* Notifiy listeners of the trace's schema modification. */
722 bt_ctf_stream_class_visit(stream_class
,
723 bt_ctf_trace_object_modification
, trace
);
726 bt_object_set_parent(stream_class
, NULL
);
728 if (ec_validation_outputs
) {
729 for (i
= 0; i
< event_class_count
; i
++) {
730 bt_ctf_validation_output_put_types(
731 &ec_validation_outputs
[i
]);
736 g_free(ec_validation_outputs
);
737 bt_ctf_validation_output_put_types(&trace_sc_validation_output
);
738 bt_put(current_parent_trace
);
739 assert(!packet_header_type
);
740 assert(!packet_context_type
);
741 assert(!event_header_type
);
742 assert(!stream_event_ctx_type
);
747 int64_t bt_ctf_trace_get_stream_count(struct bt_ctf_trace
*trace
)
756 ret
= (int64_t) trace
->streams
->len
;
762 struct bt_ctf_stream
*bt_ctf_trace_get_stream_by_index(
763 struct bt_ctf_trace
*trace
,
766 struct bt_ctf_stream
*stream
= NULL
;
768 if (!trace
|| index
>= trace
->streams
->len
) {
772 stream
= bt_get(g_ptr_array_index(trace
->streams
, index
));
778 int64_t bt_ctf_trace_get_stream_class_count(struct bt_ctf_trace
*trace
)
787 ret
= (int64_t) trace
->stream_classes
->len
;
792 struct bt_ctf_stream_class
*bt_ctf_trace_get_stream_class_by_index(
793 struct bt_ctf_trace
*trace
, uint64_t index
)
795 struct bt_ctf_stream_class
*stream_class
= NULL
;
797 if (!trace
|| index
>= trace
->stream_classes
->len
) {
801 stream_class
= g_ptr_array_index(trace
->stream_classes
, index
);
802 bt_get(stream_class
);
807 struct bt_ctf_stream_class
*bt_ctf_trace_get_stream_class_by_id(
808 struct bt_ctf_trace
*trace
, uint64_t id_param
)
811 struct bt_ctf_stream_class
*stream_class
= NULL
;
812 int64_t id
= (int64_t) id_param
;
814 if (!trace
|| id
< 0) {
818 for (i
= 0; i
< trace
->stream_classes
->len
; i
++) {
819 struct bt_ctf_stream_class
*stream_class_candidate
;
821 stream_class_candidate
=
822 g_ptr_array_index(trace
->stream_classes
, i
);
824 if (bt_ctf_stream_class_get_id(stream_class_candidate
) ==
826 stream_class
= stream_class_candidate
;
827 bt_get(stream_class
);
836 struct bt_ctf_clock_class
*bt_ctf_trace_get_clock_class_by_name(
837 struct bt_ctf_trace
*trace
, const char *name
)
840 struct bt_ctf_clock_class
*clock_class
= NULL
;
842 if (!trace
|| !name
) {
846 for (i
= 0; i
< trace
->clocks
->len
; i
++) {
847 struct bt_ctf_clock_class
*cur_clk
=
848 g_ptr_array_index(trace
->clocks
, i
);
849 const char *cur_clk_name
= bt_ctf_clock_class_get_name(cur_clk
);
855 if (!strcmp(cur_clk_name
, name
)) {
856 clock_class
= cur_clk
;
867 bool bt_ctf_trace_has_clock_class(struct bt_ctf_trace
*trace
,
868 struct bt_ctf_clock_class
*clock_class
)
870 struct search_query query
= { .value
= clock_class
, .found
= 0 };
875 g_ptr_array_foreach(trace
->clocks
, value_exists
, &query
);
880 const char *get_byte_order_string(enum bt_ctf_byte_order byte_order
)
884 switch (byte_order
) {
885 case BT_CTF_BYTE_ORDER_LITTLE_ENDIAN
:
888 case BT_CTF_BYTE_ORDER_BIG_ENDIAN
:
891 case BT_CTF_BYTE_ORDER_NATIVE
:
902 int append_trace_metadata(struct bt_ctf_trace
*trace
,
903 struct metadata_context
*context
)
905 unsigned char *uuid
= trace
->uuid
;
908 if (trace
->native_byte_order
== BT_CTF_BYTE_ORDER_NATIVE
) {
913 g_string_append(context
->string
, "trace {\n");
914 g_string_append(context
->string
, "\tmajor = 1;\n");
915 g_string_append(context
->string
, "\tminor = 8;\n");
916 assert(trace
->native_byte_order
== BT_CTF_BYTE_ORDER_LITTLE_ENDIAN
||
917 trace
->native_byte_order
== BT_CTF_BYTE_ORDER_BIG_ENDIAN
||
918 trace
->native_byte_order
== BT_CTF_BYTE_ORDER_NETWORK
);
920 if (trace
->uuid_set
) {
921 g_string_append_printf(context
->string
,
922 "\tuuid = \"%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x\";\n",
923 uuid
[0], uuid
[1], uuid
[2], uuid
[3],
924 uuid
[4], uuid
[5], uuid
[6], uuid
[7],
925 uuid
[8], uuid
[9], uuid
[10], uuid
[11],
926 uuid
[12], uuid
[13], uuid
[14], uuid
[15]);
929 g_string_append_printf(context
->string
, "\tbyte_order = %s;\n",
930 get_byte_order_string(trace
->native_byte_order
));
932 g_string_append(context
->string
, "\tpacket.header := ");
933 context
->current_indentation_level
++;
934 g_string_assign(context
->field_name
, "");
935 ret
= bt_ctf_field_type_serialize(trace
->packet_header_type
,
940 context
->current_indentation_level
--;
942 g_string_append(context
->string
, ";\n};\n\n");
948 void append_env_metadata(struct bt_ctf_trace
*trace
,
949 struct metadata_context
*context
)
954 env_size
= bt_ctf_attributes_get_count(trace
->environment
);
960 g_string_append(context
->string
, "env {\n");
962 for (i
= 0; i
< env_size
; i
++) {
963 struct bt_value
*env_field_value_obj
= NULL
;
964 const char *entry_name
;
966 entry_name
= bt_ctf_attributes_get_field_name(
967 trace
->environment
, i
);
968 env_field_value_obj
= bt_ctf_attributes_get_field_value(
969 trace
->environment
, i
);
971 if (!entry_name
|| !env_field_value_obj
) {
975 switch (bt_value_get_type(env_field_value_obj
)) {
976 case BT_VALUE_TYPE_INTEGER
:
981 ret
= bt_value_integer_get(env_field_value_obj
,
988 g_string_append_printf(context
->string
,
989 "\t%s = %" PRId64
";\n", entry_name
,
993 case BT_VALUE_TYPE_STRING
:
996 const char *str_value
;
997 char *escaped_str
= NULL
;
999 ret
= bt_value_string_get(env_field_value_obj
,
1006 escaped_str
= g_strescape(str_value
, NULL
);
1012 g_string_append_printf(context
->string
,
1013 "\t%s = \"%s\";\n", entry_name
, escaped_str
);
1023 BT_PUT(env_field_value_obj
);
1026 g_string_append(context
->string
, "};\n\n");
1029 char *bt_ctf_trace_get_metadata_string(struct bt_ctf_trace
*trace
)
1031 char *metadata
= NULL
;
1032 struct metadata_context
*context
= NULL
;
1040 context
= g_new0(struct metadata_context
, 1);
1045 context
->field_name
= g_string_sized_new(DEFAULT_IDENTIFIER_SIZE
);
1046 context
->string
= g_string_sized_new(DEFAULT_METADATA_STRING_SIZE
);
1047 g_string_append(context
->string
, "/* CTF 1.8 */\n\n");
1048 if (append_trace_metadata(trace
, context
)) {
1051 append_env_metadata(trace
, context
);
1052 g_ptr_array_foreach(trace
->clocks
,
1053 (GFunc
)bt_ctf_clock_class_serialize
, context
);
1055 for (i
= 0; i
< trace
->stream_classes
->len
; i
++) {
1056 err
= bt_ctf_stream_class_serialize(
1057 trace
->stream_classes
->pdata
[i
], context
);
1063 metadata
= context
->string
->str
;
1065 g_string_free(context
->string
, err
? TRUE
: FALSE
);
1066 g_string_free(context
->field_name
, TRUE
);
1072 enum bt_ctf_byte_order
bt_ctf_trace_get_byte_order(struct bt_ctf_trace
*trace
)
1074 enum bt_ctf_byte_order ret
= BT_CTF_BYTE_ORDER_UNKNOWN
;
1080 ret
= trace
->native_byte_order
;
1086 int bt_ctf_trace_set_native_byte_order(struct bt_ctf_trace
*trace
,
1087 enum bt_ctf_byte_order byte_order
)
1091 if (!trace
|| trace
->frozen
) {
1096 if (byte_order
!= BT_CTF_BYTE_ORDER_LITTLE_ENDIAN
&&
1097 byte_order
!= BT_CTF_BYTE_ORDER_BIG_ENDIAN
&&
1098 byte_order
!= BT_CTF_BYTE_ORDER_NETWORK
) {
1103 trace
->native_byte_order
= byte_order
;
1109 struct bt_ctf_field_type
*bt_ctf_trace_get_packet_header_type(
1110 struct bt_ctf_trace
*trace
)
1112 struct bt_ctf_field_type
*field_type
= NULL
;
1118 bt_get(trace
->packet_header_type
);
1119 field_type
= trace
->packet_header_type
;
1124 int bt_ctf_trace_set_packet_header_type(struct bt_ctf_trace
*trace
,
1125 struct bt_ctf_field_type
*packet_header_type
)
1129 if (!trace
|| trace
->frozen
) {
1134 /* packet_header_type must be a structure. */
1135 if (packet_header_type
&&
1136 bt_ctf_field_type_get_type_id(packet_header_type
) !=
1137 BT_CTF_FIELD_TYPE_ID_STRUCT
) {
1142 bt_put(trace
->packet_header_type
);
1143 trace
->packet_header_type
= bt_get(packet_header_type
);
1149 int64_t get_stream_class_count(void *element
)
1151 return bt_ctf_trace_get_stream_class_count(
1152 (struct bt_ctf_trace
*) element
);
1156 void *get_stream_class(void *element
, int i
)
1158 return bt_ctf_trace_get_stream_class_by_index(
1159 (struct bt_ctf_trace
*) element
, i
);
1163 int visit_stream_class(void *object
, bt_ctf_visitor visitor
,void *data
)
1165 return bt_ctf_stream_class_visit(object
, visitor
, data
);
1168 int bt_ctf_trace_visit(struct bt_ctf_trace
*trace
,
1169 bt_ctf_visitor visitor
, void *data
)
1172 struct bt_ctf_object obj
=
1173 { .object
= trace
, .type
= BT_CTF_OBJECT_TYPE_TRACE
};
1175 if (!trace
|| !visitor
) {
1180 ret
= visitor_helper(&obj
, get_stream_class_count
,
1181 get_stream_class
, visit_stream_class
, visitor
, data
);
1187 int invoke_listener(struct bt_ctf_object
*object
, void *data
)
1189 struct listener_wrapper
*listener_wrapper
= data
;
1191 listener_wrapper
->listener(object
, listener_wrapper
->data
);
1195 int bt_ctf_trace_add_listener(struct bt_ctf_trace
*trace
,
1196 bt_ctf_listener_cb listener
, void *listener_data
)
1199 struct listener_wrapper
*listener_wrapper
=
1200 g_new0(struct listener_wrapper
, 1);
1202 if (!trace
|| !listener
|| !listener_wrapper
) {
1207 listener_wrapper
->listener
= listener
;
1208 listener_wrapper
->data
= listener_data
;
1210 /* Visit the current schema. */
1211 ret
= bt_ctf_trace_visit(trace
, invoke_listener
, listener_wrapper
);
1217 * Add listener to the array of callbacks which will be invoked on
1220 g_ptr_array_add(trace
->listeners
, listener_wrapper
);
1223 g_free(listener_wrapper
);
1228 int bt_ctf_trace_object_modification(struct bt_ctf_object
*object
,
1232 struct bt_ctf_trace
*trace
= trace_ptr
;
1237 if (trace
->listeners
->len
== 0) {
1241 for (i
= 0; i
< trace
->listeners
->len
; i
++) {
1242 struct listener_wrapper
*listener
=
1243 g_ptr_array_index(trace
->listeners
, i
);
1245 listener
->listener(object
, listener
->data
);
1252 struct bt_ctf_field_type
*get_field_type(enum field_type_alias alias
)
1255 unsigned int alignment
, size
;
1256 struct bt_ctf_field_type
*field_type
= NULL
;
1258 if (alias
>= NR_FIELD_TYPE_ALIAS
) {
1262 alignment
= field_type_aliases_alignments
[alias
];
1263 size
= field_type_aliases_sizes
[alias
];
1264 field_type
= bt_ctf_field_type_integer_create(size
);
1265 ret
= bt_ctf_field_type_set_alignment(field_type
, alignment
);
1274 void bt_ctf_trace_freeze(struct bt_ctf_trace
*trace
)
1278 bt_ctf_field_type_freeze(trace
->packet_header_type
);
1279 bt_ctf_attributes_freeze(trace
->environment
);
1281 for (i
= 0; i
< trace
->clocks
->len
; i
++) {
1282 struct bt_ctf_clock_class
*clock_class
=
1283 g_ptr_array_index(trace
->clocks
, i
);
1285 bt_ctf_clock_class_freeze(clock_class
);
1292 int init_trace_packet_header(struct bt_ctf_trace
*trace
)
1295 struct bt_ctf_field
*magic
= NULL
, *uuid_array
= NULL
;
1296 struct bt_ctf_field_type
*_uint32_t
=
1297 get_field_type(FIELD_TYPE_ALIAS_UINT32_T
);
1298 struct bt_ctf_field_type
*_uint8_t
=
1299 get_field_type(FIELD_TYPE_ALIAS_UINT8_T
);
1300 struct bt_ctf_field_type
*trace_packet_header_type
=
1301 bt_ctf_field_type_structure_create();
1302 struct bt_ctf_field_type
*uuid_array_type
=
1303 bt_ctf_field_type_array_create(_uint8_t
, 16);
1305 if (!trace_packet_header_type
|| !uuid_array_type
) {
1310 ret
= bt_ctf_field_type_structure_add_field(trace_packet_header_type
,
1311 _uint32_t
, "magic");
1316 ret
= bt_ctf_field_type_structure_add_field(trace_packet_header_type
,
1317 uuid_array_type
, "uuid");
1322 ret
= bt_ctf_field_type_structure_add_field(trace_packet_header_type
,
1323 _uint32_t
, "stream_id");
1328 ret
= bt_ctf_trace_set_packet_header_type(trace
,
1329 trace_packet_header_type
);
1334 bt_put(uuid_array_type
);
1339 bt_put(trace_packet_header_type
);
1343 bool bt_ctf_trace_is_static(struct bt_ctf_trace
*trace
)
1345 bool is_static
= false;
1351 is_static
= trace
->is_static
;
1357 int bt_ctf_trace_set_is_static(struct bt_ctf_trace
*trace
)
1366 trace
->is_static
= true;
1367 bt_ctf_trace_freeze(trace
);