Replace assert() -> BT_ASSERT() and some preconditions with BT_ASSERT_PRE()
[babeltrace.git] / include / babeltrace / graph / component-internal.h
index fe55a601ff3f6678b6b211d155a32aa02e7abc92..540faf4c5d5333ce79a1d7a535aee43dab815368 100644 (file)
@@ -32,6 +32,8 @@
 #include <babeltrace/graph/component-class-internal.h>
 #include <babeltrace/graph/port-internal.h>
 #include <babeltrace/object-internal.h>
+#include <babeltrace/types.h>
+#include <babeltrace/assert-internal.h>
 #include <glib.h>
 #include <stdio.h>
 
@@ -57,22 +59,18 @@ 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;
 
        /* Array of struct bt_component_destroy_listener */
        GArray *destroy_listeners;
+
+       bool initialized;
 };
 
 static inline
-struct bt_component *bt_component_from_private(
+struct bt_component *bt_component_borrow_from_private(
                struct bt_private_component *private_component)
 {
        return (void *) private_component;
@@ -85,6 +83,18 @@ struct bt_private_component *bt_private_component_from_component(
        return (void *) component;
 }
 
+static inline
+struct bt_graph *bt_component_borrow_graph(struct bt_component *comp)
+{
+       BT_ASSERT(comp);
+       return (void *) comp->base.parent;
+}
+
+BT_HIDDEN
+enum bt_component_status bt_component_create(
+               struct bt_component_class *component_class,
+               const char *name, struct bt_component **component);
+
 BT_HIDDEN
 enum bt_component_status bt_component_accept_port_connection(
                struct bt_component *component, struct bt_port *self_port,
@@ -146,4 +156,33 @@ BT_HIDDEN
 void bt_component_remove_destroy_listener(struct bt_component *component,
                bt_component_destroy_listener_func func, void *data);
 
+static inline
+const char *bt_component_status_string(enum bt_component_status status)
+{
+       switch (status) {
+       case BT_COMPONENT_STATUS_OK:
+               return "BT_COMPONENT_STATUS_OK";
+       case BT_COMPONENT_STATUS_END:
+               return "BT_COMPONENT_STATUS_END";
+       case BT_COMPONENT_STATUS_AGAIN:
+               return "BT_COMPONENT_STATUS_AGAIN";
+       case BT_COMPONENT_STATUS_REFUSE_PORT_CONNECTION:
+               return "BT_COMPONENT_STATUS_REFUSE_PORT_CONNECTION";
+       case BT_COMPONENT_STATUS_ERROR:
+               return "BT_COMPONENT_STATUS_ERROR";
+       case BT_COMPONENT_STATUS_UNSUPPORTED:
+               return "BT_COMPONENT_STATUS_UNSUPPORTED";
+       case BT_COMPONENT_STATUS_INVALID:
+               return "BT_COMPONENT_STATUS_INVALID";
+       case BT_COMPONENT_STATUS_NOMEM:
+               return "BT_COMPONENT_STATUS_NOMEM";
+       case BT_COMPONENT_STATUS_NOT_FOUND:
+               return "BT_COMPONENT_STATUS_NOT_FOUND";
+       case BT_COMPONENT_STATUS_GRAPH_IS_CANCELED:
+               return "BT_COMPONENT_STATUS_GRAPH_IS_CANCELED";
+       default:
+               return "(unknown)";
+       }
+}
+
 #endif /* BABELTRACE_COMPONENT_COMPONENT_INTERNAL_H */
This page took 0.035858 seconds and 4 git commands to generate.