Commit | Line | Data |
---|---|---|
273b65be | 1 | /* |
e2f7325d | 2 | * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com> |
de9dd397 | 3 | * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com> |
273b65be | 4 | * |
273b65be JG |
5 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
6 | * of this software and associated documentation files (the "Software"), to deal | |
7 | * in the Software without restriction, including without limitation the rights | |
8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
9 | * copies of the Software, and to permit persons to whom the Software is | |
10 | * furnished to do so, subject to the following conditions: | |
11 | * | |
12 | * The above copyright notice and this permission notice shall be included in | |
13 | * all copies or substantial portions of the Software. | |
14 | * | |
15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
21 | * SOFTWARE. | |
22 | */ | |
23 | ||
350ad6c1 | 24 | #define BT_LOG_TAG "LIB/STREAM" |
c2d9d9cf | 25 | #include "lib/logging.h" |
19abc2c6 | 26 | |
578e048b | 27 | #include "lib/assert-pre.h" |
3fadfbc0 MJ |
28 | #include <babeltrace2/trace-ir/stream-const.h> |
29 | #include <babeltrace2/trace-ir/stream.h> | |
3fadfbc0 | 30 | #include <babeltrace2/trace-ir/stream-class.h> |
3fadfbc0 | 31 | #include <babeltrace2/trace-ir/trace.h> |
578e048b MJ |
32 | #include "compat/compiler.h" |
33 | #include "common/align.h" | |
34 | #include "common/assert.h" | |
35 | #include "lib/property.h" | |
3dca2276 PP |
36 | #include <inttypes.h> |
37 | #include <unistd.h> | |
12c8a1a3 | 38 | |
578e048b MJ |
39 | #include "packet.h" |
40 | #include "stream-class.h" | |
41 | #include "stream.h" | |
42 | #include "trace.h" | |
d24d5663 | 43 | #include "lib/func-status.h" |
578e048b | 44 | |
44c440bc PP |
45 | #define BT_ASSERT_PRE_STREAM_HOT(_stream) \ |
46 | BT_ASSERT_PRE_HOT((_stream), "Stream", ": %!+s", (_stream)) | |
263a7df5 | 47 | |
c9af50d1 | 48 | static |
44c440bc | 49 | void destroy_stream(struct bt_object *obj) |
c9af50d1 | 50 | { |
3dca2276 | 51 | struct bt_stream *stream = (void *) obj; |
c9af50d1 | 52 | |
44c440bc PP |
53 | BT_LIB_LOGD("Destroying stream object: %!+s", stream); |
54 | ||
55 | if (stream->name.str) { | |
56 | g_string_free(stream->name.str, TRUE); | |
238b7404 PP |
57 | stream->name.str = NULL; |
58 | stream->name.value = NULL; | |
44c440bc PP |
59 | } |
60 | ||
862ca4ed PP |
61 | BT_LOGD_STR("Putting stream's class."); |
62 | bt_object_put_ref(stream->class); | |
312c056a | 63 | bt_object_pool_finalize(&stream->packet_pool); |
3dca2276 | 64 | g_free(stream); |
c9af50d1 JG |
65 | } |
66 | ||
44c440bc PP |
67 | static |
68 | void bt_stream_free_packet(struct bt_packet *packet, struct bt_stream *stream) | |
273b65be | 69 | { |
44c440bc PP |
70 | bt_packet_destroy(packet); |
71 | } | |
19abc2c6 | 72 | |
44c440bc PP |
73 | BT_ASSERT_PRE_FUNC |
74 | static inline | |
75 | bool stream_id_is_unique(struct bt_trace *trace, | |
76 | struct bt_stream_class *stream_class, uint64_t id) | |
77 | { | |
78 | uint64_t i; | |
79 | bool is_unique = true; | |
273b65be | 80 | |
44c440bc PP |
81 | for (i = 0; i < trace->streams->len; i++) { |
82 | struct bt_stream *stream = trace->streams->pdata[i]; | |
273b65be | 83 | |
44c440bc PP |
84 | if (stream->class != stream_class) { |
85 | continue; | |
8bfa3f9c | 86 | } |
1c1d572f | 87 | |
44c440bc PP |
88 | if (stream->id == id) { |
89 | is_unique = false; | |
90 | goto end; | |
98edd02c | 91 | } |
273b65be JG |
92 | } |
93 | ||
3dca2276 | 94 | end: |
44c440bc | 95 | return is_unique; |
312c056a PP |
96 | } |
97 | ||
273b65be | 98 | static |
44c440bc | 99 | struct bt_stream *create_stream_with_id(struct bt_stream_class *stream_class, |
862ca4ed | 100 | struct bt_trace *trace, uint64_t id) |
273b65be | 101 | { |
3dca2276 | 102 | int ret; |
44c440bc | 103 | struct bt_stream *stream; |
44c440bc PP |
104 | |
105 | BT_ASSERT(stream_class); | |
862ca4ed PP |
106 | BT_ASSERT(trace); |
107 | BT_ASSERT_PRE(trace->class == | |
108 | bt_stream_class_borrow_trace_class_inline(stream_class), | |
109 | "Trace's class is different from stream class's parent trace class: " | |
110 | "%![sc-]+S, %![trace-]+t", stream_class, trace); | |
44c440bc PP |
111 | BT_ASSERT_PRE(stream_id_is_unique(trace, stream_class, id), |
112 | "Duplicate stream ID: %![trace-]+t, id=%" PRIu64, trace, id); | |
44c440bc PP |
113 | BT_LIB_LOGD("Creating stream object: %![trace-]+t, id=%" PRIu64, |
114 | trace, id); | |
3dca2276 PP |
115 | stream = g_new0(struct bt_stream, 1); |
116 | if (!stream) { | |
117 | BT_LOGE_STR("Failed to allocate one stream."); | |
118 | goto error; | |
12c8a1a3 | 119 | } |
b71d7298 | 120 | |
44c440bc PP |
121 | bt_object_init_shared_with_parent(&stream->base, destroy_stream); |
122 | stream->name.str = g_string_new(NULL); | |
123 | if (!stream->name.str) { | |
124 | BT_LOGE_STR("Failed to allocate a GString."); | |
3dca2276 | 125 | goto error; |
b71d7298 | 126 | } |
41ac640a | 127 | |
44c440bc | 128 | stream->id = id; |
312c056a PP |
129 | ret = bt_object_pool_initialize(&stream->packet_pool, |
130 | (bt_object_pool_new_object_func) bt_packet_new, | |
131 | (bt_object_pool_destroy_object_func) bt_stream_free_packet, | |
132 | stream); | |
133 | if (ret) { | |
134 | BT_LOGE("Failed to initialize packet pool: ret=%d", ret); | |
135 | goto error; | |
136 | } | |
137 | ||
44c440bc | 138 | stream->class = stream_class; |
862ca4ed PP |
139 | bt_object_get_no_null_check(stream_class); |
140 | ||
141 | /* bt_trace_add_stream() sets the parent trace, and freezes the trace */ | |
44c440bc | 142 | bt_trace_add_stream(trace, stream); |
862ca4ed | 143 | |
44c440bc PP |
144 | bt_stream_class_freeze(stream_class); |
145 | BT_LIB_LOGD("Created stream object: %!+s", stream); | |
3dca2276 | 146 | goto end; |
3230ee6b | 147 | |
3dca2276 | 148 | error: |
65300d60 | 149 | BT_OBJECT_PUT_REF_AND_RESET(stream); |
3dca2276 PP |
150 | |
151 | end: | |
152 | return stream; | |
273b65be JG |
153 | } |
154 | ||
862ca4ed PP |
155 | struct bt_stream *bt_stream_create(struct bt_stream_class *stream_class, |
156 | struct bt_trace *trace) | |
273b65be | 157 | { |
44c440bc PP |
158 | uint64_t id; |
159 | ||
160 | BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class"); | |
862ca4ed | 161 | BT_ASSERT_PRE_NON_NULL(trace, "Trace"); |
44c440bc PP |
162 | BT_ASSERT_PRE(stream_class->assigns_automatic_stream_id, |
163 | "Stream class does not automatically assigns stream IDs: " | |
164 | "%![sc-]+S", stream_class); | |
862ca4ed PP |
165 | id = bt_trace_get_automatic_stream_id(trace, stream_class); |
166 | return create_stream_with_id(stream_class, trace, id); | |
44c440bc | 167 | } |
d7b1ea66 | 168 | |
40f4ba76 | 169 | struct bt_stream *bt_stream_create_with_id(struct bt_stream_class *stream_class, |
862ca4ed | 170 | struct bt_trace *trace, uint64_t id) |
44c440bc | 171 | { |
862ca4ed PP |
172 | BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class"); |
173 | BT_ASSERT_PRE_NON_NULL(trace, "Trace"); | |
44c440bc PP |
174 | BT_ASSERT_PRE(!stream_class->assigns_automatic_stream_id, |
175 | "Stream class automatically assigns stream IDs: " | |
176 | "%![sc-]+S", stream_class); | |
862ca4ed | 177 | return create_stream_with_id(stream_class, trace, id); |
273b65be | 178 | } |
b71d7298 | 179 | |
094ff7c0 | 180 | struct bt_stream_class *bt_stream_borrow_class(struct bt_stream *stream) |
af9296f3 | 181 | { |
44c440bc PP |
182 | BT_ASSERT_PRE_NON_NULL(stream, "Stream"); |
183 | return stream->class; | |
af9296f3 JG |
184 | } |
185 | ||
40f4ba76 PP |
186 | const struct bt_stream_class *bt_stream_borrow_class_const( |
187 | const struct bt_stream *stream) | |
e5be10ef | 188 | { |
40f4ba76 | 189 | return bt_stream_borrow_class((void *) stream); |
e5be10ef PP |
190 | } |
191 | ||
862ca4ed PP |
192 | struct bt_trace *bt_stream_borrow_trace(struct bt_stream *stream) |
193 | { | |
194 | BT_ASSERT_PRE_NON_NULL(stream, "Stream"); | |
195 | return bt_stream_borrow_trace_inline(stream); | |
196 | } | |
197 | ||
198 | const struct bt_trace *bt_stream_borrow_trace_const( | |
199 | const struct bt_stream *stream) | |
200 | { | |
201 | return bt_stream_borrow_trace((void *) stream); | |
202 | } | |
203 | ||
40f4ba76 | 204 | const char *bt_stream_get_name(const struct bt_stream *stream) |
b71d7298 | 205 | { |
28ee7eed | 206 | BT_ASSERT_PRE_NON_NULL(stream, "Stream"); |
44c440bc | 207 | return stream->name.value; |
b71d7298 | 208 | } |
98a4cbef | 209 | |
d24d5663 | 210 | enum bt_stream_set_name_status bt_stream_set_name(struct bt_stream *stream, |
3dcff82b | 211 | const char *name) |
98a4cbef | 212 | { |
28ee7eed | 213 | BT_ASSERT_PRE_NON_NULL(stream, "Stream"); |
44c440bc PP |
214 | BT_ASSERT_PRE_NON_NULL(name, "Name"); |
215 | BT_ASSERT_PRE_STREAM_HOT(stream); | |
216 | g_string_assign(stream->name.str, name); | |
217 | stream->name.value = stream->name.str->str; | |
3f7d4d90 | 218 | BT_LIB_LOGD("Set stream's name: %!+s", stream); |
d24d5663 | 219 | return BT_FUNC_STATUS_OK; |
44c440bc | 220 | } |
cb6f1f7d | 221 | |
40f4ba76 | 222 | uint64_t bt_stream_get_id(const struct bt_stream *stream) |
44c440bc PP |
223 | { |
224 | BT_ASSERT_PRE_NON_NULL(stream, "Stream class"); | |
225 | return stream->id; | |
226 | } | |
cb6f1f7d | 227 | |
44c440bc | 228 | BT_HIDDEN |
40f4ba76 | 229 | void _bt_stream_freeze(const struct bt_stream *stream) |
44c440bc | 230 | { |
44c440bc PP |
231 | BT_ASSERT(stream); |
232 | BT_LIB_LOGD("Freezing stream: %!+s", stream); | |
40f4ba76 | 233 | ((struct bt_stream *) stream)->frozen = true; |
98a4cbef | 234 | } |
c5b9b441 PP |
235 | |
236 | void bt_stream_get_ref(const struct bt_stream *stream) | |
237 | { | |
238 | bt_object_get_ref(stream); | |
239 | } | |
240 | ||
241 | void bt_stream_put_ref(const struct bt_stream *stream) | |
242 | { | |
243 | bt_object_put_ref(stream); | |
244 | } |