Re-format new C++ files
[babeltrace.git] / src / plugins / ctf / common / metadata / ctf-meta-visitors.hpp
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2018 Philippe Proulx <pproulx@efficios.com>
5 */
6
7 #ifndef _CTF_META_VISITORS_H
8 #define _CTF_META_VISITORS_H
9
10 #include <babeltrace2/babeltrace.h>
11 #include "common/macros.h"
12
13 #include "ctf-meta.hpp"
14
15 struct meta_log_config;
16
17 BT_HIDDEN
18 int ctf_trace_class_resolve_field_classes(struct ctf_trace_class *tc,
19 struct meta_log_config *log_cfg);
20
21 BT_HIDDEN
22 int ctf_trace_class_translate(bt_self_component *self_comp, bt_trace_class *ir_tc,
23 struct ctf_trace_class *tc);
24
25 BT_HIDDEN
26 int ctf_trace_class_update_default_clock_classes(struct ctf_trace_class *ctf_tc,
27 struct meta_log_config *log_cfg);
28
29 BT_HIDDEN
30 int ctf_trace_class_update_in_ir(struct ctf_trace_class *ctf_tc);
31
32 BT_HIDDEN
33 int ctf_trace_class_update_meanings(struct ctf_trace_class *ctf_tc);
34
35 BT_HIDDEN
36 int ctf_trace_class_update_text_array_sequence(struct ctf_trace_class *ctf_tc);
37
38 BT_HIDDEN
39 int ctf_trace_class_update_alignments(struct ctf_trace_class *ctf_tc);
40
41 BT_HIDDEN
42 int ctf_trace_class_update_value_storing_indexes(struct ctf_trace_class *ctf_tc);
43
44 BT_HIDDEN
45 int ctf_trace_class_update_stream_class_config(struct ctf_trace_class *ctf_tc);
46
47 BT_HIDDEN
48 int ctf_trace_class_validate(struct ctf_trace_class *ctf_tc, struct meta_log_config *log_cfg);
49
50 BT_HIDDEN
51 void ctf_trace_class_warn_meaningless_header_fields(struct ctf_trace_class *ctf_tc,
52 struct meta_log_config *log_cfg);
53
54 #endif /* _CTF_META_VISITORS_H */
This page took 0.03014 seconds and 4 git commands to generate.