6 * Copyright 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
8 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
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:
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
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
29 #define BT_LOG_TAG "PORT"
30 #include <babeltrace/lib-logging-internal.h>
32 #include <babeltrace/graph/port.h>
33 #include <babeltrace/graph/component-internal.h>
34 #include <babeltrace/graph/port-internal.h>
35 #include <babeltrace/graph/connection-internal.h>
36 #include <babeltrace/object-internal.h>
37 #include <babeltrace/compiler-internal.h>
40 void bt_port_destroy(struct bt_object
*obj
)
42 struct bt_port
*port
= container_of(obj
, struct bt_port
, base
);
44 BT_LOGD("Destroying port: addr=%p, name=\"%s\", comp-addr=%p",
45 port
, bt_port_get_name(port
), obj
->parent
);
48 g_string_free(port
->name
, TRUE
);
54 struct bt_port
*bt_port_from_private_port(
55 struct bt_private_port
*private_port
)
57 return bt_get(bt_port_from_private(private_port
));
61 struct bt_port
*bt_port_create(struct bt_component
*parent_component
,
62 enum bt_port_type type
, const char *name
, void *user_data
)
64 struct bt_port
*port
= NULL
;
67 assert(parent_component
);
68 assert(type
== BT_PORT_TYPE_INPUT
|| type
== BT_PORT_TYPE_OUTPUT
);
70 if (strlen(name
) == 0) {
71 BT_LOGW_STR("Invalid parameter: name is an empty string.");
75 port
= g_new0(struct bt_port
, 1);
77 BT_LOGE_STR("Failed to allocate one port.");
81 BT_LOGD("Creating port for component: "
82 "comp-addr=%p, comp-name=\"%s\", port-type=%s, "
84 parent_component
, bt_component_get_name(parent_component
),
85 bt_port_type_string(type
), name
);
87 bt_object_init(port
, bt_port_destroy
);
88 port
->name
= g_string_new(name
);
90 BT_LOGE_STR("Failed to allocate one GString.");
96 port
->user_data
= user_data
;
97 bt_object_set_parent(port
, &parent_component
->base
);
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
);
108 const char *bt_port_get_name(struct bt_port
*port
)
110 return port
? port
->name
->str
: NULL
;
113 enum bt_port_type
bt_port_get_type(struct bt_port
*port
)
115 return port
? port
->type
: BT_PORT_TYPE_UNKOWN
;
118 struct bt_connection
*bt_port_get_connection(struct bt_port
*port
)
120 struct bt_connection
*connection
= NULL
;
123 BT_LOGW_STR("Invalid parameter: port is NULL.");
127 if (!port
->connection
) {
128 /* Not an error: means disconnected */
132 connection
= bt_get(port
->connection
);
138 struct bt_component
*bt_port_get_component(struct bt_port
*port
)
140 return (struct bt_component
*) bt_object_get_parent(port
);
143 struct bt_private_connection
*bt_private_port_get_private_connection(
144 struct bt_private_port
*private_port
)
146 return bt_private_connection_from_connection(bt_port_get_connection(
147 bt_port_from_private(private_port
)));
150 struct bt_private_component
*bt_private_port_get_private_component(
151 struct bt_private_port
*private_port
)
153 return bt_private_component_from_component(bt_port_get_component(
154 bt_port_from_private(private_port
)));
158 void bt_port_set_connection(struct bt_port
*port
,
159 struct bt_connection
*connection
)
162 * Don't take a reference on connection as its existence is
163 * guaranteed by the existence of the graph in which the
166 port
->connection
= connection
;
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
);
172 int bt_private_port_remove_from_component(
173 struct bt_private_port
*private_port
)
176 struct bt_port
*port
= bt_port_from_private(private_port
);
177 struct bt_component
*comp
= NULL
;
180 BT_LOGW_STR("Invalid parameter: private port is NULL.");
185 comp
= (void *) bt_object_get_parent(port
);
187 /* bt_component_remove_port() logs details */
188 ret
= bt_component_remove_port(comp
, port
);
195 int bt_port_disconnect(struct bt_port
*port
)
200 BT_LOGW_STR("Invalid parameter: port is NULL.");
205 if (port
->connection
) {
206 bt_connection_disconnect_ports(port
->connection
);
207 BT_LOGV("Disconnected port: "
208 "port-addr=%p, port-name=\"%s\"",
209 port
, bt_port_get_name(port
));
216 bt_bool
bt_port_is_connected(struct bt_port
*port
)
221 BT_LOGW_STR("Invalid parameter: port is NULL.");
226 ret
= port
->connection
? 1 : 0;
232 void *bt_private_port_get_user_data(
233 struct bt_private_port
*private_port
)
235 return private_port
?
236 bt_port_from_private(private_port
)->user_data
: NULL
;
This page took 0.034666 seconds and 4 git commands to generate.