X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace%2Fgraph%2Fport-internal.h;h=d7a48e7331a05edb816177b1619048e546f14c1c;hb=c6bd8523ba4a37b61a1591c03e23614112b155ba;hp=807728cb2eb51bb5aa638605939251cab122e780;hpb=3e9b00233085bfafb21da3746f41d7d1876920dd;p=babeltrace.git diff --git a/include/babeltrace/graph/port-internal.h b/include/babeltrace/graph/port-internal.h index 807728cb..d7a48e73 100644 --- a/include/babeltrace/graph/port-internal.h +++ b/include/babeltrace/graph/port-internal.h @@ -1,9 +1,7 @@ -#ifndef BABELTRACE_COMPONENT_PORT_INTERNAL_H -#define BABELTRACE_COMPONENT_PORT_INTERNAL_H +#ifndef BABELTRACE_GRAPH_PORT_INTERNAL_H +#define BABELTRACE_GRAPH_PORT_INTERNAL_H /* - * BabelTrace - Babeltrace Component Port - * * Copyright 2017 Jérémie Galarneau * * Author: Jérémie Galarneau @@ -27,11 +25,7 @@ * SOFTWARE. */ -#include - -#ifdef __cplusplus -extern "C" { -#endif +#include struct bt_port { struct bt_object base; @@ -41,19 +35,7 @@ struct bt_port { void *user_data; }; -static inline -struct bt_port *bt_port_from_private( - struct bt_private_port *private_port) -{ - return (void *) private_port; -} - -static inline -struct bt_private_port *bt_private_port_from_port( - struct bt_port *port) -{ - return (void *) port; -} +struct bt_component; BT_HIDDEN struct bt_port *bt_port_create(struct bt_component *parent_component, @@ -63,8 +45,24 @@ BT_HIDDEN void bt_port_set_connection(struct bt_port *port, struct bt_connection *connection); -#ifdef __cplusplus +static inline +struct bt_component *bt_port_borrow_component_inline(const struct bt_port *port) +{ + BT_ASSERT(port); + return (void *) bt_object_borrow_parent(&port->base); +} + +static inline +const char *bt_port_type_string(enum bt_port_type port_type) +{ + switch (port_type) { + case BT_PORT_TYPE_INPUT: + return "BT_PORT_TYPE_INPUT"; + case BT_PORT_TYPE_OUTPUT: + return "BT_PORT_TYPE_OUTPUT"; + default: + return "(unknown)"; + } } -#endif -#endif /* BABELTRACE_COMPONENT_PORT_INTERNAL_H */ +#endif /* BABELTRACE_GRAPH_PORT_INTERNAL_H */