7b8cce0eb1f28967ee90acd1a8fb2c55824956ef
[babeltrace.git] / src / lib / trace-ir / clock-class.c
1 /*
2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
3 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
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
24 #define BT_LOG_TAG "CLOCK-CLASS"
25 #include "lib/lib-logging.h"
26
27 #include "lib/assert-pre.h"
28 #include "compat/uuid.h"
29 #include <babeltrace2/trace-ir/clock-class-const.h>
30 #include <babeltrace2/trace-ir/clock-class.h>
31 #include "clock-class.h"
32 #include "clock-snapshot.h"
33 #include "utils.h"
34 #include "compat/compiler.h"
35 #include <babeltrace2/types.h>
36 #include "compat/string.h"
37 #include <inttypes.h>
38 #include "lib/object.h"
39 #include "common/assert.h"
40
41 #define BT_ASSERT_PRE_CLOCK_CLASS_HOT(_cc) \
42 BT_ASSERT_PRE_HOT((_cc), "Clock class", ": %!+K", (_cc))
43
44 static
45 void destroy_clock_class(struct bt_object *obj)
46 {
47 struct bt_clock_class *clock_class = (void *) obj;
48
49 BT_LIB_LOGD("Destroying clock class: %!+K", clock_class);
50
51 if (clock_class->name.str) {
52 g_string_free(clock_class->name.str, TRUE);
53 clock_class->name.str = NULL;
54 clock_class->name.value = NULL;
55 }
56
57 if (clock_class->description.str) {
58 g_string_free(clock_class->description.str, TRUE);
59 clock_class->description.str = NULL;
60 clock_class->description.value = NULL;
61 }
62
63 bt_object_pool_finalize(&clock_class->cs_pool);
64 g_free(clock_class);
65 }
66
67 static
68 void free_clock_snapshot(struct bt_clock_snapshot *clock_snapshot,
69 struct bt_clock_class *clock_class)
70 {
71 bt_clock_snapshot_destroy(clock_snapshot);
72 }
73
74 static inline
75 void set_base_offset(struct bt_clock_class *clock_class)
76 {
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);
80 }
81
82 struct bt_clock_class *bt_clock_class_create(bt_self_component *self_comp)
83 {
84 int ret;
85 struct bt_clock_class *clock_class = NULL;
86
87 BT_ASSERT_PRE_NON_NULL(self_comp, "Self component");
88 BT_LOGD_STR("Creating default clock class object");
89
90 clock_class = g_new0(struct bt_clock_class, 1);
91 if (!clock_class) {
92 BT_LOGE_STR("Failed to allocate one clock class.");
93 goto error;
94 }
95
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 }
102
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;
107 }
108
109 clock_class->frequency = UINT64_C(1000000000);
110 clock_class->origin_is_unix_epoch = BT_TRUE;
111 set_base_offset(clock_class);
112 ret = bt_object_pool_initialize(&clock_class->cs_pool,
113 (bt_object_pool_new_object_func) bt_clock_snapshot_new,
114 (bt_object_pool_destroy_object_func)
115 free_clock_snapshot,
116 clock_class);
117 if (ret) {
118 BT_LOGE("Failed to initialize clock snapshot pool: ret=%d",
119 ret);
120 goto error;
121 }
122
123 BT_LIB_LOGD("Created clock class object: %!+K", clock_class);
124 goto end;
125
126 error:
127 BT_OBJECT_PUT_REF_AND_RESET(clock_class);
128
129 end:
130 return clock_class;
131 }
132
133 const char *bt_clock_class_get_name(const struct bt_clock_class *clock_class)
134 {
135 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
136 return clock_class->name.value;
137 }
138
139 enum bt_clock_class_status bt_clock_class_set_name(
140 struct bt_clock_class *clock_class, const char *name)
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_LOGD("Set clock class's name: %!+K", clock_class);
148 return BT_CLOCK_CLASS_STATUS_OK;
149 }
150
151 const char *bt_clock_class_get_description(
152 const struct bt_clock_class *clock_class)
153 {
154 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
155 return clock_class->description.value;
156 }
157
158 enum bt_clock_class_status bt_clock_class_set_description(
159 struct bt_clock_class *clock_class, const char *descr)
160 {
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_LOGD("Set clock class's description: %!+K",
167 clock_class);
168 return BT_CLOCK_CLASS_STATUS_OK;
169 }
170
171 uint64_t bt_clock_class_get_frequency(const struct bt_clock_class *clock_class)
172 {
173 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
174 return clock_class->frequency;
175 }
176
177 void bt_clock_class_set_frequency(struct bt_clock_class *clock_class,
178 uint64_t frequency)
179 {
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_LOGD("Set clock class's frequency: %!+K", clock_class);
191 }
192
193 uint64_t bt_clock_class_get_precision(const struct bt_clock_class *clock_class)
194 {
195 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
196 return clock_class->precision;
197 }
198
199 void bt_clock_class_set_precision(struct bt_clock_class *clock_class,
200 uint64_t precision)
201 {
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);
207 clock_class->precision = precision;
208 BT_LIB_LOGD("Set clock class's precision: %!+K", clock_class);
209 }
210
211 void bt_clock_class_get_offset(const struct bt_clock_class *clock_class,
212 int64_t *seconds, uint64_t *cycles)
213 {
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;
219 }
220
221 void bt_clock_class_set_offset(struct bt_clock_class *clock_class,
222 int64_t seconds, uint64_t cycles)
223 {
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_LOGD("Set clock class's offset: %!+K", clock_class);
233 }
234
235 bt_bool bt_clock_class_origin_is_unix_epoch(const struct bt_clock_class *clock_class)
236 {
237 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
238 return (bool) clock_class->origin_is_unix_epoch;
239 }
240
241 void bt_clock_class_set_origin_is_unix_epoch(struct bt_clock_class *clock_class,
242 bt_bool origin_is_unix_epoch)
243 {
244 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
245 BT_ASSERT_PRE_CLOCK_CLASS_HOT(clock_class);
246 clock_class->origin_is_unix_epoch = (bool) origin_is_unix_epoch;
247 BT_LIB_LOGD("Set clock class's origin is Unix epoch property: %!+K",
248 clock_class);
249 }
250
251 bt_uuid bt_clock_class_get_uuid(const struct bt_clock_class *clock_class)
252 {
253 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
254 return clock_class->uuid.value;
255 }
256
257 void bt_clock_class_set_uuid(struct bt_clock_class *clock_class,
258 bt_uuid uuid)
259 {
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_LOGD("Set clock class's UUID: %!+K", clock_class);
266 }
267
268 BT_HIDDEN
269 void _bt_clock_class_freeze(const struct bt_clock_class *clock_class)
270 {
271 BT_ASSERT(clock_class);
272
273 if (clock_class->frozen) {
274 return;
275 }
276
277 BT_LIB_LOGD("Freezing clock class: %!+K", clock_class);
278 ((struct bt_clock_class *) clock_class)->frozen = 1;
279 }
280
281 enum bt_clock_class_status bt_clock_class_cycles_to_ns_from_origin(
282 const struct bt_clock_class *clock_class,
283 uint64_t cycles, int64_t *ns)
284 {
285 int ret;
286
287 BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
288 BT_ASSERT_PRE_NON_NULL(ns, "Nanoseconds (output)");
289 ret = bt_util_ns_from_origin_clock_class(clock_class, cycles, ns);
290 if (ret) {
291 ret = BT_CLOCK_CLASS_STATUS_OVERFLOW;
292 BT_LIB_LOGD("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);
297 }
298
299 return ret;
300 }
301
302 void bt_clock_class_get_ref(const struct bt_clock_class *clock_class)
303 {
304 bt_object_get_ref(clock_class);
305 }
306
307 void 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.035333 seconds and 3 git commands to generate.