Rename <babeltrace/component/...> -> <babeltrace/graph/...>
[babeltrace.git] / include / babeltrace / component / component-internal.h
diff --git a/include/babeltrace/component/component-internal.h b/include/babeltrace/component/component-internal.h
deleted file mode 100644 (file)
index 744fb0d..0000000
+++ /dev/null
@@ -1,127 +0,0 @@
-#ifndef BABELTRACE_COMPONENT_COMPONENT_INTERNAL_H
-#define BABELTRACE_COMPONENT_COMPONENT_INTERNAL_H
-
-/*
- * BabelTrace - Component internal
- *
- * Copyright 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
- *
- * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
- *
- * 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.
- */
-
-#include <babeltrace/babeltrace-internal.h>
-#include <babeltrace/component/component.h>
-#include <babeltrace/component/component-class-internal.h>
-#include <babeltrace/component/port-internal.h>
-#include <babeltrace/object-internal.h>
-#include <glib.h>
-#include <stdio.h>
-
-#define DEFAULT_INPUT_PORT_NAME                "default"
-#define DEFAULT_OUTPUT_PORT_NAME       "default"
-
-struct bt_component {
-       struct bt_object base;
-       struct bt_component_class *class;
-       GString *name;
-
-       /*
-        * Internal destroy function specific to a source, filter, or
-        * sink component object.
-        */
-       void (*destroy)(struct bt_component *);
-
-       /* User-defined data */
-       void *user_data;
-
-       /*
-        * Used to protect operations which may only be used during
-        * a component's initialization.
-        */
-       bool initializing;
-
-       /* Input and output ports (weak references) */
-       GPtrArray *input_ports;
-       GPtrArray *output_ports;
-};
-
-static inline
-struct bt_component *bt_component_from_private(
-               struct bt_private_component *private_component)
-{
-       return (void *) private_component;
-}
-
-static inline
-struct bt_private_component *bt_private_component_from_component(
-               struct bt_component *component)
-{
-       return (void *) component;
-}
-
-BT_HIDDEN
-enum bt_component_status bt_component_accept_port_connection(
-               struct bt_component *component, struct bt_port *self_port,
-               struct bt_port *other_port);
-
-BT_HIDDEN
-void bt_component_port_disconnected(struct bt_component *comp,
-               struct bt_port *port);
-
-BT_HIDDEN
-void bt_component_set_graph(struct bt_component *component,
-               struct bt_graph *graph);
-
-BT_HIDDEN
-uint64_t bt_component_get_input_port_count(struct bt_component *comp);
-
-BT_HIDDEN
-uint64_t bt_component_get_output_port_count(struct bt_component *comp);
-
-BT_HIDDEN
-struct bt_port *bt_component_get_input_port_at_index(struct bt_component *comp,
-               int index);
-
-BT_HIDDEN
-struct bt_port *bt_component_get_output_port_at_index(struct bt_component *comp,
-               int index);
-
-BT_HIDDEN
-struct bt_port *bt_component_get_input_port(struct bt_component *comp,
-               const char *name);
-
-BT_HIDDEN
-struct bt_port *bt_component_get_output_port(struct bt_component *comp,
-               const char *name);
-
-BT_HIDDEN
-struct bt_port *bt_component_add_input_port(
-               struct bt_component *component, const char *name);
-
-BT_HIDDEN
-struct bt_port *bt_component_add_output_port(
-               struct bt_component *component, const char *name);
-
-BT_HIDDEN
-enum bt_component_status bt_component_remove_port(
-               struct bt_component *component, struct bt_port *port);
-
-#endif /* BABELTRACE_COMPONENT_COMPONENT_INTERNAL_H */
This page took 0.026131 seconds and 4 git commands to generate.