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