Document libbabeltrace2's C API
[babeltrace.git] / src / 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
350ad6c1 24#define BT_LOG_TAG "LIB/CLOCK-CLASS"
c2d9d9cf 25#include "lib/logging.h"
0f5e83e5 26
578e048b 27#include "lib/assert-pre.h"
6162e6b7 28#include "common/uuid.h"
3fadfbc0 29#include <babeltrace2/trace-ir/clock-class.h>
578e048b
MJ
30#include "clock-class.h"
31#include "clock-snapshot.h"
32#include "utils.h"
33#include "compat/compiler.h"
3fadfbc0 34#include <babeltrace2/types.h>
578e048b 35#include "compat/string.h"
273b65be 36#include <inttypes.h>
c4f23e30 37#include <stdbool.h>
578e048b
MJ
38#include "lib/object.h"
39#include "common/assert.h"
d24d5663 40#include "lib/func-status.h"
c6962c96 41#include "lib/value.h"
5134570b 42
bdb288b3
PP
43#define BT_ASSERT_PRE_DEV_CLOCK_CLASS_HOT(_cc) \
44 BT_ASSERT_PRE_DEV_HOT((_cc), "Clock class", ": %!+K", (_cc))
312c056a
PP
45
46static
44c440bc 47void destroy_clock_class(struct bt_object *obj)
c06116f3 48{
44c440bc 49 struct bt_clock_class *clock_class = (void *) obj;
c06116f3 50
44c440bc 51 BT_LIB_LOGD("Destroying clock class: %!+K", clock_class);
c6962c96 52 BT_OBJECT_PUT_REF_AND_RESET(clock_class->user_attributes);
273b65be 53
44c440bc
PP
54 if (clock_class->name.str) {
55 g_string_free(clock_class->name.str, TRUE);
238b7404
PP
56 clock_class->name.str = NULL;
57 clock_class->name.value = NULL;
5134570b
PP
58 }
59
44c440bc
PP
60 if (clock_class->description.str) {
61 g_string_free(clock_class->description.str, TRUE);
238b7404
PP
62 clock_class->description.str = NULL;
63 clock_class->description.value = NULL;
273b65be
JG
64 }
65
605e1019 66 bt_object_pool_finalize(&clock_class->cs_pool);
44c440bc 67 g_free(clock_class);
4c426c17
JG
68}
69
f3534905 70static
605e1019 71void free_clock_snapshot(struct bt_clock_snapshot *clock_snapshot,
44c440bc 72 struct bt_clock_class *clock_class)
f3534905 73{
605e1019 74 bt_clock_snapshot_destroy(clock_snapshot);
f3534905
PP
75}
76
44c440bc
PP
77static inline
78void set_base_offset(struct bt_clock_class *clock_class)
312c056a 79{
0f2d58c9
PP
80 clock_class->base_offset.overflows = bt_util_get_base_offset_ns(
81 clock_class->offset_seconds, clock_class->offset_cycles,
82 clock_class->frequency, &clock_class->base_offset.value_ns);
312c056a
PP
83}
84
7fcdb0a9 85struct bt_clock_class *bt_clock_class_create(bt_self_component *self_comp)
4c426c17
JG
86{
87 int ret;
50842bdc 88 struct bt_clock_class *clock_class = NULL;
4c426c17 89
17f3083a 90 BT_ASSERT_PRE_NO_ERROR();
7fcdb0a9 91 BT_ASSERT_PRE_NON_NULL(self_comp, "Self component");
44c440bc 92 BT_LOGD_STR("Creating default clock class object");
f3534905 93
50842bdc 94 clock_class = g_new0(struct bt_clock_class, 1);
ac0c6bdd 95 if (!clock_class) {
870631a2 96 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one clock class.");
4c426c17
JG
97 goto error;
98 }
99
44c440bc 100 bt_object_init_shared(&clock_class->base, destroy_clock_class);
c6962c96
PP
101
102 clock_class->user_attributes = bt_value_map_create();
103 if (!clock_class->user_attributes) {
104 BT_LIB_LOGE_APPEND_CAUSE(
105 "Failed to create a map value object.");
106 goto error;
107 }
108
44c440bc
PP
109 clock_class->name.str = g_string_new(NULL);
110 if (!clock_class->name.str) {
870631a2 111 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GString.");
44c440bc
PP
112 goto error;
113 }
85380e99 114
44c440bc
PP
115 clock_class->description.str = g_string_new(NULL);
116 if (!clock_class->description.str) {
870631a2 117 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GString.");
44c440bc 118 goto error;
273b65be
JG
119 }
120
44c440bc 121 clock_class->frequency = UINT64_C(1000000000);
5552377a 122 clock_class->origin_is_unix_epoch = BT_TRUE;
44c440bc 123 set_base_offset(clock_class);
605e1019
PP
124 ret = bt_object_pool_initialize(&clock_class->cs_pool,
125 (bt_object_pool_new_object_func) bt_clock_snapshot_new,
312c056a 126 (bt_object_pool_destroy_object_func)
605e1019 127 free_clock_snapshot,
312c056a
PP
128 clock_class);
129 if (ret) {
870631a2
PP
130 BT_LIB_LOGE_APPEND_CAUSE(
131 "Failed to initialize clock snapshot pool: ret=%d",
312c056a
PP
132 ret);
133 goto error;
134 }
135
44c440bc
PP
136 BT_LIB_LOGD("Created clock class object: %!+K", clock_class);
137 goto end;
138
273b65be 139error:
65300d60 140 BT_OBJECT_PUT_REF_AND_RESET(clock_class);
87d76bb1
JG
141
142end:
40f4ba76 143 return clock_class;
87d76bb1
JG
144}
145
40f4ba76 146const char *bt_clock_class_get_name(const struct bt_clock_class *clock_class)
87d76bb1 147{
bdb288b3 148 BT_ASSERT_PRE_DEV_NON_NULL(clock_class, "Clock class");
44c440bc
PP
149 return clock_class->name.value;
150}
87d76bb1 151
d24d5663 152enum bt_clock_class_set_name_status bt_clock_class_set_name(
8c41fd73 153 struct bt_clock_class *clock_class, const char *name)
44c440bc 154{
17f3083a 155 BT_ASSERT_PRE_NO_ERROR();
44c440bc
PP
156 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
157 BT_ASSERT_PRE_NON_NULL(name, "Name");
bdb288b3 158 BT_ASSERT_PRE_DEV_CLOCK_CLASS_HOT(clock_class);
44c440bc
PP
159 g_string_assign(clock_class->name.str, name);
160 clock_class->name.value = clock_class->name.str->str;
3f7d4d90 161 BT_LIB_LOGD("Set clock class's name: %!+K", clock_class);
d24d5663 162 return BT_FUNC_STATUS_OK;
44c440bc 163}
87d76bb1 164
40f4ba76
PP
165const char *bt_clock_class_get_description(
166 const struct bt_clock_class *clock_class)
44c440bc 167{
bdb288b3 168 BT_ASSERT_PRE_DEV_NON_NULL(clock_class, "Clock class");
44c440bc 169 return clock_class->description.value;
273b65be
JG
170}
171
d24d5663 172enum bt_clock_class_set_description_status bt_clock_class_set_description(
8c41fd73 173 struct bt_clock_class *clock_class, const char *descr)
273b65be 174{
17f3083a 175 BT_ASSERT_PRE_NO_ERROR();
44c440bc
PP
176 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
177 BT_ASSERT_PRE_NON_NULL(descr, "Description");
bdb288b3 178 BT_ASSERT_PRE_DEV_CLOCK_CLASS_HOT(clock_class);
44c440bc
PP
179 g_string_assign(clock_class->description.str, descr);
180 clock_class->description.value = clock_class->description.str->str;
3f7d4d90 181 BT_LIB_LOGD("Set clock class's description: %!+K",
44c440bc 182 clock_class);
d24d5663 183 return BT_FUNC_STATUS_OK;
273b65be
JG
184}
185
40f4ba76 186uint64_t bt_clock_class_get_frequency(const struct bt_clock_class *clock_class)
87d76bb1 187{
bdb288b3 188 BT_ASSERT_PRE_DEV_NON_NULL(clock_class, "Clock class");
44c440bc 189 return clock_class->frequency;
87d76bb1
JG
190}
191
40f4ba76 192void bt_clock_class_set_frequency(struct bt_clock_class *clock_class,
44c440bc 193 uint64_t frequency)
273b65be 194{
44c440bc 195 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
bdb288b3 196 BT_ASSERT_PRE_DEV_CLOCK_CLASS_HOT(clock_class);
44c440bc
PP
197 BT_ASSERT_PRE(frequency != UINT64_C(-1) && frequency != 0,
198 "Invalid frequency: %![cc-]+K, new-freq=%" PRIu64,
199 clock_class, frequency);
200 BT_ASSERT_PRE(clock_class->offset_cycles < frequency,
201 "Offset (cycles) is greater than clock class's frequency: "
202 "%![cc-]+K, new-freq=%" PRIu64, clock_class, frequency);
203 clock_class->frequency = frequency;
204 set_base_offset(clock_class);
3f7d4d90 205 BT_LIB_LOGD("Set clock class's frequency: %!+K", clock_class);
273b65be
JG
206}
207
40f4ba76 208uint64_t bt_clock_class_get_precision(const struct bt_clock_class *clock_class)
87d76bb1 209{
bdb288b3 210 BT_ASSERT_PRE_DEV_NON_NULL(clock_class, "Clock class");
44c440bc 211 return clock_class->precision;
87d76bb1
JG
212}
213
40f4ba76 214void bt_clock_class_set_precision(struct bt_clock_class *clock_class,
ac0c6bdd 215 uint64_t precision)
273b65be 216{
44c440bc 217 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
bdb288b3 218 BT_ASSERT_PRE_DEV_CLOCK_CLASS_HOT(clock_class);
44c440bc
PP
219 BT_ASSERT_PRE(precision != UINT64_C(-1),
220 "Invalid precision: %![cc-]+K, new-precision=%" PRIu64,
221 clock_class, precision);
ac0c6bdd 222 clock_class->precision = precision;
3f7d4d90 223 BT_LIB_LOGD("Set clock class's precision: %!+K", clock_class);
273b65be
JG
224}
225
40f4ba76 226void bt_clock_class_get_offset(const struct bt_clock_class *clock_class,
44c440bc 227 int64_t *seconds, uint64_t *cycles)
87d76bb1 228{
bdb288b3
PP
229 BT_ASSERT_PRE_DEV_NON_NULL(clock_class, "Clock class");
230 BT_ASSERT_PRE_DEV_NON_NULL(seconds, "Seconds (output)");
231 BT_ASSERT_PRE_DEV_NON_NULL(cycles, "Cycles (output)");
44c440bc
PP
232 *seconds = clock_class->offset_seconds;
233 *cycles = clock_class->offset_cycles;
87d76bb1
JG
234}
235
40f4ba76 236void bt_clock_class_set_offset(struct bt_clock_class *clock_class,
44c440bc 237 int64_t seconds, uint64_t cycles)
273b65be 238{
44c440bc 239 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
bdb288b3 240 BT_ASSERT_PRE_DEV_CLOCK_CLASS_HOT(clock_class);
44c440bc
PP
241 BT_ASSERT_PRE(cycles < clock_class->frequency,
242 "Offset (cycles) is greater than clock class's frequency: "
243 "%![cc-]+K, new-offset-cycles=%" PRIu64, clock_class, cycles);
244 clock_class->offset_seconds = seconds;
245 clock_class->offset_cycles = cycles;
246 set_base_offset(clock_class);
3f7d4d90 247 BT_LIB_LOGD("Set clock class's offset: %!+K", clock_class);
273b65be
JG
248}
249
5552377a 250bt_bool bt_clock_class_origin_is_unix_epoch(const struct bt_clock_class *clock_class)
87d76bb1 251{
bdb288b3 252 BT_ASSERT_PRE_DEV_NON_NULL(clock_class, "Clock class");
5552377a 253 return (bool) clock_class->origin_is_unix_epoch;
87d76bb1
JG
254}
255
5552377a
PP
256void bt_clock_class_set_origin_is_unix_epoch(struct bt_clock_class *clock_class,
257 bt_bool origin_is_unix_epoch)
273b65be 258{
44c440bc 259 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
bdb288b3 260 BT_ASSERT_PRE_DEV_CLOCK_CLASS_HOT(clock_class);
5552377a 261 clock_class->origin_is_unix_epoch = (bool) origin_is_unix_epoch;
3f7d4d90 262 BT_LIB_LOGD("Set clock class's origin is Unix epoch property: %!+K",
44c440bc 263 clock_class);
273b65be
JG
264}
265
40f4ba76 266bt_uuid bt_clock_class_get_uuid(const struct bt_clock_class *clock_class)
85b743f4 267{
bdb288b3 268 BT_ASSERT_PRE_DEV_NON_NULL(clock_class, "Clock class");
44c440bc 269 return clock_class->uuid.value;
85b743f4
JG
270}
271
40f4ba76 272void bt_clock_class_set_uuid(struct bt_clock_class *clock_class,
44c440bc 273 bt_uuid uuid)
85b743f4 274{
44c440bc
PP
275 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
276 BT_ASSERT_PRE_NON_NULL(uuid, "UUID");
bdb288b3 277 BT_ASSERT_PRE_DEV_CLOCK_CLASS_HOT(clock_class);
6162e6b7 278 bt_uuid_copy(clock_class->uuid.uuid, uuid);
44c440bc 279 clock_class->uuid.value = clock_class->uuid.uuid;
3f7d4d90 280 BT_LIB_LOGD("Set clock class's UUID: %!+K", clock_class);
312c056a
PP
281}
282
283BT_HIDDEN
40f4ba76 284void _bt_clock_class_freeze(const struct bt_clock_class *clock_class)
312c056a 285{
312c056a 286 BT_ASSERT(clock_class);
6f57e458 287
44c440bc
PP
288 if (clock_class->frozen) {
289 return;
93dda901
PP
290 }
291
c6962c96
PP
292 BT_LIB_LOGD("Freezing clock class's user attributes: %!+v",
293 clock_class->user_attributes);
294 bt_value_freeze(clock_class->user_attributes);
44c440bc 295 BT_LIB_LOGD("Freezing clock class: %!+K", clock_class);
40f4ba76 296 ((struct bt_clock_class *) clock_class)->frozen = 1;
93dda901 297}
312c056a 298
d24d5663
PP
299enum bt_clock_class_cycles_to_ns_from_origin_status
300bt_clock_class_cycles_to_ns_from_origin(
40f4ba76 301 const struct bt_clock_class *clock_class,
312c056a
PP
302 uint64_t cycles, int64_t *ns)
303{
304 int ret;
312c056a 305
17f3083a 306 BT_ASSERT_PRE_DEV_NO_ERROR();
bdb288b3
PP
307 BT_ASSERT_PRE_DEV_NON_NULL(clock_class, "Clock class");
308 BT_ASSERT_PRE_DEV_NON_NULL(ns, "Nanoseconds (output)");
0f2d58c9 309 ret = bt_util_ns_from_origin_clock_class(clock_class, cycles, ns);
312c056a 310 if (ret) {
bc3d9692 311 BT_LIB_LOGE_APPEND_CAUSE("Cannot convert cycles to nanoseconds "
44c440bc
PP
312 "from origin for given clock class: "
313 "value overflows the signed 64-bit integer range: "
314 "%![cc-]+K, cycles=%" PRIu64,
315 clock_class, cycles);
520cdc82 316 ret = BT_FUNC_STATUS_OVERFLOW_ERROR;
312c056a
PP
317 }
318
312c056a
PP
319 return ret;
320}
c5b9b441 321
c6962c96
PP
322const struct bt_value *bt_clock_class_borrow_user_attributes_const(
323 const struct bt_clock_class *clock_class)
324{
325 BT_ASSERT_PRE_DEV_NON_NULL(clock_class, "Clock class");
326 return clock_class->user_attributes;
327}
328
329struct bt_value *bt_clock_class_borrow_user_attributes(
330 struct bt_clock_class *clock_class)
331{
332 return (void *) bt_clock_class_borrow_user_attributes_const(
333 (void *) clock_class);
334}
335
336void bt_clock_class_set_user_attributes(
337 struct bt_clock_class *clock_class,
338 const struct bt_value *user_attributes)
339{
340 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
341 BT_ASSERT_PRE_NON_NULL(user_attributes, "User attributes");
342 BT_ASSERT_PRE(user_attributes->type == BT_VALUE_TYPE_MAP,
343 "User attributes object is not a map value object.");
344 BT_ASSERT_PRE_DEV_CLOCK_CLASS_HOT(clock_class);
6871026b 345 bt_object_put_ref_no_null_check(clock_class->user_attributes);
c6962c96 346 clock_class->user_attributes = (void *) user_attributes;
6871026b 347 bt_object_get_ref_no_null_check(clock_class->user_attributes);
c6962c96
PP
348}
349
c5b9b441
PP
350void bt_clock_class_get_ref(const struct bt_clock_class *clock_class)
351{
352 bt_object_get_ref(clock_class);
353}
354
355void bt_clock_class_put_ref(const struct bt_clock_class *clock_class)
356{
357 bt_object_put_ref(clock_class);
358}
This page took 0.102224 seconds and 4 git commands to generate.