X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Flib%2Fgraph%2Fcomponent.h;h=387996aac4ad5e592a8a35a3ebdbc57101898f2c;hb=157a98edd5aebe1b6ab7f60a49d8430450fabe76;hp=c993ce6914df7a01c72f6a74d4553b43d30dea6c;hpb=d24d56638469189904fb6ddbb3c725817b3e9417;p=babeltrace.git diff --git a/src/lib/graph/component.h b/src/lib/graph/component.h index c993ce69..387996aa 100644 --- a/src/lib/graph/component.h +++ b/src/lib/graph/component.h @@ -1,42 +1,35 @@ -#ifndef BABELTRACE_GRAPH_COMPONENT_INTERNAL_H -#define BABELTRACE_GRAPH_COMPONENT_INTERNAL_H - /* + * SPDX-License-Identifier: MIT + * * Copyright 2017-2018 Philippe Proulx * Copyright 2015 Jérémie Galarneau - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. */ +#ifndef BABELTRACE_GRAPH_COMPONENT_INTERNAL_H +#define BABELTRACE_GRAPH_COMPONENT_INTERNAL_H + #include "common/macros.h" -#include +#include #include #include "lib/object.h" #include #include #include "common/assert.h" #include +#include #include #include "component-class.h" #include "port.h" +#define BT_ASSERT_PRE_INPUT_PORT_NAME_UNIQUE(comp, name) \ + BT_ASSERT_PRE(bt_component_port_name_is_unique(comp->input_ports, name), \ + "Input port name is not unique: name=\"%s\", %![comp-]c", name, comp); + +#define BT_ASSERT_PRE_OUTPUT_PORT_NAME_UNIQUE(comp, name) \ + BT_ASSERT_PRE(bt_component_port_name_is_unique(comp->output_ports, name), \ + "Output port name is not unique: name=\"%s\", %![comp-]c", name, comp); + typedef void (*bt_component_destroy_listener_func)( struct bt_component *class, void *data); @@ -75,7 +68,7 @@ struct bt_component { static inline struct bt_graph *bt_component_borrow_graph(struct bt_component *comp) { - BT_ASSERT(comp); + BT_ASSERT_DBG(comp); return (void *) bt_object_borrow_parent(&comp->base); } @@ -126,6 +119,9 @@ enum bt_self_component_add_port_status bt_component_add_output_port( struct bt_component *component, const char *name, void *user_data, struct bt_port **port); +BT_HIDDEN +bool bt_component_port_name_is_unique(GPtrArray *ports, const char *name); + BT_HIDDEN void bt_component_remove_port(struct bt_component *component, struct bt_port *port);