ir: rename event-fields/event-types -> fields/field-types
[babeltrace.git] / formats / ctf / ir / stream.c
1 /*
2 * stream.c
3 *
4 * Babeltrace CTF IR - Stream
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-ir/clock.h>
30 #include <babeltrace/ctf-ir/clock-internal.h>
31 #include <babeltrace/ctf-writer/event.h>
32 #include <babeltrace/ctf-ir/event-internal.h>
33 #include <babeltrace/ctf-ir/field-types-internal.h>
34 #include <babeltrace/ctf-ir/fields-internal.h>
35 #include <babeltrace/ctf-ir/stream.h>
36 #include <babeltrace/ctf-ir/stream-internal.h>
37 #include <babeltrace/ctf-ir/stream-class-internal.h>
38 #include <babeltrace/ref.h>
39 #include <babeltrace/ctf-writer/functor-internal.h>
40 #include <babeltrace/compiler.h>
41 #include <babeltrace/align.h>
42 #include <babeltrace/ctf/ctf-index.h>
43
44 static
45 void bt_ctf_stream_destroy(struct bt_object *obj);
46 static
47 int set_structure_field_integer(struct bt_ctf_field *, char *, uint64_t);
48
49 static
50 int set_packet_header_magic(struct bt_ctf_stream *stream)
51 {
52 int ret = 0;
53 struct bt_ctf_field_type *magic_field_type = NULL;
54 struct bt_ctf_field *magic_field = bt_ctf_field_structure_get_field(
55 stream->packet_header, "magic");
56
57 if (!magic_field) {
58 /* No magic field found. Not an error, skip. */
59 goto end;
60 }
61
62 if (!bt_ctf_field_validate(magic_field)) {
63 /* Value already set. Not an error, skip. */
64 goto end;
65 }
66
67 magic_field_type = bt_ctf_field_get_type(magic_field);
68 assert(magic_field_type);
69
70 if (bt_ctf_field_type_get_type_id(magic_field_type) !=
71 BT_CTF_TYPE_ID_INTEGER) {
72 /* Magic field is not an integer. Not an error, skip. */
73 goto end;
74 }
75
76 if (bt_ctf_field_type_integer_get_size(magic_field_type) != 32) {
77 /*
78 * Magic field is not of the expected size.
79 * Not an error, skip.
80 */
81 goto end;
82 }
83
84 ret = bt_ctf_field_type_integer_get_signed(magic_field_type);
85 assert(ret >= 0);
86 if (ret) {
87 ret = bt_ctf_field_signed_integer_set_value(magic_field,
88 (int64_t) 0xC1FC1FC1);
89 } else {
90 ret = bt_ctf_field_unsigned_integer_set_value(magic_field,
91 (uint64_t) 0xC1FC1FC1);
92 }
93 end:
94 bt_put(magic_field);
95 bt_put(magic_field_type);
96 return ret;
97 }
98
99 static
100 int set_packet_header_uuid(struct bt_ctf_stream *stream)
101 {
102 int i, ret = 0;
103 struct bt_ctf_trace *trace = NULL;
104 struct bt_ctf_field_type *uuid_field_type = NULL;
105 struct bt_ctf_field_type *element_field_type = NULL;
106 struct bt_ctf_field *uuid_field = bt_ctf_field_structure_get_field(
107 stream->packet_header, "uuid");
108
109 if (!uuid_field) {
110 /* No uuid field found. Not an error, skip. */
111 goto end;
112 }
113
114 if (!bt_ctf_field_validate(uuid_field)) {
115 /* Value already set. Not an error, skip. */
116 goto end;
117 }
118
119 uuid_field_type = bt_ctf_field_get_type(uuid_field);
120 assert(uuid_field_type);
121 if (bt_ctf_field_type_get_type_id(uuid_field_type) !=
122 BT_CTF_TYPE_ID_ARRAY) {
123 /* UUID field is not an array. Not an error, skip. */
124 goto end;
125 }
126
127 if (bt_ctf_field_type_array_get_length(uuid_field_type) != 16) {
128 /*
129 * UUID field is not of the expected size.
130 * Not an error, skip.
131 */
132 goto end;
133 }
134
135 element_field_type = bt_ctf_field_type_array_get_element_type(
136 uuid_field_type);
137 assert(element_field_type);
138 if (bt_ctf_field_type_get_type_id(element_field_type) !=
139 BT_CTF_TYPE_ID_INTEGER) {
140 /* UUID array elements are not integers. Not an error, skip */
141 goto end;
142 }
143
144 trace = (struct bt_ctf_trace *) bt_object_get_parent(stream);
145 for (i = 0; i < 16; i++) {
146 struct bt_ctf_field *uuid_element =
147 bt_ctf_field_array_get_field(uuid_field, i);
148
149 ret = bt_ctf_field_type_integer_get_signed(element_field_type);
150 assert(ret >= 0);
151
152 if (ret) {
153 ret = bt_ctf_field_signed_integer_set_value(
154 uuid_element, (int64_t) trace->uuid[i]);
155 } else {
156 ret = bt_ctf_field_unsigned_integer_set_value(
157 uuid_element,
158 (uint64_t) trace->uuid[i]);
159 }
160 bt_put(uuid_element);
161 if (ret) {
162 goto end;
163 }
164 }
165
166 end:
167 bt_put(uuid_field);
168 bt_put(uuid_field_type);
169 bt_put(element_field_type);
170 BT_PUT(trace);
171 return ret;
172 }
173 static
174 int set_packet_header_stream_id(struct bt_ctf_stream *stream)
175 {
176 int ret = 0;
177 uint32_t stream_id;
178 struct bt_ctf_field_type *stream_id_field_type = NULL;
179 struct bt_ctf_field *stream_id_field = bt_ctf_field_structure_get_field(
180 stream->packet_header, "stream_id");
181
182 if (!stream_id_field) {
183 /* No stream_id field found. Not an error, skip. */
184 goto end;
185 }
186
187 if (!bt_ctf_field_validate(stream_id_field)) {
188 /* Value already set. Not an error, skip. */
189 goto end;
190 }
191
192 stream_id_field_type = bt_ctf_field_get_type(stream_id_field);
193 assert(stream_id_field_type);
194 if (bt_ctf_field_type_get_type_id(stream_id_field_type) !=
195 BT_CTF_TYPE_ID_INTEGER) {
196 /* stream_id field is not an integer. Not an error, skip. */
197 goto end;
198 }
199
200 stream_id = stream->stream_class->id;
201 ret = bt_ctf_field_type_integer_get_signed(stream_id_field_type);
202 assert(ret >= 0);
203 if (ret) {
204 ret = bt_ctf_field_signed_integer_set_value(stream_id_field,
205 (int64_t) stream_id);
206 } else {
207 ret = bt_ctf_field_unsigned_integer_set_value(stream_id_field,
208 (uint64_t) stream_id);
209 }
210 end:
211 bt_put(stream_id_field);
212 bt_put(stream_id_field_type);
213 return ret;
214 }
215
216 static
217 int set_packet_header(struct bt_ctf_stream *stream)
218 {
219 int ret;
220
221 ret = set_packet_header_magic(stream);
222 if (ret) {
223 goto end;
224 }
225
226 ret = set_packet_header_uuid(stream);
227 if (ret) {
228 goto end;
229 }
230
231 ret = set_packet_header_stream_id(stream);
232 if (ret) {
233 goto end;
234 }
235 end:
236 return ret;
237 }
238
239 static
240 void release_event(struct bt_ctf_event *event)
241 {
242 if (bt_object_get_ref_count(event)) {
243 /*
244 * The event is being orphaned, but it must guarantee the
245 * existence of its event class for the duration of its
246 * lifetime.
247 */
248 bt_get(event->event_class);
249 BT_PUT(event->base.parent);
250 } else {
251 bt_object_release(event);
252 }
253 }
254
255 BT_HIDDEN
256 struct bt_ctf_stream *bt_ctf_stream_create(
257 struct bt_ctf_stream_class *stream_class,
258 struct bt_ctf_trace *trace)
259 {
260 int ret;
261 struct bt_ctf_stream *stream = NULL;
262
263 if (!stream_class || !trace) {
264 goto end;
265 }
266
267 stream = g_new0(struct bt_ctf_stream, 1);
268 if (!stream) {
269 goto end;
270 }
271
272 bt_object_init(stream, bt_ctf_stream_destroy);
273 /*
274 * Acquire reference to parent since stream will become publicly
275 * reachable; it needs its parent to remain valid.
276 */
277 bt_object_set_parent(stream, trace);
278 stream->packet_context = bt_ctf_field_create(
279 stream_class->packet_context_type);
280 if (!stream->packet_context) {
281 goto error;
282 }
283
284 /*
285 * A stream class may not have a stream event context defined
286 * in which case this stream will never have a stream_event_context
287 * member since, after a stream's creation, the parent stream class
288 * is "frozen" (immutable).
289 */
290 if (stream_class->event_context_type) {
291 stream->event_context = bt_ctf_field_create(
292 stream_class->event_context_type);
293 if (!stream->event_context) {
294 goto error;
295 }
296 }
297
298 /* Initialize events_discarded */
299 ret = set_structure_field_integer(stream->packet_context,
300 "events_discarded", 0);
301 if (ret) {
302 goto error;
303 }
304
305 stream->pos.fd = -1;
306 stream->id = stream_class->next_stream_id++;
307 stream->stream_class = stream_class;
308 stream->events = g_ptr_array_new_with_free_func(
309 (GDestroyNotify) release_event);
310 if (!stream->events) {
311 goto error;
312 }
313 if (stream_class->event_context_type) {
314 stream->event_contexts = g_ptr_array_new_with_free_func(
315 (GDestroyNotify) bt_put);
316 if (!stream->event_contexts) {
317 goto error;
318 }
319 }
320
321 /* A trace is not allowed to have a NULL packet header */
322 assert(trace->packet_header_type);
323 stream->packet_header = bt_ctf_field_create(trace->packet_header_type);
324 if (!stream->packet_header) {
325 goto error;
326 }
327 /*
328 * Attempt to populate the default trace packet header fields
329 * (magic, uuid and stream_id). This will _not_ fail shall the
330 * fields not be found or be of an incompatible type; they will
331 * simply not be populated automatically. The user will have to
332 * make sure to set the trace packet header fields himself before
333 * flushing.
334 */
335 ret = set_packet_header(stream);
336 if (ret) {
337 goto error;
338 }
339 end:
340 return stream;
341 error:
342 BT_PUT(stream);
343 bt_put(trace);
344 return stream;
345 }
346
347 BT_HIDDEN
348 int bt_ctf_stream_set_fd(struct bt_ctf_stream *stream, int fd)
349 {
350 int ret = 0;
351
352 if (stream->pos.fd != -1) {
353 ret = -1;
354 goto end;
355 }
356
357 ctf_init_pos(&stream->pos, NULL, fd, O_RDWR);
358 stream->pos.fd = fd;
359 end:
360 return ret;
361 }
362
363 struct bt_ctf_stream_class *bt_ctf_stream_get_class(
364 struct bt_ctf_stream *stream)
365 {
366 struct bt_ctf_stream_class *stream_class = NULL;
367
368 if (!stream) {
369 goto end;
370 }
371
372 stream_class = stream->stream_class;
373 bt_get(stream_class);
374 end:
375 return stream_class;
376 }
377
378 int bt_ctf_stream_get_discarded_events_count(
379 struct bt_ctf_stream *stream, uint64_t *count)
380 {
381 int64_t ret = 0;
382 int field_signed;
383 struct bt_ctf_field *events_discarded_field = NULL;
384 struct bt_ctf_field_type *events_discarded_field_type = NULL;
385
386 if (!stream || !count || !stream->packet_context) {
387 ret = -1;
388 goto end;
389 }
390
391 events_discarded_field = bt_ctf_field_structure_get_field(
392 stream->packet_context, "events_discarded");
393 if (!events_discarded_field) {
394 ret = -1;
395 goto end;
396 }
397
398 events_discarded_field_type = bt_ctf_field_get_type(
399 events_discarded_field);
400 if (!events_discarded_field_type) {
401 ret = -1;
402 goto end;
403 }
404
405 field_signed = bt_ctf_field_type_integer_get_signed(
406 events_discarded_field_type);
407 if (field_signed < 0) {
408 ret = field_signed;
409 goto end;
410 }
411
412 if (field_signed) {
413 int64_t signed_count;
414
415 ret = bt_ctf_field_signed_integer_get_value(
416 events_discarded_field, &signed_count);
417 if (ret) {
418 goto end;
419 }
420 if (signed_count < 0) {
421 /* Invalid value */
422 ret = -1;
423 goto end;
424 }
425 *count = (uint64_t) signed_count;
426 } else {
427 ret = bt_ctf_field_unsigned_integer_get_value(
428 events_discarded_field, count);
429 if (ret) {
430 goto end;
431 }
432 }
433 end:
434 bt_put(events_discarded_field);
435 bt_put(events_discarded_field_type);
436 return ret;
437 }
438
439 void bt_ctf_stream_append_discarded_events(struct bt_ctf_stream *stream,
440 uint64_t event_count)
441 {
442 int ret;
443 int field_signed;
444 uint64_t previous_count;
445 uint64_t new_count;
446 struct bt_ctf_field *events_discarded_field = NULL;
447 struct bt_ctf_field_type *events_discarded_field_type = NULL;
448
449 if (!stream || !stream->packet_context) {
450 goto end;
451 }
452
453 ret = bt_ctf_stream_get_discarded_events_count(stream,
454 &previous_count);
455 if (ret) {
456 goto end;
457 }
458
459 events_discarded_field = bt_ctf_field_structure_get_field(
460 stream->packet_context, "events_discarded");
461 if (!events_discarded_field) {
462 goto end;
463 }
464
465 events_discarded_field_type = bt_ctf_field_get_type(
466 events_discarded_field);
467 if (!events_discarded_field_type) {
468 goto end;
469 }
470
471 field_signed = bt_ctf_field_type_integer_get_signed(
472 events_discarded_field_type);
473 if (field_signed < 0) {
474 goto end;
475 }
476
477 new_count = previous_count + event_count;
478 if (field_signed) {
479 ret = bt_ctf_field_signed_integer_set_value(
480 events_discarded_field, (int64_t) new_count);
481 if (ret) {
482 goto end;
483 }
484 } else {
485 ret = bt_ctf_field_unsigned_integer_set_value(
486 events_discarded_field, new_count);
487 if (ret) {
488 goto end;
489 }
490 }
491
492 end:
493 bt_put(events_discarded_field);
494 bt_put(events_discarded_field_type);
495 }
496
497 int bt_ctf_stream_append_event(struct bt_ctf_stream *stream,
498 struct bt_ctf_event *event)
499 {
500 int ret = 0;
501 struct bt_ctf_field *event_context_copy = NULL;
502
503 if (!stream || !event) {
504 ret = -1;
505 goto end;
506 }
507
508 bt_object_set_parent(event, stream);
509 ret = bt_ctf_event_populate_event_header(event);
510 if (ret) {
511 goto end;
512 }
513
514 /* Make sure the event's payload is set */
515 ret = bt_ctf_event_validate(event);
516 if (ret) {
517 goto end;
518 }
519
520 /* Sample the current stream event context by copying it */
521 if (stream->event_context) {
522 /* Make sure the event context's payload is set */
523 ret = bt_ctf_field_validate(stream->event_context);
524 if (ret) {
525 goto end;
526 }
527
528 event_context_copy = bt_ctf_field_copy(stream->event_context);
529 if (!event_context_copy) {
530 ret = -1;
531 goto end;
532 }
533 }
534
535 /* Save the new event along with its associated stream event context */
536 g_ptr_array_add(stream->events, event);
537 if (event_context_copy) {
538 g_ptr_array_add(stream->event_contexts, event_context_copy);
539 }
540 /*
541 * Event had to hold a reference to its event class as long as it wasn't
542 * part of the same trace hierarchy. From now on, the event and its
543 * class share the same lifetime guarantees and the reference is no
544 * longer needed.
545 */
546 bt_put(event->event_class);
547 end:
548 if (ret) {
549 /*
550 * Orphan the event; we were not succesful in associating it to
551 * a stream.
552 */
553 bt_object_set_parent(event, NULL);
554 }
555 return ret;
556 }
557
558 struct bt_ctf_field *bt_ctf_stream_get_packet_context(
559 struct bt_ctf_stream *stream)
560 {
561 struct bt_ctf_field *packet_context = NULL;
562
563 if (!stream) {
564 goto end;
565 }
566
567 packet_context = stream->packet_context;
568 if (packet_context) {
569 bt_get(packet_context);
570 }
571 end:
572 return packet_context;
573 }
574
575 int bt_ctf_stream_set_packet_context(struct bt_ctf_stream *stream,
576 struct bt_ctf_field *field)
577 {
578 int ret = 0;
579 struct bt_ctf_field_type *field_type;
580
581 if (!stream || !field) {
582 ret = -1;
583 goto end;
584 }
585
586 field_type = bt_ctf_field_get_type(field);
587 if (bt_ctf_field_type_compare(field_type,
588 stream->stream_class->packet_context_type)) {
589 ret = -1;
590 goto end;
591 }
592
593 bt_put(field_type);
594 bt_get(field);
595 bt_put(stream->packet_context);
596 stream->packet_context = field;
597 end:
598 return ret;
599 }
600
601 struct bt_ctf_field *bt_ctf_stream_get_event_context(
602 struct bt_ctf_stream *stream)
603 {
604 struct bt_ctf_field *event_context = NULL;
605
606 if (!stream) {
607 goto end;
608 }
609
610 event_context = stream->event_context;
611 if (event_context) {
612 bt_get(event_context);
613 }
614 end:
615 return event_context;
616 }
617
618 int bt_ctf_stream_set_event_context(struct bt_ctf_stream *stream,
619 struct bt_ctf_field *field)
620 {
621 int ret = 0;
622 struct bt_ctf_field_type *field_type = NULL;
623
624 if (!stream || !field) {
625 ret = -1;
626 goto end;
627 }
628
629 field_type = bt_ctf_field_get_type(field);
630 if (bt_ctf_field_type_compare(field_type,
631 stream->stream_class->event_context_type)) {
632 ret = -1;
633 goto end;
634 }
635
636 bt_get(field);
637 bt_put(stream->event_context);
638 stream->event_context = field;
639 end:
640 bt_put(field_type);
641 return ret;
642 }
643
644 struct bt_ctf_field *bt_ctf_stream_get_packet_header(
645 struct bt_ctf_stream *stream)
646 {
647 struct bt_ctf_field *packet_header = NULL;
648
649 if (!stream) {
650 goto end;
651 }
652
653 packet_header = stream->packet_header;
654 if (packet_header) {
655 bt_get(packet_header);
656 }
657 end:
658 return packet_header;
659 }
660
661 int bt_ctf_stream_set_packet_header(struct bt_ctf_stream *stream,
662 struct bt_ctf_field *field)
663 {
664 int ret = 0;
665 struct bt_ctf_trace *trace = NULL;
666 struct bt_ctf_field_type *field_type = NULL;
667
668 if (!stream || !field) {
669 ret = -1;
670 goto end;
671 }
672
673 trace = (struct bt_ctf_trace *) bt_object_get_parent(stream);
674 field_type = bt_ctf_field_get_type(field);
675 if (bt_ctf_field_type_compare(field_type, trace->packet_header_type)) {
676 ret = -1;
677 goto end;
678 }
679
680 bt_get(field);
681 bt_put(stream->packet_header);
682 stream->packet_header = field;
683 end:
684 BT_PUT(trace);
685 bt_put(field_type);
686 return ret;
687 }
688
689 static
690 int get_event_header_timestamp(struct bt_ctf_field *event_header, uint64_t *timestamp)
691 {
692 int ret = 0;
693 struct bt_ctf_field *timestamp_field = NULL;
694 struct bt_ctf_field_type *timestamp_field_type = NULL;
695
696 timestamp_field = bt_ctf_field_structure_get_field(event_header,
697 "timestamp");
698 if (!timestamp_field) {
699 ret = -1;
700 goto end;
701 }
702
703 timestamp_field_type = bt_ctf_field_get_type(timestamp_field);
704 assert(timestamp_field_type);
705 if (bt_ctf_field_type_get_type_id(timestamp_field_type) !=
706 BT_CTF_TYPE_ID_INTEGER) {
707 ret = -1;
708 goto end;
709 }
710
711 if (bt_ctf_field_type_integer_get_signed(timestamp_field_type)) {
712 int64_t val;
713
714 ret = bt_ctf_field_signed_integer_get_value(timestamp_field,
715 &val);
716 if (ret) {
717 goto end;
718 }
719 *timestamp = (uint64_t) val;
720 } else {
721 ret = bt_ctf_field_unsigned_integer_get_value(timestamp_field,
722 timestamp);
723 if (ret) {
724 goto end;
725 }
726 }
727 end:
728 bt_put(timestamp_field);
729 bt_put(timestamp_field_type);
730 return ret;
731 }
732
733 int bt_ctf_stream_flush(struct bt_ctf_stream *stream)
734 {
735 int ret = 0;
736 size_t i;
737 uint64_t timestamp_begin, timestamp_end, events_discarded;
738 struct bt_ctf_field *integer = NULL;
739 struct ctf_stream_pos packet_context_pos;
740
741 if (!stream || stream->pos.fd < 0) {
742 /*
743 * Stream does not have an associated fd. It is,
744 * therefore, not a stream being used to write events.
745 */
746 ret = -1;
747 goto end;
748 }
749
750 if (!stream->events->len) {
751 goto end;
752 }
753
754 ret = bt_ctf_field_validate(stream->packet_header);
755 if (ret) {
756 goto end;
757 }
758
759 /* mmap the next packet */
760 ctf_packet_seek(&stream->pos.parent, 0, SEEK_CUR);
761
762 ret = bt_ctf_field_serialize(stream->packet_header, &stream->pos);
763 if (ret) {
764 goto end;
765 }
766
767 /* Set the default context attributes if present and unset. */
768 if (!get_event_header_timestamp(
769 ((struct bt_ctf_event *) g_ptr_array_index(
770 stream->events, 0))->event_header, &timestamp_begin)) {
771 ret = set_structure_field_integer(stream->packet_context,
772 "timestamp_begin", timestamp_begin);
773 if (ret) {
774 goto end;
775 }
776 }
777
778 if (!get_event_header_timestamp(
779 ((struct bt_ctf_event *) g_ptr_array_index(
780 stream->events, stream->events->len - 1))->event_header,
781 &timestamp_end)) {
782
783 ret = set_structure_field_integer(stream->packet_context,
784 "timestamp_end", timestamp_end);
785 if (ret) {
786 goto end;
787 }
788 }
789 ret = set_structure_field_integer(stream->packet_context,
790 "content_size", UINT64_MAX);
791 if (ret) {
792 goto end;
793 }
794
795 ret = set_structure_field_integer(stream->packet_context,
796 "packet_size", UINT64_MAX);
797 if (ret) {
798 goto end;
799 }
800
801 /* Write packet context */
802 memcpy(&packet_context_pos, &stream->pos,
803 sizeof(struct ctf_stream_pos));
804 ret = bt_ctf_field_serialize(stream->packet_context,
805 &stream->pos);
806 if (ret) {
807 goto end;
808 }
809
810 ret = bt_ctf_stream_get_discarded_events_count(stream,
811 &events_discarded);
812 if (ret) {
813 goto end;
814 }
815
816 /* Unset the packet context's fields. */
817 ret = bt_ctf_field_reset(stream->packet_context);
818 if (ret) {
819 goto end;
820 }
821
822 /* Set the previous number of discarded events. */
823 ret = set_structure_field_integer(stream->packet_context,
824 "events_discarded", events_discarded);
825 if (ret) {
826 goto end;
827 }
828
829 for (i = 0; i < stream->events->len; i++) {
830 struct bt_ctf_event *event = g_ptr_array_index(
831 stream->events, i);
832
833 ret = bt_ctf_field_reset(event->event_header);
834 if (ret) {
835 goto end;
836 }
837
838 /* Write event header */
839 ret = bt_ctf_field_serialize(event->event_header,
840 &stream->pos);
841 if (ret) {
842 goto end;
843 }
844
845 /* Write stream event context */
846 if (stream->event_contexts) {
847 ret = bt_ctf_field_serialize(
848 g_ptr_array_index(stream->event_contexts, i),
849 &stream->pos);
850 if (ret) {
851 goto end;
852 }
853 }
854
855 /* Write event content */
856 ret = bt_ctf_event_serialize(event, &stream->pos);
857 if (ret) {
858 goto end;
859 }
860 }
861
862 /*
863 * Update the packet total size and content size and overwrite the
864 * packet context.
865 * Copy base_mma as the packet may have been remapped (e.g. when a
866 * packet is resized).
867 */
868 packet_context_pos.base_mma = stream->pos.base_mma;
869 ret = set_structure_field_integer(stream->packet_context,
870 "content_size", stream->pos.offset);
871 if (ret) {
872 goto end;
873 }
874
875 ret = set_structure_field_integer(stream->packet_context,
876 "packet_size", stream->pos.packet_size);
877 if (ret) {
878 goto end;
879 }
880
881 ret = bt_ctf_field_serialize(stream->packet_context,
882 &packet_context_pos);
883 if (ret) {
884 goto end;
885 }
886
887 g_ptr_array_set_size(stream->events, 0);
888 if (stream->event_contexts) {
889 g_ptr_array_set_size(stream->event_contexts, 0);
890 }
891 stream->flushed_packet_count++;
892 end:
893 bt_put(integer);
894 return ret;
895 }
896
897 void bt_ctf_stream_get(struct bt_ctf_stream *stream)
898 {
899 bt_get(stream);
900 }
901
902 void bt_ctf_stream_put(struct bt_ctf_stream *stream)
903 {
904 bt_put(stream);
905 }
906
907 static
908 void bt_ctf_stream_destroy(struct bt_object *obj)
909 {
910 struct bt_ctf_stream *stream;
911
912 stream = container_of(obj, struct bt_ctf_stream, base);
913 ctf_fini_pos(&stream->pos);
914 if (stream->pos.fd >= 0 && close(stream->pos.fd)) {
915 perror("close");
916 }
917
918 if (stream->events) {
919 g_ptr_array_free(stream->events, TRUE);
920 }
921 if (stream->event_contexts) {
922 g_ptr_array_free(stream->event_contexts, TRUE);
923 }
924 bt_put(stream->packet_header);
925 bt_put(stream->packet_context);
926 bt_put(stream->event_context);
927 g_free(stream);
928 }
929
930 static
931 int set_structure_field_integer(struct bt_ctf_field *structure, char *name,
932 uint64_t value)
933 {
934 int ret = 0;
935 struct bt_ctf_field_type *field_type = NULL;
936 struct bt_ctf_field *integer =
937 bt_ctf_field_structure_get_field(structure, name);
938
939 if (!structure || !name) {
940 ret = -1;
941 goto end;
942 }
943
944 if (!integer) {
945 /* Field not found, not an error. */
946 goto end;
947 }
948
949 /* Make sure the payload has not already been set. */
950 if (!bt_ctf_field_validate(integer)) {
951 /* Payload already set, not an error */
952 goto end;
953 }
954
955 field_type = bt_ctf_field_get_type(integer);
956 /* Something is serioulsly wrong */
957 assert(field_type);
958 if (bt_ctf_field_type_get_type_id(field_type) != BT_CTF_TYPE_ID_INTEGER) {
959 /*
960 * The user most likely meant for us to populate this field
961 * automatically. However, we can only do this if the field
962 * is an integer. Return an error.
963 */
964 ret = -1;
965 goto end;
966 }
967
968 if (bt_ctf_field_type_integer_get_signed(field_type)) {
969 ret = bt_ctf_field_signed_integer_set_value(integer,
970 (int64_t) value);
971 } else {
972 ret = bt_ctf_field_unsigned_integer_set_value(integer, value);
973 }
974 end:
975 bt_put(integer);
976 bt_put(field_type);
977 return ret;
978 }
This page took 0.050094 seconds and 4 git commands to generate.