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