Fix: CTF writer: bt_ctf_field_unsigned_integer_set_value() -> *get_value()
[babeltrace.git] / include / babeltrace2-ctf-writer / trace.h
CommitLineData
924dc299
PP
1#ifndef BABELTRACE2_CTF_WRITER_TRACE_H
2#define BABELTRACE2_CTF_WRITER_TRACE_H
3dca2276
PP
3
4/*
bbb7b5f0 5 * Copyright (c) 2010-2019 EfficiOS Inc. and Linux Foundation
3dca2276
PP
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.
3dca2276
PP
24 */
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30struct bt_ctf_trace;
31struct bt_ctf_stream_class;
32struct bt_ctf_stream;
3dca2276
PP
33
34extern enum bt_ctf_byte_order bt_ctf_trace_get_native_byte_order(
35 struct bt_ctf_trace *trace);
36
37extern int bt_ctf_trace_set_native_byte_order(struct bt_ctf_trace *trace,
38 enum bt_ctf_byte_order native_byte_order);
39
6162e6b7 40extern const uint8_t *bt_ctf_trace_get_uuid(
3dca2276
PP
41 struct bt_ctf_trace *trace);
42
43extern int bt_ctf_trace_set_uuid(struct bt_ctf_trace *trace,
6162e6b7 44 const uint8_t *uuid);
3dca2276 45
3dca2276
PP
46extern int bt_ctf_trace_set_environment_field_integer(
47 struct bt_ctf_trace *trace, const char *name,
48 int64_t value);
49
50extern int bt_ctf_trace_set_environment_field_string(
51 struct bt_ctf_trace *trace, const char *name,
52 const char *value);
53
54extern struct bt_ctf_field_type *bt_ctf_trace_get_packet_header_field_type(
55 struct bt_ctf_trace *trace);
56
57extern int bt_ctf_trace_set_packet_header_field_type(struct bt_ctf_trace *trace,
58 struct bt_ctf_field_type *packet_header_type);
59
3dca2276
PP
60extern int64_t bt_ctf_trace_get_stream_class_count(
61 struct bt_ctf_trace *trace);
62
63extern struct bt_ctf_stream_class *bt_ctf_trace_get_stream_class_by_index(
64 struct bt_ctf_trace *trace, uint64_t index);
65
66extern struct bt_ctf_stream_class *bt_ctf_trace_get_stream_class_by_id(
67 struct bt_ctf_trace *trace, uint64_t id);
68
69extern int bt_ctf_trace_add_stream_class(struct bt_ctf_trace *trace,
70 struct bt_ctf_stream_class *stream_class);
71
72extern int64_t bt_ctf_trace_get_stream_count(struct bt_ctf_trace *trace);
73
74extern struct bt_ctf_stream *bt_ctf_trace_get_stream_by_index(
75 struct bt_ctf_trace *trace, uint64_t index);
76
77extern const char *bt_ctf_trace_get_name(struct bt_ctf_trace *trace);
78
79#ifdef __cplusplus
80}
81#endif
82
924dc299 83#endif /* BABELTRACE2_CTF_WRITER_TRACE_H */
This page took 0.034415 seconds and 4 git commands to generate.