lib: add internal object pool API and use it; adapt plugins/tests
[babeltrace.git] / lib / graph / notification / event.c
CommitLineData
d51202da
JG
1/*
2 * Babeltrace Plug-in Event Notification
3 *
4 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 *
6 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
7 *
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:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
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
24 * SOFTWARE.
25 */
26
6072db50
PP
27#define BT_LOG_TAG "NOTIF-EVENT"
28#include <babeltrace/lib-logging-internal.h>
29
3d9990ac 30#include <babeltrace/compiler-internal.h>
599faa1c 31#include <babeltrace/ctf-ir/event.h>
80f00602 32#include <babeltrace/ctf-ir/event-internal.h>
d8a36e14
PP
33#include <babeltrace/ctf-ir/event-class-internal.h>
34#include <babeltrace/ctf-ir/stream-class-internal.h>
599faa1c
PP
35#include <babeltrace/ctf-ir/trace.h>
36#include <babeltrace/graph/clock-class-priority-map.h>
fe650ea4 37#include <babeltrace/graph/clock-class-priority-map-internal.h>
b2e0c907 38#include <babeltrace/graph/notification-event-internal.h>
c55a9f58 39#include <babeltrace/types.h>
f6ccaed9
PP
40#include <babeltrace/assert-internal.h>
41#include <babeltrace/assert-pre-internal.h>
a68c0f97 42#include <stdbool.h>
6072db50 43#include <inttypes.h>
d51202da
JG
44
45static
46void bt_notification_event_destroy(struct bt_object *obj)
47{
48 struct bt_notification_event *notification =
49 (struct bt_notification_event *) obj;
50
6072db50 51 BT_LOGD("Destroying event notification: addr=%p", notification);
312c056a
PP
52 BT_LOGD_STR("Recycling event.");
53 bt_event_recycle(notification->event);
54 notification->event = NULL;
6072db50 55 BT_LOGD_STR("Putting clock class priority map.");
599faa1c 56 BT_PUT(notification->cc_prio_map);
d51202da
JG
57 g_free(notification);
58}
59
f6ccaed9 60BT_ASSERT_PRE_FUNC
312c056a 61static inline bool event_class_has_trace(struct bt_event_class *event_class)
a68c0f97 62{
50842bdc 63 struct bt_stream_class *stream_class;
a68c0f97 64
50842bdc 65 stream_class = bt_event_class_borrow_stream_class(event_class);
f6ccaed9 66 BT_ASSERT(stream_class);
50842bdc 67 return bt_stream_class_borrow_trace(stream_class) != NULL;
a68c0f97
PP
68}
69
312c056a
PP
70struct bt_notification *bt_notification_event_create(
71 struct bt_event_class *event_class,
72 struct bt_packet *packet,
599faa1c 73 struct bt_clock_class_priority_map *cc_prio_map)
d51202da 74{
80f00602 75 struct bt_notification_event *notification = NULL;
6072db50 76
312c056a
PP
77 BT_ASSERT_PRE_NON_NULL(event_class, "Event class");
78 BT_ASSERT_PRE_NON_NULL(packet, "Packet");
d51202da 79
bbc83bc9
PP
80 if (cc_prio_map) {
81 /* Function's reference, released at the end */
82 bt_get(cc_prio_map);
83 } else {
84 cc_prio_map = bt_clock_class_priority_map_create();
85 if (!cc_prio_map) {
86 BT_LOGE_STR("Cannot create empty clock class priority map.");
87 goto error;
88 }
d51202da
JG
89 }
90
f6ccaed9 91 BT_ASSERT(cc_prio_map);
6072db50 92 BT_LOGD("Creating event notification object: "
312c056a 93 "event-class-addr=%p, "
6072db50
PP
94 "event-class-name=\"%s\", event-class-id=%" PRId64 ", "
95 "cc-prio-map-addr=%p",
312c056a 96 event_class,
50842bdc
PP
97 bt_event_class_get_name(event_class),
98 bt_event_class_get_id(event_class), cc_prio_map);
6072db50 99
312c056a
PP
100 BT_ASSERT_PRE(event_class_has_trace(event_class),
101 "Event class is not part of a trace: %!+E", event_class);
d51202da 102 notification = g_new0(struct bt_notification_event, 1);
24626e8b 103 if (!notification) {
6072db50 104 BT_LOGE_STR("Failed to allocate one event notification.");
24626e8b
JG
105 goto error;
106 }
6072db50
PP
107
108 bt_notification_init(&notification->parent, BT_NOTIFICATION_TYPE_EVENT,
109 bt_notification_event_destroy);
312c056a
PP
110 notification->event = bt_event_create(event_class, packet);
111 if (!notification->event) {
112 BT_LIB_LOGE("Cannot create event from event class: "
113 "%![event-class-]+E", event_class);
114 goto error;
115 }
116
599faa1c 117 notification->cc_prio_map = bt_get(cc_prio_map);
6072db50 118 BT_LOGD_STR("Freezing event notification's clock class priority map.");
fe650ea4 119 bt_clock_class_priority_map_freeze(notification->cc_prio_map);
6072db50
PP
120 BT_LOGD("Created event notification object: "
121 "event-addr=%p, event-class-addr=%p, "
122 "event-class-name=\"%s\", event-class-id=%" PRId64 ", "
123 "cc-prio-map-addr=%p, notif-addr=%p",
312c056a 124 notification->event, event_class,
50842bdc
PP
125 bt_event_class_get_name(event_class),
126 bt_event_class_get_id(event_class), cc_prio_map,
6072db50 127 notification);
d4629a98 128 goto end;
6072db50 129
d51202da 130error:
d4629a98
PP
131 BT_PUT(notification);
132
133end:
bbc83bc9 134 bt_put(cc_prio_map);
d4629a98 135 return &notification->parent;
d51202da
JG
136}
137
094ff7c0 138struct bt_event *bt_notification_event_borrow_event(
d51202da
JG
139 struct bt_notification *notification)
140{
141 struct bt_notification_event *event_notification;
142
f6ccaed9
PP
143 BT_ASSERT_PRE_NON_NULL(notification, "Notification");
144 BT_ASSERT_PRE_NOTIF_IS_TYPE(notification, BT_NOTIFICATION_TYPE_EVENT);
d51202da
JG
145 event_notification = container_of(notification,
146 struct bt_notification_event, parent);
094ff7c0 147 return event_notification->event;
d51202da 148}
599faa1c
PP
149
150extern struct bt_clock_class_priority_map *
094ff7c0 151bt_notification_event_borrow_clock_class_priority_map(
599faa1c
PP
152 struct bt_notification *notification)
153{
599faa1c
PP
154 struct bt_notification_event *event_notification;
155
f6ccaed9
PP
156 BT_ASSERT_PRE_NON_NULL(notification, "Notification");
157 BT_ASSERT_PRE_NOTIF_IS_TYPE(notification, BT_NOTIFICATION_TYPE_EVENT);
599faa1c
PP
158 event_notification = container_of(notification,
159 struct bt_notification_event, parent);
094ff7c0 160 return event_notification->cc_prio_map;
599faa1c 161}
This page took 0.042776 seconds and 4 git commands to generate.