lib: rename include dir to babeltrace2
[babeltrace.git] / lib / trace-ir / clock-class.c
CommitLineData
273b65be 1/*
e2f7325d 2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
de9dd397 3 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
273b65be
JG
4 *
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
0f5e83e5 24#define BT_LOG_TAG "CLOCK-CLASS"
3fadfbc0 25#include <babeltrace2/lib-logging-internal.h>
0f5e83e5 26
3fadfbc0
MJ
27#include <babeltrace2/assert-pre-internal.h>
28#include <babeltrace2/compat/uuid-internal.h>
29#include <babeltrace2/trace-ir/clock-class-const.h>
30#include <babeltrace2/trace-ir/clock-class.h>
31#include <babeltrace2/trace-ir/clock-class-internal.h>
32#include <babeltrace2/trace-ir/clock-snapshot-internal.h>
33#include <babeltrace2/trace-ir/utils-internal.h>
34#include <babeltrace2/compiler-internal.h>
35#include <babeltrace2/types.h>
36#include <babeltrace2/compat/string-internal.h>
273b65be 37#include <inttypes.h>
3fadfbc0
MJ
38#include <babeltrace2/object-internal.h>
39#include <babeltrace2/assert-internal.h>
5134570b 40
44c440bc
PP
41#define BT_ASSERT_PRE_CLOCK_CLASS_HOT(_cc) \
42 BT_ASSERT_PRE_HOT((_cc), "Clock class", ": %!+K", (_cc))
312c056a
PP
43
44static
44c440bc 45void destroy_clock_class(struct bt_object *obj)
c06116f3 46{
44c440bc 47 struct bt_clock_class *clock_class = (void *) obj;
c06116f3 48
44c440bc 49 BT_LIB_LOGD("Destroying clock class: %!+K", clock_class);
273b65be 50
44c440bc
PP
51 if (clock_class->name.str) {
52 g_string_free(clock_class->name.str, TRUE);
238b7404
PP
53 clock_class->name.str = NULL;
54 clock_class->name.value = NULL;
5134570b
PP
55 }
56
44c440bc
PP
57 if (clock_class->description.str) {
58 g_string_free(clock_class->description.str, TRUE);
238b7404
PP
59 clock_class->description.str = NULL;
60 clock_class->description.value = NULL;
273b65be
JG
61 }
62
605e1019 63 bt_object_pool_finalize(&clock_class->cs_pool);
44c440bc 64 g_free(clock_class);
4c426c17
JG
65}
66
f3534905 67static
605e1019 68void free_clock_snapshot(struct bt_clock_snapshot *clock_snapshot,
44c440bc 69 struct bt_clock_class *clock_class)
f3534905 70{
605e1019 71 bt_clock_snapshot_destroy(clock_snapshot);
f3534905
PP
72}
73
44c440bc
PP
74static inline
75void set_base_offset(struct bt_clock_class *clock_class)
312c056a 76{
0f2d58c9
PP
77 clock_class->base_offset.overflows = bt_util_get_base_offset_ns(
78 clock_class->offset_seconds, clock_class->offset_cycles,
79 clock_class->frequency, &clock_class->base_offset.value_ns);
312c056a
PP
80}
81
7fcdb0a9 82struct bt_clock_class *bt_clock_class_create(bt_self_component *self_comp)
4c426c17
JG
83{
84 int ret;
50842bdc 85 struct bt_clock_class *clock_class = NULL;
4c426c17 86
7fcdb0a9 87 BT_ASSERT_PRE_NON_NULL(self_comp, "Self component");
44c440bc 88 BT_LOGD_STR("Creating default clock class object");
f3534905 89
50842bdc 90 clock_class = g_new0(struct bt_clock_class, 1);
ac0c6bdd 91 if (!clock_class) {
5134570b 92 BT_LOGE_STR("Failed to allocate one clock class.");
4c426c17
JG
93 goto error;
94 }
95
44c440bc
PP
96 bt_object_init_shared(&clock_class->base, destroy_clock_class);
97 clock_class->name.str = g_string_new(NULL);
98 if (!clock_class->name.str) {
99 BT_LOGE_STR("Failed to allocate a GString.");
100 goto error;
101 }
85380e99 102
44c440bc
PP
103 clock_class->description.str = g_string_new(NULL);
104 if (!clock_class->description.str) {
105 BT_LOGE_STR("Failed to allocate a GString.");
106 goto error;
273b65be
JG
107 }
108
44c440bc 109 clock_class->frequency = UINT64_C(1000000000);
5552377a 110 clock_class->origin_is_unix_epoch = BT_TRUE;
44c440bc 111 set_base_offset(clock_class);
605e1019
PP
112 ret = bt_object_pool_initialize(&clock_class->cs_pool,
113 (bt_object_pool_new_object_func) bt_clock_snapshot_new,
312c056a 114 (bt_object_pool_destroy_object_func)
605e1019 115 free_clock_snapshot,
312c056a
PP
116 clock_class);
117 if (ret) {
605e1019 118 BT_LOGE("Failed to initialize clock snapshot pool: ret=%d",
312c056a
PP
119 ret);
120 goto error;
121 }
122
44c440bc
PP
123 BT_LIB_LOGD("Created clock class object: %!+K", clock_class);
124 goto end;
125
273b65be 126error:
65300d60 127 BT_OBJECT_PUT_REF_AND_RESET(clock_class);
87d76bb1
JG
128
129end:
40f4ba76 130 return clock_class;
87d76bb1
JG
131}
132
40f4ba76 133const char *bt_clock_class_get_name(const struct bt_clock_class *clock_class)
87d76bb1 134{
44c440bc
PP
135 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
136 return clock_class->name.value;
137}
87d76bb1 138
8c41fd73
PP
139enum bt_clock_class_status bt_clock_class_set_name(
140 struct bt_clock_class *clock_class, const char *name)
44c440bc
PP
141{
142 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
143 BT_ASSERT_PRE_NON_NULL(name, "Name");
144 BT_ASSERT_PRE_CLOCK_CLASS_HOT(clock_class);
145 g_string_assign(clock_class->name.str, name);
146 clock_class->name.value = clock_class->name.str->str;
147 BT_LIB_LOGV("Set clock class's name: %!+K", clock_class);
8c41fd73 148 return BT_CLOCK_CLASS_STATUS_OK;
44c440bc 149}
87d76bb1 150
40f4ba76
PP
151const char *bt_clock_class_get_description(
152 const struct bt_clock_class *clock_class)
44c440bc
PP
153{
154 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
155 return clock_class->description.value;
273b65be
JG
156}
157
8c41fd73
PP
158enum bt_clock_class_status bt_clock_class_set_description(
159 struct bt_clock_class *clock_class, const char *descr)
273b65be 160{
44c440bc
PP
161 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
162 BT_ASSERT_PRE_NON_NULL(descr, "Description");
163 BT_ASSERT_PRE_CLOCK_CLASS_HOT(clock_class);
164 g_string_assign(clock_class->description.str, descr);
165 clock_class->description.value = clock_class->description.str->str;
166 BT_LIB_LOGV("Set clock class's description: %!+K",
167 clock_class);
8c41fd73 168 return BT_CLOCK_CLASS_STATUS_OK;
273b65be
JG
169}
170
40f4ba76 171uint64_t bt_clock_class_get_frequency(const struct bt_clock_class *clock_class)
87d76bb1 172{
44c440bc
PP
173 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
174 return clock_class->frequency;
87d76bb1
JG
175}
176
40f4ba76 177void bt_clock_class_set_frequency(struct bt_clock_class *clock_class,
44c440bc 178 uint64_t frequency)
273b65be 179{
44c440bc
PP
180 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
181 BT_ASSERT_PRE_CLOCK_CLASS_HOT(clock_class);
182 BT_ASSERT_PRE(frequency != UINT64_C(-1) && frequency != 0,
183 "Invalid frequency: %![cc-]+K, new-freq=%" PRIu64,
184 clock_class, frequency);
185 BT_ASSERT_PRE(clock_class->offset_cycles < frequency,
186 "Offset (cycles) is greater than clock class's frequency: "
187 "%![cc-]+K, new-freq=%" PRIu64, clock_class, frequency);
188 clock_class->frequency = frequency;
189 set_base_offset(clock_class);
190 BT_LIB_LOGV("Set clock class's frequency: %!+K", clock_class);
273b65be
JG
191}
192
40f4ba76 193uint64_t bt_clock_class_get_precision(const struct bt_clock_class *clock_class)
87d76bb1 194{
44c440bc
PP
195 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
196 return clock_class->precision;
87d76bb1
JG
197}
198
40f4ba76 199void bt_clock_class_set_precision(struct bt_clock_class *clock_class,
ac0c6bdd 200 uint64_t precision)
273b65be 201{
44c440bc
PP
202 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
203 BT_ASSERT_PRE_CLOCK_CLASS_HOT(clock_class);
204 BT_ASSERT_PRE(precision != UINT64_C(-1),
205 "Invalid precision: %![cc-]+K, new-precision=%" PRIu64,
206 clock_class, precision);
ac0c6bdd 207 clock_class->precision = precision;
44c440bc 208 BT_LIB_LOGV("Set clock class's precision: %!+K", clock_class);
273b65be
JG
209}
210
40f4ba76 211void bt_clock_class_get_offset(const struct bt_clock_class *clock_class,
44c440bc 212 int64_t *seconds, uint64_t *cycles)
87d76bb1 213{
44c440bc
PP
214 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
215 BT_ASSERT_PRE_NON_NULL(seconds, "Seconds (output)");
216 BT_ASSERT_PRE_NON_NULL(cycles, "Cycles (output)");
217 *seconds = clock_class->offset_seconds;
218 *cycles = clock_class->offset_cycles;
87d76bb1
JG
219}
220
40f4ba76 221void bt_clock_class_set_offset(struct bt_clock_class *clock_class,
44c440bc 222 int64_t seconds, uint64_t cycles)
273b65be 223{
44c440bc
PP
224 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
225 BT_ASSERT_PRE_CLOCK_CLASS_HOT(clock_class);
226 BT_ASSERT_PRE(cycles < clock_class->frequency,
227 "Offset (cycles) is greater than clock class's frequency: "
228 "%![cc-]+K, new-offset-cycles=%" PRIu64, clock_class, cycles);
229 clock_class->offset_seconds = seconds;
230 clock_class->offset_cycles = cycles;
231 set_base_offset(clock_class);
232 BT_LIB_LOGV("Set clock class's offset: %!+K", clock_class);
273b65be
JG
233}
234
5552377a 235bt_bool bt_clock_class_origin_is_unix_epoch(const struct bt_clock_class *clock_class)
87d76bb1 236{
44c440bc 237 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
5552377a 238 return (bool) clock_class->origin_is_unix_epoch;
87d76bb1
JG
239}
240
5552377a
PP
241void bt_clock_class_set_origin_is_unix_epoch(struct bt_clock_class *clock_class,
242 bt_bool origin_is_unix_epoch)
273b65be 243{
44c440bc
PP
244 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
245 BT_ASSERT_PRE_CLOCK_CLASS_HOT(clock_class);
5552377a
PP
246 clock_class->origin_is_unix_epoch = (bool) origin_is_unix_epoch;
247 BT_LIB_LOGV("Set clock class's origin is Unix epoch property: %!+K",
44c440bc 248 clock_class);
273b65be
JG
249}
250
40f4ba76 251bt_uuid bt_clock_class_get_uuid(const struct bt_clock_class *clock_class)
85b743f4 252{
44c440bc
PP
253 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
254 return clock_class->uuid.value;
85b743f4
JG
255}
256
40f4ba76 257void bt_clock_class_set_uuid(struct bt_clock_class *clock_class,
44c440bc 258 bt_uuid uuid)
85b743f4 259{
44c440bc
PP
260 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
261 BT_ASSERT_PRE_NON_NULL(uuid, "UUID");
262 BT_ASSERT_PRE_CLOCK_CLASS_HOT(clock_class);
263 memcpy(clock_class->uuid.uuid, uuid, BABELTRACE_UUID_LEN);
264 clock_class->uuid.value = clock_class->uuid.uuid;
265 BT_LIB_LOGV("Set clock class's UUID: %!+K", clock_class);
312c056a
PP
266}
267
268BT_HIDDEN
40f4ba76 269void _bt_clock_class_freeze(const struct bt_clock_class *clock_class)
312c056a 270{
312c056a 271 BT_ASSERT(clock_class);
6f57e458 272
44c440bc
PP
273 if (clock_class->frozen) {
274 return;
93dda901
PP
275 }
276
44c440bc 277 BT_LIB_LOGD("Freezing clock class: %!+K", clock_class);
40f4ba76 278 ((struct bt_clock_class *) clock_class)->frozen = 1;
93dda901 279}
312c056a 280
8c41fd73 281enum bt_clock_class_status bt_clock_class_cycles_to_ns_from_origin(
40f4ba76 282 const struct bt_clock_class *clock_class,
312c056a
PP
283 uint64_t cycles, int64_t *ns)
284{
285 int ret;
312c056a
PP
286
287 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
44c440bc 288 BT_ASSERT_PRE_NON_NULL(ns, "Nanoseconds (output)");
0f2d58c9 289 ret = bt_util_ns_from_origin_clock_class(clock_class, cycles, ns);
312c056a 290 if (ret) {
8c41fd73 291 ret = BT_CLOCK_CLASS_STATUS_OVERFLOW;
44c440bc
PP
292 BT_LIB_LOGW("Cannot convert cycles to nanoseconds "
293 "from origin for given clock class: "
294 "value overflows the signed 64-bit integer range: "
295 "%![cc-]+K, cycles=%" PRIu64,
296 clock_class, cycles);
312c056a
PP
297 }
298
312c056a
PP
299 return ret;
300}
c5b9b441
PP
301
302void bt_clock_class_get_ref(const struct bt_clock_class *clock_class)
303{
304 bt_object_get_ref(clock_class);
305}
306
307void bt_clock_class_put_ref(const struct bt_clock_class *clock_class)
308{
309 bt_object_put_ref(clock_class);
310}
This page took 0.067598 seconds and 4 git commands to generate.