.clang-tidy: enable cppcoreguidelines-avoid-const-or-ref-data-members
[babeltrace.git] / src / plugins / ctf / fs-sink / fs-sink.hpp
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2019 Philippe Proulx <pproulx@efficios.com>
5 */
6
7 #ifndef BABELTRACE_PLUGIN_CTF_FS_SINK_FS_SINK_H
8 #define BABELTRACE_PLUGIN_CTF_FS_SINK_FS_SINK_H
9
10 #include <glib.h>
11
12 #include <babeltrace2/babeltrace.h>
13
14 struct fs_sink_comp
15 {
16 bt_logging_level log_level;
17 bt_self_component *self_comp;
18
19 /* Owned by this */
20 bt_message_iterator *upstream_iter;
21
22 /* Base output directory path */
23 GString *output_dir_path;
24
25 /*
26 * True if the component assumes that it will only write a
27 * single CTF trace (which can contain one or more data
28 * streams). This makes the component write the stream files
29 * directly in the output directory (`output_dir_path` above).
30 */
31 bool assume_single_trace;
32
33 /* True to completely ignore discarded events messages */
34 bool ignore_discarded_events;
35
36 /* True to completely ignore discarded packets messages */
37 bool ignore_discarded_packets;
38
39 /*
40 * True to make the component quiet (nothing printed to the
41 * standard output).
42 */
43 bool quiet;
44
45 /*
46 * Hash table of `const bt_trace *` (weak) to
47 * `struct fs_sink_trace *` (owned by hash table).
48 */
49 GHashTable *traces;
50 };
51
52 bt_component_class_initialize_method_status
53 ctf_fs_sink_init(bt_self_component_sink *component, bt_self_component_sink_configuration *config,
54 const bt_value *params, void *init_method_data);
55
56 bt_component_class_sink_consume_method_status
57 ctf_fs_sink_consume(bt_self_component_sink *component);
58
59 bt_component_class_sink_graph_is_configured_method_status
60 ctf_fs_sink_graph_is_configured(bt_self_component_sink *component);
61
62 void ctf_fs_sink_finalize(bt_self_component_sink *component);
63
64 #endif /* BABELTRACE_PLUGIN_CTF_FS_SINK_FS_SINK_H */
This page took 0.029964 seconds and 4 git commands to generate.