1 #ifndef BABELTRACE2_CTF_WRITER_TRACE_H
2 #define BABELTRACE2_CTF_WRITER_TRACE_H
5 * Copyright (c) 2010-2019 EfficiOS Inc. and Linux Foundation
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
31 struct bt_ctf_stream_class
;
34 extern enum bt_ctf_byte_order
bt_ctf_trace_get_native_byte_order(
35 struct bt_ctf_trace
*trace
);
37 extern int bt_ctf_trace_set_native_byte_order(struct bt_ctf_trace
*trace
,
38 enum bt_ctf_byte_order native_byte_order
);
40 extern const uint8_t *bt_ctf_trace_get_uuid(
41 struct bt_ctf_trace
*trace
);
43 extern int bt_ctf_trace_set_uuid(struct bt_ctf_trace
*trace
,
46 extern int bt_ctf_trace_set_environment_field_integer(
47 struct bt_ctf_trace
*trace
, const char *name
,
50 extern int bt_ctf_trace_set_environment_field_string(
51 struct bt_ctf_trace
*trace
, const char *name
,
54 extern struct bt_ctf_field_type
*bt_ctf_trace_get_packet_header_field_type(
55 struct bt_ctf_trace
*trace
);
57 extern int bt_ctf_trace_set_packet_header_field_type(struct bt_ctf_trace
*trace
,
58 struct bt_ctf_field_type
*packet_header_type
);
60 extern int64_t bt_ctf_trace_get_stream_class_count(
61 struct bt_ctf_trace
*trace
);
63 extern struct bt_ctf_stream_class
*bt_ctf_trace_get_stream_class_by_index(
64 struct bt_ctf_trace
*trace
, uint64_t index
);
66 extern struct bt_ctf_stream_class
*bt_ctf_trace_get_stream_class_by_id(
67 struct bt_ctf_trace
*trace
, uint64_t id
);
69 extern int bt_ctf_trace_add_stream_class(struct bt_ctf_trace
*trace
,
70 struct bt_ctf_stream_class
*stream_class
);
72 extern int64_t bt_ctf_trace_get_stream_count(struct bt_ctf_trace
*trace
);
74 extern struct bt_ctf_stream
*bt_ctf_trace_get_stream_by_index(
75 struct bt_ctf_trace
*trace
, uint64_t index
);
77 extern const char *bt_ctf_trace_get_name(struct bt_ctf_trace
*trace
);
83 #endif /* BABELTRACE2_CTF_WRITER_TRACE_H */