Rename `init` methods to `initialize`
[babeltrace.git] / src / plugins / utils / dummy / dummy.c
CommitLineData
e0dfa761
PP
1/*
2 * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 * SOFTWARE.
21 */
22
71c5da58 23#include <babeltrace2/babeltrace.h>
85e7137b 24#include "common/macros.h"
57952005 25#include "common/assert.h"
c2b71c92
JG
26#include "dummy.h"
27
1043fdea
PP
28static
29const char * const in_port_name = "in";
30
c2b71c92
JG
31void destroy_private_dummy_data(struct dummy *dummy)
32{
b09a5592 33 bt_self_component_port_input_message_iterator_put_ref(dummy->msg_iter);
c2b71c92 34 g_free(dummy);
834e9996 35
c2b71c92
JG
36}
37
834e9996 38BT_HIDDEN
8eee8ea2 39void dummy_finalize(bt_self_component_sink *comp)
c2b71c92
JG
40{
41 struct dummy *dummy;
42
834e9996
PP
43 BT_ASSERT(comp);
44 dummy = bt_self_component_get_data(
bb61965b 45 bt_self_component_sink_as_self_component(comp));
8b45963b 46 BT_ASSERT(dummy);
c2b71c92
JG
47 destroy_private_dummy_data(dummy);
48}
49
834e9996 50BT_HIDDEN
4175c1d5 51bt_component_class_initialize_method_status dummy_init(
8eee8ea2 52 bt_self_component_sink *component,
e3250e61 53 bt_self_component_sink_configuration *config,
8eee8ea2 54 const bt_value *params,
f807570c 55 __attribute__((unused)) void *init_method_data)
c2b71c92 56{
4175c1d5
FD
57 bt_component_class_initialize_method_status status =
58 BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_OK;
fb25b9e3 59 bt_self_component_add_port_status add_port_status;
c2b71c92
JG
60 struct dummy *dummy = g_new0(struct dummy, 1);
61
62 if (!dummy) {
4175c1d5 63 status = BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
c2b71c92
JG
64 goto end;
65 }
66
fb25b9e3 67 add_port_status = bt_self_component_sink_add_input_port(component,
147337a3 68 "in", NULL, NULL);
fb25b9e3
PP
69 switch (add_port_status) {
70 case BT_SELF_COMPONENT_ADD_PORT_STATUS_ERROR:
4175c1d5 71 status = BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
c2b71c92 72 goto error;
fb25b9e3 73 case BT_SELF_COMPONENT_ADD_PORT_STATUS_MEMORY_ERROR:
4175c1d5 74 status = BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
fb25b9e3
PP
75 goto error;
76 default:
77 break;
c2b71c92 78 }
d83d78e7 79
834e9996 80 bt_self_component_set_data(
bb61965b 81 bt_self_component_sink_as_self_component(component), dummy);
d83d78e7
PP
82 goto end;
83
c2b71c92
JG
84error:
85 destroy_private_dummy_data(dummy);
d83d78e7
PP
86
87end:
fb25b9e3 88 return status;
c2b71c92
JG
89}
90
834e9996 91BT_HIDDEN
fb25b9e3 92bt_component_class_sink_graph_is_configured_method_status dummy_graph_is_configured(
1043fdea 93 bt_self_component_sink *comp)
c2b71c92 94{
ab8b2b1b
SM
95 bt_component_class_sink_graph_is_configured_method_status status;
96 bt_self_component_port_input_message_iterator_create_from_sink_component_status
97 msg_iter_status;
c2b71c92 98 struct dummy *dummy;
b09a5592 99 bt_self_component_port_input_message_iterator *iterator;
c2b71c92 100
834e9996 101 dummy = bt_self_component_get_data(
bb61965b 102 bt_self_component_sink_as_self_component(comp));
8b45963b 103 BT_ASSERT(dummy);
ab8b2b1b 104 msg_iter_status = bt_self_component_port_input_message_iterator_create_from_sink_component(
692f1a01 105 comp, bt_self_component_sink_borrow_input_port_by_name(comp,
ab8b2b1b
SM
106 in_port_name), &iterator);
107 if (msg_iter_status != BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_CREATE_FROM_SINK_COMPONENT_STATUS_OK) {
108 status = (int) msg_iter_status;
c2b71c92
JG
109 goto end;
110 }
111
b09a5592
PP
112 BT_SELF_COMPONENT_PORT_INPUT_MESSAGE_ITERATOR_MOVE_REF(
113 dummy->msg_iter, iterator);
0d8b4d8e 114
ab8b2b1b
SM
115 status = BT_COMPONENT_CLASS_SINK_GRAPH_IS_CONFIGURED_METHOD_STATUS_OK;
116
c2b71c92 117end:
634f394c 118 return status;
c2b71c92 119}
e0dfa761 120
834e9996 121BT_HIDDEN
fb25b9e3 122bt_component_class_sink_consume_method_status dummy_consume(
8eee8ea2 123 bt_self_component_sink *component)
e0dfa761 124{
fb25b9e3
PP
125 bt_component_class_sink_consume_method_status status =
126 BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_OK;
b09a5592 127 bt_message_array_const msgs;
3fd7b79d 128 uint64_t count;
c2b71c92 129 struct dummy *dummy;
fb25b9e3 130 bt_message_iterator_next_status next_status;
3fd7b79d 131 uint64_t i;
e0dfa761 132
834e9996 133 dummy = bt_self_component_get_data(
bb61965b 134 bt_self_component_sink_as_self_component(component));
8b45963b 135 BT_ASSERT(dummy);
e0dfa761 136
85e7137b 137 if (G_UNLIKELY(!dummy->msg_iter)) {
fb25b9e3 138 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_END;
d83d78e7 139 goto end;
e0dfa761
PP
140 }
141
b09a5592 142 /* Consume one message */
fb25b9e3 143 next_status = bt_self_component_port_input_message_iterator_next(
b09a5592 144 dummy->msg_iter, &msgs, &count);
fb25b9e3
PP
145 switch (next_status) {
146 case BT_MESSAGE_ITERATOR_NEXT_STATUS_OK:
147 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_OK;
3fd7b79d
PP
148
149 for (i = 0; i < count; i++) {
b09a5592 150 bt_message_put_ref(msgs[i]);
3fd7b79d
PP
151 }
152
153 break;
fb25b9e3
PP
154 case BT_MESSAGE_ITERATOR_NEXT_STATUS_AGAIN:
155 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_AGAIN;
d83d78e7 156 goto end;
fb25b9e3
PP
157 case BT_MESSAGE_ITERATOR_NEXT_STATUS_END:
158 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_END;
d83d78e7 159 goto end;
fb25b9e3
PP
160 case BT_MESSAGE_ITERATOR_NEXT_STATUS_ERROR:
161 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_ERROR;
834e9996 162 goto end;
fb25b9e3
PP
163 case BT_MESSAGE_ITERATOR_NEXT_STATUS_MEMORY_ERROR:
164 status = BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_MEMORY_ERROR;
3fd7b79d 165 goto end;
d83d78e7
PP
166 default:
167 break;
e0dfa761 168 }
d83d78e7 169
e0dfa761 170end:
fb25b9e3 171 return status;
e0dfa761 172}
This page took 0.05488 seconds and 4 git commands to generate.