2 * Babeltrace Plug-in Packet-related Notifications
4 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27 #define BT_LOG_TAG "NOTIF-PACKET"
28 #include <babeltrace/lib-logging-internal.h>
30 #include <babeltrace/compiler-internal.h>
31 #include <babeltrace/ctf-ir/packet.h>
32 #include <babeltrace/ctf-ir/packet-internal.h>
33 #include <babeltrace/ctf-ir/stream-class.h>
34 #include <babeltrace/ctf-ir/stream.h>
35 #include <babeltrace/ctf-ir/stream-internal.h>
36 #include <babeltrace/graph/graph-internal.h>
37 #include <babeltrace/graph/notification-packet-internal.h>
38 #include <babeltrace/assert-internal.h>
39 #include <babeltrace/assert-pre-internal.h>
43 struct bt_notification
*bt_notification_packet_begin_new(struct bt_graph
*graph
)
45 struct bt_notification_packet_begin
*notification
;
47 notification
= g_new0(struct bt_notification_packet_begin
, 1);
49 BT_LOGE_STR("Failed to allocate one packet beginning notification.");
53 bt_notification_init(¬ification
->parent
,
54 BT_NOTIFICATION_TYPE_PACKET_BEGIN
,
55 (bt_object_release_func
) bt_notification_packet_begin_recycle
,
63 return (void *) notification
;
66 struct bt_notification
*bt_notification_packet_begin_create(
67 struct bt_graph
*graph
, struct bt_packet
*packet
)
69 struct bt_notification_packet_begin
*notification
;
70 struct bt_stream
*stream
;
71 struct bt_stream_class
*stream_class
;
73 BT_ASSERT_PRE_NON_NULL(packet
, "Packet");
74 stream
= bt_packet_borrow_stream(packet
);
76 stream_class
= bt_stream_borrow_class(stream
);
77 BT_ASSERT(stream_class
);
78 BT_LOGD("Creating packet beginning notification object: "
79 "packet-addr=%p, stream-addr=%p, stream-name=\"%s\", "
80 "stream-class-addr=%p, stream-class-name=\"%s\", "
81 "stream-class-id=%" PRId64
,
82 packet
, stream
, bt_stream_get_name(stream
),
84 bt_stream_class_get_name(stream_class
),
85 bt_stream_class_get_id(stream_class
));
86 notification
= (void *) bt_notification_create_from_pool(
87 &graph
->packet_begin_notif_pool
, graph
);
89 /* bt_notification_create_from_pool() logs errors */
93 notification
->packet
= bt_get(packet
);
94 BT_LOGD("Created packet beginning notification object: "
95 "packet-addr=%p, stream-addr=%p, stream-name=\"%s\", "
96 "stream-class-addr=%p, stream-class-name=\"%s\", "
97 "stream-class-id=%" PRId64
", addr=%p",
98 packet
, stream
, bt_stream_get_name(stream
),
100 bt_stream_class_get_name(stream_class
),
101 bt_stream_class_get_id(stream_class
), notification
);
105 BT_PUT(notification
);
108 return (void *) notification
;
112 void bt_notification_packet_begin_destroy(struct bt_notification
*notif
)
114 struct bt_notification_packet_begin
*packet_begin_notif
= (void *) notif
;
116 BT_LOGD("Destroying packet beginning notification: addr=%p", notif
);
117 BT_LOGD_STR("Putting packet.");
118 BT_PUT(packet_begin_notif
->packet
);
123 void bt_notification_packet_begin_recycle(struct bt_notification
*notif
)
125 struct bt_notification_packet_begin
*packet_begin_notif
= (void *) notif
;
126 struct bt_graph
*graph
;
128 BT_ASSERT(packet_begin_notif
);
131 bt_notification_packet_begin_destroy(notif
);
135 BT_LOGD("Recycling packet beginning notification: addr=%p", notif
);
136 bt_notification_reset(notif
);
137 BT_PUT(packet_begin_notif
->packet
);
138 graph
= notif
->graph
;
140 bt_object_pool_recycle_object(&graph
->packet_begin_notif_pool
, notif
);
143 struct bt_packet
*bt_notification_packet_begin_borrow_packet(
144 struct bt_notification
*notification
)
146 struct bt_notification_packet_begin
*packet_begin
;
148 BT_ASSERT_PRE_NON_NULL(notification
, "Notification");
149 BT_ASSERT_PRE_NOTIF_IS_TYPE(notification
,
150 BT_NOTIFICATION_TYPE_PACKET_BEGIN
);
151 packet_begin
= container_of(notification
,
152 struct bt_notification_packet_begin
, parent
);
153 return packet_begin
->packet
;
157 struct bt_notification
*bt_notification_packet_end_new(struct bt_graph
*graph
)
159 struct bt_notification_packet_end
*notification
;
161 notification
= g_new0(struct bt_notification_packet_end
, 1);
163 BT_LOGE_STR("Failed to allocate one packet end notification.");
167 bt_notification_init(¬ification
->parent
,
168 BT_NOTIFICATION_TYPE_PACKET_END
,
169 (bt_object_release_func
) bt_notification_packet_end_recycle
,
174 BT_PUT(notification
);
177 return (void *) notification
;
180 struct bt_notification
*bt_notification_packet_end_create(
181 struct bt_graph
*graph
, struct bt_packet
*packet
)
183 struct bt_notification_packet_end
*notification
;
184 struct bt_stream
*stream
;
185 struct bt_stream_class
*stream_class
;
187 BT_ASSERT_PRE_NON_NULL(packet
, "Packet");
188 stream
= bt_packet_borrow_stream(packet
);
190 stream_class
= bt_stream_borrow_class(stream
);
191 BT_ASSERT(stream_class
);
192 BT_LOGD("Creating packet end notification object: "
193 "packet-addr=%p, stream-addr=%p, stream-name=\"%s\", "
194 "stream-class-addr=%p, stream-class-name=\"%s\", "
195 "stream-class-id=%" PRId64
,
196 packet
, stream
, bt_stream_get_name(stream
),
198 bt_stream_class_get_name(stream_class
),
199 bt_stream_class_get_id(stream_class
));
200 notification
= (void *) bt_notification_create_from_pool(
201 &graph
->packet_end_notif_pool
, graph
);
203 /* bt_notification_create_from_pool() logs errors */
207 notification
->packet
= bt_get(packet
);
208 BT_LOGD("Created packet end notification object: "
209 "packet-addr=%p, stream-addr=%p, stream-name=\"%s\", "
210 "stream-class-addr=%p, stream-class-name=\"%s\", "
211 "stream-class-id=%" PRId64
", addr=%p",
212 packet
, stream
, bt_stream_get_name(stream
),
214 bt_stream_class_get_name(stream_class
),
215 bt_stream_class_get_id(stream_class
), notification
);
219 BT_PUT(notification
);
222 return (void *) notification
;
226 void bt_notification_packet_end_destroy(struct bt_notification
*notif
)
228 struct bt_notification_packet_end
*packet_end_notif
= (void *) notif
;
230 BT_LOGD("Destroying packet end notification: addr=%p", notif
);
231 BT_LOGD_STR("Putting packet.");
232 BT_PUT(packet_end_notif
->packet
);
237 void bt_notification_packet_end_recycle(struct bt_notification
*notif
)
239 struct bt_notification_packet_end
*packet_end_notif
= (void *) notif
;
240 struct bt_graph
*graph
;
242 BT_ASSERT(packet_end_notif
);
245 bt_notification_packet_end_destroy(notif
);
249 BT_LOGD("Recycling packet end notification: addr=%p", notif
);
250 bt_notification_reset(notif
);
251 BT_PUT(packet_end_notif
->packet
);
252 graph
= notif
->graph
;
254 bt_object_pool_recycle_object(&graph
->packet_end_notif_pool
, notif
);
257 struct bt_packet
*bt_notification_packet_end_borrow_packet(
258 struct bt_notification
*notification
)
260 struct bt_notification_packet_end
*packet_end
;
262 BT_ASSERT_PRE_NON_NULL(notification
, "Notification");
263 BT_ASSERT_PRE_NOTIF_IS_TYPE(notification
,
264 BT_NOTIFICATION_TYPE_PACKET_END
);
265 packet_end
= container_of(notification
,
266 struct bt_notification_packet_end
, parent
);
267 return packet_end
->packet
;