doc/api/libbabeltrace2/DoxygenLayout.xml: use `topics` tab
[babeltrace.git] / src / ctf-writer / clock-class.h
... / ...
CommitLineData
1/*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 */
6
7#ifndef BABELTRACE_CTF_WRITER_CLOCK_CLASS_INTERNAL_H
8#define BABELTRACE_CTF_WRITER_CLOCK_CLASS_INTERNAL_H
9
10#include "common/macros.h"
11#include "object-pool.h"
12#include "common/uuid.h"
13#include <babeltrace2-ctf-writer/types.h>
14#include <stdint.h>
15#include <glib.h>
16
17#include "object.h"
18
19struct bt_ctf_clock_class {
20 struct bt_ctf_object base;
21 GString *name;
22 GString *description;
23 uint64_t frequency;
24 uint64_t precision;
25 int64_t offset_s; /* Offset in seconds */
26 int64_t offset; /* Offset in ticks */
27 bt_uuid_t uuid;
28 int uuid_set;
29 int absolute;
30
31 /*
32 * A clock's properties can't be modified once it is added to a stream
33 * class.
34 */
35 int frozen;
36};
37
38void bt_ctf_clock_class_freeze(struct bt_ctf_clock_class *clock_class);
39
40bt_ctf_bool bt_ctf_clock_class_is_valid(struct bt_ctf_clock_class *clock_class);
41
42int bt_ctf_clock_class_compare(struct bt_ctf_clock_class *clock_class_a,
43 struct bt_ctf_clock_class *clock_class_b);
44
45struct bt_ctf_clock_class *bt_ctf_clock_class_create(const char *name,
46 uint64_t freq);
47const char *bt_ctf_clock_class_get_name(
48 struct bt_ctf_clock_class *clock_class);
49int bt_ctf_clock_class_set_name(struct bt_ctf_clock_class *clock_class,
50 const char *name);
51const char *bt_ctf_clock_class_get_description(
52 struct bt_ctf_clock_class *clock_class);
53int bt_ctf_clock_class_set_description(
54 struct bt_ctf_clock_class *clock_class,
55 const char *desc);
56uint64_t bt_ctf_clock_class_get_frequency(
57 struct bt_ctf_clock_class *clock_class);
58int bt_ctf_clock_class_set_frequency(
59 struct bt_ctf_clock_class *clock_class, uint64_t freq);
60uint64_t bt_ctf_clock_class_get_precision(
61 struct bt_ctf_clock_class *clock_class);
62int bt_ctf_clock_class_set_precision(
63 struct bt_ctf_clock_class *clock_class, uint64_t precision);
64int bt_ctf_clock_class_get_offset_s(
65 struct bt_ctf_clock_class *clock_class, int64_t *seconds);
66int bt_ctf_clock_class_set_offset_s(
67 struct bt_ctf_clock_class *clock_class, int64_t seconds);
68int bt_ctf_clock_class_get_offset_cycles(
69 struct bt_ctf_clock_class *clock_class, int64_t *cycles);
70int bt_ctf_clock_class_set_offset_cycles(
71 struct bt_ctf_clock_class *clock_class, int64_t cycles);
72bt_ctf_bool bt_ctf_clock_class_is_absolute(
73 struct bt_ctf_clock_class *clock_class);
74int bt_ctf_clock_class_set_is_absolute(
75 struct bt_ctf_clock_class *clock_class, bt_ctf_bool is_absolute);
76const uint8_t *bt_ctf_clock_class_get_uuid(
77 struct bt_ctf_clock_class *clock_class);
78int bt_ctf_clock_class_set_uuid(struct bt_ctf_clock_class *clock_class,
79 const uint8_t *uuid);
80
81#endif /* BABELTRACE_CTF_WRITER_CLOCK_CLASS_INTERNAL_H */
This page took 0.025063 seconds and 5 git commands to generate.