Make API CTF-agnostic
[babeltrace.git] / include / babeltrace / ctf-ir / clock-value-set-internal.h
CommitLineData
e22b45d0
PP
1#ifndef BABELTRACE_GRAPH_CLOCK_VALUE_SET_H
2#define BABELTRACE_GRAPH_CLOCK_VALUE_SET_H
3
4/*
5 * Copyright 2018 Philippe Proulx <pproulx@efficios.com>
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
26#include <stdint.h>
27#include <glib.h>
28#include <babeltrace/ctf-ir/clock-value-internal.h>
29#include <babeltrace/ctf-ir/clock-class-internal.h>
30#include <babeltrace/assert-internal.h>
31
32struct bt_clock_value_set {
33 /* Unique objects owned by this */
34 GPtrArray *clock_values;
35
36 /* Weak; points to one of the clock values above */
37 struct bt_clock_value *default_cv;
38};
39
40static inline
41int bt_clock_value_set_initialize(struct bt_clock_value_set *cv_set)
42{
43 int ret = 0;
44
45 cv_set->clock_values = g_ptr_array_sized_new(1);
46 if (!cv_set->clock_values) {
47#ifdef BT_LOGE_STR
48 BT_LOGE_STR("Failed to allocate one GPtrArray.");
49#endif
50
51 ret = -1;
52 goto end;
53 }
54
55 cv_set->default_cv = NULL;
56
57end:
58 return ret;
59}
60
61static inline
62void bt_clock_value_set_reset(struct bt_clock_value_set *cv_set)
63{
64 uint64_t i;
65
66 BT_ASSERT(cv_set);
67 BT_ASSERT(cv_set->clock_values);
68
69 for (i = 0; i < cv_set->clock_values->len; i++) {
70 struct bt_clock_value *cv = cv_set->clock_values->pdata[i];
71
72 BT_ASSERT(cv);
73 bt_clock_value_reset(cv);
e22b45d0
PP
74 }
75
76 cv_set->default_cv = NULL;
77}
78
79static inline
80void bt_clock_value_set_finalize(struct bt_clock_value_set *cv_set)
81{
82 uint64_t i;
83
84 BT_ASSERT(cv_set);
85
86 if (cv_set->clock_values) {
87 for (i = 0; i < cv_set->clock_values->len; i++) {
88 struct bt_clock_value *cv =
89 cv_set->clock_values->pdata[i];
90
91 BT_ASSERT(cv);
92 bt_clock_value_recycle(cv);
93 }
94
95 g_ptr_array_free(cv_set->clock_values, TRUE);
96 }
97
98 cv_set->default_cv = NULL;
99}
100
101static inline
44c440bc
PP
102int bt_clock_value_set_set_clock_value(struct bt_clock_value_set *cv_set,
103 struct bt_clock_class *cc, uint64_t raw_value)
e22b45d0
PP
104{
105 int ret = 0;
106 struct bt_clock_value *clock_value = NULL;
107 uint64_t i;
108
109 BT_ASSERT(cv_set);
110 BT_ASSERT(cc);
111
44c440bc
PP
112 /*
113 * Check if we already have a value for this clock class.
114 *
115 * TODO: When we have many clock classes, make this more
116 * efficient.
117 */
e22b45d0
PP
118 for (i = 0; i < cv_set->clock_values->len; i++) {
119 struct bt_clock_value *cv = cv_set->clock_values->pdata[i];
120
121 BT_ASSERT(cv);
122
123 if (cv->clock_class == cc) {
124 clock_value = cv;
125 break;
126 }
127 }
128
129 if (!clock_value) {
130 clock_value = bt_clock_value_create(cc);
131 if (!clock_value) {
132#ifdef BT_LIB_LOGE
133 BT_LIB_LOGE("Cannot create a clock value from a clock class: "
134 "%![cc-]+K", cc);
135#endif
136
137 ret = -1;
138 goto end;
139 }
140
141 g_ptr_array_add(cv_set->clock_values, clock_value);
142 }
143
44c440bc 144 bt_clock_value_set_value_inline(clock_value, raw_value);
e22b45d0
PP
145
146end:
147 return ret;
148}
149
44c440bc
PP
150static inline
151void bt_clock_value_set_set_default_clock_value(
152 struct bt_clock_value_set *cv_set, uint64_t raw_value)
153{
154 BT_ASSERT(cv_set);
155 BT_ASSERT(cv_set->default_cv);
156 bt_clock_value_set_value_inline(cv_set->default_cv, raw_value);
157}
158
e22b45d0 159#endif /* BABELTRACE_GRAPH_CLOCK_VALUE_SET_H */
This page took 0.029727 seconds and 4 git commands to generate.