lib: rename clock class's absolute property to "origin is Unix epoch"
[deliverable/babeltrace.git] / lib / trace-ir / clock-class.c
CommitLineData
273b65be 1/*
0554db57 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"
40547d22 25#include <babeltrace/lib-logging-internal.h>
0f5e83e5 26
312c056a 27#include <babeltrace/assert-pre-internal.h>
75c3fca1 28#include <babeltrace/compat/uuid-internal.h>
2b427b38
PP
29#include <babeltrace/trace-ir/clock-class-const.h>
30#include <babeltrace/trace-ir/clock-class.h>
577dc45a 31#include <babeltrace/trace-ir/clock-class-internal.h>
b1824349 32#include <babeltrace/trace-ir/clock-snapshot-internal.h>
577dc45a 33#include <babeltrace/trace-ir/utils-internal.h>
3d9990ac 34#include <babeltrace/compiler-internal.h>
c55a9f58 35#include <babeltrace/types.h>
ee389f01 36#include <babeltrace/compat/string-internal.h>
273b65be 37#include <inttypes.h>
0f5e83e5 38#include <babeltrace/object-internal.h>
f6ccaed9 39#include <babeltrace/assert-internal.h>
5134570b 40
61f59358
PP
41#define BT_ASSERT_PRE_CLOCK_CLASS_HOT(_cc) \
42 BT_ASSERT_PRE_HOT((_cc), "Clock class", ": %!+K", (_cc))
312c056a
PP
43
44static
61f59358 45void destroy_clock_class(struct bt_object *obj)
c06116f3 46{
61f59358 47 struct bt_clock_class *clock_class = (void *) obj;
c06116f3 48
61f59358 49 BT_LIB_LOGD("Destroying clock class: %!+K", clock_class);
273b65be 50
61f59358
PP
51 if (clock_class->name.str) {
52 g_string_free(clock_class->name.str, TRUE);
53b97e38
PP
53 clock_class->name.str = NULL;
54 clock_class->name.value = NULL;
5134570b
PP
55 }
56
61f59358
PP
57 if (clock_class->description.str) {
58 g_string_free(clock_class->description.str, TRUE);
53b97e38
PP
59 clock_class->description.str = NULL;
60 clock_class->description.value = NULL;
273b65be
JG
61 }
62
b1824349 63 bt_object_pool_finalize(&clock_class->cs_pool);
61f59358 64 g_free(clock_class);
4c426c17
JG
65}
66
f3534905 67static
b1824349 68void free_clock_snapshot(struct bt_clock_snapshot *clock_snapshot,
61f59358 69 struct bt_clock_class *clock_class)
f3534905 70{
b1824349 71 bt_clock_snapshot_destroy(clock_snapshot);
f3534905
PP
72}
73
61f59358
PP
74static inline
75void set_base_offset(struct bt_clock_class *clock_class)
312c056a 76{
00d7a6f2
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
00d7a6f2 82struct bt_clock_class *bt_clock_class_create(bt_trace_class *trace_class)
4c426c17
JG
83{
84 int ret;
50842bdc 85 struct bt_clock_class *clock_class = NULL;
4c426c17 86
00d7a6f2 87 BT_ASSERT_PRE_NON_NULL(trace_class, "Trace class");
61f59358 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
61f59358
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
61f59358
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
61f59358 109 clock_class->frequency = UINT64_C(1000000000);
fae77bd7 110 clock_class->origin_is_unix_epoch = BT_TRUE;
61f59358 111 set_base_offset(clock_class);
b1824349
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)
b1824349 115 free_clock_snapshot,
312c056a
PP
116 clock_class);
117 if (ret) {
b1824349 118 BT_LOGE("Failed to initialize clock snapshot pool: ret=%d",
312c056a
PP
119 ret);
120 goto error;
121 }
122
61f59358
PP
123 BT_LIB_LOGD("Created clock class object: %!+K", clock_class);
124 goto end;
125
273b65be 126error:
e2317362 127 BT_OBJECT_PUT_REF_AND_RESET(clock_class);
87d76bb1
JG
128
129end:
dadf29b9 130 return clock_class;
87d76bb1
JG
131}
132
dadf29b9 133const char *bt_clock_class_get_name(const struct bt_clock_class *clock_class)
87d76bb1 134{
61f59358
PP
135 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
136 return clock_class->name.value;
137}
87d76bb1 138
2b427b38
PP
139enum bt_clock_class_status bt_clock_class_set_name(
140 struct bt_clock_class *clock_class, const char *name)
61f59358
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);
2b427b38 148 return BT_CLOCK_CLASS_STATUS_OK;
61f59358 149}
87d76bb1 150
dadf29b9
PP
151const char *bt_clock_class_get_description(
152 const struct bt_clock_class *clock_class)
61f59358
PP
153{
154 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
155 return clock_class->description.value;
273b65be
JG
156}
157
2b427b38
PP
158enum bt_clock_class_status bt_clock_class_set_description(
159 struct bt_clock_class *clock_class, const char *descr)
273b65be 160{
61f59358
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);
2b427b38 168 return BT_CLOCK_CLASS_STATUS_OK;
273b65be
JG
169}
170
dadf29b9 171uint64_t bt_clock_class_get_frequency(const struct bt_clock_class *clock_class)
87d76bb1 172{
61f59358
PP
173 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
174 return clock_class->frequency;
87d76bb1
JG
175}
176
dadf29b9 177void bt_clock_class_set_frequency(struct bt_clock_class *clock_class,
61f59358 178 uint64_t frequency)
273b65be 179{
61f59358
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
dadf29b9 193uint64_t bt_clock_class_get_precision(const struct bt_clock_class *clock_class)
87d76bb1 194{
61f59358
PP
195 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
196 return clock_class->precision;
87d76bb1
JG
197}
198
dadf29b9 199void bt_clock_class_set_precision(struct bt_clock_class *clock_class,
ac0c6bdd 200 uint64_t precision)
273b65be 201{
61f59358
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;
61f59358 208 BT_LIB_LOGV("Set clock class's precision: %!+K", clock_class);
273b65be
JG
209}
210
dadf29b9 211void bt_clock_class_get_offset(const struct bt_clock_class *clock_class,
61f59358 212 int64_t *seconds, uint64_t *cycles)
87d76bb1 213{
61f59358
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
dadf29b9 221void bt_clock_class_set_offset(struct bt_clock_class *clock_class,
61f59358 222 int64_t seconds, uint64_t cycles)
273b65be 223{
61f59358
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
fae77bd7 235bt_bool bt_clock_class_origin_is_unix_epoch(const struct bt_clock_class *clock_class)
87d76bb1 236{
61f59358 237 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
fae77bd7 238 return (bool) clock_class->origin_is_unix_epoch;
87d76bb1
JG
239}
240
fae77bd7
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{
61f59358
PP
244 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
245 BT_ASSERT_PRE_CLOCK_CLASS_HOT(clock_class);
fae77bd7
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",
61f59358 248 clock_class);
273b65be
JG
249}
250
dadf29b9 251bt_uuid bt_clock_class_get_uuid(const struct bt_clock_class *clock_class)
85b743f4 252{
61f59358
PP
253 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
254 return clock_class->uuid.value;
85b743f4
JG
255}
256
dadf29b9 257void bt_clock_class_set_uuid(struct bt_clock_class *clock_class,
61f59358 258 bt_uuid uuid)
85b743f4 259{
61f59358
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
dadf29b9 269void _bt_clock_class_freeze(const struct bt_clock_class *clock_class)
312c056a 270{
312c056a 271 BT_ASSERT(clock_class);
6f57e458 272
61f59358
PP
273 if (clock_class->frozen) {
274 return;
93dda901
PP
275 }
276
61f59358 277 BT_LIB_LOGD("Freezing clock class: %!+K", clock_class);
dadf29b9 278 ((struct bt_clock_class *) clock_class)->frozen = 1;
93dda901 279}
312c056a 280
2b427b38 281enum bt_clock_class_status bt_clock_class_cycles_to_ns_from_origin(
dadf29b9 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");
61f59358 288 BT_ASSERT_PRE_NON_NULL(ns, "Nanoseconds (output)");
00d7a6f2 289 ret = bt_util_ns_from_origin_clock_class(clock_class, cycles, ns);
312c056a 290 if (ret) {
2b427b38 291 ret = BT_CLOCK_CLASS_STATUS_OVERFLOW;
61f59358
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}
317e35ec
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.066962 seconds and 5 git commands to generate.