/*
- * Copyright (C) 2005-2014 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2005-2016 Andrea Zagli <azagli@libero.it>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
#include <string.h>
+#include <glib/gprintf.h>
+
#include <gtk/gtk.h>
#include <libgdaex/libgdaex.h>
#include <libxml/tree.h>
#include <libxml/xinclude.h>
#include <libxml/xpath.h>
-#include <libconfi.h>
+#include <libzakconfi/libzakconfi.h>
enum
{
fill_trFolders_Keys (GNode *node, GtkTreeIter parent)
{
GtkTreeIter child;
- ConfiKey *ck;
+ ZakConfiKey *ck;
if (node == NULL) return;
node = node->children;
while (node != NULL)
{
- ck = (ConfiKey *)node->data;
+ ck = (ZakConfiKey *)node->data;
gtk_tree_store_append (storeFolders, &child, &parent);
gtk_tree_store_set (storeFolders, &child,
{
gboolean ret = FALSE;
- GList *lstConfigs = confi_get_configs_list (cnc_string, filter);
+ GList *lstConfigs = zak_confi_get_configs_list (cnc_string, filter);
gtk_tree_store_clear (storeFolders);
if (lstConfigs != NULL)
{
GtkTreeIter iter;
- Confi *confi;
- GdaDataModel *dmKeys;
+ ZakConfi *confi;
gint id;
gchar *name;
gchar *description;
GNode *tree;
lstConfigs = g_list_first (lstConfigs);
- while (lstConfigs && IS_CONFI (lstConfigs->data))
+ while (lstConfigs && ZAK_IS_CONFI (lstConfigs->data))
{
- confi = (Confi *)lstConfigs->data;
+ confi = (ZakConfi *)lstConfigs->data;
g_object_get (G_OBJECT (confi),
"id_config", &id,
FOLDERS_COL_OBJPTR, confi,
-1);
- tree = confi_get_tree (confi);
+ tree = zak_confi_get_tree (confi);
if (tree != NULL)
{
fill_trFolders_Keys (tree, iter);
g_signal_connect (G_OBJECT (mnuitem), "activate",
G_CALLBACK (on_mnuKeysEdit_activate), NULL);
}
-
+
mnuitem = gtk_image_menu_item_new_from_stock (GTK_STOCK_DELETE, NULL);
gtk_menu_shell_append (GTK_MENU_SHELL (menu), mnuitem);
if (gtk_tree_path_get_depth (path) == 1)
G_CALLBACK (on_mnuKeysDelete_activate), NULL);
}
}
-
+
gtk_widget_show_all (menu);
-
+
gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL,
(event != NULL) ? event->button : 0,
gdk_event_get_time ((GdkEvent*)event));
}
static void
-save_key_to_xml (Confi *confi, xmlNodePtr xnodeParent, GNode *node)
+save_key_to_xml (ZakConfi *confi, xmlNodePtr xnodeParent, GNode *node)
{
xmlNodePtr xnodeChild;
- ConfiKey *ck;
+ ZakConfiKey *ck;
if (node == NULL) return;
node = node->children;
while (node != NULL)
{
- ck = (ConfiKey *)node->data;
+ ck = (ZakConfiKey *)node->data;
xnodeChild = xmlNewNode (NULL, (xmlChar *)"gconfi-key");
xmlAddChild (xnodeParent, xnodeChild);
}
static void
-save_configuration_to_xml (Confi *confi, xmlNodePtr xroot)
+save_configuration_to_xml (ZakConfi *confi, xmlNodePtr xroot)
{
xmlNodePtr xnode;
gchar *name;
xmlNewTextChild (xnode, NULL, (xmlChar *)"name", (xmlChar *)name);
xmlNewTextChild (xnode, NULL, (xmlChar *)"description", (xmlChar *)description);
- GNode *tree = confi_get_tree (confi);
+ GNode *tree = zak_confi_get_tree (confi);
if (tree != NULL)
{
save_key_to_xml (confi, xnode, tree);
}
static void
-create_key_from_xml (Confi *confi,
+create_key_from_xml (ZakConfi *confi,
const gchar *pathParent,
GtkTreeIter *iterParent,
xmlNode *xnode,
xmlXPathContextPtr xpcontext)
{
xmlXPathObjectPtr xpresult;
- ConfiKey *ck;
+ ZakConfiKey *ck;
xpcontext->node = xnode;
{
GtkTreeIter iter;
- ck = confi_add_key (confi, pathParent, (const gchar *)xmlNodeGetContent (xnodeset->nodeTab[0]));
+ ck = zak_confi_add_key (confi, pathParent, (const gchar *)xmlNodeGetContent (xnodeset->nodeTab[0]), NULL);
xpresult = xmlXPathEvalExpression ((const xmlChar *)"child::description", xpcontext);
if (!xmlXPathNodeSetIsEmpty (xpresult->nodesetval))
{
ck->description = g_strdup ((gchar *)xmlNodeGetContent (xnodeset->nodeTab[0]));
- confi_key_set_key (confi, ck);
+ zak_confi_key_set_key (confi, ck);
}
}
-
+
xpresult = xmlXPathEvalExpression ((const xmlChar *)"child::value", xpcontext);
if (!xmlXPathNodeSetIsEmpty (xpresult->nodesetval))
{
{
ck->value = g_strdup ((gchar *)xmlNodeGetContent (xnodeset->nodeTab[0]));
- confi_key_set_key (confi, ck);
+ zak_confi_key_set_key (confi, ck);
}
}
FOLDERS_COL_DESCRIPTION, ck->description,
FOLDERS_COL_OBJPTR, ck,
-1);
-
+
xpresult = xmlXPathEvalExpression ((const xmlChar *)"child::gconfi-key", xpcontext);
if (!xmlXPathNodeSetIsEmpty (xpresult->nodesetval))
{
create_config_from_xml (xmlNode *xnode, xmlXPathContextPtr xpcontext)
{
xmlXPathObjectPtr xpresult;
- Confi *confi;
+ ZakConfi *confi;
xpcontext->node = xnode;
xmlNodeSetPtr xnodeset = xpresult->nodesetval;
if (xnodeset->nodeNr == 1)
{
-
- confi = confi_new (cnc_string,
- (const gchar *)xmlNodeGetContent (xnodeset->nodeTab[0]), NULL, TRUE);
+
+ confi = zak_confi_new (cnc_string);
if (confi != NULL)
{
GtkTreeIter iter;
g_warning ("Error on xmlXIncludeProcess.\n");
return;
}
-
+
xmlXPathContextPtr xpcontext = xmlXPathNewContext (xdoc);
if (xpcontext != NULL)
{
xmlNode *xnode = xmlDocGetRootElement (xdoc);
if (xnode != NULL)
{
- if (strcmp (xnode->name, "gconfi") == 0)
+ if (g_strcmp0 ((gchar *)xnode->name, "gconfi") == 0)
{
xnode = xnode->children;
while (xnode != NULL)
{
create_config_from_xml (xnode, xpcontext);
}
-
+
xnode = xnode->next;
}
}
- else if (strcmp (xnode->name, "gconfi-configuration") == 0)
+ else if (g_strcmp0 ((gchar *)xnode->name, "gconfi-configuration") == 0)
{
create_config_from_xml (xnode, xpcontext);
}
- else if (strcmp (xnode->name, "gconfi-key") == 0)
+ else if (g_strcmp0 ((gchar *)xnode->name, "gconfi-key") == 0)
{
GtkTreeIter iter;
{
if (gtk_tree_path_get_depth (path) == 1)
{
- Confi *confi;
-
+ ZakConfi *confi;
+
gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iter,
FOLDERS_COL_OBJPTR, &confi,
-1);
if (gtk_tree_model_get_iter (GTK_TREE_MODEL (storeFolders), &iterConfi,
gtk_tree_path_new_from_indices (gtk_tree_path_get_indices (path)[0], -1)))
{
- Confi *confi;
- ConfiKey *ck;
+ ZakConfi *confi;
+ ZakConfiKey *ck;
gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iterConfi,
FOLDERS_COL_OBJPTR, &confi,
gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iter,
FOLDERS_COL_OBJPTR, &ck,
-1);
-
- if (IS_CONFI (confi))
+
+ if (ZAK_IS_CONFI (confi))
{
create_key_from_xml (confi, g_strconcat (ck->path, "/", ck->key, NULL), &iter, xnode, xpcontext);
}
if (gdaConn == NULL)
{
/* TO DO */
- g_fprintf(stderr,"error on first connection\n");
+ g_fprintf (stderr,"error on first connection\n");
}
else
{
" CONSTRAINT values_name_unique UNIQUE (id_configs, id_parent, %ckey%c)"
")",
chrquot, chrquot, chrquot, chrquot, chrquot, chrquot);
-
+
if (gdaex_execute (gdao, sql) == -1)
{
/* TO DO */
gtk_widget_set_sensitive (mnuDbRefresh, TRUE);
gtk_widget_set_sensitive (mnuConfigs, TRUE);
gtk_widget_set_sensitive (mnuKeys, TRUE);
-
+
gtk_statusbar_pop (GTK_STATUSBAR (stbar), 0);
gtk_statusbar_push (GTK_STATUSBAR (stbar), 0,
g_strconcat ("Connection string: ", cnc_string, NULL));
{
GtkWidget *txtName;
GtkWidget *txtvDescription;
- GtkWidget *fcbSchema;
GtkTextBuffer *buffer;
GtkTextIter iter1, iter2;
gchar *name;
gchar *description;
- Confi *confi;
+ ZakConfi *confi;
txtName = GTK_WIDGET (gtk_builder_get_object (glaMain, "txtName"));
txtvDescription = GTK_WIDGET (gtk_builder_get_object (glaMain, "txtvDescription"));
gtk_text_buffer_get_bounds (buffer, &iter1, &iter2);
description = gtk_text_buffer_get_text (buffer, &iter1, &iter2, FALSE);
- confi = confi_new (cnc_string,
- name,
- NULL, TRUE);
+ confi = zak_confi_new (cnc_string);
if (confi != NULL)
{
GtkTreeIter iter;
GtkTreePath *path = gtk_tree_model_get_path (GTK_TREE_MODEL (storeFolders), &iter);
if (path != NULL && gtk_tree_path_get_depth (path) == 1)
{
- Confi *confi;
+ ZakConfi *confi;
GError *error = NULL;
gtk_builder_add_objects_from_file (glaMain,
GtkTreePath *path = gtk_tree_model_get_path (GTK_TREE_MODEL (storeFolders), &iter);
if (path != NULL && gtk_tree_path_get_depth (path) == 1)
{
- Confi *confi;
-
+ ZakConfi *confi;
+
gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iter,
FOLDERS_COL_OBJPTR, &confi,
-1);
- if (IS_CONFI (confi))
+ if (ZAK_IS_CONFI (confi))
{
GtkWidget *diag = gtk_message_dialog_new (GTK_WINDOW (w),
GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
"Are you sure you want to delete the selected configuration from database?");
if (gtk_dialog_run (GTK_DIALOG (diag)) == GTK_RESPONSE_YES)
{
- if (confi_remove (confi))
+ if (zak_confi_remove (confi))
{
gtk_tree_store_remove (storeFolders, &iter);
}
}
-
+
gtk_widget_destroy (diag);
}
}
if (gtk_dialog_run (GTK_DIALOG (diag)) == GTK_RESPONSE_ACCEPT)
{
- Confi *confi;
+ ZakConfi *confi;
gchar *filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (diag));
GtkTreeIter iter;
gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iter,
FOLDERS_COL_OBJPTR, &confi,
-1);
- if (IS_CONFI (confi))
+ if (ZAK_IS_CONFI (confi))
{
xmlDocPtr xdoc;
xmlNodePtr xnode;
else
{
/* saving all configurations */
- GList *configs = confi_get_configs_list (cnc_string, filter);
+ GList *configs = zak_confi_get_configs_list (cnc_string, filter);
if (configs != NULL)
{
xmlDocPtr xdoc;
configs = g_list_first (configs);
while (configs != NULL)
{
- confi = (Confi *)configs->data;
+ confi = (ZakConfi *)configs->data;
save_configuration_to_xml (confi, xnode);
xmlSaveFile (filename, xdoc);
}
}
-
+
g_free (filename);
}
GtkTreePath *path = gtk_tree_model_get_path (GTK_TREE_MODEL (storeFolders), &iter);
if (path != NULL)
{
- Confi *confi;
- ConfiKey *ck;
+ ZakConfi *confi;
+ ZakConfiKey *ck;
GError *error = NULL;
gtk_builder_add_objects_from_file (glaMain,
GtkTextIter iter1, iter2;
GtkTreeIter parent = iter;
- gint id;
gchar *name = (gchar *)gtk_entry_get_text (GTK_ENTRY (txtName));
gchar *value = (gchar *)gtk_entry_get_text (GTK_ENTRY (txtValue));
gchar *description;
gtk_text_buffer_get_bounds (buffer, &iter1, &iter2);
description = gtk_text_buffer_get_text (buffer, &iter1, &iter2, FALSE);
- ck = confi_add_key (confi, keyPath, name);
+ ck = zak_confi_add_key (confi, keyPath, name, NULL);
if (ck != NULL)
{
ck->value = value;
ck->description = description;
- confi_key_set_key (confi, ck);
+ zak_confi_key_set_key (confi, ck);
gtk_tree_store_append (storeFolders, &iter, &parent);
gtk_tree_store_set (storeFolders, &iter,
GtkTreePath *path = gtk_tree_model_get_path (GTK_TREE_MODEL (storeFolders), &iter);
if (path != NULL && gtk_tree_path_get_depth (path) > 1)
{
- Confi *confi;
+ ZakConfi *confi;
GError *error = NULL;
gtk_builder_add_objects_from_file (glaMain,
GtkWidget *txtvDescription = GTK_WIDGET (gtk_builder_get_object (glaMain, "txtvDescription"));
GtkTextBuffer *buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (txtvDescription));
- ConfiKey *ck;
+ ZakConfiKey *ck;
GtkTreeIter iterConfi;
GtkTreeIter iterParent;
g_object_get (G_OBJECT (confi),
"name", &name,
NULL);
-
+
gtk_entry_set_text (GTK_ENTRY (txtConfig), name);
}
if (ck->id_parent > 0 && gtk_tree_model_iter_parent (GTK_TREE_MODEL (storeFolders), &iterParent, &iter))
{
- ConfiKey *ckParent;
+ ZakConfiKey *ckParent;
gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iterParent,
FOLDERS_COL_OBJPTR, &ckParent,
gtk_text_buffer_get_bounds (buffer, &iter1, &iter2);
ck->description = gtk_text_buffer_get_text (buffer, &iter1, &iter2, FALSE);
- confi_key_set_key (confi, ck);
+ zak_confi_key_set_key (confi, ck);
gtk_tree_store_set (storeFolders, &iter,
FOLDERS_COL_NAME, ck->key,
"Are you sure you want to delete the selected key from database?");
if (gtk_dialog_run (GTK_DIALOG (diag)) == GTK_RESPONSE_YES)
{
- Confi *confi;
+ ZakConfi *confi;
GtkTreeIter iterConfig;
gtk_tree_model_get_iter (GTK_TREE_MODEL (storeFolders), &iterConfig,
FOLDERS_COL_OBJPTR, &confi,
-1);
- if (IS_CONFI (confi))
+ if (ZAK_IS_CONFI (confi))
{
- ConfiKey *ck;
+ ZakConfiKey *ck;
gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &iter,
FOLDERS_COL_OBJPTR, &ck,
-1);
- if (confi_remove_path (confi, g_strconcat (ck->path, "/", ck->key, NULL)))
+ if (zak_confi_remove_path (confi, g_strconcat (ck->path, "/", ck->key, NULL)))
{
gtk_tree_store_remove (storeFolders, &iter);
}
}
}
-
+
gtk_widget_destroy (diag);
}
}
int
main (int argc, char **argv)
{
- GOptionEntry entries[] =
+ GOptionEntry entries[] =
{
{ "cnc_string", 'c', 0, G_OPTION_ARG_STRING, &cnc_string, "Connection string", NULL },
{ "filter", 'f', 0, G_OPTION_ARG_STRING, &filter, "Configurations filter", NULL },