lib: graph: add "self" and some "private" APIs
[babeltrace.git] / lib / graph / notification / packet.c
1 /*
2 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24
25 #define BT_LOG_TAG "NOTIF-PACKET"
26 #include <babeltrace/lib-logging-internal.h>
27
28 #include <babeltrace/compiler-internal.h>
29 #include <babeltrace/trace-ir/packet.h>
30 #include <babeltrace/trace-ir/packet-internal.h>
31 #include <babeltrace/trace-ir/stream-class.h>
32 #include <babeltrace/trace-ir/stream.h>
33 #include <babeltrace/trace-ir/stream-internal.h>
34 #include <babeltrace/graph/graph-internal.h>
35 #include <babeltrace/graph/private-notification-packet.h>
36 #include <babeltrace/graph/notification-packet-internal.h>
37 #include <babeltrace/object.h>
38 #include <babeltrace/assert-internal.h>
39 #include <babeltrace/assert-pre-internal.h>
40 #include <babeltrace/object-internal.h>
41 #include <inttypes.h>
42
43 BT_HIDDEN
44 struct bt_notification *bt_notification_packet_begin_new(struct bt_graph *graph)
45 {
46 struct bt_notification_packet_begin *notification;
47
48 notification = g_new0(struct bt_notification_packet_begin, 1);
49 if (!notification) {
50 BT_LOGE_STR("Failed to allocate one packet beginning notification.");
51 goto error;
52 }
53
54 bt_notification_init(&notification->parent,
55 BT_NOTIFICATION_TYPE_PACKET_BEGIN,
56 (bt_object_release_func) bt_notification_packet_begin_recycle,
57 graph);
58 goto end;
59
60 error:
61 BT_OBJECT_PUT_REF_AND_RESET(notification);
62
63 end:
64 return (void *) notification;
65 }
66
67 struct bt_private_notification *bt_private_notification_packet_begin_create(
68 struct bt_self_notification_iterator *self_notif_iter,
69 struct bt_private_packet *priv_packet)
70 {
71 struct bt_self_component_port_input_notification_iterator *notif_iter =
72 (void *) self_notif_iter;
73 struct bt_packet *packet = (void *) priv_packet;
74 struct bt_notification_packet_begin *notification = NULL;
75 struct bt_stream *stream;
76 struct bt_stream_class *stream_class;
77
78 BT_ASSERT_PRE_NON_NULL(notif_iter, "Notification iterator");
79 BT_ASSERT_PRE_NON_NULL(packet, "Packet");
80 stream = bt_packet_borrow_stream(packet);
81 BT_ASSERT(stream);
82 stream_class = bt_stream_borrow_class(stream);
83 BT_ASSERT(stream_class);
84 BT_LIB_LOGD("Creating packet beginning notification object: "
85 "%![packet-]+a, %![stream-]+s, %![sc-]+S",
86 packet, stream, stream_class);
87 notification = (void *) bt_notification_create_from_pool(
88 &notif_iter->graph->packet_begin_notif_pool, notif_iter->graph);
89 if (!notification) {
90 /* bt_notification_create_from_pool() logs errors */
91 goto end;
92 }
93
94 BT_ASSERT(!notification->packet);
95 notification->packet = packet;
96 bt_object_get_no_null_check_no_parent_check(
97 &notification->packet->base);
98 bt_packet_set_is_frozen(packet, true);
99 BT_LIB_LOGD("Created packet beginning notification object: "
100 "%![notif-]+n, %![packet-]+a, %![stream-]+s, %![sc-]+S",
101 notification, packet, stream, stream_class);
102 goto end;
103
104 end:
105 return (void *) notification;
106 }
107
108 BT_HIDDEN
109 void bt_notification_packet_begin_destroy(struct bt_notification *notif)
110 {
111 struct bt_notification_packet_begin *packet_begin_notif = (void *) notif;
112
113 BT_LIB_LOGD("Destroying packet beginning notification: %!+n", notif);
114 BT_LIB_LOGD("Putting packet: %!+a", packet_begin_notif->packet);
115 BT_OBJECT_PUT_REF_AND_RESET(packet_begin_notif->packet);
116 g_free(notif);
117 }
118
119 BT_HIDDEN
120 void bt_notification_packet_begin_recycle(struct bt_notification *notif)
121 {
122 struct bt_notification_packet_begin *packet_begin_notif = (void *) notif;
123 struct bt_graph *graph;
124
125 BT_ASSERT(packet_begin_notif);
126
127 if (unlikely(!notif->graph)) {
128 bt_notification_packet_begin_destroy(notif);
129 return;
130 }
131
132 BT_LIB_LOGD("Recycling packet beginning notification: %!+n", notif);
133 bt_notification_reset(notif);
134 bt_object_put_no_null_check(&packet_begin_notif->packet->base);
135 packet_begin_notif->packet = NULL;
136 graph = notif->graph;
137 notif->graph = NULL;
138 bt_object_pool_recycle_object(&graph->packet_begin_notif_pool, notif);
139 }
140
141 struct bt_packet *bt_notification_packet_begin_borrow_packet(
142 struct bt_notification *notification)
143 {
144 struct bt_notification_packet_begin *packet_begin;
145
146 BT_ASSERT_PRE_NON_NULL(notification, "Notification");
147 BT_ASSERT_PRE_NOTIF_IS_TYPE(notification,
148 BT_NOTIFICATION_TYPE_PACKET_BEGIN);
149 packet_begin = container_of(notification,
150 struct bt_notification_packet_begin, parent);
151 return packet_begin->packet;
152 }
153
154 struct bt_private_packet *
155 bt_private_notification_packet_begin_borrow_packet(
156 struct bt_private_notification *notification)
157 {
158 return (void *) bt_notification_packet_begin_borrow_packet(
159 (void *) notification);
160 }
161
162 BT_HIDDEN
163 struct bt_notification *bt_notification_packet_end_new(struct bt_graph *graph)
164 {
165 struct bt_notification_packet_end *notification;
166
167 notification = g_new0(struct bt_notification_packet_end, 1);
168 if (!notification) {
169 BT_LOGE_STR("Failed to allocate one packet end notification.");
170 goto error;
171 }
172
173 bt_notification_init(&notification->parent,
174 BT_NOTIFICATION_TYPE_PACKET_END,
175 (bt_object_release_func) bt_notification_packet_end_recycle,
176 graph);
177 goto end;
178
179 error:
180 BT_OBJECT_PUT_REF_AND_RESET(notification);
181
182 end:
183 return (void *) notification;
184 }
185
186 struct bt_private_notification *bt_private_notification_packet_end_create(
187 struct bt_self_notification_iterator *self_notif_iter,
188 struct bt_private_packet *priv_packet)
189 {
190 struct bt_self_component_port_input_notification_iterator *notif_iter =
191 (void *) self_notif_iter;
192 struct bt_packet *packet = (void *) priv_packet;
193 struct bt_notification_packet_end *notification = NULL;
194 struct bt_stream *stream;
195 struct bt_stream_class *stream_class;
196
197 BT_ASSERT_PRE_NON_NULL(notif_iter, "Notification iterator");
198 BT_ASSERT_PRE_NON_NULL(packet, "Packet");
199 stream = bt_packet_borrow_stream(packet);
200 BT_ASSERT(stream);
201 stream_class = bt_stream_borrow_class(stream);
202 BT_ASSERT(stream_class);
203 BT_LIB_LOGD("Creating packet end notification object: "
204 "%![packet-]+a, %![stream-]+s, %![sc-]+S",
205 packet, stream, stream_class);
206 notification = (void *) bt_notification_create_from_pool(
207 &notif_iter->graph->packet_end_notif_pool, notif_iter->graph);
208 if (!notification) {
209 /* bt_notification_create_from_pool() logs errors */
210 goto end;
211 }
212
213 BT_ASSERT(!notification->packet);
214 notification->packet = packet;
215 bt_object_get_no_null_check_no_parent_check(
216 &notification->packet->base);
217 bt_packet_set_is_frozen(packet, true);
218 BT_LIB_LOGD("Created packet end notification object: "
219 "%![notif-]+n, %![packet-]+a, %![stream-]+s, %![sc-]+S",
220 notification, packet, stream, stream_class);
221 goto end;
222
223 end:
224 return (void *) notification;
225 }
226
227 BT_HIDDEN
228 void bt_notification_packet_end_destroy(struct bt_notification *notif)
229 {
230 struct bt_notification_packet_end *packet_end_notif = (void *) notif;
231
232 BT_LIB_LOGD("Destroying packet end notification: %!+n", notif);
233 BT_LIB_LOGD("Putting packet: %!+a", packet_end_notif->packet);
234 BT_OBJECT_PUT_REF_AND_RESET(packet_end_notif->packet);
235 g_free(notif);
236 }
237
238 BT_HIDDEN
239 void bt_notification_packet_end_recycle(struct bt_notification *notif)
240 {
241 struct bt_notification_packet_end *packet_end_notif = (void *) notif;
242 struct bt_graph *graph;
243
244 BT_ASSERT(packet_end_notif);
245
246 if (!notif->graph) {
247 bt_notification_packet_end_destroy(notif);
248 return;
249 }
250
251 BT_LIB_LOGD("Recycling packet end notification: %!+n", notif);
252 bt_notification_reset(notif);
253 BT_OBJECT_PUT_REF_AND_RESET(packet_end_notif->packet);
254 graph = notif->graph;
255 notif->graph = NULL;
256 bt_object_pool_recycle_object(&graph->packet_end_notif_pool, notif);
257 }
258
259 struct bt_packet *bt_notification_packet_end_borrow_packet(
260 struct bt_notification *notification)
261 {
262 struct bt_notification_packet_end *packet_end;
263
264 BT_ASSERT_PRE_NON_NULL(notification, "Notification");
265 BT_ASSERT_PRE_NOTIF_IS_TYPE(notification,
266 BT_NOTIFICATION_TYPE_PACKET_END);
267 packet_end = container_of(notification,
268 struct bt_notification_packet_end, parent);
269 return packet_end->packet;
270 }
271
272 struct bt_private_packet *bt_private_notification_packet_end_borrow_packet(
273 struct bt_private_notification *notification)
274 {
275 return (void *) bt_notification_packet_end_borrow_packet(
276 (void *) notification);
277 }
This page took 0.048299 seconds and 4 git commands to generate.