diff mbox series

[v3,3/3] kernel-shark-qt: Add an example showing how to import/export config. data

Message ID 20180816150729.4680-3-y.karadz@gmail.com (mailing list archive)
State Accepted
Headers show
Series [v3,1/3] kernel-shark-qt: Add Json-C as a third party dependency. | expand

Commit Message

Yordan Karadzhov Aug. 16, 2018, 3:07 p.m. UTC
This patch introduces a basic example, showing how to use the
C API of KernelShark to import/export configuration data.

Signed-off-by: Yordan Karadzhov (VMware) <y.karadz@gmail.com>
---
 kernel-shark-qt/examples/CMakeLists.txt |  4 ++
 kernel-shark-qt/examples/configio.c     | 65 +++++++++++++++++++++++++
 2 files changed, 69 insertions(+)
 create mode 100644 kernel-shark-qt/examples/configio.c
diff mbox series

Patch

diff --git a/kernel-shark-qt/examples/CMakeLists.txt b/kernel-shark-qt/examples/CMakeLists.txt
index 6906eba..a3745fa 100644
--- a/kernel-shark-qt/examples/CMakeLists.txt
+++ b/kernel-shark-qt/examples/CMakeLists.txt
@@ -11,3 +11,7 @@  target_link_libraries(dfilter   kshark)
 message(STATUS "datahisto")
 add_executable(dhisto          datahisto.c)
 target_link_libraries(dhisto   kshark)
+
+message(STATUS "confogio")
+add_executable(confio          configio.c)
+target_link_libraries(confio   kshark)
diff --git a/kernel-shark-qt/examples/configio.c b/kernel-shark-qt/examples/configio.c
new file mode 100644
index 0000000..3b1928f
--- /dev/null
+++ b/kernel-shark-qt/examples/configio.c
@@ -0,0 +1,65 @@ 
+#include <stdio.h>
+#include <stdlib.h>
+
+#include "libkshark.h"
+
+int main(int argc, char **argv)
+{
+	struct kshark_config_doc *conf, *filter, *hello;
+	struct kshark_context *kshark_ctx;
+	int *ids, i;
+
+	/* Create a new kshark session. */
+	kshark_ctx = NULL;
+	if (!kshark_instance(&kshark_ctx))
+		return 1;
+
+	if (argc == 1) {
+		tracecmd_filter_id_add(kshark_ctx->show_task_filter, 314);
+		tracecmd_filter_id_add(kshark_ctx->show_task_filter, 42);
+
+		/* Create a new Confog. doc. */
+		conf = kshark_config_new("foo.bar.config", KS_CONFIG_JSON);
+
+		/* Add filter's info. */
+		filter = kshark_export_all_filters(kshark_ctx, KS_CONFIG_JSON);
+		kshark_config_doc_add(conf, "Filters" ,filter);
+
+		/* Add "Hello Kernel" message. */
+		hello = kshark_string_config_alloc();
+		hello->conf_doc = "Hello Kernel";
+		kshark_config_doc_add(conf, "Message" ,hello);
+
+		/* Save to file. */
+		kshark_save_config_file("conf.json", conf);
+	} else {
+		/* Open a Config. file. */
+		conf = kshark_open_config_file(argv[1], "foo.bar.config");
+
+		/* Retrieve the filter's info. */
+		filter = kshark_config_alloc(KS_CONFIG_JSON);
+		if (kshark_config_doc_get(conf, "Filters" ,filter)) {
+			kshark_import_all_filters(kshark_ctx, filter);
+
+			/* Get the array of Ids to be fitered. */
+			ids = tracecmd_filter_ids(kshark_ctx->show_task_filter);
+			for (i = 0; i < kshark_ctx->show_task_filter->count; ++i)
+				printf("pid: %i\n", ids[i]);
+		}
+
+		/* Retrieve the message. */
+		hello = kshark_string_config_alloc();
+		if (kshark_config_doc_get(conf, "Message" ,hello))
+			puts((char *) hello->conf_doc);
+
+		free(filter);
+		free(hello);
+		free(ids);
+	}
+
+	kshark_free_config_doc(conf);
+
+	kshark_free(kshark_ctx);
+
+	return 0;
+}