flt.lttng-utils.debug-info: add all SC and EC to output trace class ASAP
[babeltrace.git] / src / plugins / lttng-utils / debug-info / trace-ir-metadata-copy.h
CommitLineData
ca9f27f3
FD
1#ifndef BABELTRACE_PLUGIN_DEBUG_INFO_TRACE_METADATA_COPY_H
2#define BABELTRACE_PLUGIN_DEBUG_INFO_TRACE_METADATA_COPY_H
3
4/*
5 * Babeltrace - Trace IR metadata object copy
6 *
7 * Copyright (c) 2015 EfficiOS Inc. and Linux Foundation
8 * Copyright (c) 2018 Philippe Proulx <pproulx@efficios.com>
9 * Copyright (c) 2019 Francis Deslauriers <francis.deslauriers@efficios.com>
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27 * SOFTWARE.
28 */
29
3fadfbc0 30#include <babeltrace2/babeltrace.h>
91d81473 31#include "common/macros.h"
ca9f27f3
FD
32#include "trace-ir-mapping.h"
33
34BT_HIDDEN
db5d746d
FD
35int copy_trace_class_content(struct trace_ir_maps *trace_ir_maps,
36 const bt_trace_class *in_trace_class,
3a3d15f3 37 bt_trace_class *out_trace_class,
91bc8451
PP
38 bt_logging_level log_level,
39 bt_self_component *self_comp);
ca9f27f3
FD
40
41BT_HIDDEN
42int copy_stream_class_content(struct trace_ir_maps *trace_ir_maps,
43 const bt_stream_class *in_stream_class,
44 bt_stream_class *out_stream_class);
45
46BT_HIDDEN
47int copy_event_class_content(struct trace_ir_maps *trace_ir_maps,
48 const bt_event_class *in_event_class,
49 bt_event_class *out_event_class);
50
51BT_HIDDEN
52int copy_field_class_content(struct trace_ir_metadata_maps *trace_ir_metadata_maps,
53 const bt_field_class *in_field_class,
54 bt_field_class *out_field_class);
55
56BT_HIDDEN
57int copy_event_common_context_field_class_content(
58 struct trace_ir_metadata_maps *trace_ir_metadata_maps,
59 const char *debug_info_field_class_name,
60 const bt_field_class *in_field_class,
61 bt_field_class *out_field_class);
62
63BT_HIDDEN
64bt_field_class *create_field_class_copy(
65 struct trace_ir_metadata_maps *trace_ir_metadata_maps,
66 const bt_field_class *in_field_class);
67
68#endif /* BABELTRACE_PLUGIN_DEBUG_INFO_TRACE_METADATA_COPY_H */
This page took 0.0425720000000001 seconds and 4 git commands to generate.