lib: remove self component param. from msg. iterator init. method
[babeltrace.git] / src / plugins / utils / muxer / muxer.h
CommitLineData
958f7d11
PP
1#ifndef BABELTRACE_PLUGINS_UTILS_MUXER_H
2#define BABELTRACE_PLUGINS_UTILS_MUXER_H
0cb31e39
JG
3
4/*
0cb31e39 5 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
958f7d11 6 * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
0cb31e39
JG
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 * SOFTWARE.
25 */
26
3fd7b79d 27#include <stdint.h>
71c5da58 28#include <babeltrace2/babeltrace.h>
85e7137b 29#include "common/macros.h"
0cb31e39 30
958f7d11 31BT_HIDDEN
4175c1d5 32bt_component_class_initialize_method_status muxer_init(
8eee8ea2 33 bt_self_component_filter *self_comp,
e3250e61 34 bt_self_component_filter_configuration *config,
8eee8ea2 35 const bt_value *params, void *init_data);
958f7d11
PP
36
37BT_HIDDEN
8eee8ea2 38void muxer_finalize(bt_self_component_filter *self_comp);
958f7d11
PP
39
40BT_HIDDEN
68e2deed 41bt_message_iterator_class_initialize_method_status muxer_msg_iter_init(
b09a5592 42 bt_self_message_iterator *self_msg_iter,
9415de1c 43 bt_self_message_iterator_configuration *config,
8eee8ea2 44 bt_self_component_port_output *self_port);
958f7d11
PP
45
46BT_HIDDEN
b09a5592
PP
47void muxer_msg_iter_finalize(
48 bt_self_message_iterator *self_msg_iter);
958f7d11
PP
49
50BT_HIDDEN
68e2deed 51bt_message_iterator_class_next_method_status muxer_msg_iter_next(
b09a5592
PP
52 bt_self_message_iterator *self_msg_iter,
53 bt_message_array_const msgs, uint64_t capacity,
3fd7b79d 54 uint64_t *count);
958f7d11
PP
55
56BT_HIDDEN
fb25b9e3 57bt_component_class_port_connected_method_status muxer_input_port_connected(
8eee8ea2
PP
58 bt_self_component_filter *comp,
59 bt_self_component_port_input *self_port,
60 const bt_port_output *other_port);
958f7d11 61
c9d3ff42 62BT_HIDDEN
68e2deed 63bt_message_iterator_class_can_seek_beginning_method_status
9e8e8b43
SM
64muxer_msg_iter_can_seek_beginning(
65 bt_self_message_iterator *message_iterator, bt_bool *can_seek);
c9d3ff42
PP
66
67BT_HIDDEN
68e2deed 68bt_message_iterator_class_seek_beginning_method_status muxer_msg_iter_seek_beginning(
c9d3ff42
PP
69 bt_self_message_iterator *message_iterator);
70
958f7d11 71#endif /* BABELTRACE_PLUGINS_UTILS_MUXER_H */
This page took 0.069756 seconds and 4 git commands to generate.