lib: update copyrights
[babeltrace.git] / lib / graph / component-source.c
CommitLineData
d94d92ac 1/*
e2f7325d 2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
d94d92ac
PP
3 * Copyright 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 *
d94d92ac
PP
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to deal
7 * in the Software without restriction, including without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 * copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 */
23
24#define BT_LOG_TAG "COMP-SOURCE"
25#include <babeltrace/lib-logging-internal.h>
26
27#include <babeltrace/object.h>
28#include <babeltrace/compiler-internal.h>
29#include <babeltrace/graph/self-component-source.h>
0d72b8c3 30#include <babeltrace/graph/component-source-const.h>
d94d92ac
PP
31#include <babeltrace/graph/component-source-internal.h>
32#include <babeltrace/graph/component-internal.h>
33#include <babeltrace/graph/port-internal.h>
34#include <babeltrace/graph/notification-iterator.h>
35#include <babeltrace/graph/notification-iterator-internal.h>
36#include <babeltrace/graph/graph.h>
37#include <babeltrace/assert-internal.h>
38#include <babeltrace/assert-pre-internal.h>
39
40BT_HIDDEN
41void bt_component_source_destroy(struct bt_component *component)
42{
43}
44
45BT_HIDDEN
46struct bt_component *bt_component_source_create(
0d72b8c3 47 const struct bt_component_class *class)
d94d92ac
PP
48{
49 struct bt_component_source *source = NULL;
50
51 source = g_new0(struct bt_component_source, 1);
52 if (!source) {
53 BT_LOGE_STR("Failed to allocate one source component.");
54 goto end;
55 }
56
57end:
58 return (void *) source;
59}
60
61uint64_t bt_component_source_get_output_port_count(
0d72b8c3 62 const struct bt_component_source *comp)
d94d92ac
PP
63{
64 return bt_component_get_output_port_count((void *) comp);
65}
66
0d72b8c3
PP
67const struct bt_port_output *
68bt_component_source_borrow_output_port_by_name_const(
69 const struct bt_component_source *comp, const char *name)
d94d92ac
PP
70{
71 return bt_component_borrow_output_port_by_name((void *) comp, name);
72}
73
74struct bt_self_component_port_output *
75bt_self_component_source_borrow_output_port_by_name(
76 struct bt_self_component_source *comp, const char *name)
77{
78 return (void *) bt_component_borrow_output_port_by_name(
79 (void *) comp, name);
80}
81
0d72b8c3
PP
82const struct bt_port_output *
83bt_component_source_borrow_output_port_by_index_const(
84 const struct bt_component_source *comp, uint64_t index)
d94d92ac
PP
85{
86 return bt_component_borrow_output_port_by_index((void *) comp, index);
87}
88
89struct bt_self_component_port_output *
90bt_self_component_source_borrow_output_port_by_index(
91 struct bt_self_component_source *comp, uint64_t index)
92{
93 return (void *) bt_component_borrow_output_port_by_index(
94 (void *) comp, index);
95}
96
97enum bt_self_component_status bt_self_component_source_add_output_port(
98 struct bt_self_component_source *self_comp,
99 const char *name, void *user_data,
100 struct bt_self_component_port_output **self_port)
101{
102 struct bt_component *comp = (void *) self_comp;
103 int status = BT_SELF_COMPONENT_STATUS_OK;
104 struct bt_port *port = NULL;
105
106 /* bt_component_add_output_port() logs details and errors */
107 port = (void *) bt_component_add_output_port(comp, name, user_data);
108 if (!port) {
109 status = BT_SELF_COMPONENT_STATUS_NOMEM;
110 goto end;
111 }
112
113 if (self_port) {
114 /* Move reference to user */
115 *self_port = (void *) port;
116 port = NULL;
117 }
118
119end:
120 bt_object_put_ref(port);
121 return status;
122}
This page took 0.026842 seconds and 4 git commands to generate.