lib: update copyrights
[babeltrace.git] / lib / graph / notification / stream.c
CommitLineData
043e2020 1/*
f2b0325d 2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
043e2020
JG
3 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 *
043e2020
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
d229f56b
PP
24#define BT_LOG_TAG "NOTIF-STREAM"
25#include <babeltrace/lib-logging-internal.h>
26
8fc063a2 27#include <babeltrace/assert-pre-internal.h>
3d9990ac 28#include <babeltrace/compiler-internal.h>
108b91d0
PP
29#include <babeltrace/trace-ir/stream-internal.h>
30#include <babeltrace/trace-ir/stream-class.h>
31#include <babeltrace/trace-ir/stream-class-internal.h>
7b53201c
PP
32#include <babeltrace/graph/notification-stream.h>
33#include <babeltrace/graph/notification-stream-const.h>
b2e0c907 34#include <babeltrace/graph/notification-stream-internal.h>
8b45963b 35#include <babeltrace/assert-internal.h>
9e550e5f 36#include <babeltrace/object.h>
d229f56b 37#include <inttypes.h>
043e2020
JG
38
39static
40void bt_notification_stream_end_destroy(struct bt_object *obj)
41{
42 struct bt_notification_stream_end *notification =
43 (struct bt_notification_stream_end *) obj;
44
834e9996 45 BT_LIB_LOGD("Destroying stream end notification: %!+n",
d229f56b 46 notification);
834e9996 47 BT_LIB_LOGD("Putting stream: %!+s", notification->stream);
8138bfe1 48 BT_OBJECT_PUT_REF_AND_RESET(notification->stream);
7b33a0e0
PP
49
50 if (notification->default_cv) {
51 bt_clock_value_recycle(notification->default_cv);
834e9996 52 notification->default_cv = NULL;
7b33a0e0
PP
53 }
54
043e2020
JG
55 g_free(notification);
56}
57
7b53201c 58struct bt_notification *bt_notification_stream_end_create(
834e9996 59 struct bt_self_notification_iterator *self_notif_iter,
78cf9df6 60 struct bt_stream *stream)
043e2020
JG
61{
62 struct bt_notification_stream_end *notification;
839d52a5 63 struct bt_stream_class *stream_class;
043e2020 64
834e9996 65 BT_ASSERT_PRE_NON_NULL(self_notif_iter, "Notification iterator");
8b45963b 66 BT_ASSERT_PRE_NON_NULL(stream, "Stream");
8deee039 67 stream_class = bt_stream_borrow_class(stream);
8b45963b 68 BT_ASSERT(stream_class);
834e9996
PP
69 BT_LIB_LOGD("Creating stream end notification object: "
70 "%![stream-]+s, %![sc-]+S", stream, stream_class);
043e2020 71 notification = g_new0(struct bt_notification_stream_end, 1);
d229f56b
PP
72 if (!notification) {
73 BT_LOGE_STR("Failed to allocate one stream end notification.");
74 goto error;
75 }
76
043e2020
JG
77 bt_notification_init(&notification->parent,
78 BT_NOTIFICATION_TYPE_STREAM_END,
f7c3ac09 79 bt_notification_stream_end_destroy, NULL);
4b70020d
PP
80 notification->stream = stream;
81 bt_object_get_no_null_check(notification->stream);
834e9996
PP
82 BT_LIB_LOGD("Created stream end notification object: "
83 "%![notif-]+n, %![stream-]+s, %![sc-]+S", notification,
84 stream, stream_class);
9e550e5f
PP
85
86 return (void *) &notification->parent;
043e2020
JG
87error:
88 return NULL;
89}
90
7b53201c
PP
91struct bt_stream *bt_notification_stream_end_borrow_stream(
92 struct bt_notification *notification)
043e2020
JG
93{
94 struct bt_notification_stream_end *stream_end;
95
8b45963b
PP
96 BT_ASSERT_PRE_NON_NULL(notification, "Notification");
97 BT_ASSERT_PRE_NOTIF_IS_TYPE(notification,
98 BT_NOTIFICATION_TYPE_STREAM_END);
78cf9df6 99 stream_end = (void *) notification;
5fe68922 100 return stream_end->stream;
043e2020 101}
3230ee6b 102
7b53201c
PP
103const struct bt_stream *bt_notification_stream_end_borrow_stream_const(
104 const struct bt_notification *notification)
9e550e5f 105{
7b53201c 106 return bt_notification_stream_end_borrow_stream(
9e550e5f
PP
107 (void *) notification);
108}
109
7b53201c
PP
110void bt_notification_stream_end_set_default_clock_value(
111 struct bt_notification *notif, uint64_t value_cycles)
8fc063a2 112{
7b33a0e0 113 struct bt_notification_stream_end *se_notif = (void *) notif;
8fc063a2
PP
114
115 BT_ASSERT_PRE_NON_NULL(notif, "Notification");
8fc063a2
PP
116 BT_ASSERT_PRE_HOT(notif, "Notification", ": %!+n", notif);
117 BT_ASSERT_PRE_NOTIF_IS_TYPE(notif, BT_NOTIFICATION_TYPE_STREAM_END);
7b33a0e0
PP
118 BT_ASSERT_PRE(se_notif->stream->class->default_clock_class,
119 "Notification's stream class has no default clock class: "
120 "%![notif-]+n, %![sc-]+S", notif, se_notif->stream->class);
121
c8bbf821
PP
122 /* TODO: have the object already created */
123 se_notif->default_cv = bt_clock_value_create(
124 se_notif->stream->class->default_clock_class);
125 BT_ASSERT(se_notif->default_cv);
7b33a0e0
PP
126 bt_clock_value_set_value_inline(se_notif->default_cv, value_cycles);
127 BT_LIB_LOGV("Set notification's default clock value: %![notif-]+n, "
128 "value=%" PRIu64, value_cycles);
8fc063a2
PP
129}
130
131struct bt_clock_value *bt_notification_stream_end_borrow_default_clock_value(
132 struct bt_notification *notif)
133{
134 struct bt_notification_stream_end *stream_end = (void *) notif;
8fc063a2
PP
135
136 BT_ASSERT_PRE_NON_NULL(notif, "Notification");
137 BT_ASSERT_PRE_NOTIF_IS_TYPE(notif, BT_NOTIFICATION_TYPE_STREAM_END);
7b33a0e0 138 return stream_end->default_cv;
8fc063a2
PP
139}
140
3230ee6b 141static
e18f019b 142void bt_notification_stream_beginning_destroy(struct bt_object *obj)
3230ee6b 143{
e18f019b
PP
144 struct bt_notification_stream_beginning *notification =
145 (struct bt_notification_stream_beginning *) obj;
3230ee6b 146
834e9996 147 BT_LIB_LOGD("Destroying stream beginning notification: %!+n",
d229f56b 148 notification);
834e9996 149 BT_LIB_LOGD("Putting stream: %!+s", notification->stream);
8138bfe1 150 BT_OBJECT_PUT_REF_AND_RESET(notification->stream);
7b33a0e0
PP
151
152 if (notification->default_cv) {
153 bt_clock_value_recycle(notification->default_cv);
834e9996 154 notification->default_cv = NULL;
7b33a0e0
PP
155 }
156
3230ee6b
PP
157 g_free(notification);
158}
159
e18f019b 160struct bt_notification *bt_notification_stream_beginning_create(
834e9996 161 struct bt_self_notification_iterator *self_notif_iter,
78cf9df6 162 struct bt_stream *stream)
3230ee6b 163{
e18f019b 164 struct bt_notification_stream_beginning *notification;
839d52a5 165 struct bt_stream_class *stream_class;
3230ee6b 166
834e9996 167 BT_ASSERT_PRE_NON_NULL(self_notif_iter, "Notification iterator");
8b45963b 168 BT_ASSERT_PRE_NON_NULL(stream, "Stream");
8deee039 169 stream_class = bt_stream_borrow_class(stream);
8b45963b 170 BT_ASSERT(stream_class);
834e9996
PP
171 BT_LIB_LOGD("Creating stream beginning notification object: "
172 "%![stream-]+s, %![sc-]+S", stream, stream_class);
e18f019b 173 notification = g_new0(struct bt_notification_stream_beginning, 1);
d229f56b
PP
174 if (!notification) {
175 BT_LOGE_STR("Failed to allocate one stream beginning notification.");
176 goto error;
177 }
178
3230ee6b 179 bt_notification_init(&notification->parent,
e18f019b
PP
180 BT_NOTIFICATION_TYPE_STREAM_BEGINNING,
181 bt_notification_stream_beginning_destroy, NULL);
4b70020d
PP
182 notification->stream = stream;
183 bt_object_get_no_null_check(notification->stream);
834e9996
PP
184 BT_LIB_LOGD("Created stream beginning notification object: "
185 "%![notif-]+n, %![stream-]+s, %![sc-]+S", notification,
186 stream, stream_class);
9e550e5f 187 return (void *) &notification->parent;
3230ee6b
PP
188error:
189 return NULL;
190}
191
e18f019b 192struct bt_stream *bt_notification_stream_beginning_borrow_stream(
7b53201c 193 struct bt_notification *notification)
3230ee6b 194{
e18f019b 195 struct bt_notification_stream_beginning *stream_begin;
3230ee6b 196
8b45963b
PP
197 BT_ASSERT_PRE_NON_NULL(notification, "Notification");
198 BT_ASSERT_PRE_NOTIF_IS_TYPE(notification,
e18f019b 199 BT_NOTIFICATION_TYPE_STREAM_BEGINNING);
78cf9df6 200 stream_begin = (void *) notification;
5fe68922 201 return stream_begin->stream;
3230ee6b 202}
8fc063a2 203
e18f019b 204const struct bt_stream *bt_notification_stream_beginning_borrow_stream_const(
7b53201c 205 const struct bt_notification *notification)
9e550e5f 206{
e18f019b 207 return bt_notification_stream_beginning_borrow_stream(
9e550e5f
PP
208 (void *) notification);
209}
210
e18f019b 211void bt_notification_stream_beginning_set_default_clock_value(
7b53201c 212 struct bt_notification *notif,
9e550e5f 213 uint64_t value_cycles)
8fc063a2 214{
e18f019b 215 struct bt_notification_stream_beginning *sb_notif = (void *) notif;
8fc063a2
PP
216
217 BT_ASSERT_PRE_NON_NULL(notif, "Notification");
8fc063a2 218 BT_ASSERT_PRE_HOT(notif, "Notification", ": %!+n", notif);
e18f019b 219 BT_ASSERT_PRE_NOTIF_IS_TYPE(notif, BT_NOTIFICATION_TYPE_STREAM_BEGINNING);
7b33a0e0
PP
220 BT_ASSERT_PRE(sb_notif->stream->class->default_clock_class,
221 "Notification's stream class has no default clock class: "
222 "%![notif-]+n, %![sc-]+S", notif, sb_notif->stream->class);
223
c8bbf821
PP
224 /* TODO: have the object already created */
225 sb_notif->default_cv = bt_clock_value_create(
226 sb_notif->stream->class->default_clock_class);
227 BT_ASSERT(sb_notif->default_cv);
7b33a0e0
PP
228 bt_clock_value_set_value_inline(sb_notif->default_cv, value_cycles);
229 BT_LIB_LOGV("Set notification's default clock value: %![notif-]+n, "
230 "value=%" PRIu64, value_cycles);
8fc063a2
PP
231}
232
e18f019b 233struct bt_clock_value *bt_notification_stream_beginning_borrow_default_clock_value(
8fc063a2
PP
234 struct bt_notification *notif)
235{
e18f019b 236 struct bt_notification_stream_beginning *stream_begin = (void *) notif;
8fc063a2
PP
237
238 BT_ASSERT_PRE_NON_NULL(notif, "Notification");
e18f019b 239 BT_ASSERT_PRE_NOTIF_IS_TYPE(notif, BT_NOTIFICATION_TYPE_STREAM_BEGINNING);
7b33a0e0 240 return stream_begin->default_cv;
8fc063a2 241}
This page took 0.048735 seconds and 4 git commands to generate.