2 * Babeltrace Plug-in Event Notification
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 #include <babeltrace/compiler-internal.h>
28 #include <babeltrace/ctf-ir/event.h>
29 #include <babeltrace/ctf-ir/event-internal.h>
30 #include <babeltrace/ctf-ir/event-class.h>
31 #include <babeltrace/ctf-ir/stream-class.h>
32 #include <babeltrace/ctf-ir/trace.h>
33 #include <babeltrace/graph/clock-class-priority-map.h>
34 #include <babeltrace/graph/notification-event-internal.h>
37 void bt_notification_event_destroy(struct bt_object
*obj
)
39 struct bt_notification_event
*notification
=
40 (struct bt_notification_event
*) obj
;
42 BT_PUT(notification
->event
);
43 BT_PUT(notification
->cc_prio_map
);
48 bool validate_clock_classes(struct bt_notification_event
*notif
)
51 * For each clock class found in the event's trace, get the
52 * event's clock value for this clock class, and if it exists,
53 * make sure that this clock class has a priority in the
54 * notification's clock class priority map.
60 struct bt_ctf_event_class
*event_class
= NULL
;
61 struct bt_ctf_stream_class
*stream_class
= NULL
;
62 struct bt_ctf_trace
*trace
= NULL
;
65 event_class
= bt_ctf_event_get_class(notif
->event
);
67 stream_class
= bt_ctf_event_class_get_stream_class(event_class
);
69 trace
= bt_ctf_stream_class_get_trace(stream_class
);
71 count
= bt_ctf_trace_get_clock_class_count(trace
);
74 for (i
= 0; i
< count
; i
++) {
75 struct bt_ctf_clock_class
*clock_class
=
76 bt_ctf_trace_get_clock_class(trace
, i
);
79 ret
= bt_clock_class_priority_map_get_clock_class_priority(
80 notif
->cc_prio_map
, clock_class
, &prio
);
95 struct bt_notification
*bt_notification_event_create(struct bt_ctf_event
*event
,
96 struct bt_clock_class_priority_map
*cc_prio_map
)
98 struct bt_notification_event
*notification
= NULL
;
100 if (!event
|| !cc_prio_map
) {
104 if (!bt_ctf_event_borrow_packet(event
)) {
108 notification
= g_new0(struct bt_notification_event
, 1);
112 bt_notification_init(¬ification
->parent
,
113 BT_NOTIFICATION_TYPE_EVENT
,
114 bt_notification_event_destroy
);
115 notification
->event
= bt_get(event
);
116 notification
->cc_prio_map
= bt_get(cc_prio_map
);
117 if (!validate_clock_classes(notification
)) {
121 bt_ctf_event_freeze(notification
->event
);
122 return ¬ification
->parent
;
124 bt_put(notification
);
128 struct bt_ctf_event
*bt_notification_event_get_event(
129 struct bt_notification
*notification
)
131 struct bt_ctf_event
*event
= NULL
;
132 struct bt_notification_event
*event_notification
;
134 if (bt_notification_get_type(notification
) !=
135 BT_NOTIFICATION_TYPE_EVENT
) {
138 event_notification
= container_of(notification
,
139 struct bt_notification_event
, parent
);
140 event
= bt_get(event_notification
->event
);
145 extern struct bt_clock_class_priority_map
*
146 bt_notification_event_get_clock_class_priority_map(
147 struct bt_notification
*notification
)
149 struct bt_clock_class_priority_map
*cc_prio_map
= NULL
;
150 struct bt_notification_event
*event_notification
;
152 if (bt_notification_get_type(notification
) !=
153 BT_NOTIFICATION_TYPE_EVENT
) {
157 event_notification
= container_of(notification
,
158 struct bt_notification_event
, parent
);
159 cc_prio_map
= bt_get(event_notification
->cc_prio_map
);