Add support for statically-built plug-ins
[babeltrace.git] / include / babeltrace / plugin / plugin-internal.h
index 96aa692a72da7dfea0ddab8f586f3974c5e468fb..b33eb2e37dd5fb5eb0cc6d92fc0348ed995373ac 100644 (file)
@@ -1,5 +1,5 @@
 #ifndef BABELTRACE_PLUGIN_INTERNAL_H
-#define BABELTRACE_PLUGIN__INTERNAL_H
+#define BABELTRACE_PLUGIN_INTERNAL_H
 
 /*
  * BabelTrace - Plug-in Internal
@@ -30,7 +30,8 @@
 #include <babeltrace/babeltrace-internal.h>
 #include <babeltrace/ref-internal.h>
 #include <babeltrace/plugin/component.h>
-#include <babeltrace/plugin/plugin.h>
+#include <babeltrace/plugin/plugin-system.h>
+#include <babeltrace/object-internal.h>
 #include <gmodule.h>
 
 /**
  * reference to their plugin.
  *
  * This ensures that a plugin's library is not closed while it is being used
- * even if the bt_component_factory which created its components is destroyed.
+ * even if the bt_component_factory, which created its components, is destroyed.
  */
 struct bt_plugin {
-       struct bt_ref ref;
+       struct bt_object base;
        const char *name;
        const char *author;
        const char *license;
-        bt_plugin_init_func init;
-       bt_plugin_exit_func exit;
+       const char *description;
+       GString *path;
+       bt_plugin_register_func _register;
        GModule *module;
 };
 
 BT_HIDDEN
-struct bt_plugin *bt_plugin_create(GModule *module);
+struct bt_plugin *bt_plugin_create_from_module(GModule *module, const char *path);
 
 BT_HIDDEN
-enum bt_component_status bt_plugin_register_component_classes(
-               struct bt_plugin *plugin, struct bt_component_factory *factory);
-
-BT_HIDDEN
-void bt_plugin_get(struct bt_plugin *plugin);
+struct bt_plugin *bt_plugin_create_from_static(size_t i);
 
 BT_HIDDEN
-void bt_plugin_put(struct bt_plugin *plugin);
+enum bt_component_status bt_plugin_register_component_classes(
+               struct bt_plugin *plugin, struct bt_component_factory *factory);
 
-#endif /* BABELTRACE_PLUGIN_COMPONENT_CLASS_INTERNAL_H */
+#endif /* BABELTRACE_PLUGIN_INTERNAL_H */
This page took 0.024518 seconds and 4 git commands to generate.