bt2c::Logger: remove unused cLevel() method
[babeltrace.git] / src / lib / trace-ir / clock-class.h
CommitLineData
273b65be 1/*
0235b0db
MJ
2 * SPDX-License-Identifier: MIT
3 *
e2f7325d 4 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
de9dd397 5 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
273b65be
JG
6 */
7
0235b0db
MJ
8#ifndef BABELTRACE_TRACE_IR_CLOCK_CLASS_INTERNAL_H
9#define BABELTRACE_TRACE_IR_CLOCK_CLASS_INTERNAL_H
10
3fadfbc0 11#include <babeltrace2/trace-ir/clock-class.h>
578e048b 12#include "lib/object.h"
578e048b
MJ
13#include "common/common.h"
14#include "lib/object-pool.h"
6162e6b7 15#include "common/uuid.h"
3fadfbc0 16#include <babeltrace2/types.h>
578e048b 17#include "common/assert.h"
036a7cac
PP
18#include <stdbool.h>
19#include <stdint.h>
c55a9f58 20#include <glib.h>
273b65be 21
d24d5663
PP
22#include "lib/func-status.h"
23
50842bdc 24struct bt_clock_class {
83509119 25 struct bt_object base;
44c440bc 26
c6962c96
PP
27 /* Owned by this */
28 struct bt_value *user_attributes;
29
44c440bc
PP
30 struct {
31 GString *str;
32
33 /* NULL or `str->str` above */
34 const char *value;
35 } name;
36
37 struct {
38 GString *str;
39
40 /* NULL or `str->str` above */
41 const char *value;
42 } description;
43
273b65be
JG
44 uint64_t frequency;
45 uint64_t precision;
44c440bc
PP
46 int64_t offset_seconds;
47 uint64_t offset_cycles;
48
49 struct {
6162e6b7 50 bt_uuid_t uuid;
44c440bc
PP
51
52 /* NULL or `uuid` above */
53 bt_uuid value;
54 } uuid;
55
5552377a 56 bool origin_is_unix_epoch;
cfeb617e 57
273b65be 58 /*
44c440bc
PP
59 * This is computed every time you call
60 * bt_clock_class_set_frequency() or
61 * bt_clock_class_set_offset(), as well as initially. It is the
62 * base offset in nanoseconds including both `offset_seconds`
63 * and `offset_cycles` above in the result. It is used to
64 * accelerate future calls to
605e1019 65 * bt_clock_snapshot_get_ns_from_origin() and
44c440bc
PP
66 * bt_clock_class_cycles_to_ns_from_origin().
67 *
68 * `overflows` is true if the base offset cannot be computed
69 * because of an overflow.
273b65be 70 */
44c440bc
PP
71 struct {
72 int64_t value_ns;
73 bool overflows;
74 } base_offset;
312c056a 75
605e1019
PP
76 /* Pool of `struct bt_clock_snapshot *` */
77 struct bt_object_pool cs_pool;
44c440bc
PP
78
79 bool frozen;
273b65be
JG
80};
81
40f4ba76 82void _bt_clock_class_freeze(const struct bt_clock_class *clock_class);
273b65be 83
44c440bc
PP
84#ifdef BT_DEV_MODE
85# define bt_clock_class_freeze _bt_clock_class_freeze
86#else
87# define bt_clock_class_freeze(_cc)
88#endif
24626e8b 89
44c440bc 90bt_bool bt_clock_class_is_valid(struct bt_clock_class *clock_class);
93dda901 91
5b9e151d
PP
92static inline
93int bt_clock_class_clock_value_from_ns_from_origin(
94 struct bt_clock_class *cc, int64_t ns_from_origin,
95 uint64_t *raw_value)
96{
98b15851 97 BT_ASSERT_DBG(cc);
7de0e49a
PP
98 return bt_common_clock_value_from_ns_from_origin(cc->offset_seconds,
99 cc->offset_cycles, cc->frequency, ns_from_origin,
520cdc82 100 raw_value) ? BT_FUNC_STATUS_OVERFLOW_ERROR : BT_FUNC_STATUS_OK;
5b9e151d
PP
101}
102
56e18c4c 103#endif /* BABELTRACE_TRACE_IR_CLOCK_CLASS_INTERNAL_H */
This page took 0.117916 seconds and 5 git commands to generate.