Split notification iterator API into base and specialized functions
[babeltrace.git] / plugins / utils / muxer / muxer.h
1 #ifndef BABELTRACE_PLUGINS_UTILS_MUXER_H
2 #define BABELTRACE_PLUGINS_UTILS_MUXER_H
3
4 /*
5 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
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
27 #include <babeltrace/babeltrace-internal.h>
28
29 BT_HIDDEN
30 enum bt_component_status muxer_init(
31 struct bt_private_component *priv_comp,
32 struct bt_value *params, void *init_data);
33
34 BT_HIDDEN
35 void muxer_finalize(
36 struct bt_private_component *priv_comp);
37
38 BT_HIDDEN
39 enum bt_notification_iterator_status muxer_notif_iter_init(
40 struct bt_private_connection_private_notification_iterator *priv_notif_iter,
41 struct bt_private_port *priv_port);
42
43 BT_HIDDEN
44 void muxer_notif_iter_finalize(
45 struct bt_private_connection_private_notification_iterator *priv_notif_iter);
46
47 BT_HIDDEN
48 struct bt_notification_iterator_next_method_return muxer_notif_iter_next(
49 struct bt_private_connection_private_notification_iterator *priv_notif_iter);
50
51 BT_HIDDEN
52 void muxer_port_connected(
53 struct bt_private_component *priv_comp,
54 struct bt_private_port *self_private_port,
55 struct bt_port *other_port);
56
57 BT_HIDDEN
58 void muxer_port_disconnected(
59 struct bt_private_component *priv_comp,
60 struct bt_private_port *priv_port);
61
62 #endif /* BABELTRACE_PLUGINS_UTILS_MUXER_H */
This page took 0.033667 seconds and 4 git commands to generate.