2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
3 * Copyright 2016 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/MSG-EVENT"
25 #include "lib/logging.h"
27 #include "common/assert.h"
28 #include "lib/assert-pre.h"
29 #include "lib/assert-post.h"
30 #include "compat/compiler.h"
31 #include "lib/object.h"
32 #include <babeltrace2/trace-ir/event.h>
33 #include "lib/trace-ir/event.h"
34 #include "lib/trace-ir/event-class.h"
35 #include "lib/trace-ir/stream-class.h"
36 #include <babeltrace2/trace-ir/trace.h>
37 #include "lib/trace-ir/clock-snapshot.h"
38 #include "lib/graph/graph.h"
39 #include <babeltrace2/graph/message-event-const.h>
40 #include <babeltrace2/graph/message-event.h>
41 #include <babeltrace2/types.h>
48 static inline bool event_class_has_trace(struct bt_event_class
*event_class
)
50 struct bt_stream_class
*stream_class
;
52 stream_class
= bt_event_class_borrow_stream_class_inline(event_class
);
53 BT_ASSERT(stream_class
);
54 return bt_stream_class_borrow_trace_class(stream_class
) != NULL
;
58 struct bt_message
*bt_message_event_new(
59 struct bt_graph
*graph
)
61 struct bt_message_event
*message
= NULL
;
63 message
= g_new0(struct bt_message_event
, 1);
65 BT_LIB_LOGE_APPEND_CAUSE(
66 "Failed to allocate one event message.");
70 bt_message_init(&message
->parent
, BT_MESSAGE_TYPE_EVENT
,
71 (bt_object_release_func
) bt_message_event_recycle
, graph
);
75 BT_OBJECT_PUT_REF_AND_RESET(message
);
78 return (void *) message
;
82 struct bt_message
*create_event_message(
83 struct bt_self_message_iterator
*self_msg_iter
,
84 const struct bt_event_class
*c_event_class
,
85 const struct bt_packet
*c_packet
,
86 const struct bt_stream
*c_stream
, bool with_cs
,
89 struct bt_self_component_port_input_message_iterator
*msg_iter
=
90 (void *) self_msg_iter
;
91 struct bt_message_event
*message
= NULL
;
92 struct bt_event_class
*event_class
= (void *) c_event_class
;
93 struct bt_stream_class
*stream_class
;
94 struct bt_packet
*packet
= (void *) c_packet
;
95 struct bt_stream
*stream
= (void *) c_stream
;
96 struct bt_event
*event
;
99 BT_ASSERT_PRE_NON_NULL(msg_iter
, "Message iterator");
100 BT_ASSERT_PRE_NON_NULL(event_class
, "Event class");
101 BT_ASSERT_PRE(event_class_has_trace(event_class
),
102 "Event class is not part of a trace: %!+E", event_class
);
103 stream_class
= bt_event_class_borrow_stream_class_inline(event_class
);
104 BT_ASSERT(stream_class
);
105 BT_ASSERT_PRE((with_cs
&& stream_class
->default_clock_class
) ||
106 (!with_cs
&& !stream_class
->default_clock_class
),
107 "Creating an event message with a default clock snapshot, but without "
108 "a default clock class, or without a default clock snapshot, "
109 "but with a default clock class: ",
110 "%![ec-]+E, %![sc-]+S, with-cs=%d, "
112 event_class
, stream_class
, with_cs
, raw_value
);
113 BT_LIB_LOGD("Creating event message object: %![ec-]+E", event_class
);
114 event
= bt_event_create(event_class
, packet
, stream
);
115 if (G_UNLIKELY(!event
)) {
116 BT_LIB_LOGE_APPEND_CAUSE(
117 "Cannot create event from event class: "
118 "%![ec-]+E", event_class
);
123 * Create message from pool _after_ we have everything
124 * (in this case, a valid event object) so that we never have an
125 * error condition with a non-NULL message object.
128 * * We cannot recycle the message on error because
129 * bt_message_event_recycle() expects a complete
130 * message (and the event or clock class priority map
131 * object could be unset).
133 * * We cannot destroy the message because we would need
134 * to notify the graph (pool owner) so that it removes the
135 * message from its message array.
137 message
= (void *) bt_message_create_from_pool(
138 &msg_iter
->graph
->event_msg_pool
, msg_iter
->graph
);
139 if (G_UNLIKELY(!message
)) {
140 /* bt_message_create_from_pool() logs errors */
145 BT_ASSERT(stream_class
->default_clock_class
);
146 message
->default_cs
= bt_clock_snapshot_create(
147 stream_class
->default_clock_class
);
148 if (!message
->default_cs
) {
152 bt_clock_snapshot_set_raw_value(message
->default_cs
, raw_value
);
155 BT_ASSERT(!message
->event
);
156 message
->event
= event
;
159 bt_packet_set_is_frozen(packet
, true);
162 bt_stream_freeze(stream
);
163 bt_event_class_freeze(event_class
);
164 BT_LIB_LOGD("Created event message object: "
165 "%![msg-]+n, %![event-]+e", message
, event
);
170 bt_event_destroy(event
);
173 return (void *) message
;
176 struct bt_message
*bt_message_event_create(
177 struct bt_self_message_iterator
*msg_iter
,
178 const struct bt_event_class
*event_class
,
179 const struct bt_stream
*stream
)
181 BT_ASSERT_PRE_NON_NULL(stream
, "Stream");
182 return create_event_message(msg_iter
, event_class
, NULL
, stream
, false, 0);
185 struct bt_message
*bt_message_event_create_with_packet(
186 struct bt_self_message_iterator
*msg_iter
,
187 const struct bt_event_class
*event_class
,
188 const struct bt_packet
*packet
)
190 BT_ASSERT_PRE_NON_NULL(packet
, "Packet");
191 return create_event_message(msg_iter
, event_class
, packet
,
192 packet
->stream
, false, 0);
195 struct bt_message
*bt_message_event_create_with_default_clock_snapshot(
196 struct bt_self_message_iterator
*msg_iter
,
197 const struct bt_event_class
*event_class
,
198 const struct bt_stream
*stream
,
201 BT_ASSERT_PRE_NON_NULL(stream
, "Stream");
202 return create_event_message(msg_iter
, event_class
, NULL
, stream
,
207 bt_message_event_create_with_packet_and_default_clock_snapshot(
208 struct bt_self_message_iterator
*msg_iter
,
209 const struct bt_event_class
*event_class
,
210 const struct bt_packet
*packet
,
213 BT_ASSERT_PRE_NON_NULL(packet
, "Packet");
214 return create_event_message(msg_iter
, event_class
, packet
,
215 packet
->stream
, true, raw_value
);
219 void bt_message_event_destroy(struct bt_message
*msg
)
221 struct bt_message_event
*event_msg
= (void *) msg
;
223 BT_LIB_LOGD("Destroying event message: %!+n", msg
);
225 if (event_msg
->event
) {
226 BT_LIB_LOGD("Recycling event: %!+e", event_msg
->event
);
227 bt_event_recycle(event_msg
->event
);
228 event_msg
->event
= NULL
;
231 if (event_msg
->default_cs
) {
232 bt_clock_snapshot_recycle(event_msg
->default_cs
);
233 event_msg
->default_cs
= NULL
;
240 void bt_message_event_recycle(struct bt_message
*msg
)
242 struct bt_message_event
*event_msg
= (void *) msg
;
243 struct bt_graph
*graph
;
245 BT_ASSERT(event_msg
);
247 if (G_UNLIKELY(!msg
->graph
)) {
248 bt_message_event_destroy(msg
);
252 BT_LIB_LOGD("Recycling event message: %![msg-]+n, %![event-]+e",
253 msg
, event_msg
->event
);
254 bt_message_reset(msg
);
255 BT_ASSERT(event_msg
->event
);
256 bt_event_recycle(event_msg
->event
);
257 event_msg
->event
= NULL
;
259 if (event_msg
->default_cs
) {
260 bt_clock_snapshot_recycle(event_msg
->default_cs
);
261 event_msg
->default_cs
= NULL
;
266 bt_object_pool_recycle_object(&graph
->event_msg_pool
, msg
);
270 struct bt_event
*borrow_event(struct bt_message
*message
)
272 struct bt_message_event
*event_message
;
274 BT_ASSERT_PRE_DEV_NON_NULL(message
, "Message");
275 BT_ASSERT_PRE_DEV_MSG_IS_TYPE(message
, BT_MESSAGE_TYPE_EVENT
);
276 event_message
= container_of(message
,
277 struct bt_message_event
, parent
);
278 return event_message
->event
;
281 struct bt_event
*bt_message_event_borrow_event(
282 struct bt_message
*message
)
284 return borrow_event(message
);
287 const struct bt_event
*bt_message_event_borrow_event_const(
288 const struct bt_message
*message
)
290 return borrow_event((void *) message
);
293 const struct bt_clock_snapshot
*
294 bt_message_event_borrow_default_clock_snapshot_const(
295 const struct bt_message
*msg
)
297 struct bt_message_event
*event_msg
= (void *) msg
;
298 struct bt_stream_class
*stream_class
;
300 BT_ASSERT_PRE_DEV_NON_NULL(msg
, "Message");
301 BT_ASSERT_PRE_DEV_MSG_IS_TYPE(msg
, BT_MESSAGE_TYPE_EVENT
);
302 stream_class
= bt_event_class_borrow_stream_class_inline(
303 event_msg
->event
->class);
304 BT_ASSERT(stream_class
);
305 BT_ASSERT_PRE_DEV(stream_class
->default_clock_class
,
306 "Message's stream's class has no default clock class: "
307 "%![msg-]+n, %![sc-]+S", msg
, stream_class
);
308 return event_msg
->default_cs
;
311 const bt_clock_class
*
312 bt_message_event_borrow_stream_class_default_clock_class_const(
313 const bt_message
*msg
)
315 struct bt_message_event
*event_msg
= (void *) msg
;
316 struct bt_stream_class
*stream_class
;
318 BT_ASSERT_PRE_DEV_NON_NULL(msg
, "Message");
319 BT_ASSERT_PRE_DEV_MSG_IS_TYPE(msg
, BT_MESSAGE_TYPE_EVENT
);
320 stream_class
= bt_event_class_borrow_stream_class_inline(
321 event_msg
->event
->class);
322 BT_ASSERT(stream_class
);
323 return stream_class
->default_clock_class
;