1 #ifndef BABELTRACE_GRAPH_CLOCK_SNAPSHOT_SET_H
2 #define BABELTRACE_GRAPH_CLOCK_SNAPSHOT_SET_H
5 * Copyright 2018 Philippe Proulx <pproulx@efficios.com>
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:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
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
26 /* Protection: this file uses BT_LIB_LOG*() macros directly */
27 #ifndef BT_LIB_LOG_SUPPORTED
28 # error Please include "lib/logging.h" before including this file.
33 #include "common/assert.h"
35 #include "clock-snapshot.h"
36 #include "clock-class.h"
38 /* Protection: this file uses BT_LIB_LOG*() macros directly */
39 #ifndef BT_LIB_LOG_SUPPORTED
40 # error Please include "lib/logging.h" before including this file.
43 struct bt_clock_snapshot_set
{
44 /* Unique objects owned by this */
45 GPtrArray
*clock_snapshots
;
47 /* Weak; points to one of the clock snapshots above */
48 struct bt_clock_snapshot
*default_cs
;
52 int bt_clock_snapshot_set_initialize(struct bt_clock_snapshot_set
*cs_set
)
56 cs_set
->clock_snapshots
= g_ptr_array_sized_new(1);
57 if (!cs_set
->clock_snapshots
) {
58 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one GPtrArray.");
63 cs_set
->default_cs
= NULL
;
70 void bt_clock_snapshot_set_reset(struct bt_clock_snapshot_set
*cs_set
)
75 BT_ASSERT(cs_set
->clock_snapshots
);
77 for (i
= 0; i
< cs_set
->clock_snapshots
->len
; i
++) {
78 struct bt_clock_snapshot
*cs
= cs_set
->clock_snapshots
->pdata
[i
];
81 bt_clock_snapshot_reset(cs
);
84 cs_set
->default_cs
= NULL
;
88 void bt_clock_snapshot_set_finalize(struct bt_clock_snapshot_set
*cs_set
)
94 if (cs_set
->clock_snapshots
) {
95 for (i
= 0; i
< cs_set
->clock_snapshots
->len
; i
++) {
96 struct bt_clock_snapshot
*cs
=
97 cs_set
->clock_snapshots
->pdata
[i
];
100 bt_clock_snapshot_recycle(cs
);
103 g_ptr_array_free(cs_set
->clock_snapshots
, TRUE
);
106 cs_set
->default_cs
= NULL
;
110 int bt_clock_snapshot_set_set_clock_snapshot(struct bt_clock_snapshot_set
*cs_set
,
111 struct bt_clock_class
*cc
, uint64_t raw_value
)
114 struct bt_clock_snapshot
*clock_snapshot
= NULL
;
121 * Check if we already have a value for this clock class.
123 * TODO: When we have many clock classes, make this more
126 for (i
= 0; i
< cs_set
->clock_snapshots
->len
; i
++) {
127 struct bt_clock_snapshot
*cs
= cs_set
->clock_snapshots
->pdata
[i
];
131 if (cs
->clock_class
== cc
) {
137 if (!clock_snapshot
) {
138 clock_snapshot
= bt_clock_snapshot_create(cc
);
139 if (!clock_snapshot
) {
140 BT_LIB_LOGE_APPEND_CAUSE(
141 "Cannot create a clock snapshot from a clock class: "
147 g_ptr_array_add(cs_set
->clock_snapshots
, clock_snapshot
);
150 bt_clock_snapshot_set_raw_value(clock_snapshot
, raw_value
);
157 void bt_clock_snapshot_set_set_default_clock_snapshot(
158 struct bt_clock_snapshot_set
*cs_set
, uint64_t raw_value
)
161 BT_ASSERT(cs_set
->default_cs
);
162 bt_clock_snapshot_set_raw_value(cs_set
->default_cs
, raw_value
);
165 #endif /* BABELTRACE_GRAPH_CLOCK_SNAPSHOT_SET_H */
This page took 0.034221 seconds and 4 git commands to generate.