4 * Babeltrace CTF IR - Event class
6 * Copyright 2013, 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/fields-internal.h>
30 #include <babeltrace/ctf-ir/field-types-internal.h>
31 #include <babeltrace/ctf-ir/event-class.h>
32 #include <babeltrace/ctf-ir/event-class-internal.h>
33 #include <babeltrace/ctf-ir/stream-class.h>
34 #include <babeltrace/ctf-ir/stream-class-internal.h>
35 #include <babeltrace/ctf-ir/trace-internal.h>
36 #include <babeltrace/ctf-ir/validation-internal.h>
37 #include <babeltrace/ctf-ir/utils.h>
38 #include <babeltrace/ref.h>
39 #include <babeltrace/ctf-ir/attributes-internal.h>
40 #include <babeltrace/compiler.h>
41 #include <babeltrace/endian.h>
44 void bt_ctf_event_class_destroy(struct bt_object
*obj
);
46 struct bt_ctf_event_class
*bt_ctf_event_class_create(const char *name
)
49 struct bt_value
*obj
= NULL
;
50 struct bt_ctf_event_class
*event_class
= NULL
;
52 if (bt_ctf_validate_identifier(name
)) {
56 event_class
= g_new0(struct bt_ctf_event_class
, 1);
62 bt_object_init(event_class
, bt_ctf_event_class_destroy
);
63 event_class
->fields
= bt_ctf_field_type_structure_create();
64 if (!event_class
->fields
) {
68 event_class
->attributes
= bt_ctf_attributes_create();
69 if (!event_class
->attributes
) {
73 obj
= bt_value_integer_create_init(-1);
78 ret
= bt_ctf_attributes_set_field_value(event_class
->attributes
,
86 obj
= bt_value_string_create_init(name
);
91 ret
= bt_ctf_attributes_set_field_value(event_class
->attributes
,
107 const char *bt_ctf_event_class_get_name(struct bt_ctf_event_class
*event_class
)
109 struct bt_value
*obj
= NULL
;
110 const char *name
= NULL
;
116 if (event_class
->name
) {
117 name
= event_class
->name
;
121 obj
= bt_ctf_attributes_get_field_value(event_class
->attributes
,
122 BT_CTF_EVENT_CLASS_ATTR_NAME_INDEX
);
127 if (bt_value_string_get(obj
, &name
)) {
136 int64_t bt_ctf_event_class_get_id(struct bt_ctf_event_class
*event_class
)
138 struct bt_value
*obj
= NULL
;
146 if (event_class
->id
>= 0) {
147 ret
= event_class
->id
;
151 obj
= bt_ctf_attributes_get_field_value(event_class
->attributes
,
152 BT_CTF_EVENT_CLASS_ATTR_ID_INDEX
);
157 if (bt_value_integer_get(obj
, &ret
)) {
162 /* means ID is not set */
172 int bt_ctf_event_class_set_id(struct bt_ctf_event_class
*event_class
,
176 struct bt_value
*obj
= NULL
;
177 struct bt_ctf_stream_class
*stream_class
= NULL
;
185 stream_class
= bt_ctf_event_class_get_stream_class(event_class
);
188 * We don't allow changing the id if the event class has already
189 * been added to a stream class.
195 obj
= bt_ctf_attributes_get_field_value(event_class
->attributes
,
196 BT_CTF_EVENT_CLASS_ATTR_ID_INDEX
);
201 if (bt_value_integer_set(obj
, id
)) {
208 BT_PUT(stream_class
);
212 int bt_ctf_event_class_set_attribute(
213 struct bt_ctf_event_class
*event_class
, const char *name
,
214 struct bt_value
*value
)
218 if (!event_class
|| !name
|| !value
|| event_class
->frozen
) {
223 if (!strcmp(name
, "id") || !strcmp(name
, "loglevel")) {
224 if (!bt_value_is_integer(value
)) {
228 } else if (!strcmp(name
, "name") || !strcmp(name
, "model.emf.uri")) {
229 if (!bt_value_is_string(value
)) {
234 /* unknown attribute */
239 /* "id" special case: >= 0 */
240 if (!strcmp(name
, "id")) {
243 ret
= bt_value_integer_get(value
, &val
);
255 ret
= bt_ctf_attributes_set_field_value(event_class
->attributes
,
262 int bt_ctf_event_class_get_attribute_count(
263 struct bt_ctf_event_class
*event_class
)
272 ret
= bt_ctf_attributes_get_count(event_class
->attributes
);
279 bt_ctf_event_class_get_attribute_name(
280 struct bt_ctf_event_class
*event_class
, int index
)
289 ret
= bt_ctf_attributes_get_field_name(event_class
->attributes
, index
);
296 bt_ctf_event_class_get_attribute_value(struct bt_ctf_event_class
*event_class
,
299 struct bt_value
*ret
;
306 ret
= bt_ctf_attributes_get_field_value(event_class
->attributes
, index
);
313 bt_ctf_event_class_get_attribute_value_by_name(
314 struct bt_ctf_event_class
*event_class
, const char *name
)
316 struct bt_value
*ret
;
318 if (!event_class
|| !name
) {
323 ret
= bt_ctf_attributes_get_field_value_by_name(event_class
->attributes
,
331 struct bt_ctf_stream_class
*bt_ctf_event_class_get_stream_class(
332 struct bt_ctf_event_class
*event_class
)
334 return (struct bt_ctf_stream_class
*) bt_object_get_parent(event_class
);
337 struct bt_ctf_field_type
*bt_ctf_event_class_get_payload_type(
338 struct bt_ctf_event_class
*event_class
)
340 struct bt_ctf_field_type
*payload
= NULL
;
346 bt_get(event_class
->fields
);
347 payload
= event_class
->fields
;
352 int bt_ctf_event_class_set_payload_type(struct bt_ctf_event_class
*event_class
,
353 struct bt_ctf_field_type
*payload
)
357 if (!event_class
|| !payload
||
358 bt_ctf_field_type_get_type_id(payload
) !=
359 BT_CTF_TYPE_ID_STRUCT
) {
365 bt_put(event_class
->fields
);
366 event_class
->fields
= payload
;
371 int bt_ctf_event_class_add_field(struct bt_ctf_event_class
*event_class
,
372 struct bt_ctf_field_type
*type
,
377 if (!event_class
|| !type
|| bt_ctf_validate_identifier(name
) ||
378 event_class
->frozen
) {
383 if (bt_ctf_field_type_get_type_id(event_class
->fields
) !=
384 BT_CTF_TYPE_ID_STRUCT
) {
389 ret
= bt_ctf_field_type_structure_add_field(event_class
->fields
,
395 int bt_ctf_event_class_get_field_count(
396 struct bt_ctf_event_class
*event_class
)
405 if (bt_ctf_field_type_get_type_id(event_class
->fields
) !=
406 BT_CTF_TYPE_ID_STRUCT
) {
411 ret
= bt_ctf_field_type_structure_get_field_count(event_class
->fields
);
416 int bt_ctf_event_class_get_field(struct bt_ctf_event_class
*event_class
,
417 const char **field_name
, struct bt_ctf_field_type
**field_type
,
422 if (!event_class
|| index
< 0) {
427 if (bt_ctf_field_type_get_type_id(event_class
->fields
) !=
428 BT_CTF_TYPE_ID_STRUCT
) {
433 ret
= bt_ctf_field_type_structure_get_field(event_class
->fields
,
434 field_name
, field_type
, index
);
439 struct bt_ctf_field_type
*bt_ctf_event_class_get_field_by_name(
440 struct bt_ctf_event_class
*event_class
, const char *name
)
443 struct bt_ctf_field_type
*field_type
= NULL
;
445 if (!event_class
|| !name
) {
449 if (bt_ctf_field_type_get_type_id(event_class
->fields
) !=
450 BT_CTF_TYPE_ID_STRUCT
) {
454 name_quark
= g_quark_try_string(name
);
460 * No need to increment field_type's reference count since getting it
461 * from the structure already does.
463 field_type
= bt_ctf_field_type_structure_get_field_type_by_name(
464 event_class
->fields
, name
);
469 struct bt_ctf_field_type
*bt_ctf_event_class_get_context_type(
470 struct bt_ctf_event_class
*event_class
)
472 struct bt_ctf_field_type
*context_type
= NULL
;
474 if (!event_class
|| !event_class
->context
) {
478 bt_get(event_class
->context
);
479 context_type
= event_class
->context
;
484 int bt_ctf_event_class_set_context_type(
485 struct bt_ctf_event_class
*event_class
,
486 struct bt_ctf_field_type
*context
)
490 if (!event_class
|| !context
|| event_class
->frozen
) {
495 if (bt_ctf_field_type_get_type_id(context
) != BT_CTF_TYPE_ID_STRUCT
) {
501 bt_put(event_class
->context
);
502 event_class
->context
= context
;
508 void bt_ctf_event_class_get(struct bt_ctf_event_class
*event_class
)
513 void bt_ctf_event_class_put(struct bt_ctf_event_class
*event_class
)
519 int bt_ctf_event_class_set_stream_id(struct bt_ctf_event_class
*event_class
,
523 struct bt_value
*obj
;
525 obj
= bt_value_integer_create_init(stream_id
);
532 ret
= bt_ctf_attributes_set_field_value(event_class
->attributes
,
535 if (event_class
->frozen
) {
536 bt_ctf_attributes_freeze(event_class
->attributes
);
545 void bt_ctf_event_class_destroy(struct bt_object
*obj
)
547 struct bt_ctf_event_class
*event_class
;
549 event_class
= container_of(obj
, struct bt_ctf_event_class
, base
);
550 bt_ctf_attributes_destroy(event_class
->attributes
);
551 bt_put(event_class
->context
);
552 bt_put(event_class
->fields
);
557 void bt_ctf_event_class_freeze(struct bt_ctf_event_class
*event_class
)
560 event_class
->frozen
= 1;
561 event_class
->name
= bt_ctf_event_class_get_name(event_class
);
562 event_class
->id
= bt_ctf_event_class_get_id(event_class
);
563 bt_ctf_field_type_freeze(event_class
->context
);
564 bt_ctf_field_type_freeze(event_class
->fields
);
565 bt_ctf_attributes_freeze(event_class
->attributes
);
569 int bt_ctf_event_class_serialize(struct bt_ctf_event_class
*event_class
,
570 struct metadata_context
*context
)
575 struct bt_value
*attr_value
= NULL
;
580 context
->current_indentation_level
= 1;
581 g_string_assign(context
->field_name
, "");
582 g_string_append(context
->string
, "event {\n");
583 count
= bt_ctf_event_class_get_attribute_count(event_class
);
590 for (i
= 0; i
< count
; ++i
) {
591 const char *attr_name
= NULL
;
593 attr_name
= bt_ctf_event_class_get_attribute_name(
595 attr_value
= bt_ctf_event_class_get_attribute_value(
598 if (!attr_name
|| !attr_value
) {
603 switch (bt_value_get_type(attr_value
)) {
604 case BT_VALUE_TYPE_INTEGER
:
608 ret
= bt_value_integer_get(attr_value
, &value
);
614 g_string_append_printf(context
->string
,
615 "\t%s = %" PRId64
";\n", attr_name
, value
);
619 case BT_VALUE_TYPE_STRING
:
623 ret
= bt_value_string_get(attr_value
, &value
);
629 g_string_append_printf(context
->string
,
630 "\t%s = \"%s\";\n", attr_name
, value
);
635 /* should never happen */
643 if (event_class
->context
) {
644 g_string_append(context
->string
, "\tcontext := ");
645 ret
= bt_ctf_field_type_serialize(event_class
->context
,
650 g_string_append(context
->string
, ";\n");
653 if (event_class
->fields
) {
654 g_string_append(context
->string
, "\tfields := ");
655 ret
= bt_ctf_field_type_serialize(event_class
->fields
, context
);
659 g_string_append(context
->string
, ";\n");
662 g_string_append(context
->string
, "};\n\n");
664 context
->current_indentation_level
= 0;
669 void bt_ctf_event_class_set_native_byte_order(
670 struct bt_ctf_event_class
*event_class
,
677 assert(byte_order
== 0 || byte_order
== LITTLE_ENDIAN
||
678 byte_order
== BIG_ENDIAN
);
680 bt_ctf_field_type_set_native_byte_order(event_class
->context
,
682 bt_ctf_field_type_set_native_byte_order(event_class
->fields
,