Set notification iterator methods to the component class
[babeltrace.git] / plugins / muxer / muxer.c
... / ...
CommitLineData
1/*
2 * muxer.c
3 *
4 * Babeltrace Trace Muxer
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
29#include <babeltrace/plugin/plugin-dev.h>
30#include <babeltrace/component/component.h>
31#include <babeltrace/component/component-filter.h>
32#include <babeltrace/component/notification/notification.h>
33#include <babeltrace/component/notification/iterator.h>
34#include <babeltrace/component/notification/event.h>
35#include <plugins-common.h>
36#include "muxer.h"
37
38static
39void destroy_muxer_data(struct muxer *muxer)
40{
41 g_free(muxer);
42}
43
44static
45struct muxer *create_muxer(void)
46{
47 struct muxer *muxer;
48
49 muxer = g_new0(struct muxer, 1);
50 if (!muxer) {
51 goto end;
52 }
53end:
54 return muxer;
55}
56
57static
58void destroy_muxer(struct bt_component *component)
59{
60 void *data = bt_component_get_private_data(component);
61
62 destroy_muxer_data(data);
63}
64
65enum bt_component_status muxer_component_init(
66 struct bt_component *component, struct bt_value *params,
67 UNUSED_VAR void *init_method_data)
68{
69 enum bt_component_status ret;
70 struct muxer *muxer = create_muxer();
71
72 if (!muxer) {
73 ret = BT_COMPONENT_STATUS_NOMEM;
74 goto end;
75 }
76
77 ret = bt_component_set_private_data(component, muxer);
78 if (ret != BT_COMPONENT_STATUS_OK) {
79 goto error;
80 }
81end:
82 return ret;
83error:
84 destroy_muxer_data(muxer);
85 return ret;
86}
87
88static
89struct bt_notification *muxer_iterator_get(
90 struct bt_notification_iterator *iterator)
91{
92 return NULL;
93}
94
95static
96enum bt_notification_iterator_status muxer_iterator_next(
97 struct bt_notification_iterator *iterator)
98{
99 return BT_NOTIFICATION_ITERATOR_STATUS_OK;
100}
101
102/* Initialize plug-in entry points. */
103BT_PLUGIN(muxer);
104BT_PLUGIN_DESCRIPTION("Babeltrace Trace Muxer Plug-In.");
105BT_PLUGIN_AUTHOR("Jérémie Galarneau");
106BT_PLUGIN_LICENSE("MIT");
107BT_PLUGIN_FILTER_COMPONENT_CLASS(muxer, muxer_iterator_get,
108 muxer_iterator_next);
109BT_PLUGIN_FILTER_COMPONENT_CLASS_DESCRIPTION(muxer,
110 "Time-correlate multiple traces.");
111BT_PLUGIN_FILTER_COMPONENT_CLASS_INIT_METHOD(muxer, muxer_component_init);
112BT_PLUGIN_FILTER_COMPONENT_CLASS_DESTROY_METHOD(muxer, destroy_muxer);
This page took 0.024092 seconds and 4 git commands to generate.