Component creation
[deliverable/babeltrace.git] / include / babeltrace / plugin / component-factory.h
index ded452f1430f487194a6c9ee89d5519f16a83cd5..f1599f28e9c8a62a11fad806f673c5b9fd537649 100644 (file)
@@ -30,6 +30,7 @@
 #include <babeltrace/plugin/sink.h>
 #include <babeltrace/plugin/filter.h>
 #include <babeltrace/plugin/plugin-system.h>
+#include <babeltrace/values.h>
 
 #ifdef __cplusplus
 extern "C" {
@@ -40,30 +41,28 @@ extern "C" {
  */
 enum bt_component_factory_status {
        /** General error. */
-       BT_COMPONENT_FACTORY_STATUS_ERROR =     -128,
+       BT_COMPONENT_FACTORY_STATUS_ERROR =             -128,
+
+       /** Invalid plugin. */
+       BT_COMPONENT_FACTORY_STATUS_INVAL_PLUGIN =      -6,
 
        /** Invalid arguments. */
-       /* -22 for compatibility with -EINVAL */
-       BT_COMPONENT_FACTORY_STATUS_INVAL =     -22,
+       BT_COMPONENT_FACTORY_STATUS_INVAL =             -5,
 
        /** Memory allocation failure. */
-       /* -12 for compatibility with -ENOMEM */
-       BT_COMPONENT_FACTORY_STATUS_NOMEM =     -12,
+       BT_COMPONENT_FACTORY_STATUS_NOMEM =             -4,
 
        /** I/O error. */
-       /* -5 for compatibility with -EIO */
-       BT_COMPONENT_FACTORY_STATUS_IO =        -5,
+       BT_COMPONENT_FACTORY_STATUS_IO =                -3,
 
        /** No such file or directory. */
-       /* -2 for compatibility with -ENOENT */
-       BT_COMPONENT_FACTORY_STATUS_NOENT =     -2,
+       BT_COMPONENT_FACTORY_STATUS_NOENT =             -2,
 
        /** Operation not permitted. */
-       /* -1 for compatibility with -EPERM */
-       BT_COMPONENT_FACTORY_STATUS_PERM =      -1,
+       BT_COMPONENT_FACTORY_STATUS_PERM =              -1,
 
        /** No error, okay. */
-       BT_COMPONENT_FACTORY_STATUS_OK =        0,
+       BT_COMPONENT_FACTORY_STATUS_OK =                0,
 };
 
 struct bt_component_factory;
@@ -73,8 +72,42 @@ struct bt_component_factory;
  *
  * @returns    An instance of component factory
  */
-extern
-struct bt_component_factory *bt_component_factory_create(void);
+extern struct bt_component_factory *bt_component_factory_create(void);
+
+/**
+ * Get the number of component classes registered to the component factory.
+ *
+ * @param factory      A component factory instance
+ * @returns            The number of component classes registered to the
+ *                     component factory, or a negative value on error.
+ */
+extern int bt_component_factory_get_component_class_count(
+               struct bt_component_factory *factory);
+
+/**
+ * Get component class at index.
+ *
+ * @param factory      A component factory instance
+ * @param index                Index of the component class to return
+ * @returns            A component class instance, NULL on error.
+ */
+extern struct bt_component_class *bt_component_factory_get_component_class_index(
+               struct bt_component_factory *factory, int index);
+
+/**
+ * Look-up component class.
+ *
+ * @param factory              A component factory instance
+ * @param plugin_name          Name of the plug-in which registered the
+ *                             component class
+ * @param type                 Component type (@see #bt_component_type)
+ * @param component_name       Component name
+ * @returns                    A component class instance, NULL on error.
+ */
+extern struct bt_component_class *bt_component_factory_get_component_class(
+               struct bt_component_factory *factory,
+               const char *plugin_name, enum bt_component_type type,
+               const char *component_name);
 
 /**
  * Recursively load and register Babeltrace plugins under a given path.
@@ -86,23 +119,18 @@ struct bt_component_factory *bt_component_factory_create(void);
  * @param path         A path to a file or directory
  * @returns            One of #bt_component_factory_status values
  */
-extern
-enum bt_component_factory_status bt_component_factory_load(
+extern enum bt_component_factory_status bt_component_factory_load(
                struct bt_component_factory *factory, const char *path);
 
-extern
-enum bt_component_factory_status
+extern enum bt_component_factory_status
 bt_component_factory_register_source_component_class(
-       struct bt_component_factory *factory, const char *name,
-       bt_component_source_init_cb init);
-
-extern
-enum bt_component_factory_status bt_component_factory_register_sink_component_class(
-       struct bt_component_factory *factory, const char *name,
-       bt_component_sink_init_cb init);
+               struct bt_component_factory *factory, const char *name,
+               bt_component_init_cb init);
 
-extern
-void bt_component_factory_destroy(struct bt_component_factory *factory);
+extern enum bt_component_factory_status
+bt_component_factory_register_sink_component_class(
+               struct bt_component_factory *factory, const char *name,
+               bt_component_init_cb init);
 
 #ifdef __cplusplus
 }
This page took 0.02567 seconds and 5 git commands to generate.