Implement source plugin base
[babeltrace.git] / include / babeltrace / plugin / plugin-internal.h
index 2a60ea1292edb6fbefc59618843108e29e42b1b6..2214dc96959f7ad5b70a80c2fff8f1c5f7d38fbb 100644 (file)
@@ -27,7 +27,9 @@
  * SOFTWARE.
  */
 
-#include <stdint.h>
+#include <babeltrace/babeltrace-internal.h>
+#include <babeltrace/ctf-writer/ref-internal.h>
+#include <glib.h>
 
 #ifdef __cplusplus
 extern "C" {
@@ -36,14 +38,23 @@ extern "C" {
 struct bt_notification;
 
 struct bt_plugin {
-       const char * name;
+       struct bt_ctf_ref ref_count;
+       GString *name;
        enum bt_plugin_type type;
+       /** No ownership taken */
+       FILE *error_stream;
 
-       /* Plug-in specific callbacks */
+       void *user_data;
+       bt_plugin_destroy_cb user_data_destroy;
        bt_plugin_destroy_cb destroy;
-       bt_plugin_set_error_stream_cb set_error_stream;
 };
 
+BT_HIDDEN
+enum bt_plugin_status bt_plugin_init(struct bt_plugin *plugin, const char *name,
+               void *user_data,bt_plugin_destroy_func destroy_func,
+               enum bt_plugin_type plugin_type,
+               bt_plugin_destroy_func plugin_destroy);
+
 #ifdef __cplusplus
 }
 #endif
This page took 0.023333 seconds and 4 git commands to generate.