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