Plug-in system update
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Wed, 13 May 2015 20:01:07 +0000 (16:01 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Sat, 27 May 2017 16:54:30 +0000 (12:54 -0400)
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
include/babeltrace/plugin/plugin-internal.h
include/babeltrace/plugin/plugin-lib.h [new file with mode: 0644]
include/babeltrace/plugin/plugin.h
include/babeltrace/plugin/source.h

index d6bbbd3f766e7e9a59e172086c8a22dffc96afe2..2a60ea1292edb6fbefc59618843108e29e42b1b6 100644 (file)
@@ -38,6 +38,10 @@ struct bt_notification;
 struct bt_plugin {
        const char * name;
        enum bt_plugin_type type;
+
+       /* Plug-in specific callbacks */
+       bt_plugin_destroy_cb destroy;
+       bt_plugin_set_error_stream_cb set_error_stream;
 };
 
 #ifdef __cplusplus
diff --git a/include/babeltrace/plugin/plugin-lib.h b/include/babeltrace/plugin/plugin-lib.h
new file mode 100644 (file)
index 0000000..8bafd26
--- /dev/null
@@ -0,0 +1,75 @@
+#ifndef BABELTRACE_PLUGIN_LIB_H
+#define BABELTRACE_PLUGIN_LIB_H
+
+/*
+ * BabelTrace - Base interface of a Babeltrace Plug-in Library
+ *
+ * Copyright 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
+ *
+ * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include <babeltrace/objects.h>
+#include <stdint.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+struct bt_plugin;
+struct bt_notification;
+
+enum bt_plugin_type {
+       BT_PLUGIN_TYPE_UNKNOWN = -1,
+       /* A source plug-in is a notification generator. */
+       BT_PLUGIN_TYPE_SOURCE = 0,
+       /* A sink plug-in handles incoming notifications. */
+       BT_PLUGIN_TYPE_SINK = 1,
+       /* A filter plug-in implements both SOURCE and SINK interfaces. */
+       BT_PLUGIN_TYPE_FILTER = 2,
+};
+
+/**
+ * Plug-in discovery functions.
+ *
+ * The Babeltrace plug-in architecture mandates that a given plug-in shared
+ * object only define one plug-in. These functions are used to query a plug-in
+ * shared object about its attributes.
+ *
+ * The functions marked as mandatory MUST be exported by the shared object
+ * to be considered a valid plug-in.
+ */
+enum bt_plugin_type bt_plugin_lib_get_type(void);
+const char *bt_plugin_lib_get_format_name(void);
+
+/**
+ * Create a plug-in instance configured with the provided parameters.
+ *
+ * @param params       Map object of configuration parameters
+ * @returns            An instance of the plug-in
+ */
+struct bt_plugin *bt_plugin_lib_create(struct bt_object *params);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* BABELTRACE_PLUGIN_H */
index a8aada4eb3eadf8884437154bd0ee116e192db7c..1c3c36d0ac734b5644735b16ccd90b9074a4fed6 100644 (file)
@@ -2,7 +2,7 @@
 #define BABELTRACE_PLUGIN_H
 
 /*
- * BabelTrace - Plug-in
+ * BabelTrace - Babeltrace Plug-in Interface
  *
  * Copyright 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
  *
  * SOFTWARE.
  */
 
-#include <stdint.h>
-
 #ifdef __cplusplus
 extern "C" {
 #endif
 
-struct bt_plugin;
-struct bt_notification;
-
-enum bt_plugin_type {
-       BT_PLUGIN_TYPE_UNKNOWN = -1,
-       /* A source plug-in is a notification generator. */
-       BT_PLUGIN_TYPE_SOURCE = 0,
-       /* A sink plug-in handles incoming notifications. */
-       BT_PLUGIN_TYPE_SINK = 1,
-       /* A filter plug-in implements both SOURCE and SINK interfaces. */
-       BT_PLUGIN_TYPE_FILTER = 2,
-};
-
-typedef void (*bt_plugin_destroy_func)(struct bt_plugin *);
-
-/**
- * Plug-in discovery functions.
- *
- * The Babeltrace plug-in architecture mandates that a given plug-in shared
- * object only define one plug-in. These functions are used to query a about
- * shared object about its attributes.
- *
- * The functions marked as mandatory MUST be exported by the shared object
- * to be considered a valid plug-in.
- */
-/* Plug-in discovery functions... find a better name */
-enum bt_plugin_type bt_plugin_lib_get_type(void);
-const char *bt_plugin_lib_get_format_name(void);
 
-/* TODO: document mandatory fields and their expected types */
-struct bt_plugin *bt_plugin_create(struct bt_ctf_field *params);
-void *bt_plugin_get_user_data(struct bt_plugin *plugin);
 int bt_plugin_set_error_stream(struct bt_plugin *plugin, FILE *error_stream);
 
 /* Refcounting */
@@ -75,4 +42,4 @@ void bt_plugin_put(struct bt_plugin *plugin);
 }
 #endif
 
-#endif /* BABELTRACE_PLUGIN_H */
+#endif /* BABELTRACE_PLUGIN_SYSTEM_H */
index ade5cc4e95246b4563674c12f55f4743eab42516..f5ff48a16195872b4300627b845f3ccc038d8290 100644 (file)
@@ -41,11 +41,6 @@ typedef struct bt_notification_iterator *(
 struct bt_notification_iterator *bt_plugin_source_get_iterator(
                struct bt_plugin *plugin);
 
-/* Plug-in initialization functions */
-struct bt_plugin *bt_plugin_source_create(const char *name, void *user_data,
-               bt_plugin_destroy_func destroy_func,
-               bt_plugin_source_iterator_create_func iterator_create_func);
-
 #ifdef __cplusplus
 }
 #endif
This page took 0.026973 seconds and 4 git commands to generate.