End connection on destruction
[babeltrace.git] / lib / graph / port.c
CommitLineData
8b285017 1/*
7d55361f 2 * port.c
8b285017
JG
3 *
4 * Babeltrace Port
5 *
6 * Copyright 2017 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
f3034355
PP
29#define BT_LOG_TAG "PORT"
30#include <babeltrace/lib-logging-internal.h>
31
b65cfd0f 32#include <babeltrace/graph/port.h>
b2e0c907
PP
33#include <babeltrace/graph/component-internal.h>
34#include <babeltrace/graph/port-internal.h>
35#include <babeltrace/graph/connection-internal.h>
8b285017 36#include <babeltrace/object-internal.h>
3d9990ac 37#include <babeltrace/compiler-internal.h>
8b285017
JG
38
39static
40void bt_port_destroy(struct bt_object *obj)
41{
42 struct bt_port *port = container_of(obj, struct bt_port, base);
43
f3034355
PP
44 BT_LOGD("Destroying port: addr=%p, name=\"%s\", comp-addr=%p",
45 port, bt_port_get_name(port), obj->parent);
46
8b285017
JG
47 if (port->name) {
48 g_string_free(port->name, TRUE);
49 }
f3034355 50
8b285017
JG
51 g_free(port);
52}
53
890882ef
PP
54struct bt_port *bt_port_from_private_port(
55 struct bt_private_port *private_port)
56{
57 return bt_get(bt_port_from_private(private_port));
58}
59
8b285017
JG
60BT_HIDDEN
61struct bt_port *bt_port_create(struct bt_component *parent_component,
3e9b0023 62 enum bt_port_type type, const char *name, void *user_data)
8b285017 63{
72b913fb 64 struct bt_port *port = NULL;
8b285017
JG
65
66 assert(name);
67 assert(parent_component);
68 assert(type == BT_PORT_TYPE_INPUT || type == BT_PORT_TYPE_OUTPUT);
69
72b913fb 70 if (strlen(name) == 0) {
f3034355 71 BT_LOGW_STR("Invalid parameter: name is an empty string.");
8b285017
JG
72 goto end;
73 }
74
75 port = g_new0(struct bt_port, 1);
76 if (!port) {
f3034355 77 BT_LOGE_STR("Failed to allocate one port.");
8b285017
JG
78 goto end;
79 }
80
f3034355
PP
81 BT_LOGD("Creating port for component: "
82 "comp-addr=%p, comp-name=\"%s\", port-type=%s, "
83 "port-name=\"%s\"",
84 parent_component, bt_component_get_name(parent_component),
85 bt_port_type_string(type), name);
86
8b285017
JG
87 bt_object_init(port, bt_port_destroy);
88 port->name = g_string_new(name);
89 if (!port->name) {
f3034355 90 BT_LOGE_STR("Failed to allocate one GString.");
8b285017
JG
91 BT_PUT(port);
92 goto end;
93 }
94
95 port->type = type;
3e9b0023 96 port->user_data = user_data;
8b285017 97 bt_object_set_parent(port, &parent_component->base);
f3034355
PP
98 BT_LOGD("Created port for component: "
99 "comp-addr=%p, comp-name=\"%s\", port-type=%s, "
100 "port-name=\"%s\", port-addr=%p",
101 parent_component, bt_component_get_name(parent_component),
102 bt_port_type_string(type), name, port);
103
8b285017
JG
104end:
105 return port;
106}
107
108const char *bt_port_get_name(struct bt_port *port)
109{
110 return port ? port->name->str : NULL;
111}
112
113enum bt_port_type bt_port_get_type(struct bt_port *port)
114{
115 return port ? port->type : BT_PORT_TYPE_UNKOWN;
116}
117
72b913fb 118struct bt_connection *bt_port_get_connection(struct bt_port *port)
8b285017 119{
72b913fb 120 struct bt_connection *connection = NULL;
8b285017 121
f3034355
PP
122 if (!port) {
123 BT_LOGW_STR("Invalid parameter: port is NULL.");
124 goto end;
125 }
126
127 if (!port->connection) {
128 /* Not an error: means disconnected */
8b285017
JG
129 goto end;
130 }
131
72b913fb 132 connection = bt_get(port->connection);
f3034355 133
8b285017
JG
134end:
135 return connection;
136}
137
138struct bt_component *bt_port_get_component(struct bt_port *port)
139{
140 return (struct bt_component *) bt_object_get_parent(port);
141}
142
890882ef
PP
143struct bt_private_connection *bt_private_port_get_private_connection(
144 struct bt_private_port *private_port)
145{
146 return bt_private_connection_from_connection(bt_port_get_connection(
147 bt_port_from_private(private_port)));
148}
149
150struct bt_private_component *bt_private_port_get_private_component(
151 struct bt_private_port *private_port)
152{
153 return bt_private_component_from_component(bt_port_get_component(
154 bt_port_from_private(private_port)));
155}
156
8b285017 157BT_HIDDEN
72b913fb 158void bt_port_set_connection(struct bt_port *port,
8b285017 159 struct bt_connection *connection)
72b913fb
PP
160{
161 /*
162 * Don't take a reference on connection as its existence is
163 * guaranteed by the existence of the graph in which the
164 * connection exists.
165 */
166 port->connection = connection;
f3034355
PP
167 BT_LOGV("Set port's connection: "
168 "port-addr=%p, port-name=\"%s\", conn-addr=%p",
169 port, bt_port_get_name(port), connection);
72b913fb
PP
170}
171
890882ef
PP
172int bt_private_port_remove_from_component(
173 struct bt_private_port *private_port)
8b285017
JG
174{
175 int ret = 0;
890882ef 176 struct bt_port *port = bt_port_from_private(private_port);
72b913fb 177 struct bt_component *comp = NULL;
8b285017 178
72b913fb 179 if (!port) {
f3034355 180 BT_LOGW_STR("Invalid parameter: private port is NULL.");
8b285017
JG
181 ret = -1;
182 goto end;
183 }
184
72b913fb 185 comp = (void *) bt_object_get_parent(port);
f3034355
PP
186
187 /* bt_component_remove_port() logs details */
72b913fb
PP
188 ret = bt_component_remove_port(comp, port);
189
8b285017 190end:
72b913fb 191 bt_put(comp);
8b285017
JG
192 return ret;
193}
194
72b913fb 195int bt_port_disconnect(struct bt_port *port)
8b285017 196{
72b913fb 197 int ret = 0;
8b285017 198
72b913fb 199 if (!port) {
f3034355 200 BT_LOGW_STR("Invalid parameter: port is NULL.");
72b913fb 201 ret = -1;
8b285017
JG
202 goto end;
203 }
204
72b913fb 205 if (port->connection) {
c42ea0af 206 bt_connection_end(port->connection, true);
f3034355
PP
207 BT_LOGV("Disconnected port: "
208 "port-addr=%p, port-name=\"%s\"",
209 port, bt_port_get_name(port));
72b913fb
PP
210 }
211
8b285017 212end:
72b913fb 213 return ret;
8b285017
JG
214}
215
b65cfd0f 216bt_bool bt_port_is_connected(struct bt_port *port)
8b285017 217{
72b913fb 218 int ret;
8b285017 219
72b913fb 220 if (!port) {
f3034355 221 BT_LOGW_STR("Invalid parameter: port is NULL.");
72b913fb 222 ret = -1;
8b285017
JG
223 goto end;
224 }
225
72b913fb
PP
226 ret = port->connection ? 1 : 0;
227
8b285017 228end:
72b913fb 229 return ret;
8b285017 230}
a45a0b60 231
a45a0b60
PP
232void *bt_private_port_get_user_data(
233 struct bt_private_port *private_port)
234{
235 return private_port ?
236 bt_port_from_private(private_port)->user_data : NULL;
237}
This page took 0.036788 seconds and 4 git commands to generate.