#include <string.h>
#include <libgdaex/libgdaex.h>
-#include <libpeas/peas.h>
#include "libconfi.h"
return confi;
}
+PeasPluginInfo
+*confi_get_plugin_info (Confi *confi)
+{
+ PeasPluginInfo *ppinfo;
+
+ ConfiPrivate *priv = CONFI_GET_PRIVATE (confi);
+
+ if (priv->pluggable == NULL)
+ {
+ g_warning ("Not initialized.");
+ ppinfo = NULL;
+ }
+ else
+ {
+ ppinfo = peas_extension_base_get_plugin_info ((PeasExtensionBase *)priv->pluggable);
+ }
+
+ return ppinfo;
+}
+
/**
* confi_get_configs_list:
* @cnc_string: the connection string to use to connect to database that
#include <glib-object.h>
+#include <libpeas/peas.h>
+
#include "commons.h"
#include "confipluggable.h"
Confi *confi_new (const gchar *cnc_string);
+PeasPluginInfo *confi_get_plugin_info (Confi *confi);
+
GList *confi_get_configs_list (const gchar *cnc_string,
const gchar *filter);
gpointer data)
{
ConfiKey *ck = (ConfiKey *)node->data;
- if (ck->id != 0)
- {
- g_printf ("%s%s%s\n", ck->path, strcmp (ck->path, "") == 0 ? "" : "/", ck->key);
- }
+ g_printf ("%s%s%s => %s\n", ck->path, g_strcmp0 (ck->path, "") == 0 ? "" : "/", ck->key, ck->value);
return FALSE;
}
{
PeasEngine *engine;
Confi *confi;
+ PeasPluginInfo *ppinfo;
GList *confis;
GNode *tree;
return 0;
}
+ ppinfo = confi_get_plugin_info (confi);
+ g_printf ("Plugin info\n");
+ g_printf ("Name: %s\n", peas_plugin_info_get_name (ppinfo));
+ g_printf ("Module dir: %s\n", peas_plugin_info_get_module_dir (ppinfo));
+ g_printf ("Module name: %s\n", peas_plugin_info_get_module_name (ppinfo));
+ g_printf ("\n");
+
gchar *val = confi_path_get_value (confi, "folder/key1/key1_2");
g_printf ("Value from key \"folder/key1/key1_2\"\n%s\n\n", val);
confi_path_set_value (confi, "folder/key1/key1_2", "new value programmatically setted");