Cleanup: remove private babeltrace.h
[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
35int copy_trace_class_content(const bt_trace_class *in_trace_class,
36 bt_trace_class *out_trace_class);
37
38BT_HIDDEN
39int copy_stream_class_content(struct trace_ir_maps *trace_ir_maps,
40 const bt_stream_class *in_stream_class,
41 bt_stream_class *out_stream_class);
42
43BT_HIDDEN
44int copy_event_class_content(struct trace_ir_maps *trace_ir_maps,
45 const bt_event_class *in_event_class,
46 bt_event_class *out_event_class);
47
48BT_HIDDEN
49int copy_field_class_content(struct trace_ir_metadata_maps *trace_ir_metadata_maps,
50 const bt_field_class *in_field_class,
51 bt_field_class *out_field_class);
52
53BT_HIDDEN
54int copy_event_common_context_field_class_content(
55 struct trace_ir_metadata_maps *trace_ir_metadata_maps,
56 const char *debug_info_field_class_name,
57 const bt_field_class *in_field_class,
58 bt_field_class *out_field_class);
59
60BT_HIDDEN
61bt_field_class *create_field_class_copy(
62 struct trace_ir_metadata_maps *trace_ir_metadata_maps,
63 const bt_field_class *in_field_class);
64
65#endif /* BABELTRACE_PLUGIN_DEBUG_INFO_TRACE_METADATA_COPY_H */
This page took 0.028185 seconds and 4 git commands to generate.