lib: split trace API into trace class and trace APIs
[babeltrace.git] / include / babeltrace / trace-ir / trace-const.h
CommitLineData
40f4ba76
PP
1#ifndef BABELTRACE_TRACE_IR_TRACE_CONST_H
2#define BABELTRACE_TRACE_IR_TRACE_CONST_H
3
4/*
5 * Copyright 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 *
7 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 * SOFTWARE.
26 *
27 * The Common Trace Format (CTF) Specification is available at
28 * http://www.efficios.com/ctf
29 */
30
31/* For bt_bool, bt_uuid */
32#include <babeltrace/types.h>
33
34#include <stdint.h>
35
36#ifdef __cplusplus
37extern "C" {
38#endif
39
40struct bt_trace;
41struct bt_stream;
42struct bt_stream_class;
43struct bt_field_class;
44struct bt_value;
45
46typedef void (* bt_trace_is_static_listener_func)(const struct bt_trace *trace,
47 void *data);
48
49typedef void (* bt_trace_listener_removed_func)(const struct bt_trace *trace,
50 void *data);
51
862ca4ed 52extern const struct bt_trace_class *bt_trace_borrow_class_const(
40f4ba76
PP
53 const struct bt_trace *trace);
54
55extern const char *bt_trace_get_name(const struct bt_trace *trace);
56
40f4ba76
PP
57extern uint64_t bt_trace_get_stream_count(const struct bt_trace *trace);
58
59extern const struct bt_stream *bt_trace_borrow_stream_by_index_const(
60 const struct bt_trace *trace, uint64_t index);
61
62extern const struct bt_stream *bt_trace_borrow_stream_by_id_const(
63 const struct bt_trace *trace, uint64_t id);
64
65extern bt_bool bt_trace_is_static(const struct bt_trace *trace);
66
67extern int bt_trace_add_is_static_listener(const struct bt_trace *trace,
68 bt_trace_is_static_listener_func listener,
69 bt_trace_listener_removed_func listener_removed, void *data,
70 uint64_t *listener_id);
71
72extern int bt_trace_remove_is_static_listener(const struct bt_trace *trace,
73 uint64_t listener_id);
74
75#ifdef __cplusplus
76}
77#endif
78
79#endif /* BABELTRACE_TRACE_IR_TRACE_CONST_H */
This page took 0.025789 seconds and 4 git commands to generate.