lib: rename "notification" -> "message"
[babeltrace.git] / lib / graph / message / inactivity.c
CommitLineData
d6e69534
PP
1/*
2 * Copyright 2017-2018 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
23#define BT_LOG_TAG "MSG-INACTIVITY"
24#include <babeltrace/lib-logging-internal.h>
25
26#include <babeltrace/assert-pre-internal.h>
27#include <babeltrace/object-internal.h>
28#include <babeltrace/compiler-internal.h>
29#include <babeltrace/trace-ir/clock-class.h>
30#include <babeltrace/trace-ir/clock-value-internal.h>
31#include <babeltrace/graph/message-internal.h>
32#include <babeltrace/graph/message-inactivity-const.h>
33#include <babeltrace/graph/message-inactivity.h>
34#include <babeltrace/graph/message-inactivity-internal.h>
35
36static
37void bt_message_inactivity_destroy(struct bt_object *obj)
38{
39 struct bt_message_inactivity *message =
40 (struct bt_message_inactivity *) obj;
41
42 BT_LIB_LOGD("Destroying inactivity message: %!+n", message);
43
44 if (message->default_cv) {
45 bt_clock_value_recycle(message->default_cv);
46 }
47
48 g_free(message);
49}
50
51struct bt_message *bt_message_inactivity_create(
52 struct bt_self_message_iterator *self_msg_iter,
53 struct bt_clock_class *default_clock_class)
54{
55 struct bt_self_component_port_input_message_iterator *msg_iter =
56 (void *) self_msg_iter;
57 struct bt_message_inactivity *message;
58 struct bt_message *ret_msg = NULL;
59
60 BT_ASSERT_PRE_NON_NULL(msg_iter, "Message iterator");
61 BT_ASSERT_PRE_NON_NULL(default_clock_class, "Default clock class");
62 BT_LIB_LOGD("Creating inactivity message object: "
63 "%![iter-]+i, %![default-cc-]+K", msg_iter,
64 default_clock_class);
65 message = g_new0(struct bt_message_inactivity, 1);
66 if (!message) {
67 BT_LOGE_STR("Failed to allocate one inactivity message.");
68 goto error;
69 }
70 bt_message_init(&message->parent,
71 BT_MESSAGE_TYPE_INACTIVITY,
72 bt_message_inactivity_destroy, NULL);
73 ret_msg = &message->parent;
74 message->default_cv = bt_clock_value_create(default_clock_class);
75 if (!message->default_cv) {
76 goto error;
77 }
78
79 BT_LIB_LOGD("Created inactivity message object: %!+n", ret_msg);
80 goto end;
81
82error:
83 BT_OBJECT_PUT_REF_AND_RESET(ret_msg);
84
85end:
86 return (void *) ret_msg;
87}
88
89void bt_message_inactivity_set_default_clock_value(
90 struct bt_message *msg, uint64_t value_cycles)
91{
92 struct bt_message_inactivity *inactivity = (void *) msg;
93
94 BT_ASSERT_PRE_NON_NULL(msg, "Message");
95 BT_ASSERT_PRE_MSG_IS_TYPE(msg, BT_MESSAGE_TYPE_INACTIVITY);
96 BT_ASSERT_PRE_HOT(msg, "Message", ": %!+n", msg);
97 bt_clock_value_set_value_inline(inactivity->default_cv, value_cycles);
98 BT_LIB_LOGV("Set inactivity message's default clock value: "
99 "%![msg-]+n, value=%" PRIu64, msg, value_cycles);
100}
101
102const struct bt_clock_value *
103bt_message_inactivity_borrow_default_clock_value_const(
104 const struct bt_message *msg)
105{
106 struct bt_message_inactivity *inactivity = (void *) msg;
107
108 BT_ASSERT_PRE_NON_NULL(msg, "Message");
109 BT_ASSERT_PRE_MSG_IS_TYPE(msg, BT_MESSAGE_TYPE_INACTIVITY);
110 return inactivity->default_cv;
111}
This page took 0.026369 seconds and 4 git commands to generate.