Fix: src.ctf.fs: initialize the other_entry variable
[babeltrace.git] / src / plugins / ctf / common / metadata / ctf-meta-visitors.h
CommitLineData
44c440bc
PP
1#ifndef _CTF_META_VISITORS_H
2#define _CTF_META_VISITORS_H
3
4/*
5 * Copyright 2018 - Philippe Proulx <pproulx@efficios.com>
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
3fadfbc0 18#include <babeltrace2/babeltrace.h>
91d81473 19#include "common/macros.h"
44c440bc
PP
20
21#include "ctf-meta.h"
22
f7b785ac
PP
23struct meta_log_config;
24
44c440bc 25BT_HIDDEN
0746848c 26int ctf_trace_class_resolve_field_classes(struct ctf_trace_class *tc,
f7b785ac 27 struct meta_log_config *log_cfg);
44c440bc
PP
28
29BT_HIDDEN
f7b785ac 30int ctf_trace_class_translate(bt_self_component *self_comp,
7fcdb0a9 31 bt_trace_class *ir_tc, struct ctf_trace_class *tc);
44c440bc
PP
32
33BT_HIDDEN
34int ctf_trace_class_update_default_clock_classes(
0746848c 35 struct ctf_trace_class *ctf_tc,
f7b785ac 36 struct meta_log_config *log_cfg);
44c440bc
PP
37
38BT_HIDDEN
39int ctf_trace_class_update_in_ir(struct ctf_trace_class *ctf_tc);
40
41BT_HIDDEN
42int ctf_trace_class_update_meanings(struct ctf_trace_class *ctf_tc);
43
44BT_HIDDEN
45int ctf_trace_class_update_text_array_sequence(struct ctf_trace_class *ctf_tc);
46
47BT_HIDDEN
48int ctf_trace_class_update_value_storing_indexes(struct ctf_trace_class *ctf_tc);
49
afd45274
PP
50BT_HIDDEN
51int ctf_trace_class_update_stream_class_config(struct ctf_trace_class *ctf_tc);
52
44c440bc 53BT_HIDDEN
0746848c 54int ctf_trace_class_validate(struct ctf_trace_class *ctf_tc,
f7b785ac 55 struct meta_log_config *log_cfg);
44c440bc 56
83ebb7f1
PP
57BT_HIDDEN
58void ctf_trace_class_warn_meaningless_header_fields(
f7b785ac
PP
59 struct ctf_trace_class *ctf_tc,
60 struct meta_log_config *log_cfg);
83ebb7f1 61
44c440bc 62#endif /* _CTF_META_VISITORS_H */
This page took 0.079259 seconds and 4 git commands to generate.