Prefix {source,filter,sink}*.h file names with component-
[babeltrace.git] / plugins / muxer / muxer.c
CommitLineData
34ac9eaf 1/*
0cb31e39 2 * muxer.c
34ac9eaf 3 *
0cb31e39 4 * Babeltrace Trace Muxer
34ac9eaf
JG
5 *
6 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
7 *
8 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * SOFTWARE.
27 */
28
33b34c43
PP
29#include <babeltrace/plugin/plugin-dev.h>
30#include <babeltrace/component/component.h>
d71dcf2c 31#include <babeltrace/component/component-filter.h>
33b34c43
PP
32#include <babeltrace/component/notification/notification.h>
33#include <babeltrace/component/notification/iterator.h>
34#include <babeltrace/component/notification/event.h>
0cb31e39 35#include "muxer.h"
34ac9eaf
JG
36
37static
0cb31e39 38void destroy_muxer_data(struct muxer *muxer)
34ac9eaf 39{
0cb31e39 40 g_free(muxer);
34ac9eaf
JG
41}
42
43static
0cb31e39 44struct muxer *create_muxer(void)
34ac9eaf 45{
0cb31e39 46 struct muxer *muxer;
34ac9eaf 47
0cb31e39
JG
48 muxer = g_new0(struct muxer, 1);
49 if (!muxer) {
34ac9eaf
JG
50 goto end;
51 }
52end:
0cb31e39 53 return muxer;
34ac9eaf
JG
54}
55
56static
0cb31e39 57void destroy_muxer(struct bt_component *component)
34ac9eaf
JG
58{
59 void *data = bt_component_get_private_data(component);
60
0cb31e39 61 destroy_muxer_data(data);
34ac9eaf
JG
62}
63
0cb31e39 64enum bt_component_status muxer_component_init(
34ac9eaf
JG
65 struct bt_component *component, struct bt_value *params)
66{
67 enum bt_component_status ret;
0cb31e39 68 struct muxer *muxer = create_muxer();
34ac9eaf 69
0cb31e39 70 if (!muxer) {
34ac9eaf
JG
71 ret = BT_COMPONENT_STATUS_NOMEM;
72 goto end;
73 }
74
0cb31e39 75 ret = bt_component_set_private_data(component, muxer);
34ac9eaf
JG
76 if (ret != BT_COMPONENT_STATUS_OK) {
77 goto error;
78 }
79end:
80 return ret;
81error:
0cb31e39 82 destroy_muxer_data(muxer);
34ac9eaf
JG
83 return ret;
84}
85
d3e4dcd8
PP
86enum bt_component_status muxer_init_iterator(
87 struct bt_component *component,
88 struct bt_notification_iterator *iter)
89{
90 return BT_COMPONENT_STATUS_OK;
91}
92
34ac9eaf 93/* Initialize plug-in entry points. */
6ba0b073 94BT_PLUGIN(muxer);
0cb31e39 95BT_PLUGIN_DESCRIPTION("Babeltrace Trace Muxer Plug-In.");
34ac9eaf
JG
96BT_PLUGIN_AUTHOR("Jérémie Galarneau");
97BT_PLUGIN_LICENSE("MIT");
d3e4dcd8
PP
98BT_PLUGIN_FILTER_COMPONENT_CLASS(muxer, muxer_init_iterator);
99BT_PLUGIN_FILTER_COMPONENT_CLASS_DESCRIPTION(muxer,
6ba0b073 100 "Time-correlate multiple traces.");
d3e4dcd8
PP
101BT_PLUGIN_FILTER_COMPONENT_CLASS_INIT_METHOD(muxer, muxer_component_init);
102BT_PLUGIN_FILTER_COMPONENT_CLASS_DESTROY_METHOD(muxer, destroy_muxer);
This page took 0.030948 seconds and 4 git commands to generate.