sink.text.details: use write_none_prop_value() for empty array fields
[babeltrace.git] / src / plugins / ctf / fs-sink / fs-sink-stream.c
CommitLineData
15fe47e0
PP
1/*
2 * Copyright 2019 Philippe Proulx <pproulx@efficios.com>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 * SOFTWARE.
21 */
22
aa1a7452 23#define BT_COMP_LOG_SELF_COMP (stream->trace->fs_sink->self_comp)
ffa3b2b3 24#define BT_LOG_OUTPUT_LEVEL (stream->log_level)
350ad6c1 25#define BT_LOG_TAG "PLUGIN/SINK.CTF.FS/STREAM"
d9c39b0a 26#include "logging/comp-logging.h"
15fe47e0 27
3fadfbc0 28#include <babeltrace2/babeltrace.h>
15fe47e0
PP
29#include <stdio.h>
30#include <stdbool.h>
31#include <glib.h>
578e048b
MJ
32#include "common/assert.h"
33#include "ctfser/ctfser.h"
34#include "compat/endian.h"
15fe47e0 35
aa1a7452 36#include "fs-sink.h"
15fe47e0
PP
37#include "fs-sink-trace.h"
38#include "fs-sink-stream.h"
39#include "translate-trace-ir-to-ctf-ir.h"
40
41BT_HIDDEN
42void fs_sink_stream_destroy(struct fs_sink_stream *stream)
43{
44 if (!stream) {
45 goto end;
46 }
47
48 bt_ctfser_fini(&stream->ctfser);
49
50 if (stream->file_name) {
51 g_string_free(stream->file_name, TRUE);
52 stream->file_name = NULL;
53 }
54
55 bt_packet_put_ref(stream->packet_state.packet);
56 g_free(stream);
57
58end:
59 return;
60}
61
62static
63bool stream_file_name_exists(struct fs_sink_trace *trace, const char *name)
64{
65 bool exists = false;
66 GHashTableIter iter;
67 gpointer key, value;
68
69 g_hash_table_iter_init(&iter, trace->streams);
70
71 while (g_hash_table_iter_next(&iter, &key, &value)) {
72 struct fs_sink_stream *stream = value;
73
74 if (strcmp(name, stream->file_name->str) == 0) {
75 exists = true;
76 goto end;
77 }
78 }
79
80end:
81 return exists;
82}
83
84static
85GString *sanitize_stream_file_name(const char *file_name)
86{
87 GString *san_file_name = g_string_new(NULL);
88 const char *ch;
89 gchar *basename;
90
91 BT_ASSERT(san_file_name);
92 BT_ASSERT(file_name);
93 basename = g_path_get_basename(file_name);
94
95 for (ch = basename; *ch != '\0'; ch++) {
96 if (*ch == '/') {
97 g_string_append_c(san_file_name, '_');
98 } else {
99 g_string_append_c(san_file_name, *ch);
100 }
101 }
102
103 /* Do not allow `.` and `..` either */
104 if (strcmp(san_file_name->str, ".") == 0 ||
105 strcmp(san_file_name->str, "..") == 0) {
106 g_string_assign(san_file_name, "stream");
107 }
108
109 g_free(basename);
110 return san_file_name;
111}
112
113static
114GString *make_unique_stream_file_name(struct fs_sink_trace *trace,
115 const char *base)
116{
117 GString *san_base = sanitize_stream_file_name(base);
118 GString *name = g_string_new(san_base->str);
119 unsigned int suffix = 0;
120
121 BT_ASSERT(name);
122
123 while (stream_file_name_exists(trace, name->str) &&
124 strcmp(name->str, "metadata") == 0) {
b1acab38 125 g_string_printf(name, "%s-%u", san_base->str, suffix);
15fe47e0
PP
126 suffix++;
127 }
128
129 g_string_free(san_base, TRUE);
130 return name;
131}
132
133static
134void set_stream_file_name(struct fs_sink_stream *stream)
135{
136 const char *base_name = bt_stream_get_name(stream->ir_stream);
137
138 if (!base_name) {
139 base_name = "stream";
140 }
141
142 BT_ASSERT(!stream->file_name);
143 stream->file_name = make_unique_stream_file_name(stream->trace,
144 base_name);
145}
146
147BT_HIDDEN
148struct fs_sink_stream *fs_sink_stream_create(struct fs_sink_trace *trace,
149 const bt_stream *ir_stream)
150{
151 struct fs_sink_stream *stream = g_new0(struct fs_sink_stream, 1);
152 int ret;
153 GString *path = g_string_new(trace->path->str);
154
155 if (!stream) {
156 goto end;
157 }
158
ffa3b2b3 159 stream->log_level = trace->log_level;
15fe47e0
PP
160 stream->trace = trace;
161 stream->ir_stream = ir_stream;
162 stream->packet_state.beginning_cs = UINT64_C(-1);
163 stream->packet_state.end_cs = UINT64_C(-1);
164 stream->prev_packet_state.end_cs = UINT64_C(-1);
165 stream->prev_packet_state.discarded_events_counter = UINT64_C(-1);
166 stream->prev_packet_state.seq_num = UINT64_C(-1);
aa1a7452 167 ret = try_translate_stream_class_trace_ir_to_ctf_ir(trace->fs_sink,
335a2da5 168 trace->trace, bt_stream_borrow_class_const(ir_stream),
aa1a7452 169 &stream->sc);
15fe47e0
PP
170 if (ret) {
171 goto error;
172 }
173
174 set_stream_file_name(stream);
175 g_string_append_printf(path, "/%s", stream->file_name->str);
ffa3b2b3
PP
176 ret = bt_ctfser_init(&stream->ctfser, path->str,
177 stream->log_level);
15fe47e0
PP
178 if (ret) {
179 goto error;
180 }
181
182 g_hash_table_insert(trace->streams, (gpointer) ir_stream, stream);
183 goto end;
184
185error:
186 fs_sink_stream_destroy(stream);
187 stream = NULL;
188
189end:
190 if (path) {
191 g_string_free(path, TRUE);
192 }
193
194 return stream;
195}
196
197static
198int write_field(struct fs_sink_stream *stream,
199 struct fs_sink_ctf_field_class *fc, const bt_field *field);
200
ecd27ae4
PP
201static inline
202int write_bool_field(struct fs_sink_stream *stream,
203 struct fs_sink_ctf_field_class_int *fc, const bt_field *field)
204{
205 /*
206 * CTF 1.8 has no boolean field class type, so this component
207 * translates this boolean field to an 8-bit unsigned integer
208 * field which has the value 0 (false) or 1 (true).
209 */
210 return bt_ctfser_write_unsigned_int(&stream->ctfser,
211 bt_field_bool_get_value(field) ? 1 : 0,
212 fc->base.base.alignment, fc->base.size, BYTE_ORDER);
213}
214
15fe47e0
PP
215static inline
216int write_int_field(struct fs_sink_stream *stream,
217 struct fs_sink_ctf_field_class_int *fc, const bt_field *field)
218{
219 int ret;
220
221 if (fc->is_signed) {
222 ret = bt_ctfser_write_signed_int(&stream->ctfser,
9c08c816 223 bt_field_integer_signed_get_value(field),
15fe47e0
PP
224 fc->base.base.alignment, fc->base.size, BYTE_ORDER);
225 } else {
226 ret = bt_ctfser_write_unsigned_int(&stream->ctfser,
9c08c816 227 bt_field_integer_unsigned_get_value(field),
15fe47e0
PP
228 fc->base.base.alignment, fc->base.size, BYTE_ORDER);
229 }
230
231 return ret;
232}
233
234static inline
235int write_float_field(struct fs_sink_stream *stream,
236 struct fs_sink_ctf_field_class_float *fc, const bt_field *field)
237{
238 int ret;
239 double val = bt_field_real_get_value(field);
240
241 if (fc->base.size == 32) {
242 ret = bt_ctfser_write_float32(&stream->ctfser, val,
243 fc->base.base.alignment, BYTE_ORDER);
244 } else {
263e3582 245 ret = bt_ctfser_write_float64(&stream->ctfser, val,
15fe47e0
PP
246 fc->base.base.alignment, BYTE_ORDER);
247 }
248
249 return ret;
250}
251
252static inline
253int write_string_field(struct fs_sink_stream *stream,
254 struct fs_sink_ctf_field_class_string *fc, const bt_field *field)
255{
256 return bt_ctfser_write_string(&stream->ctfser,
257 bt_field_string_get_value(field));
258}
259
260static inline
261int write_array_field_elements(struct fs_sink_stream *stream,
262 struct fs_sink_ctf_field_class_array_base *fc,
263 const bt_field *field)
264{
265 uint64_t i;
266 uint64_t len = bt_field_array_get_length(field);
267 int ret = 0;
268
269 for (i = 0; i < len; i++) {
270 const bt_field *elem_field =
271 bt_field_array_borrow_element_field_by_index_const(
272 field, i);
273 ret = write_field(stream, fc->elem_fc, elem_field);
91d81473 274 if (G_UNLIKELY(ret)) {
15fe47e0
PP
275 goto end;
276 }
277 }
278
279end:
280 return ret;
281}
282
283static inline
284int write_sequence_field(struct fs_sink_stream *stream,
285 struct fs_sink_ctf_field_class_sequence *fc,
286 const bt_field *field)
287{
288 int ret;
289
290 if (fc->length_is_before) {
291 ret = bt_ctfser_write_unsigned_int(&stream->ctfser,
292 bt_field_array_get_length(field), 8, 32, BYTE_ORDER);
91d81473 293 if (G_UNLIKELY(ret)) {
15fe47e0
PP
294 goto end;
295 }
296 }
297
298 ret = write_array_field_elements(stream, (void *) fc, field);
299
300end:
301 return ret;
302}
303
304static inline
305int write_struct_field(struct fs_sink_stream *stream,
306 struct fs_sink_ctf_field_class_struct *fc,
307 const bt_field *field, bool align_struct)
308{
309 int ret = 0;
310 uint64_t i;
311
91d81473 312 if (G_LIKELY(align_struct)) {
15fe47e0
PP
313 ret = bt_ctfser_align_offset_in_current_packet(&stream->ctfser,
314 fc->base.alignment);
91d81473 315 if (G_UNLIKELY(ret)) {
15fe47e0
PP
316 goto end;
317 }
318 }
319
320 for (i = 0; i < fc->members->len; i++) {
321 const bt_field *memb_field =
322 bt_field_structure_borrow_member_field_by_index_const(
323 field, i);
324 struct fs_sink_ctf_field_class *member_fc =
325 fs_sink_ctf_field_class_struct_borrow_member_by_index(
326 fc, i)->fc;
327
328 ret = write_field(stream, member_fc, memb_field);
91d81473 329 if (G_UNLIKELY(ret)) {
15fe47e0
PP
330 goto end;
331 }
332 }
333
334end:
335 return ret;
336}
337
338static inline
339int write_variant_field(struct fs_sink_stream *stream,
340 struct fs_sink_ctf_field_class_variant *fc,
341 const bt_field *field)
342{
343 uint64_t opt_index =
344 bt_field_variant_get_selected_option_field_index(field);
345 int ret;
346
347 if (fc->tag_is_before) {
348 ret = bt_ctfser_write_unsigned_int(&stream->ctfser,
349 opt_index, 8, 16, BYTE_ORDER);
91d81473 350 if (G_UNLIKELY(ret)) {
15fe47e0
PP
351 goto end;
352 }
353 }
354
355 ret = write_field(stream,
356 fs_sink_ctf_field_class_variant_borrow_option_by_index(fc,
357 opt_index)->fc,
358 bt_field_variant_borrow_selected_option_field_const(field));
359
360end:
361 return ret;
362}
363
364static
365int write_field(struct fs_sink_stream *stream,
366 struct fs_sink_ctf_field_class *fc, const bt_field *field)
367{
368 int ret;
369
370 switch (fc->type) {
ecd27ae4
PP
371 case FS_SINK_CTF_FIELD_CLASS_TYPE_BOOL:
372 ret = write_bool_field(stream, (void *) fc, field);
373 break;
15fe47e0
PP
374 case FS_SINK_CTF_FIELD_CLASS_TYPE_INT:
375 ret = write_int_field(stream, (void *) fc, field);
376 break;
377 case FS_SINK_CTF_FIELD_CLASS_TYPE_FLOAT:
378 ret = write_float_field(stream, (void *) fc, field);
379 break;
380 case FS_SINK_CTF_FIELD_CLASS_TYPE_STRING:
381 ret = write_string_field(stream, (void *) fc, field);
382 break;
383 case FS_SINK_CTF_FIELD_CLASS_TYPE_STRUCT:
384 ret = write_struct_field(stream, (void *) fc, field, true);
385 break;
386 case FS_SINK_CTF_FIELD_CLASS_TYPE_ARRAY:
387 ret = write_array_field_elements(stream, (void *) fc, field);
388 break;
389 case FS_SINK_CTF_FIELD_CLASS_TYPE_SEQUENCE:
390 ret = write_sequence_field(stream, (void *) fc, field);
391 break;
392 case FS_SINK_CTF_FIELD_CLASS_TYPE_VARIANT:
393 ret = write_variant_field(stream, (void *) fc, field);
394 break;
395 default:
396 abort();
397 }
398
399 return ret;
400}
401
402static inline
403int write_event_header(struct fs_sink_stream *stream,
404 const bt_clock_snapshot *cs, struct fs_sink_ctf_event_class *ec)
405{
406 int ret;
407
408 /* Event class ID */
409 ret = bt_ctfser_write_byte_aligned_unsigned_int(&stream->ctfser,
410 bt_event_class_get_id(ec->ir_ec), 8, 64, BYTE_ORDER);
91d81473 411 if (G_UNLIKELY(ret)) {
15fe47e0
PP
412 goto end;
413 }
414
415 /* Time */
416 if (stream->sc->default_clock_class) {
417 BT_ASSERT(cs);
418 ret = bt_ctfser_write_byte_aligned_unsigned_int(&stream->ctfser,
419 bt_clock_snapshot_get_value(cs), 8, 64, BYTE_ORDER);
91d81473 420 if (G_UNLIKELY(ret)) {
15fe47e0
PP
421 goto end;
422 }
423 }
424
425end:
426 return ret;
427}
428
429BT_HIDDEN
430int fs_sink_stream_write_event(struct fs_sink_stream *stream,
431 const bt_clock_snapshot *cs, const bt_event *event,
432 struct fs_sink_ctf_event_class *ec)
433{
434 int ret;
435 const bt_field *field;
436
437 /* Header */
438 ret = write_event_header(stream, cs, ec);
91d81473 439 if (G_UNLIKELY(ret)) {
15fe47e0
PP
440 goto end;
441 }
442
443 /* Common context */
444 if (stream->sc->event_common_context_fc) {
445 field = bt_event_borrow_common_context_field_const(event);
446 BT_ASSERT(field);
447 ret = write_struct_field(stream,
448 (void *) stream->sc->event_common_context_fc,
449 field, true);
91d81473 450 if (G_UNLIKELY(ret)) {
15fe47e0
PP
451 goto end;
452 }
453 }
454
455 /* Specific context */
456 if (ec->spec_context_fc) {
457 field = bt_event_borrow_specific_context_field_const(event);
458 BT_ASSERT(field);
459 ret = write_struct_field(stream, (void *) ec->spec_context_fc,
460 field, true);
91d81473 461 if (G_UNLIKELY(ret)) {
15fe47e0
PP
462 goto end;
463 }
464 }
465
466 /* Specific context */
467 if (ec->payload_fc) {
468 field = bt_event_borrow_payload_field_const(event);
469 BT_ASSERT(field);
470 ret = write_struct_field(stream, (void *) ec->payload_fc,
471 field, true);
91d81473 472 if (G_UNLIKELY(ret)) {
15fe47e0
PP
473 goto end;
474 }
475 }
476
477end:
478 return ret;
479}
480
481static
482int write_packet_context(struct fs_sink_stream *stream)
483{
484 int ret;
485
486 /* Packet total size */
487 ret = bt_ctfser_write_byte_aligned_unsigned_int(&stream->ctfser,
488 stream->packet_state.total_size, 8, 64, BYTE_ORDER);
489 if (ret) {
490 goto end;
491 }
492
493 /* Packet content size */
494 ret = bt_ctfser_write_byte_aligned_unsigned_int(&stream->ctfser,
495 stream->packet_state.content_size, 8, 64, BYTE_ORDER);
496 if (ret) {
497 goto end;
498 }
499
ffb5c13c 500 if (stream->sc->packets_have_ts_begin) {
15fe47e0
PP
501 /* Beginning time */
502 ret = bt_ctfser_write_byte_aligned_unsigned_int(&stream->ctfser,
503 stream->packet_state.beginning_cs, 8, 64, BYTE_ORDER);
504 if (ret) {
505 goto end;
506 }
ffb5c13c 507 }
15fe47e0 508
ffb5c13c 509 if (stream->sc->packets_have_ts_end) {
15fe47e0
PP
510 /* End time */
511 ret = bt_ctfser_write_byte_aligned_unsigned_int(&stream->ctfser,
512 stream->packet_state.end_cs, 8, 64, BYTE_ORDER);
513 if (ret) {
514 goto end;
515 }
516 }
517
ffb5c13c
PP
518 if (stream->sc->has_discarded_events) {
519 /* Discarded event counter */
520 ret = bt_ctfser_write_byte_aligned_unsigned_int(&stream->ctfser,
521 stream->packet_state.discarded_events_counter, 8, 64,
522 BYTE_ORDER);
523 if (ret) {
524 goto end;
525 }
15fe47e0
PP
526 }
527
528 /* Sequence number */
529 ret = bt_ctfser_write_byte_aligned_unsigned_int(&stream->ctfser,
530 stream->packet_state.seq_num, 8, 64, BYTE_ORDER);
531 if (ret) {
532 goto end;
533 }
534
535 /* Other members */
536 if (stream->sc->packet_context_fc) {
26fc5aed 537 const bt_field *packet_context_field;
15fe47e0 538
26fc5aed
PP
539 BT_ASSERT(stream->packet_state.packet);
540 packet_context_field = bt_packet_borrow_context_field_const(
541 stream->packet_state.packet);
15fe47e0
PP
542 BT_ASSERT(packet_context_field);
543 ret = write_struct_field(stream,
544 (void *) stream->sc->packet_context_fc,
545 packet_context_field, false);
546 if (ret) {
547 goto end;
548 }
549 }
550
551end:
552 return ret;
553}
554
555BT_HIDDEN
556int fs_sink_stream_open_packet(struct fs_sink_stream *stream,
557 const bt_clock_snapshot *cs, const bt_packet *packet)
558{
559 int ret;
560 uint64_t i;
561
562 BT_ASSERT(!stream->packet_state.is_open);
563 bt_packet_put_ref(stream->packet_state.packet);
564 stream->packet_state.packet = packet;
565 bt_packet_get_ref(stream->packet_state.packet);
566 if (cs) {
567 stream->packet_state.beginning_cs =
568 bt_clock_snapshot_get_value(cs);
569 }
570
571 /* Open packet */
572 ret = bt_ctfser_open_packet(&stream->ctfser);
573 if (ret) {
574 /* bt_ctfser_open_packet() logs errors */
575 goto end;
576 }
577
578 /* Packet header: magic */
d1f8929c 579 ret = bt_ctfser_write_byte_aligned_unsigned_int(&stream->ctfser,
15fe47e0 580 UINT64_C(0xc1fc1fc1), 8, 32, BYTE_ORDER);
d1f8929c 581 if (ret) {
aa1a7452 582 BT_COMP_LOGE("Error writing packet header magic: stream-file-name=%s",
d1f8929c
FD
583 stream->file_name->str);
584 goto end;
585 }
15fe47e0
PP
586
587 /* Packet header: UUID */
6162e6b7 588 for (i = 0; i < BT_UUID_LEN; i++) {
d1f8929c 589 ret = bt_ctfser_write_byte_aligned_unsigned_int(&stream->ctfser,
335a2da5 590 (uint64_t) stream->sc->trace->uuid[i], 8, 8, BYTE_ORDER);
d1f8929c 591 if (ret) {
aa1a7452 592 BT_COMP_LOGE("Error writing packet header UUID: stream-file-name=%s",
d1f8929c
FD
593 stream->file_name->str);
594 goto end;
595 }
15fe47e0
PP
596 }
597
598 /* Packet header: stream class ID */
d1f8929c 599 ret = bt_ctfser_write_byte_aligned_unsigned_int(&stream->ctfser,
15fe47e0 600 bt_stream_class_get_id(stream->sc->ir_sc), 8, 64, BYTE_ORDER);
d1f8929c 601 if (ret) {
aa1a7452 602 BT_COMP_LOGE("Error writing packet header stream class id: "
d1f8929c
FD
603 "stream-file-name=%s, stream-class-id=%"PRIu64,
604 stream->file_name->str,
605 bt_stream_class_get_id(stream->sc->ir_sc));
606 goto end;
607 }
15fe47e0
PP
608
609 /* Packet header: stream ID */
d1f8929c 610 ret = bt_ctfser_write_byte_aligned_unsigned_int(&stream->ctfser,
15fe47e0 611 bt_stream_get_id(stream->ir_stream), 8, 64, BYTE_ORDER);
d1f8929c 612 if (ret) {
aa1a7452 613 BT_COMP_LOGE("Error writing packet header stream id: "
d1f8929c
FD
614 "stream-file-name=%s, stream-id=%"PRIu64,
615 stream->file_name->str,
616 bt_stream_get_id(stream->ir_stream));
617 goto end;
618 }
15fe47e0
PP
619
620 /* Save packet context's offset to rewrite it later */
621 stream->packet_state.context_offset_bits =
622 bt_ctfser_get_offset_in_current_packet_bits(&stream->ctfser);
623
624 /* Write packet context just to advance to content (first event) */
625 ret = write_packet_context(stream);
626 if (ret) {
627 goto end;
628 }
629
630 stream->packet_state.is_open = true;
631
632end:
633 return ret;
634}
635
636BT_HIDDEN
637int fs_sink_stream_close_packet(struct fs_sink_stream *stream,
638 const bt_clock_snapshot *cs)
639{
640 int ret;
641
642 BT_ASSERT(stream->packet_state.is_open);
643
644 if (cs) {
645 stream->packet_state.end_cs = bt_clock_snapshot_get_value(cs);
646 }
647
648 stream->packet_state.content_size =
649 bt_ctfser_get_offset_in_current_packet_bits(&stream->ctfser);
650 stream->packet_state.total_size =
651 (stream->packet_state.content_size + 7) & ~UINT64_C(7);
652
653 /* Rewrite packet context */
654 bt_ctfser_set_offset_in_current_packet_bits(&stream->ctfser,
655 stream->packet_state.context_offset_bits);
656 ret = write_packet_context(stream);
657 if (ret) {
658 goto end;
659 }
660
661 /* Close packet */
662 bt_ctfser_close_current_packet(&stream->ctfser,
663 stream->packet_state.total_size / 8);
664
665 /* Partially copy current packet state to previous packet state */
666 stream->prev_packet_state.end_cs = stream->packet_state.end_cs;
667 stream->prev_packet_state.discarded_events_counter =
668 stream->packet_state.discarded_events_counter;
669 stream->prev_packet_state.seq_num =
670 stream->packet_state.seq_num;
671
672 /* Reset current packet state */
673 stream->packet_state.beginning_cs = UINT64_C(-1);
674 stream->packet_state.end_cs = UINT64_C(-1);
675 stream->packet_state.content_size = 0;
676 stream->packet_state.total_size = 0;
677 stream->packet_state.seq_num += 1;
678 stream->packet_state.context_offset_bits = 0;
679 stream->packet_state.is_open = false;
680 BT_PACKET_PUT_REF_AND_RESET(stream->packet_state.packet);
681
682end:
683 return ret;
684}
This page took 0.061472 seconds and 4 git commands to generate.