2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
3 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
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:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
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
24 #define BT_LOG_TAG "LIB/STREAM"
25 #include "lib/logging.h"
27 #include "lib/assert-pre.h"
28 #include <babeltrace2/trace-ir/stream-const.h>
29 #include <babeltrace2/trace-ir/stream.h>
30 #include <babeltrace2/trace-ir/stream-class.h>
31 #include <babeltrace2/trace-ir/trace.h>
32 #include "compat/compiler.h"
33 #include "common/align.h"
34 #include "common/assert.h"
35 #include "lib/property.h"
41 #include "stream-class.h"
44 #include "lib/value.h"
45 #include "lib/func-status.h"
47 #define BT_ASSERT_PRE_DEV_STREAM_HOT(_stream) \
48 BT_ASSERT_PRE_DEV_HOT((_stream), "Stream", ": %!+s", (_stream))
51 void destroy_stream(struct bt_object
*obj
)
53 struct bt_stream
*stream
= (void *) obj
;
55 BT_LIB_LOGD("Destroying stream object: %!+s", stream
);
56 BT_OBJECT_PUT_REF_AND_RESET(stream
->user_attributes
);
58 if (stream
->name
.str
) {
59 g_string_free(stream
->name
.str
, TRUE
);
60 stream
->name
.str
= NULL
;
61 stream
->name
.value
= NULL
;
64 BT_LOGD_STR("Putting stream's class.");
65 bt_object_put_ref(stream
->class);
66 bt_object_pool_finalize(&stream
->packet_pool
);
71 void bt_stream_free_packet(struct bt_packet
*packet
, struct bt_stream
*stream
)
73 bt_packet_destroy(packet
);
77 bool stream_id_is_unique(struct bt_trace
*trace
,
78 struct bt_stream_class
*stream_class
, uint64_t id
)
81 bool is_unique
= true;
83 for (i
= 0; i
< trace
->streams
->len
; i
++) {
84 struct bt_stream
*stream
= trace
->streams
->pdata
[i
];
86 if (stream
->class != stream_class
) {
90 if (stream
->id
== id
) {
101 struct bt_stream
*create_stream_with_id(struct bt_stream_class
*stream_class
,
102 struct bt_trace
*trace
, uint64_t id
)
105 struct bt_stream
*stream
;
107 BT_ASSERT(stream_class
);
109 BT_ASSERT_PRE(trace
->class ==
110 bt_stream_class_borrow_trace_class_inline(stream_class
),
111 "Trace's class is different from stream class's parent trace class: "
112 "%![sc-]+S, %![trace-]+t", stream_class
, trace
);
113 BT_ASSERT_PRE(stream_id_is_unique(trace
, stream_class
, id
),
114 "Duplicate stream ID: %![trace-]+t, id=%" PRIu64
, trace
, id
);
115 BT_LIB_LOGD("Creating stream object: %![trace-]+t, id=%" PRIu64
,
117 stream
= g_new0(struct bt_stream
, 1);
119 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one stream.");
123 bt_object_init_shared_with_parent(&stream
->base
, destroy_stream
);
124 stream
->user_attributes
= bt_value_map_create();
125 if (!stream
->user_attributes
) {
126 BT_LIB_LOGE_APPEND_CAUSE(
127 "Failed to create a map value object.");
131 stream
->name
.str
= g_string_new(NULL
);
132 if (!stream
->name
.str
) {
133 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GString.");
138 ret
= bt_object_pool_initialize(&stream
->packet_pool
,
139 (bt_object_pool_new_object_func
) bt_packet_new
,
140 (bt_object_pool_destroy_object_func
) bt_stream_free_packet
,
143 BT_LIB_LOGE_APPEND_CAUSE(
144 "Failed to initialize packet pool: ret=%d", ret
);
148 stream
->class = stream_class
;
149 bt_object_get_ref_no_null_check(stream_class
);
151 /* bt_trace_add_stream() sets the parent trace, and freezes the trace */
152 bt_trace_add_stream(trace
, stream
);
154 bt_stream_class_freeze(stream_class
);
155 BT_LIB_LOGD("Created stream object: %!+s", stream
);
159 BT_OBJECT_PUT_REF_AND_RESET(stream
);
165 struct bt_stream
*bt_stream_create(struct bt_stream_class
*stream_class
,
166 struct bt_trace
*trace
)
170 BT_ASSERT_PRE_NO_ERROR();
171 BT_ASSERT_PRE_NON_NULL(stream_class
, "Stream class");
172 BT_ASSERT_PRE_NON_NULL(trace
, "Trace");
173 BT_ASSERT_PRE(stream_class
->assigns_automatic_stream_id
,
174 "Stream class does not automatically assigns stream IDs: "
175 "%![sc-]+S", stream_class
);
176 id
= bt_trace_get_automatic_stream_id(trace
, stream_class
);
177 return create_stream_with_id(stream_class
, trace
, id
);
180 struct bt_stream
*bt_stream_create_with_id(struct bt_stream_class
*stream_class
,
181 struct bt_trace
*trace
, uint64_t id
)
183 BT_ASSERT_PRE_NO_ERROR();
184 BT_ASSERT_PRE_NON_NULL(stream_class
, "Stream class");
185 BT_ASSERT_PRE_NON_NULL(trace
, "Trace");
186 BT_ASSERT_PRE(!stream_class
->assigns_automatic_stream_id
,
187 "Stream class automatically assigns stream IDs: "
188 "%![sc-]+S", stream_class
);
189 return create_stream_with_id(stream_class
, trace
, id
);
192 struct bt_stream_class
*bt_stream_borrow_class(struct bt_stream
*stream
)
194 BT_ASSERT_PRE_DEV_NON_NULL(stream
, "Stream");
195 return stream
->class;
198 const struct bt_stream_class
*bt_stream_borrow_class_const(
199 const struct bt_stream
*stream
)
201 return bt_stream_borrow_class((void *) stream
);
204 struct bt_trace
*bt_stream_borrow_trace(struct bt_stream
*stream
)
206 BT_ASSERT_PRE_DEV_NON_NULL(stream
, "Stream");
207 return bt_stream_borrow_trace_inline(stream
);
210 const struct bt_trace
*bt_stream_borrow_trace_const(
211 const struct bt_stream
*stream
)
213 return bt_stream_borrow_trace((void *) stream
);
216 const char *bt_stream_get_name(const struct bt_stream
*stream
)
218 BT_ASSERT_PRE_DEV_NON_NULL(stream
, "Stream");
219 return stream
->name
.value
;
222 enum bt_stream_set_name_status
bt_stream_set_name(struct bt_stream
*stream
,
225 BT_ASSERT_PRE_NO_ERROR();
226 BT_ASSERT_PRE_NON_NULL(stream
, "Stream");
227 BT_ASSERT_PRE_NON_NULL(name
, "Name");
228 BT_ASSERT_PRE_DEV_STREAM_HOT(stream
);
229 g_string_assign(stream
->name
.str
, name
);
230 stream
->name
.value
= stream
->name
.str
->str
;
231 BT_LIB_LOGD("Set stream's name: %!+s", stream
);
232 return BT_FUNC_STATUS_OK
;
235 uint64_t bt_stream_get_id(const struct bt_stream
*stream
)
237 BT_ASSERT_PRE_DEV_NON_NULL(stream
, "Stream class");
242 void _bt_stream_freeze(const struct bt_stream
*stream
)
245 BT_LIB_LOGD("Freezing stream's user attributes: %!+v",
246 stream
->user_attributes
);
247 bt_value_freeze(stream
->user_attributes
);
248 BT_LIB_LOGD("Freezing stream: %!+s", stream
);
249 ((struct bt_stream
*) stream
)->frozen
= true;
252 const struct bt_value
*bt_stream_borrow_user_attributes_const(
253 const struct bt_stream
*stream
)
255 BT_ASSERT_PRE_DEV_NON_NULL(stream
, "Stream");
256 return stream
->user_attributes
;
259 struct bt_value
*bt_stream_borrow_user_attributes(struct bt_stream
*stream
)
261 return (void *) bt_stream_borrow_user_attributes_const((void *) stream
);
264 void bt_stream_set_user_attributes(struct bt_stream
*stream
,
265 const struct bt_value
*user_attributes
)
267 BT_ASSERT_PRE_NON_NULL(stream
, "Stream");
268 BT_ASSERT_PRE_NON_NULL(user_attributes
, "User attributes");
269 BT_ASSERT_PRE(user_attributes
->type
== BT_VALUE_TYPE_MAP
,
270 "User attributes object is not a map value object.");
271 BT_ASSERT_PRE_DEV_STREAM_HOT(stream
);
272 bt_object_put_ref_no_null_check(stream
->user_attributes
);
273 stream
->user_attributes
= (void *) user_attributes
;
274 bt_object_get_ref_no_null_check(stream
->user_attributes
);
277 void bt_stream_get_ref(const struct bt_stream
*stream
)
279 bt_object_get_ref(stream
);
282 void bt_stream_put_ref(const struct bt_stream
*stream
)
284 bt_object_put_ref(stream
);