X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fplugins%2Fctf%2Ffs-sink%2Ffs-sink.h;fp=src%2Fplugins%2Fctf%2Ffs-sink%2Ffs-sink.h;h=0000000000000000000000000000000000000000;hb=087cd0f57f0f7d815a609a4e041d1200f380e4aa;hp=983ca01d321ccc41b3c141992cc0081ad1d609c8;hpb=516bf0a77e025cfccce2fa400b757e94dc0bf1d8;p=babeltrace.git diff --git a/src/plugins/ctf/fs-sink/fs-sink.h b/src/plugins/ctf/fs-sink/fs-sink.h deleted file mode 100644 index 983ca01d..00000000 --- a/src/plugins/ctf/fs-sink/fs-sink.h +++ /dev/null @@ -1,70 +0,0 @@ -/* - * SPDX-License-Identifier: MIT - * - * Copyright 2019 Philippe Proulx - */ - -#ifndef BABELTRACE_PLUGIN_CTF_FS_SINK_FS_SINK_H -#define BABELTRACE_PLUGIN_CTF_FS_SINK_FS_SINK_H - -#include "common/macros.h" -#include -#include -#include - -struct fs_sink_comp { - bt_logging_level log_level; - bt_self_component *self_comp; - - /* Owned by this */ - bt_message_iterator *upstream_iter; - - /* Base output directory path */ - GString *output_dir_path; - - /* - * True if the component assumes that it will only write a - * single CTF trace (which can contain one or more data - * streams). This makes the component write the stream files - * directly in the output directory (`output_dir_path` above). - */ - bool assume_single_trace; - - /* True to completely ignore discarded events messages */ - bool ignore_discarded_events; - - /* True to completely ignore discarded packets messages */ - bool ignore_discarded_packets; - - /* - * True to make the component quiet (nothing printed to the - * standard output). - */ - bool quiet; - - /* - * Hash table of `const bt_trace *` (weak) to - * `struct fs_sink_trace *` (owned by hash table). - */ - GHashTable *traces; -}; - -BT_HIDDEN -bt_component_class_initialize_method_status ctf_fs_sink_init( - bt_self_component_sink *component, - bt_self_component_sink_configuration *config, - const bt_value *params, - void *init_method_data); - -BT_HIDDEN -bt_component_class_sink_consume_method_status ctf_fs_sink_consume( - bt_self_component_sink *component); - -BT_HIDDEN -bt_component_class_sink_graph_is_configured_method_status ctf_fs_sink_graph_is_configured( - bt_self_component_sink *component); - -BT_HIDDEN -void ctf_fs_sink_finalize(bt_self_component_sink *component); - -#endif /* BABELTRACE_PLUGIN_CTF_FS_SINK_FS_SINK_H */