assert-pre-internal.h: add BT_ASSERT_PRE_VALID_INDEX()
[babeltrace.git] / lib / graph / notification / inactivity.c
CommitLineData
ece3fb0f
PP
1/*
2 * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 * SOFTWARE.
21 */
22
fe30b20b
PP
23#define BT_LOG_TAG "NOTIF-INACTIVITY"
24#include <babeltrace/lib-logging-internal.h>
25
ece3fb0f 26#include <babeltrace/object-internal.h>
3d9990ac 27#include <babeltrace/compiler-internal.h>
ece3fb0f 28#include <babeltrace/ctf-ir/clock-class.h>
f6ccaed9 29#include <babeltrace/ctf-ir/clock-value-internal.h>
ece3fb0f
PP
30#include <babeltrace/graph/notification-internal.h>
31#include <babeltrace/graph/notification-inactivity-internal.h>
f0010051 32#include <babeltrace/graph/private-connection-private-notification-iterator.h>
f6ccaed9 33#include <babeltrace/assert-pre-internal.h>
ece3fb0f
PP
34
35static
36void bt_notification_inactivity_destroy(struct bt_object *obj)
37{
38 struct bt_notification_inactivity *notification =
39 (struct bt_notification_inactivity *) obj;
40
fe30b20b 41 BT_LOGD("Destroying inactivity notification: addr=%p", notification);
e22b45d0 42 bt_clock_value_set_finalize(&notification->cv_set);
ece3fb0f
PP
43 g_free(notification);
44}
45
46struct bt_notification *bt_notification_inactivity_create(
f0010051 47 struct bt_private_connection_private_notification_iterator *notif_iter)
ece3fb0f
PP
48{
49 struct bt_notification_inactivity *notification;
50 struct bt_notification *ret_notif = NULL;
e22b45d0 51 int ret;
ece3fb0f 52
e22b45d0 53 BT_LOGD_STR("Creating inactivity notification object.");
ece3fb0f
PP
54 notification = g_new0(struct bt_notification_inactivity, 1);
55 if (!notification) {
fe30b20b 56 BT_LOGE_STR("Failed to allocate one inactivity notification.");
ece3fb0f
PP
57 goto error;
58 }
59 bt_notification_init(&notification->parent,
fe30b20b 60 BT_NOTIFICATION_TYPE_INACTIVITY,
5c563278 61 bt_notification_inactivity_destroy, NULL);
ece3fb0f 62 ret_notif = &notification->parent;
e22b45d0
PP
63 ret = bt_clock_value_set_initialize(&notification->cv_set);
64 if (ret) {
ece3fb0f
PP
65 goto error;
66 }
67
e22b45d0
PP
68 BT_LOGD("Created inactivity notification object: addr=%p",
69 ret_notif);
ece3fb0f
PP
70 goto end;
71
72error:
73 BT_PUT(ret_notif);
74
75end:
76 return ret_notif;
77}
78
e22b45d0
PP
79int bt_notification_inactivity_set_clock_value(struct bt_notification *notif,
80 struct bt_clock_class *clock_class, uint64_t raw_value,
81 bt_bool is_default)
ece3fb0f 82{
e22b45d0 83 struct bt_notification_inactivity *inactivity = (void *) notif;
ece3fb0f 84
e22b45d0
PP
85 BT_ASSERT_PRE_NON_NULL(notif, "Notification");
86 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
87 BT_ASSERT_PRE_HOT(notif, "Notification", ": %!+n", notif);
88 BT_ASSERT_PRE_NOTIF_IS_TYPE(notif, BT_NOTIFICATION_TYPE_INACTIVITY);
89 BT_ASSERT_PRE(is_default,
90 "You can only set a default clock value as of this version.");
91 return bt_clock_value_set_set_clock_value(&inactivity->cv_set,
92 clock_class, raw_value, is_default);
ece3fb0f
PP
93}
94
e22b45d0
PP
95struct bt_clock_value *bt_notification_inactivity_borrow_default_clock_value(
96 struct bt_notification *notif)
ece3fb0f 97{
e22b45d0
PP
98 struct bt_notification_inactivity *inactivity = (void *) notif;
99 struct bt_clock_value *clock_value = NULL;
100
101 BT_ASSERT_PRE_NON_NULL(notif, "Notification");
102 BT_ASSERT_PRE_NOTIF_IS_TYPE(notif, BT_NOTIFICATION_TYPE_INACTIVITY);
103 clock_value = inactivity->cv_set.default_cv;
104 if (!clock_value) {
105 BT_LIB_LOGV("No default clock value: %![notif-]+n", notif);
106 }
ece3fb0f 107
e22b45d0 108 return clock_value;
f6ccaed9 109}
This page took 0.037183 seconds and 4 git commands to generate.