Visibility hidden by default
[babeltrace.git] / src / lib / trace-ir / clock-snapshot.c
CommitLineData
605e1019 1/*
0235b0db 2 * SPDX-License-Identifier: MIT
605e1019 3 *
0235b0db 4 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
605e1019
PP
5 */
6
350ad6c1 7#define BT_LOG_TAG "LIB/CLOCK-SNAPSHOT"
c2d9d9cf 8#include "lib/logging.h"
605e1019 9
d98421f2 10#include "lib/assert-cond.h"
6162e6b7 11#include "common/uuid.h"
578e048b
MJ
12#include "clock-class.h"
13#include "clock-snapshot.h"
43c59509 14#include <babeltrace2/trace-ir/clock-snapshot.h>
578e048b 15#include "compat/compiler.h"
3fadfbc0 16#include <babeltrace2/types.h>
578e048b 17#include "compat/string.h"
605e1019 18#include <inttypes.h>
578e048b
MJ
19#include "lib/object.h"
20#include "common/assert.h"
d24d5663 21#include "lib/func-status.h"
605e1019 22
605e1019
PP
23void bt_clock_snapshot_destroy(struct bt_clock_snapshot *clock_snapshot)
24{
9f807a00 25 BT_ASSERT(clock_snapshot);
605e1019
PP
26 BT_LIB_LOGD("Destroying clock snapshot: %!+k", clock_snapshot);
27 BT_OBJECT_PUT_REF_AND_RESET(clock_snapshot->clock_class);
28 g_free(clock_snapshot);
29}
30
58085ca4
PP
31struct bt_clock_snapshot *bt_clock_snapshot_new(
32 struct bt_clock_class *clock_class)
605e1019
PP
33{
34 struct bt_clock_snapshot *ret = NULL;
35
36 BT_ASSERT(clock_class);
37 BT_LIB_LOGD("Creating clock snapshot object: %![cc-]+K=",
38 clock_class);
39 ret = g_new0(struct bt_clock_snapshot, 1);
40 if (!ret) {
870631a2
PP
41 BT_LIB_LOGE_APPEND_CAUSE(
42 "Failed to allocate one clock snapshot.");
605e1019
PP
43 goto end;
44 }
45
46 bt_object_init_unique(&ret->base);
47 ret->clock_class = clock_class;
6871026b 48 bt_object_get_ref_no_null_check(clock_class);
605e1019
PP
49 bt_clock_class_freeze(clock_class);
50 BT_LIB_LOGD("Created clock snapshot object: %!+k", ret);
51
52end:
53 return ret;
54}
55
58085ca4
PP
56struct bt_clock_snapshot *bt_clock_snapshot_create(
57 struct bt_clock_class *clock_class)
605e1019
PP
58{
59 struct bt_clock_snapshot *clock_snapshot = NULL;
60
98b15851 61 BT_ASSERT_DBG(clock_class);
605e1019
PP
62 clock_snapshot = bt_object_pool_create_object(&clock_class->cs_pool);
63 if (!clock_snapshot) {
870631a2
PP
64 BT_LIB_LOGE_APPEND_CAUSE(
65 "Cannot allocate one clock snapshot from clock class's clock snapshot pool: "
605e1019 66 "%![cc-]+K", clock_class);
5faa7131 67 goto end;
605e1019
PP
68 }
69
91d81473 70 if (G_LIKELY(!clock_snapshot->clock_class)) {
605e1019 71 clock_snapshot->clock_class = clock_class;
6871026b 72 bt_object_get_ref_no_null_check(clock_class);
605e1019
PP
73 }
74
605e1019
PP
75end:
76 return clock_snapshot;
77}
78
605e1019
PP
79void bt_clock_snapshot_recycle(struct bt_clock_snapshot *clock_snapshot)
80{
81 struct bt_clock_class *clock_class;
82
98b15851 83 BT_ASSERT_DBG(clock_snapshot);
605e1019
PP
84 BT_LIB_LOGD("Recycling clock snapshot: %!+k", clock_snapshot);
85
86 /*
87 * Those are the important ordered steps:
88 *
89 * 1. Reset the clock snapshot object, but do NOT put its clock
90 * class's reference. This clock class contains the pool to
91 * which we're about to recycle this clock snapshot object,
92 * so we must guarantee its existence thanks to this existing
93 * reference.
94 *
95 * 2. Move the clock class reference to our `clock_class`
96 * variable so that we can set the clock snapshot's clock
97 * class member to NULL before recycling it. We CANNOT do
98 * this after we put the clock class reference because this
99 * bt_object_put_ref() could destroy the clock class, also
100 * destroying its clock snapshot pool, thus also destroying
101 * our clock snapshot object (this would result in an invalid
102 * write access).
103 *
104 * 3. Recycle the clock snapshot object.
105 *
106 * 4. Put our clock class reference.
107 */
108 bt_clock_snapshot_reset(clock_snapshot);
109 clock_class = clock_snapshot->clock_class;
98b15851 110 BT_ASSERT_DBG(clock_class);
605e1019
PP
111 clock_snapshot->clock_class = NULL;
112 bt_object_pool_recycle_object(&clock_class->cs_pool, clock_snapshot);
113 bt_object_put_ref(clock_class);
114}
115
1353b066 116BT_EXPORT
58085ca4
PP
117uint64_t bt_clock_snapshot_get_value(
118 const struct bt_clock_snapshot *clock_snapshot)
605e1019 119{
d5b13b9b 120 BT_ASSERT_PRE_DEV_CS_NON_NULL(clock_snapshot);
1778c2a4 121 BT_ASSERT_DBG(clock_snapshot->is_set);
605e1019
PP
122 return clock_snapshot->value_cycles;
123}
124
1353b066 125BT_EXPORT
d24d5663
PP
126enum bt_clock_snapshot_get_ns_from_origin_status
127bt_clock_snapshot_get_ns_from_origin(
dc68f16d 128 const struct bt_clock_snapshot *clock_snapshot,
605e1019
PP
129 int64_t *ret_value_ns)
130{
d24d5663 131 int ret = BT_FUNC_STATUS_OK;
dc68f16d 132
17f3083a 133 BT_ASSERT_PRE_DEV_NO_ERROR();
d5b13b9b 134 BT_ASSERT_PRE_DEV_CS_NON_NULL(clock_snapshot);
1778c2a4
PP
135 BT_ASSERT_PRE_DEV_NON_NULL("value-ns-output", ret_value_ns,
136 "Value (ns) (output)");
137 BT_ASSERT_DBG(clock_snapshot->is_set);
605e1019
PP
138
139 if (clock_snapshot->ns_from_origin_overflows) {
bc3d9692
PP
140 BT_LIB_LOGE_APPEND_CAUSE(
141 "Clock snapshot, once converted to nanoseconds from origin, "
605e1019
PP
142 "overflows the signed 64-bit integer range: "
143 "%![cs-]+k", clock_snapshot);
520cdc82 144 ret = BT_FUNC_STATUS_OVERFLOW_ERROR;
605e1019
PP
145 goto end;
146 }
147
148 *ret_value_ns = clock_snapshot->ns_from_origin;
149
150end:
151 return ret;
152}
153
1353b066 154BT_EXPORT
605e1019
PP
155const struct bt_clock_class *bt_clock_snapshot_borrow_clock_class_const(
156 const struct bt_clock_snapshot *clock_snapshot)
157{
d5b13b9b 158 BT_ASSERT_PRE_DEV_CS_NON_NULL(clock_snapshot);
605e1019
PP
159 return clock_snapshot->clock_class;
160}
This page took 0.068594 seconds and 4 git commands to generate.