Visibility hidden by default
[babeltrace.git] / src / ctf-writer / stream.h
CommitLineData
3dca2276 1/*
0235b0db 2 * SPDX-License-Identifier: MIT
3dca2276 3 *
0235b0db 4 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3dca2276
PP
5 *
6 * The Common Trace Format (CTF) Specification is available at
7 * http://www.efficios.com/ctf
8 */
9
0235b0db
MJ
10#ifndef BABELTRACE_CTF_WRITER_STREAM_INTERNAL_H
11#define BABELTRACE_CTF_WRITER_STREAM_INTERNAL_H
12
578e048b 13#include "common/assert.h"
91d81473 14#include "common/macros.h"
217cf9d3 15#include <babeltrace2-ctf-writer/stream.h>
578e048b 16#include "ctfser/ctfser.h"
3dca2276
PP
17#include <stdint.h>
18
578e048b
MJ
19#include "assert-pre.h"
20#include "object.h"
21#include "stream.h"
22#include "utils.h"
23
16ca5ff0
PP
24struct bt_ctf_stream_common;
25
26struct bt_ctf_stream_common {
e1e02a22 27 struct bt_ctf_object base;
16ca5ff0
PP
28 int64_t id;
29 struct bt_ctf_stream_class_common *stream_class;
30 GString *name;
31};
32
16ca5ff0
PP
33int bt_ctf_stream_common_initialize(
34 struct bt_ctf_stream_common *stream,
35 struct bt_ctf_stream_class_common *stream_class, const char *name,
e1e02a22 36 uint64_t id, bt_ctf_object_release_func release_func);
16ca5ff0 37
16ca5ff0
PP
38void bt_ctf_stream_common_finalize(struct bt_ctf_stream_common *stream);
39
40static inline
41struct bt_ctf_stream_class_common *bt_ctf_stream_common_borrow_class(
42 struct bt_ctf_stream_common *stream)
43{
98b15851 44 BT_ASSERT_DBG(stream);
16ca5ff0
PP
45 return stream->stream_class;
46}
47
48static inline
49const char *bt_ctf_stream_common_get_name(struct bt_ctf_stream_common *stream)
50{
67d2ce02 51 BT_CTF_ASSERT_PRE_NON_NULL(stream, "Stream");
16ca5ff0
PP
52 return stream->name ? stream->name->str : NULL;
53}
54
55static inline
56int64_t bt_ctf_stream_common_get_id(struct bt_ctf_stream_common *stream)
57{
58 int64_t ret;
59
67d2ce02 60 BT_CTF_ASSERT_PRE_NON_NULL(stream, "Stream");
16ca5ff0
PP
61 ret = stream->id;
62 if (ret < 0) {
ef267d12 63 BT_LOGT("Stream's ID is not set: addr=%p, name=\"%s\"",
16ca5ff0
PP
64 stream, bt_ctf_stream_common_get_name(stream));
65 }
66
67 return ret;
68}
69
3dca2276 70struct bt_ctf_stream {
16ca5ff0 71 struct bt_ctf_stream_common common;
3dca2276
PP
72 struct bt_ctf_field *packet_header;
73 struct bt_ctf_field *packet_context;
74
75 /* Array of pointers to bt_ctf_event for the current packet */
76 GPtrArray *events;
013f35c6 77 struct bt_ctfser ctfser;
3dca2276
PP
78 unsigned int flushed_packet_count;
79 uint64_t discarded_events;
3dca2276
PP
80 uint64_t last_ts_end;
81};
82
3dca2276
PP
83struct bt_ctf_stream *bt_ctf_stream_create_with_id(
84 struct bt_ctf_stream_class *stream_class,
85 const char *name, uint64_t id);
86
87#endif /* BABELTRACE_CTF_WRITER_STREAM_INTERNAL_H */
This page took 0.080482 seconds and 4 git commands to generate.