Standardize *get_*_count() functions
[babeltrace.git] / lib / ctf-ir / stream-class.c
1 /*
2 * stream-class.c
3 *
4 * Babeltrace CTF IR - Stream Class
5 *
6 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
7 *
8 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
9 *
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:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
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
26 * SOFTWARE.
27 */
28
29 #include <babeltrace/ctf-writer/clock.h>
30 #include <babeltrace/ctf-writer/clock-internal.h>
31 #include <babeltrace/ctf-ir/clock-class-internal.h>
32 #include <babeltrace/ctf-writer/event.h>
33 #include <babeltrace/ctf-ir/event-class-internal.h>
34 #include <babeltrace/ctf-ir/event-internal.h>
35 #include <babeltrace/ctf-ir/field-types-internal.h>
36 #include <babeltrace/ctf-ir/fields-internal.h>
37 #include <babeltrace/ctf-writer/stream.h>
38 #include <babeltrace/ctf-ir/stream-class-internal.h>
39 #include <babeltrace/ctf-ir/validation-internal.h>
40 #include <babeltrace/ctf-ir/visitor-internal.h>
41 #include <babeltrace/ctf-writer/functor-internal.h>
42 #include <babeltrace/ctf-ir/utils.h>
43 #include <babeltrace/ref.h>
44 #include <babeltrace/compiler-internal.h>
45 #include <babeltrace/align-internal.h>
46 #include <babeltrace/endian-internal.h>
47 #include <inttypes.h>
48 #include <stdint.h>
49
50 static
51 void bt_ctf_stream_class_destroy(struct bt_object *obj);
52 static
53 int init_event_header(struct bt_ctf_stream_class *stream_class);
54 static
55 int init_packet_context(struct bt_ctf_stream_class *stream_class);
56
57 struct bt_ctf_stream_class *bt_ctf_stream_class_create(const char *name)
58 {
59 int ret;
60 struct bt_ctf_stream_class *stream_class = NULL;
61
62 if (name && bt_ctf_validate_identifier(name)) {
63 goto error;
64 }
65
66 stream_class = g_new0(struct bt_ctf_stream_class, 1);
67 if (!stream_class) {
68 goto error;
69 }
70
71 stream_class->name = g_string_new(name);
72 stream_class->event_classes = g_ptr_array_new_with_free_func(
73 (GDestroyNotify) bt_object_release);
74 if (!stream_class->event_classes) {
75 goto error;
76 }
77
78 stream_class->event_classes_ht = g_hash_table_new_full(g_int64_hash,
79 g_int64_equal, g_free, NULL);
80
81 ret = init_event_header(stream_class);
82 if (ret) {
83 goto error;
84 }
85
86 ret = init_packet_context(stream_class);
87 if (ret) {
88 goto error;
89 }
90
91 bt_object_init(stream_class, bt_ctf_stream_class_destroy);
92 return stream_class;
93
94 error:
95 BT_PUT(stream_class);
96 return stream_class;
97 }
98
99 struct bt_ctf_trace *bt_ctf_stream_class_get_trace(
100 struct bt_ctf_stream_class *stream_class)
101 {
102 return stream_class ?
103 bt_get(bt_ctf_stream_class_borrow_trace(stream_class)) :
104 NULL;
105 }
106
107 const char *bt_ctf_stream_class_get_name(
108 struct bt_ctf_stream_class *stream_class)
109 {
110 const char *name = NULL;
111
112 if (!stream_class) {
113 goto end;
114 }
115
116 name = stream_class->name->str;
117 end:
118 return name;
119 }
120
121 int bt_ctf_stream_class_set_name(struct bt_ctf_stream_class *stream_class,
122 const char *name)
123 {
124 int ret = 0;
125
126 if (!stream_class || stream_class->frozen) {
127 ret = -1;
128 goto end;
129 }
130
131 g_string_assign(stream_class->name, name);
132 end:
133 return ret;
134 }
135
136 struct bt_ctf_clock *bt_ctf_stream_class_get_clock(
137 struct bt_ctf_stream_class *stream_class)
138 {
139 struct bt_ctf_clock *clock = NULL;
140
141 if (!stream_class || !stream_class->clock) {
142 goto end;
143 }
144
145 clock = bt_get(stream_class->clock);
146 end:
147 return clock;
148 }
149
150 int bt_ctf_stream_class_set_clock(struct bt_ctf_stream_class *stream_class,
151 struct bt_ctf_clock *clock)
152 {
153 int ret = 0;
154 struct bt_ctf_field_type *timestamp_field = NULL;
155
156 if (!stream_class || !clock || stream_class->frozen) {
157 ret = -1;
158 goto end;
159 }
160
161 /*
162 * Look for a "timestamp" integer field type in the stream
163 * class's event header field type and map the stream class's
164 * clock's class to that field type if there's no current
165 * mapping.
166 */
167 timestamp_field = bt_ctf_field_type_structure_get_field_type_by_name(
168 stream_class->event_header_type, "timestamp");
169 if (timestamp_field) {
170 struct bt_ctf_clock_class *mapped_clock_class =
171 bt_ctf_field_type_integer_get_mapped_clock_class(
172 timestamp_field);
173
174 if (!mapped_clock_class) {
175 ret = bt_ctf_field_type_integer_set_mapped_clock_class(
176 timestamp_field, clock->clock_class);
177 if (ret) {
178 goto end;
179 }
180 }
181
182 BT_PUT(mapped_clock_class);
183 }
184
185 /* Replace the current clock of this stream class. */
186 bt_put(stream_class->clock);
187 stream_class->clock = bt_get(clock);
188
189 end:
190 bt_put(timestamp_field);
191 return ret;
192 }
193
194 int64_t bt_ctf_stream_class_get_id(struct bt_ctf_stream_class *stream_class)
195 {
196 int64_t ret;
197
198 if (!stream_class || !stream_class->id_set) {
199 ret = -1;
200 goto end;
201 }
202
203 ret = (int64_t) stream_class->id;
204 end:
205 return ret;
206 }
207
208 BT_HIDDEN
209 int _bt_ctf_stream_class_set_id(
210 struct bt_ctf_stream_class *stream_class, uint32_t id)
211 {
212 stream_class->id = id;
213 stream_class->id_set = 1;
214 return 0;
215 }
216
217 struct event_class_set_stream_id_data {
218 uint32_t stream_id;
219 int ret;
220 };
221
222 static
223 void event_class_set_stream_id(gpointer event_class, gpointer data)
224 {
225 struct event_class_set_stream_id_data *typed_data = data;
226
227 typed_data->ret |= bt_ctf_event_class_set_stream_id(event_class,
228 typed_data->stream_id);
229 }
230
231 BT_HIDDEN
232 int bt_ctf_stream_class_set_id_no_check(
233 struct bt_ctf_stream_class *stream_class, uint32_t id)
234 {
235 int ret = 0;
236 struct event_class_set_stream_id_data data =
237 { .stream_id = id, .ret = 0 };
238
239 /*
240 * Make sure all event classes have their "stream_id" attribute
241 * set to this value.
242 */
243 g_ptr_array_foreach(stream_class->event_classes,
244 event_class_set_stream_id, &data);
245 ret = data.ret;
246 if (ret) {
247 goto end;
248 }
249
250 ret = _bt_ctf_stream_class_set_id(stream_class, id);
251 if (ret) {
252 goto end;
253 }
254 end:
255 return ret;
256 }
257
258 int bt_ctf_stream_class_set_id(struct bt_ctf_stream_class *stream_class,
259 uint32_t id)
260 {
261 int ret = 0;
262
263 if (!stream_class || stream_class->frozen) {
264 ret = -1;
265 goto end;
266 }
267
268 ret = bt_ctf_stream_class_set_id_no_check(stream_class, id);
269 end:
270 return ret;
271 }
272
273 static
274 void event_class_exists(gpointer element, gpointer query)
275 {
276 struct bt_ctf_event_class *event_class_a = element;
277 struct search_query *search_query = query;
278 struct bt_ctf_event_class *event_class_b = search_query->value;
279 int64_t id_a, id_b;
280
281 if (search_query->value == element) {
282 search_query->found = 1;
283 goto end;
284 }
285
286 /*
287 * Two event classes cannot share the same name in a given
288 * stream class.
289 */
290 if (!strcmp(bt_ctf_event_class_get_name(event_class_a),
291 bt_ctf_event_class_get_name(event_class_b))) {
292 search_query->found = 1;
293 goto end;
294 }
295
296 /*
297 * Two event classes cannot share the same ID in a given
298 * stream class.
299 */
300 id_a = bt_ctf_event_class_get_id(event_class_a);
301 id_b = bt_ctf_event_class_get_id(event_class_b);
302
303 if (id_a < 0 || id_b < 0) {
304 /* at least one ID is not set: will be automatically set later */
305 goto end;
306 }
307
308 if (id_a == id_b) {
309 search_query->found = 1;
310 goto end;
311 }
312
313 end:
314 return;
315 }
316
317 int bt_ctf_stream_class_add_event_class(
318 struct bt_ctf_stream_class *stream_class,
319 struct bt_ctf_event_class *event_class)
320 {
321 int ret = 0;
322 int64_t *event_id = NULL;
323 struct bt_ctf_trace *trace = NULL;
324 struct bt_ctf_stream_class *old_stream_class = NULL;
325 struct bt_ctf_validation_output validation_output = { 0 };
326 struct bt_ctf_field_type *packet_header_type = NULL;
327 struct bt_ctf_field_type *packet_context_type = NULL;
328 struct bt_ctf_field_type *event_header_type = NULL;
329 struct bt_ctf_field_type *stream_event_ctx_type = NULL;
330 struct bt_ctf_field_type *event_context_type = NULL;
331 struct bt_ctf_field_type *event_payload_type = NULL;
332 const enum bt_ctf_validation_flag validation_flags =
333 BT_CTF_VALIDATION_FLAG_EVENT;
334
335 if (!stream_class || !event_class) {
336 ret = -1;
337 goto end;
338 }
339
340 trace = bt_ctf_stream_class_get_trace(stream_class);
341 if (trace && trace->is_static) {
342 ret = -1;
343 goto end;
344 }
345
346 event_id = g_new(int64_t, 1);
347 if (!event_id) {
348 ret = -1;
349 goto end;
350 }
351
352 /* Check for duplicate event classes */
353 struct search_query query = { .value = event_class, .found = 0 };
354 g_ptr_array_foreach(stream_class->event_classes, event_class_exists,
355 &query);
356 if (query.found) {
357 ret = -1;
358 goto end;
359 }
360
361 old_stream_class = bt_ctf_event_class_get_stream_class(event_class);
362 if (old_stream_class) {
363 /* Event class is already associated to a stream class. */
364 ret = -1;
365 goto end;
366 }
367
368 if (trace) {
369 /*
370 * If the stream class is associated with a trace, then
371 * both those objects are frozen. Also, this event class
372 * is about to be frozen.
373 *
374 * Therefore the event class must be validated here.
375 * The trace and stream class should be valid at this
376 * point.
377 */
378 assert(trace->valid);
379 assert(stream_class->valid);
380 packet_header_type =
381 bt_ctf_trace_get_packet_header_type(trace);
382 packet_context_type =
383 bt_ctf_stream_class_get_packet_context_type(
384 stream_class);
385 event_header_type =
386 bt_ctf_stream_class_get_event_header_type(stream_class);
387 stream_event_ctx_type =
388 bt_ctf_stream_class_get_event_context_type(
389 stream_class);
390 event_context_type =
391 bt_ctf_event_class_get_context_type(event_class);
392 event_payload_type =
393 bt_ctf_event_class_get_payload_type(event_class);
394 ret = bt_ctf_validate_class_types(
395 trace->environment, packet_header_type,
396 packet_context_type, event_header_type,
397 stream_event_ctx_type, event_context_type,
398 event_payload_type, trace->valid,
399 stream_class->valid, event_class->valid,
400 &validation_output, validation_flags);
401 BT_PUT(packet_header_type);
402 BT_PUT(packet_context_type);
403 BT_PUT(event_header_type);
404 BT_PUT(stream_event_ctx_type);
405 BT_PUT(event_context_type);
406 BT_PUT(event_payload_type);
407
408 if (ret) {
409 /*
410 * This means something went wrong during the
411 * validation process, not that the objects are
412 * invalid.
413 */
414 goto end;
415 }
416
417 if ((validation_output.valid_flags & validation_flags) !=
418 validation_flags) {
419 /* Invalid event class */
420 ret = -1;
421 goto end;
422 }
423 }
424
425 /* Only set an event ID if none was explicitly set before */
426 *event_id = bt_ctf_event_class_get_id(event_class);
427 if (*event_id < 0) {
428 if (bt_ctf_event_class_set_id(event_class,
429 stream_class->next_event_id++)) {
430 ret = -1;
431 goto end;
432 }
433 *event_id = stream_class->next_event_id;
434 }
435
436 ret = bt_ctf_event_class_set_stream_id(event_class, stream_class->id);
437 if (ret) {
438 goto end;
439 }
440
441 bt_object_set_parent(event_class, stream_class);
442
443 if (trace) {
444 /*
445 * At this point we know that the function will be
446 * successful. Therefore we can replace the event
447 * class's field types with what's in the validation
448 * output structure and mark this event class as valid.
449 */
450 bt_ctf_validation_replace_types(NULL, NULL, event_class,
451 &validation_output, validation_flags);
452 event_class->valid = 1;
453
454 /*
455 * Put what was not moved in
456 * bt_ctf_validation_replace_types().
457 */
458 bt_ctf_validation_output_put_types(&validation_output);
459 }
460
461 /* Add to the event classes of the stream class */
462 g_ptr_array_add(stream_class->event_classes, event_class);
463 g_hash_table_insert(stream_class->event_classes_ht, event_id,
464 event_class);
465 event_id = NULL;
466
467 /* Freeze the event class */
468 bt_ctf_event_class_freeze(event_class);
469
470 /* Notifiy listeners of the trace's schema modification. */
471 if (trace) {
472 struct bt_ctf_object obj = { .object = event_class,
473 .type = BT_CTF_OBJECT_TYPE_EVENT_CLASS };
474
475 (void) bt_ctf_trace_object_modification(&obj, trace);
476 }
477 end:
478 BT_PUT(trace);
479 BT_PUT(old_stream_class);
480 bt_ctf_validation_output_put_types(&validation_output);
481 assert(!packet_header_type);
482 assert(!packet_context_type);
483 assert(!event_header_type);
484 assert(!stream_event_ctx_type);
485 assert(!event_context_type);
486 assert(!event_payload_type);
487 g_free(event_id);
488
489 return ret;
490 }
491
492 int64_t bt_ctf_stream_class_get_event_class_count(
493 struct bt_ctf_stream_class *stream_class)
494 {
495 int64_t ret;
496
497 if (!stream_class) {
498 ret = -1;
499 goto end;
500 }
501
502 ret = (int) stream_class->event_classes->len;
503 end:
504 return ret;
505 }
506
507 struct bt_ctf_event_class *bt_ctf_stream_class_get_event_class(
508 struct bt_ctf_stream_class *stream_class, int index)
509 {
510 struct bt_ctf_event_class *event_class = NULL;
511
512 if (!stream_class || index < 0 ||
513 index >= stream_class->event_classes->len) {
514 goto end;
515 }
516
517 event_class = g_ptr_array_index(stream_class->event_classes, index);
518 bt_get(event_class);
519 end:
520 return event_class;
521 }
522
523 struct bt_ctf_event_class *bt_ctf_stream_class_get_event_class_by_name(
524 struct bt_ctf_stream_class *stream_class, const char *name)
525 {
526 size_t i;
527 struct bt_ctf_event_class *event_class = NULL;
528
529 if (!stream_class || !name) {
530 goto end;
531 }
532
533 for (i = 0; i < stream_class->event_classes->len; i++) {
534 struct bt_ctf_event_class *cur_event_class =
535 g_ptr_array_index(stream_class->event_classes, i);
536 const char *cur_event_class_name =
537 bt_ctf_event_class_get_name(cur_event_class);
538
539 if (!strcmp(name, cur_event_class_name)) {
540 event_class = cur_event_class;
541 bt_get(event_class);
542 goto end;
543 }
544 }
545 end:
546 return event_class;
547 }
548
549 struct bt_ctf_event_class *bt_ctf_stream_class_get_event_class_by_id(
550 struct bt_ctf_stream_class *stream_class, uint32_t id)
551 {
552 int64_t id_key = id;
553 struct bt_ctf_event_class *event_class = NULL;
554
555 if (!stream_class) {
556 goto end;
557 }
558
559 event_class = g_hash_table_lookup(stream_class->event_classes_ht,
560 &id_key);
561 bt_get(event_class);
562 end:
563 return event_class;
564 }
565
566 struct bt_ctf_field_type *bt_ctf_stream_class_get_packet_context_type(
567 struct bt_ctf_stream_class *stream_class)
568 {
569 struct bt_ctf_field_type *ret = NULL;
570
571 if (!stream_class) {
572 goto end;
573 }
574
575 bt_get(stream_class->packet_context_type);
576 ret = stream_class->packet_context_type;
577 end:
578 return ret;
579 }
580
581 int bt_ctf_stream_class_set_packet_context_type(
582 struct bt_ctf_stream_class *stream_class,
583 struct bt_ctf_field_type *packet_context_type)
584 {
585 int ret = 0;
586
587 if (!stream_class || stream_class->frozen) {
588 ret = -1;
589 goto end;
590 }
591
592 if (packet_context_type &&
593 bt_ctf_field_type_get_type_id(packet_context_type) !=
594 BT_CTF_FIELD_TYPE_ID_STRUCT) {
595 /* A packet context must be a structure. */
596 ret = -1;
597 goto end;
598 }
599
600 bt_put(stream_class->packet_context_type);
601 bt_get(packet_context_type);
602 stream_class->packet_context_type = packet_context_type;
603 end:
604 return ret;
605 }
606
607 struct bt_ctf_field_type *bt_ctf_stream_class_get_event_header_type(
608 struct bt_ctf_stream_class *stream_class)
609 {
610 struct bt_ctf_field_type *ret = NULL;
611
612 if (!stream_class || !stream_class->event_header_type) {
613 goto end;
614 }
615
616 bt_get(stream_class->event_header_type);
617 ret = stream_class->event_header_type;
618 end:
619 return ret;
620 }
621
622 int bt_ctf_stream_class_set_event_header_type(
623 struct bt_ctf_stream_class *stream_class,
624 struct bt_ctf_field_type *event_header_type)
625 {
626 int ret = 0;
627
628 if (!stream_class || stream_class->frozen) {
629 ret = -1;
630 goto end;
631 }
632
633 if (event_header_type &&
634 bt_ctf_field_type_get_type_id(event_header_type) !=
635 BT_CTF_FIELD_TYPE_ID_STRUCT) {
636 /* An event header must be a structure. */
637 ret = -1;
638 goto end;
639 }
640
641 bt_put(stream_class->event_header_type);
642 stream_class->event_header_type = bt_get(event_header_type);
643 end:
644 return ret;
645 }
646
647 struct bt_ctf_field_type *bt_ctf_stream_class_get_event_context_type(
648 struct bt_ctf_stream_class *stream_class)
649 {
650 struct bt_ctf_field_type *ret = NULL;
651
652 if (!stream_class || !stream_class->event_context_type) {
653 goto end;
654 }
655
656 bt_get(stream_class->event_context_type);
657 ret = stream_class->event_context_type;
658 end:
659 return ret;
660 }
661
662 int bt_ctf_stream_class_set_event_context_type(
663 struct bt_ctf_stream_class *stream_class,
664 struct bt_ctf_field_type *event_context_type)
665 {
666 int ret = 0;
667
668 if (!stream_class || stream_class->frozen) {
669 ret = -1;
670 goto end;
671 }
672
673 if (event_context_type &&
674 bt_ctf_field_type_get_type_id(event_context_type) !=
675 BT_CTF_FIELD_TYPE_ID_STRUCT) {
676 /* A packet context must be a structure. */
677 ret = -1;
678 goto end;
679 }
680
681 bt_put(stream_class->event_context_type);
682 stream_class->event_context_type = bt_get(event_context_type);
683 end:
684 return ret;
685 }
686
687 void bt_ctf_stream_class_get(struct bt_ctf_stream_class *stream_class)
688 {
689 bt_get(stream_class);
690 }
691
692 void bt_ctf_stream_class_put(struct bt_ctf_stream_class *stream_class)
693 {
694 bt_put(stream_class);
695 }
696
697 static
698 int64_t get_event_class_count(void *element)
699 {
700 return bt_ctf_stream_class_get_event_class_count(
701 (struct bt_ctf_stream_class *) element);
702 }
703
704 static
705 void *get_event_class(void *element, int i)
706 {
707 return bt_ctf_stream_class_get_event_class(
708 (struct bt_ctf_stream_class *) element, i);
709 }
710
711 static
712 int visit_event_class(void *object, bt_ctf_visitor visitor,void *data)
713 {
714 struct bt_ctf_object obj =
715 { .object = object,
716 .type = BT_CTF_OBJECT_TYPE_EVENT_CLASS };
717
718 return visitor(&obj, data);
719 }
720
721 int bt_ctf_stream_class_visit(struct bt_ctf_stream_class *stream_class,
722 bt_ctf_visitor visitor, void *data)
723 {
724 int ret;
725 struct bt_ctf_object obj =
726 { .object = stream_class,
727 .type = BT_CTF_OBJECT_TYPE_STREAM_CLASS };
728
729 if (!stream_class || !visitor) {
730 ret = -1;
731 goto end;
732 }
733
734 ret = visitor_helper(&obj, get_event_class_count,
735 get_event_class,
736 visit_event_class, visitor, data);
737 end:
738 return ret;
739 }
740
741 BT_HIDDEN
742 void bt_ctf_stream_class_freeze(struct bt_ctf_stream_class *stream_class)
743 {
744 if (!stream_class) {
745 return;
746 }
747
748 stream_class->frozen = 1;
749 bt_ctf_field_type_freeze(stream_class->event_header_type);
750 bt_ctf_field_type_freeze(stream_class->packet_context_type);
751 bt_ctf_field_type_freeze(stream_class->event_context_type);
752
753 if (stream_class->clock) {
754 bt_ctf_clock_class_freeze(stream_class->clock->clock_class);
755 }
756 }
757
758 BT_HIDDEN
759 int bt_ctf_stream_class_serialize(struct bt_ctf_stream_class *stream_class,
760 struct metadata_context *context)
761 {
762 int64_t ret = 0;
763 size_t i;
764
765 g_string_assign(context->field_name, "");
766 context->current_indentation_level = 1;
767 if (!stream_class->id_set) {
768 ret = -1;
769 goto end;
770 }
771
772 g_string_append_printf(context->string,
773 "stream {\n\tid = %" PRIu32 ";\n\tevent.header := ",
774 stream_class->id);
775 ret = bt_ctf_field_type_serialize(stream_class->event_header_type,
776 context);
777 if (ret) {
778 goto end;
779 }
780
781 if (stream_class->packet_context_type) {
782 g_string_append(context->string, ";\n\n\tpacket.context := ");
783 ret = bt_ctf_field_type_serialize(stream_class->packet_context_type,
784 context);
785 if (ret) {
786 goto end;
787 }
788 }
789
790 if (stream_class->event_context_type) {
791 g_string_append(context->string, ";\n\n\tevent.context := ");
792 ret = bt_ctf_field_type_serialize(
793 stream_class->event_context_type, context);
794 if (ret) {
795 goto end;
796 }
797 }
798
799 g_string_append(context->string, ";\n};\n\n");
800 for (i = 0; i < stream_class->event_classes->len; i++) {
801 struct bt_ctf_event_class *event_class =
802 stream_class->event_classes->pdata[i];
803
804 ret = bt_ctf_event_class_serialize(event_class, context);
805 if (ret) {
806 goto end;
807 }
808 }
809 end:
810 context->current_indentation_level = 0;
811 return ret;
812 }
813
814 static
815 void bt_ctf_stream_class_destroy(struct bt_object *obj)
816 {
817 struct bt_ctf_stream_class *stream_class;
818
819 stream_class = container_of(obj, struct bt_ctf_stream_class, base);
820 bt_put(stream_class->clock);
821
822 if (stream_class->event_classes_ht) {
823 g_hash_table_destroy(stream_class->event_classes_ht);
824 }
825 if (stream_class->event_classes) {
826 g_ptr_array_free(stream_class->event_classes, TRUE);
827 }
828
829 if (stream_class->name) {
830 g_string_free(stream_class->name, TRUE);
831 }
832
833 bt_put(stream_class->event_header_type);
834 bt_put(stream_class->packet_context_type);
835 bt_put(stream_class->event_context_type);
836 g_free(stream_class);
837 }
838
839 static
840 int init_event_header(struct bt_ctf_stream_class *stream_class)
841 {
842 int ret = 0;
843 struct bt_ctf_field_type *event_header_type =
844 bt_ctf_field_type_structure_create();
845 struct bt_ctf_field_type *_uint32_t =
846 get_field_type(FIELD_TYPE_ALIAS_UINT32_T);
847 struct bt_ctf_field_type *_uint64_t =
848 get_field_type(FIELD_TYPE_ALIAS_UINT64_T);
849
850 if (!event_header_type) {
851 ret = -1;
852 goto end;
853 }
854
855 ret = bt_ctf_field_type_structure_add_field(event_header_type,
856 _uint32_t, "id");
857 if (ret) {
858 goto end;
859 }
860
861 ret = bt_ctf_field_type_structure_add_field(event_header_type,
862 _uint64_t, "timestamp");
863 if (ret) {
864 goto end;
865 }
866
867 if (stream_class->event_header_type) {
868 bt_put(stream_class->event_header_type);
869 }
870 stream_class->event_header_type = event_header_type;
871 end:
872 if (ret) {
873 bt_put(event_header_type);
874 }
875
876 bt_put(_uint32_t);
877 bt_put(_uint64_t);
878 return ret;
879 }
880
881 static
882 int init_packet_context(struct bt_ctf_stream_class *stream_class)
883 {
884 int ret = 0;
885 struct bt_ctf_field_type *packet_context_type =
886 bt_ctf_field_type_structure_create();
887 struct bt_ctf_field_type *_uint64_t =
888 get_field_type(FIELD_TYPE_ALIAS_UINT64_T);
889
890 if (!packet_context_type) {
891 ret = -1;
892 goto end;
893 }
894
895 /*
896 * We create a stream packet context as proposed in the CTF
897 * specification.
898 */
899 ret = bt_ctf_field_type_structure_add_field(packet_context_type,
900 _uint64_t, "timestamp_begin");
901 if (ret) {
902 goto end;
903 }
904
905 ret = bt_ctf_field_type_structure_add_field(packet_context_type,
906 _uint64_t, "timestamp_end");
907 if (ret) {
908 goto end;
909 }
910
911 ret = bt_ctf_field_type_structure_add_field(packet_context_type,
912 _uint64_t, "content_size");
913 if (ret) {
914 goto end;
915 }
916
917 ret = bt_ctf_field_type_structure_add_field(packet_context_type,
918 _uint64_t, "packet_size");
919 if (ret) {
920 goto end;
921 }
922
923 ret = bt_ctf_field_type_structure_add_field(packet_context_type,
924 _uint64_t, "events_discarded");
925 if (ret) {
926 goto end;
927 }
928
929 bt_put(stream_class->packet_context_type);
930 stream_class->packet_context_type = packet_context_type;
931 end:
932 if (ret) {
933 bt_put(packet_context_type);
934 goto end;
935 }
936
937 bt_put(_uint64_t);
938 return ret;
939 }
This page took 0.047944 seconds and 5 git commands to generate.