lib: internal: graph.h: require logging and BT_ASSERT_{PRE,POST}()
[babeltrace.git] / src / lib / graph / message / packet.c
CommitLineData
d6e69534
PP
1/*
2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
3 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 *
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/MSG-PACKET"
c2d9d9cf 25#include "lib/logging.h"
d6e69534 26
51375aa9
PP
27#include "lib/assert-pre.h"
28#include "lib/assert-post.h"
578e048b 29#include "compat/compiler.h"
3fadfbc0 30#include <babeltrace2/trace-ir/packet.h>
578e048b 31#include "lib/trace-ir/packet.h"
3fadfbc0
MJ
32#include <babeltrace2/trace-ir/stream-class.h>
33#include <babeltrace2/trace-ir/stream.h>
578e048b
MJ
34#include "lib/trace-ir/stream.h"
35#include "lib/trace-ir/stream-class.h"
36#include "lib/graph/graph.h"
3fadfbc0
MJ
37#include <babeltrace2/graph/message-packet-beginning-const.h>
38#include <babeltrace2/graph/message-packet-end-const.h>
39#include <babeltrace2/graph/message-packet-beginning.h>
40#include <babeltrace2/graph/message-packet-end.h>
578e048b 41#include "common/assert.h"
578e048b 42#include "lib/object.h"
d6e69534
PP
43#include <inttypes.h>
44
578e048b
MJ
45#include "packet.h"
46
5df26c89
PP
47static inline
48struct bt_message *new_packet_message(struct bt_graph *graph,
49 enum bt_message_type type, bt_object_release_func recycle_func)
d6e69534 50{
5df26c89 51 struct bt_message_packet *message;
d6e69534 52
5df26c89 53 message = g_new0(struct bt_message_packet, 1);
d6e69534 54 if (!message) {
5df26c89 55 BT_LOGE_STR("Failed to allocate one packet message.");
d6e69534
PP
56 goto error;
57 }
58
5df26c89 59 bt_message_init(&message->parent, type, recycle_func, graph);
d6e69534
PP
60 goto end;
61
62error:
63 BT_OBJECT_PUT_REF_AND_RESET(message);
64
65end:
66 return (void *) message;
67}
68
5df26c89
PP
69BT_HIDDEN
70struct bt_message *bt_message_packet_beginning_new(struct bt_graph *graph)
d6e69534 71{
5df26c89
PP
72 return new_packet_message(graph, BT_MESSAGE_TYPE_PACKET_BEGINNING,
73 (bt_object_release_func) bt_message_packet_beginning_recycle);
74}
75
76BT_HIDDEN
77struct bt_message *bt_message_packet_end_new(struct bt_graph *graph)
78{
79 return new_packet_message(graph, BT_MESSAGE_TYPE_PACKET_END,
80 (bt_object_release_func) bt_message_packet_end_recycle);
81}
82
83static inline
a6d85d2f 84struct bt_message *create_packet_message(
5df26c89 85 struct bt_self_component_port_input_message_iterator *msg_iter,
a6d85d2f 86 struct bt_packet *packet, struct bt_object_pool *pool,
83a5656a 87 bool with_cs, uint64_t raw_value)
5df26c89
PP
88{
89 struct bt_message_packet *message = NULL;
d6e69534
PP
90 struct bt_stream *stream;
91 struct bt_stream_class *stream_class;
8cc5f12b 92 bool need_cs;
d6e69534 93
5df26c89 94 BT_ASSERT(msg_iter);
d6e69534
PP
95 BT_ASSERT_PRE_NON_NULL(packet, "Packet");
96 stream = bt_packet_borrow_stream(packet);
97 BT_ASSERT(stream);
98 stream_class = bt_stream_borrow_class(stream);
99 BT_ASSERT(stream_class);
649934d2 100
83a5656a 101 if (pool == &msg_iter->graph->packet_begin_msg_pool) {
8cc5f12b 102 need_cs = stream_class->packets_have_beginning_default_clock_snapshot;
649934d2 103 } else {
8cc5f12b 104 need_cs = stream_class->packets_have_end_default_clock_snapshot;
649934d2
PP
105 }
106
107 /*
108 * `packet_has_default_clock_snapshot` implies that the stream
109 * class has a default clock class (precondition).
110 */
8cc5f12b 111 BT_ASSERT_PRE(need_cs ? with_cs : true,
7fe92073 112 "Unexpected stream class configuration when creating "
8cc5f12b
PP
113 "a packet beginning or end message: "
114 "a default clock snapshot is needed, but none was provided: "
115 "%![stream-]+s, %![sc-]+S, with-cs=%d, "
116 "cs-val=%" PRIu64,
117 stream, stream_class, with_cs, raw_value);
118 BT_ASSERT_PRE(!need_cs ? !with_cs : true,
119 "Unexpected stream class configuration when creating "
120 "a packet beginning or end message: "
121 "no default clock snapshot is needed, but one was provided: "
a6d85d2f
PP
122 "%![stream-]+s, %![sc-]+S, with-cs=%d, "
123 "cs-val=%" PRIu64,
124 stream, stream_class, with_cs, raw_value);
5df26c89 125 BT_LIB_LOGD("Creating packet message object: "
d6e69534
PP
126 "%![packet-]+a, %![stream-]+s, %![sc-]+S",
127 packet, stream, stream_class);
5df26c89 128 message = (void *) bt_message_create_from_pool(pool, msg_iter->graph);
d6e69534
PP
129 if (!message) {
130 /* bt_message_create_from_pool() logs errors */
131 goto end;
132 }
133
a6d85d2f
PP
134 if (with_cs) {
135 BT_ASSERT(stream_class->default_clock_class);
136 message->default_cs = bt_clock_snapshot_create(
137 stream_class->default_clock_class);
138 if (!message->default_cs) {
139 bt_object_put_no_null_check(message);
140 message = NULL;
141 goto end;
142 }
143
144 bt_clock_snapshot_set_raw_value(message->default_cs, raw_value);
145 }
146
d6e69534
PP
147 BT_ASSERT(!message->packet);
148 message->packet = packet;
149 bt_object_get_no_null_check_no_parent_check(
150 &message->packet->base);
151 bt_packet_set_is_frozen(packet, true);
5df26c89 152 BT_LIB_LOGD("Created packet message object: "
d6e69534
PP
153 "%![msg-]+n, %![packet-]+a, %![stream-]+s, %![sc-]+S",
154 message, packet, stream, stream_class);
155 goto end;
156
157end:
158 return (void *) message;
159}
160
5df26c89
PP
161struct bt_message *bt_message_packet_beginning_create(
162 struct bt_self_message_iterator *self_msg_iter,
58085ca4 163 const struct bt_packet *packet)
d6e69534 164{
5df26c89
PP
165 struct bt_self_component_port_input_message_iterator *msg_iter =
166 (void *) self_msg_iter;
d6e69534 167
5df26c89 168 BT_ASSERT_PRE_NON_NULL(msg_iter, "Message iterator");
a6d85d2f 169 return create_packet_message(msg_iter, (void *) packet,
83a5656a 170 &msg_iter->graph->packet_begin_msg_pool, false, 0);
a6d85d2f
PP
171}
172
173struct bt_message *bt_message_packet_beginning_create_with_default_clock_snapshot(
174 struct bt_self_message_iterator *self_msg_iter,
175 const struct bt_packet *packet, uint64_t raw_value)
176{
177 struct bt_self_component_port_input_message_iterator *msg_iter =
178 (void *) self_msg_iter;
179
180 BT_ASSERT_PRE_NON_NULL(msg_iter, "Message iterator");
181 return create_packet_message(msg_iter, (void *) packet,
83a5656a 182 &msg_iter->graph->packet_begin_msg_pool, true, raw_value);
d6e69534
PP
183}
184
5df26c89
PP
185struct bt_message *bt_message_packet_end_create(
186 struct bt_self_message_iterator *self_msg_iter,
58085ca4 187 const struct bt_packet *packet)
d6e69534 188{
5df26c89
PP
189 struct bt_self_component_port_input_message_iterator *msg_iter =
190 (void *) self_msg_iter;
d6e69534 191
5df26c89 192 BT_ASSERT_PRE_NON_NULL(msg_iter, "Message iterator");
a6d85d2f 193 return create_packet_message(msg_iter, (void *) packet,
83a5656a 194 &msg_iter->graph->packet_end_msg_pool, false, 0);
a6d85d2f
PP
195}
196
197struct bt_message *bt_message_packet_end_create_with_default_clock_snapshot(
198 struct bt_self_message_iterator *self_msg_iter,
199 const struct bt_packet *packet, uint64_t raw_value)
200{
201 struct bt_self_component_port_input_message_iterator *msg_iter =
202 (void *) self_msg_iter;
203
204 BT_ASSERT_PRE_NON_NULL(msg_iter, "Message iterator");
205 return create_packet_message(msg_iter, (void *) packet,
83a5656a 206 &msg_iter->graph->packet_end_msg_pool, true, raw_value);
d6e69534
PP
207}
208
5df26c89
PP
209BT_HIDDEN
210void bt_message_packet_destroy(struct bt_message *msg)
d6e69534 211{
5df26c89 212 struct bt_message_packet *packet_msg = (void *) msg;
d6e69534 213
5df26c89
PP
214 BT_LIB_LOGD("Destroying packet message: %!+n", msg);
215 BT_LIB_LOGD("Putting packet: %!+a", packet_msg->packet);
216 BT_OBJECT_PUT_REF_AND_RESET(packet_msg->packet);
a6d85d2f
PP
217
218 if (packet_msg->default_cs) {
219 bt_clock_snapshot_recycle(packet_msg->default_cs);
220 packet_msg->default_cs = NULL;
221 }
222
5df26c89 223 g_free(msg);
d6e69534
PP
224}
225
5df26c89
PP
226static inline
227void recycle_packet_message(struct bt_message *msg, struct bt_object_pool *pool)
d6e69534 228{
5df26c89
PP
229 struct bt_message_packet *packet_msg = (void *) msg;
230
231 BT_LIB_LOGD("Recycling packet message: %!+n", msg);
232 bt_message_reset(msg);
233 bt_object_put_no_null_check(&packet_msg->packet->base);
a6d85d2f
PP
234
235 if (packet_msg->default_cs) {
236 bt_clock_snapshot_recycle(packet_msg->default_cs);
237 packet_msg->default_cs = NULL;
238 }
239
5df26c89
PP
240 packet_msg->packet = NULL;
241 msg->graph = NULL;
242 bt_object_pool_recycle_object(pool, msg);
d6e69534
PP
243}
244
245BT_HIDDEN
5df26c89 246void bt_message_packet_beginning_recycle(struct bt_message *msg)
d6e69534 247{
5df26c89 248 BT_ASSERT(msg);
d6e69534 249
91d81473 250 if (G_UNLIKELY(!msg->graph)) {
5df26c89
PP
251 bt_message_packet_destroy(msg);
252 return;
d6e69534
PP
253 }
254
5df26c89 255 recycle_packet_message(msg, &msg->graph->packet_begin_msg_pool);
d6e69534
PP
256}
257
5df26c89
PP
258BT_HIDDEN
259void bt_message_packet_end_recycle(struct bt_message *msg)
d6e69534 260{
5df26c89 261 BT_ASSERT(msg);
d6e69534 262
91d81473 263 if (G_UNLIKELY(!msg->graph)) {
5df26c89
PP
264 bt_message_packet_destroy(msg);
265 return;
d6e69534
PP
266 }
267
5df26c89 268 recycle_packet_message(msg, &msg->graph->packet_end_msg_pool);
d6e69534
PP
269}
270
5df26c89
PP
271struct bt_packet *bt_message_packet_beginning_borrow_packet(
272 struct bt_message *message)
d6e69534 273{
5df26c89 274 struct bt_message_packet *packet_msg = (void *) message;
d6e69534 275
5df26c89
PP
276 BT_ASSERT_PRE_NON_NULL(message, "Message");
277 BT_ASSERT_PRE_MSG_IS_TYPE(message,
278 BT_MESSAGE_TYPE_PACKET_BEGINNING);
279 return packet_msg->packet;
d6e69534
PP
280}
281
5df26c89
PP
282const struct bt_packet *bt_message_packet_beginning_borrow_packet_const(
283 const struct bt_message *message)
d6e69534 284{
5df26c89
PP
285 return bt_message_packet_beginning_borrow_packet(
286 (void *) message);
d6e69534
PP
287}
288
289struct bt_packet *bt_message_packet_end_borrow_packet(
290 struct bt_message *message)
291{
5df26c89 292 struct bt_message_packet *packet_msg = (void *) message;
d6e69534
PP
293
294 BT_ASSERT_PRE_NON_NULL(message, "Message");
295 BT_ASSERT_PRE_MSG_IS_TYPE(message,
296 BT_MESSAGE_TYPE_PACKET_END);
5df26c89 297 return packet_msg->packet;
d6e69534
PP
298}
299
300const struct bt_packet *bt_message_packet_end_borrow_packet_const(
301 const struct bt_message *message)
302{
303 return bt_message_packet_end_borrow_packet(
304 (void *) message);
305}
a6d85d2f
PP
306
307static inline
0cbc2c33 308const struct bt_clock_snapshot *
a6d85d2f 309borrow_packet_message_default_clock_snapshot_const(
0cbc2c33 310 const struct bt_message *message)
a6d85d2f
PP
311{
312 struct bt_message_packet *packet_msg = (void *) message;
313
314 BT_ASSERT(message);
315 BT_ASSERT_PRE(packet_msg->packet->stream->class->default_clock_class,
316 "Message's stream's class has no default clock class: "
317 "%![msg-]+n, %![sc-]+S",
318 message, packet_msg->packet->stream->class);
0cbc2c33 319 return packet_msg->default_cs;
a6d85d2f
PP
320}
321
0cbc2c33 322const struct bt_clock_snapshot *
a6d85d2f 323bt_message_packet_beginning_borrow_default_clock_snapshot_const(
0cbc2c33 324 const struct bt_message *msg)
a6d85d2f
PP
325{
326 BT_ASSERT_PRE_NON_NULL(msg, "Message");
327 BT_ASSERT_PRE_MSG_IS_TYPE(msg, BT_MESSAGE_TYPE_PACKET_BEGINNING);
0cbc2c33 328 return borrow_packet_message_default_clock_snapshot_const(msg);
a6d85d2f
PP
329}
330
0cbc2c33 331const struct bt_clock_snapshot *
a6d85d2f 332bt_message_packet_end_borrow_default_clock_snapshot_const(
0cbc2c33 333 const struct bt_message *msg)
a6d85d2f
PP
334{
335 BT_ASSERT_PRE_NON_NULL(msg, "Message");
336 BT_ASSERT_PRE_MSG_IS_TYPE(msg, BT_MESSAGE_TYPE_PACKET_END);
0cbc2c33 337 return borrow_packet_message_default_clock_snapshot_const(msg);
a6d85d2f 338}
33931ab8
PP
339
340static inline
341const struct bt_clock_class *
342borrow_packet_message_stream_class_default_clock_class(
343 const struct bt_message *msg)
344{
345 struct bt_message_packet *packet_msg = (void *) msg;
346
347 BT_ASSERT(msg);
348 return packet_msg->packet->stream->class->default_clock_class;
349}
350
351const struct bt_clock_class *
352bt_message_packet_beginning_borrow_stream_class_default_clock_class_const(
353 const struct bt_message *msg)
354{
355 BT_ASSERT_PRE_NON_NULL(msg, "Message");
356 BT_ASSERT_PRE_MSG_IS_TYPE(msg, BT_MESSAGE_TYPE_PACKET_BEGINNING);
357 return borrow_packet_message_stream_class_default_clock_class(msg);
358}
359
360const struct bt_clock_class *
361bt_message_packet_end_borrow_stream_class_default_clock_class_const(
362 const struct bt_message *msg)
363{
364 BT_ASSERT_PRE_NON_NULL(msg, "Message");
365 BT_ASSERT_PRE_MSG_IS_TYPE(msg, BT_MESSAGE_TYPE_PACKET_END);
366 return borrow_packet_message_stream_class_default_clock_class(msg);
367}
This page took 0.058538 seconds and 4 git commands to generate.