Add bt_graph_add_component(), make bt_component_create() internal
[babeltrace.git] / include / babeltrace / graph / component-internal.h
index eaa77339b13deaf263474a03fd636056b8d6a6cb..35a353a1ba7be28abc8974c05535e801a9a3a11a 100644 (file)
@@ -58,18 +58,14 @@ struct bt_component {
        /* User-defined data */
        void *user_data;
 
-       /*
-        * Used to protect operations which may only be used during
-        * a component's initialization.
-        */
-       bt_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
@@ -86,6 +82,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)
+{
+       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,
@@ -147,4 +155,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.026257 seconds and 4 git commands to generate.