lib: rename bt_plugin_create_all_*() -> bt_plugin_find_all_*()
[babeltrace.git] / lib / graph / notification / event.c
CommitLineData
d51202da 1/*
f2b0325d 2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
d51202da
JG
3 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 *
d51202da
JG
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
546a0c4a
PP
24#define BT_LOG_TAG "NOTIF-EVENT"
25#include <babeltrace/lib-logging-internal.h>
26
8c6884d9
PP
27#include <babeltrace/assert-internal.h>
28#include <babeltrace/assert-pre-internal.h>
3d9990ac 29#include <babeltrace/compiler-internal.h>
c5a24b0a 30#include <babeltrace/object-internal.h>
108b91d0
PP
31#include <babeltrace/trace-ir/event.h>
32#include <babeltrace/trace-ir/event-internal.h>
33#include <babeltrace/trace-ir/event-class-internal.h>
34#include <babeltrace/trace-ir/stream-class-internal.h>
35#include <babeltrace/trace-ir/trace.h>
f7c3ac09 36#include <babeltrace/graph/graph-internal.h>
7b53201c
PP
37#include <babeltrace/graph/notification-event-const.h>
38#include <babeltrace/graph/notification-event.h>
b2e0c907 39#include <babeltrace/graph/notification-event-internal.h>
c55a9f58 40#include <babeltrace/types.h>
a68c0f97 41#include <stdbool.h>
546a0c4a 42#include <inttypes.h>
d51202da 43
8b45963b 44BT_ASSERT_PRE_FUNC
a6918753 45static inline bool event_class_has_trace(struct bt_event_class *event_class)
a68c0f97 46{
839d52a5 47 struct bt_stream_class *stream_class;
a68c0f97 48
839d52a5 49 stream_class = bt_event_class_borrow_stream_class(event_class);
8b45963b 50 BT_ASSERT(stream_class);
10b7a2e4 51 return bt_stream_class_borrow_trace_class(stream_class) != NULL;
a68c0f97
PP
52}
53
f7c3ac09 54BT_HIDDEN
03e18d5d
PP
55struct bt_notification *bt_notification_event_new(
56 struct bt_graph *graph)
f7c3ac09
PP
57{
58 struct bt_notification_event *notification = NULL;
59
60 notification = g_new0(struct bt_notification_event, 1);
61 if (!notification) {
62 BT_LOGE_STR("Failed to allocate one event notification.");
63 goto error;
64 }
65
66 bt_notification_init(&notification->parent, BT_NOTIFICATION_TYPE_EVENT,
67 (bt_object_release_func) bt_notification_event_recycle, graph);
68 goto end;
69
70error:
8138bfe1 71 BT_OBJECT_PUT_REF_AND_RESET(notification);
f7c3ac09
PP
72
73end:
74 return (void *) notification;
75}
76
7b53201c 77struct bt_notification *bt_notification_event_create(
834e9996 78 struct bt_self_notification_iterator *self_notif_iter,
78cf9df6
PP
79 struct bt_event_class *event_class,
80 struct bt_packet *packet)
d51202da 81{
834e9996
PP
82 struct bt_self_component_port_input_notification_iterator *notif_iter =
83 (void *) self_notif_iter;
80f00602 84 struct bt_notification_event *notification = NULL;
c5a24b0a 85 struct bt_event *event;
546a0c4a 86
03e18d5d 87 BT_ASSERT_PRE_NON_NULL(notif_iter, "Notification iterator");
a6918753
PP
88 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
89 BT_ASSERT_PRE_NON_NULL(packet, "Packet");
a6918753
PP
90 BT_ASSERT_PRE(event_class_has_trace(event_class),
91 "Event class is not part of a trace: %!+E", event_class);
834e9996
PP
92 BT_LIB_LOGD("Creating event notification object: %![ec-]+E",
93 event_class);
c5a24b0a
PP
94 event = bt_event_create(event_class, packet);
95 if (unlikely(!event)) {
96 BT_LIB_LOGE("Cannot create event from event class: "
834e9996 97 "%![ec-]+E", event_class);
24626e8b
JG
98 goto error;
99 }
546a0c4a 100
c5a24b0a
PP
101 /*
102 * Create notification from pool _after_ we have everything
103 * (in this case, a valid event object) so that we never have an
104 * error condition with a non-NULL notification object.
105 * Otherwise:
106 *
107 * * We cannot recycle the notification on error because
108 * bt_notification_event_recycle() expects a complete
109 * notification (and the event or clock class priority map
110 * object could be unset).
111 *
112 * * We cannot destroy the notification because we would need
113 * to notify the graph (pool owner) so that it removes the
114 * notification from its notification array.
115 */
116 notification = (void *) bt_notification_create_from_pool(
834e9996 117 &notif_iter->graph->event_notif_pool, notif_iter->graph);
c5a24b0a
PP
118 if (unlikely(!notification)) {
119 /* bt_notification_create_from_pool() logs errors */
a6918753
PP
120 goto error;
121 }
122
c5a24b0a
PP
123 BT_ASSERT(!notification->event);
124 notification->event = event;
e5815ba2 125 bt_packet_set_is_frozen(packet, true);
7b33a0e0 126 bt_event_class_freeze(event_class);
834e9996
PP
127 BT_LIB_LOGD("Created event notification object: "
128 "%![notif-]+n, %![event-]+e", notification, event);
3fd45dc7 129 goto end;
546a0c4a 130
d51202da 131error:
c5a24b0a
PP
132 BT_ASSERT(!notification);
133 bt_event_destroy(event);
3fd45dc7
PP
134
135end:
f7c3ac09
PP
136 return (void *) notification;
137}
138
139BT_HIDDEN
140void bt_notification_event_destroy(struct bt_notification *notif)
141{
142 struct bt_notification_event *event_notif = (void *) notif;
143
834e9996 144 BT_LIB_LOGD("Destroying event notification: %!+n", notif);
f7c3ac09
PP
145
146 if (event_notif->event) {
834e9996 147 BT_LIB_LOGD("Recycling event: %!+e", event_notif->event);
f7c3ac09 148 bt_event_recycle(event_notif->event);
834e9996 149 event_notif->event = NULL;
f7c3ac09
PP
150 }
151
f7c3ac09
PP
152 g_free(notif);
153}
154
155BT_HIDDEN
156void bt_notification_event_recycle(struct bt_notification *notif)
157{
158 struct bt_notification_event *event_notif = (void *) notif;
159 struct bt_graph *graph;
160
161 BT_ASSERT(event_notif);
162
c5a24b0a 163 if (unlikely(!notif->graph)) {
f7c3ac09
PP
164 bt_notification_event_destroy(notif);
165 return;
166 }
167
834e9996
PP
168 BT_LIB_LOGD("Recycling event notification: %![notif-]+n, %![event-]+e",
169 notif, event_notif->event);
f7c3ac09 170 bt_notification_reset(notif);
c5a24b0a 171 BT_ASSERT(event_notif->event);
c5a24b0a
PP
172 bt_event_recycle(event_notif->event);
173 event_notif->event = NULL;
f7c3ac09
PP
174 graph = notif->graph;
175 notif->graph = NULL;
176 bt_object_pool_recycle_object(&graph->event_notif_pool, notif);
d51202da
JG
177}
178
78cf9df6
PP
179static inline
180struct bt_event *borrow_event(struct bt_notification *notification)
d51202da
JG
181{
182 struct bt_notification_event *event_notification;
183
8b45963b
PP
184 BT_ASSERT_PRE_NON_NULL(notification, "Notification");
185 BT_ASSERT_PRE_NOTIF_IS_TYPE(notification, BT_NOTIFICATION_TYPE_EVENT);
d51202da
JG
186 event_notification = container_of(notification,
187 struct bt_notification_event, parent);
5fe68922 188 return event_notification->event;
d51202da 189}
9e550e5f 190
7b53201c
PP
191struct bt_event *bt_notification_event_borrow_event(
192 struct bt_notification *notification)
9e550e5f 193{
7b53201c 194 return borrow_event(notification);
78cf9df6
PP
195}
196
7b53201c
PP
197const struct bt_event *bt_notification_event_borrow_event_const(
198 const struct bt_notification *notification)
78cf9df6 199{
7b53201c 200 return borrow_event((void *) notification);
9e550e5f 201}
This page took 0.045801 seconds and 4 git commands to generate.