]> saetta.ns0.it Git - libzakgflow/commitdiff
Added function ZakGFlowModel::list_processes.
authorAndrea Zagli <azagli@libero.it>
Sun, 13 Mar 2016 15:47:25 +0000 (16:47 +0100)
committerAndrea Zagli <azagli@libero.it>
Sun, 13 Mar 2016 15:47:25 +0000 (16:47 +0100)
Started parsing of xml definition.

.gitignore
src/commons.c
src/commons.h
src/model.c
src/model.h
tests/Makefile.am
tests/model.c [new file with mode: 0644]

index eb59166a5bf2c119d3e4d0640039a36275ea3cc0..235be29ee81edbb7f93344c21e00bebc4b140fae 100644 (file)
@@ -51,3 +51,5 @@ intltool-*
 Rules-quot
 *.exe
 *.csv
+*.bpmn
+tests/model
\ No newline at end of file
index 950371484fd0095f87d5244f2aa80efc900c2462..ef86469a54076e458cc71fd8ebd40a1d61bc3df3 100644 (file)
 #endif
 
 #include "commons.h"
+
+xmlNodeSet
+*zak_gflow_commons_xml_search (xmlXPathContext *xpcontext, xmlNode *xnode_start, const xmlChar *xpath_expr)
+{
+       xmlXPathObject *xpresult;
+       xmlNodeSet *xnodeset;
+
+       xpcontext->node = xnode_start;
+       xpresult = xmlXPathEvalExpression (xpath_expr, xpcontext);
+       if (xpresult != NULL
+               && !xmlXPathNodeSetIsEmpty (xpresult->nodesetval))
+               {
+                       xnodeset = xpresult->nodesetval;
+               }
+       else
+               {
+                       xnodeset = NULL;
+               }
+
+       return xnodeset;
+}
index 1c528109b6efd94b4ac27ff489015412ebf0799a..cfda9f57b46e78cbdc0ebdd6807b853157a1dcd0 100644 (file)
 
 #include <glib-object.h>
 
+#include <libxml/xpath.h>
+
 
 G_BEGIN_DECLS
 
 
+xmlNodeSet *zak_gflow_commons_xml_search (xmlXPathContext *xpcontext, xmlNode *xnode_start, const xmlChar *xpath_expr);
 
 
 G_END_DECLS
index e8cff4a39aca8800a50cfc2fe7542f56324d17ec..3e4cc493f0cf6a62b304f87477583f35c527ee96 100644 (file)
 #include <gmodule.h>
 
 #include <libxml/xpath.h>
-
-#include "model.h"
+#include <libxml/xpathInternals.h>
 
 #ifdef G_OS_WIN32
        #include <windows.h>
 #endif
 
+#include "commons.h"
+#include "model.h"
+
 static void zak_gflow_model_class_init (ZakGFlowModelClass *class);
 static void zak_gflow_model_init (ZakGFlowModel *zak_gflow_model);
 
@@ -48,6 +50,9 @@ static void zak_gflow_model_finalize (GObject *gobject);
 
 typedef struct
        {
+               xmlDoc *xdoc;
+               xmlNode *xroot;
+               xmlXPathContext *xpcontext;
        } ZakGFlowModelPrivate;
 
 G_DEFINE_TYPE_WITH_PRIVATE (ZakGFlowModel, zak_gflow_model, G_TYPE_OBJECT)
@@ -137,12 +142,54 @@ ZakGFlowModel
        ZakGFlowModel *model;
        ZakGFlowModelPrivate *priv;
 
+       xmlNode *root;
+
+       xmlNs *ns;
+       gchar *prefix;
+
        g_return_val_if_fail (xmldoc != NULL, NULL);
 
        model = ZAK_GFLOW_MODEL (g_object_new (zak_gflow_model_get_type (), NULL));
 
        priv = zak_gflow_model_get_instance_private (model);
 
+       root = xmlDocGetRootElement (xmldoc);
+       if (root == NULL
+               || xmlStrcmp (root->name, (const xmlChar *)"definitions"))
+               {
+                       g_warning ("No valid root element.");
+               }
+       else
+               {
+                       priv->xdoc = xmldoc;
+                       priv->xroot = root;
+
+                       /* registering namespaces */
+                       priv->xpcontext = xmlXPathNewContext (priv->xdoc);
+
+                       ns = priv->xroot->nsDef;
+                       while (ns)
+                               {
+                                       if (ns->prefix == NULL)
+                                               {
+                                                       prefix = g_strdup ("bpmn");
+                                               }
+                                       else
+                                               {
+                                                       prefix = g_strdup ((gchar *)ns->prefix);
+                                               }
+
+                                       if (xmlXPathRegisterNs (priv->xpcontext, (const xmlChar *)prefix, ns->href) != 0)
+                                               {
+                                                       g_warning ("Error on registering namespace <%s>.", prefix);
+                                               }
+
+                                       g_free (prefix);
+
+                                       ns = ns->next;
+                               }
+               }
+
        return model;
 }
 
@@ -152,7 +199,7 @@ ZakGFlowModel
  *
  */
 ZakGFlowModel
-*zak_gflow_model_load_from_file (const gchar *filename)
+*zak_gflow_model_new_from_file (const gchar *filename)
 {
        ZakGFlowModel *model;
 
@@ -169,6 +216,39 @@ ZakGFlowModel
        return model;
 }
 
+/**
+ * zak_gflow_model_list_processes:
+ * @model:
+ *
+ */
+GPtrArray
+*zak_gflow_model_list_processes (ZakGFlowModel *model)
+{
+       GPtrArray *ar;
+       ZakGFlowModelPrivate *priv;
+
+       xmlNodeSet *xnodeset;
+
+       gint i;
+
+       ar = NULL;
+
+       priv = zak_gflow_model_get_instance_private (model);
+
+       xnodeset = zak_gflow_commons_xml_search (priv->xpcontext, priv->xroot, (const xmlChar *)"child::bpmn:process");
+       if (xnodeset != NULL
+               && xnodeset->nodeNr > 0)
+               {
+                       ar = g_ptr_array_new ();
+                       for (i = 0; i < xnodeset->nodeNr; i++)
+                               {
+                                       g_ptr_array_add (ar, g_strdup ((gchar *)xmlGetProp (xnodeset->nodeTab[i], (const xmlChar *)"id")));
+                               }
+               }
+
+       return ar;
+}
+
 /* PRIVATE */
 static void
 zak_gflow_model_set_property (GObject *object,
index 7bf009de1110fb61591871bd5ebb70c02318f3b3..a3c7af1072b609f783b2550c20383969cb24b646 100644 (file)
@@ -43,6 +43,8 @@ struct _ZakGFlowModelClass
 ZakGFlowModel *zak_gflow_model_new_from_xml (xmlDoc *xmldoc);
 ZakGFlowModel *zak_gflow_model_new_from_file (const gchar *filename);
 
+GPtrArray *zak_gflow_model_list_processes (ZakGFlowModel *model);
+
 ZakGFlowInstance *zak_gflow_model_start (ZakGFlowModel *model, const gchar *model_id);
 
 
index e1b5b2207723c8022045bf45bd3d280fdbe4aad1..431dda137aecabf7f1806629c7d7a8cad8a6f862 100644 (file)
@@ -8,4 +8,8 @@ LIBS = $(ZAKGFLOW_LIBS) \
 
 LDADD = $(top_builddir)/src/libzakgflow.la
 
-noinst_PROGRAMS =
+noinst_PROGRAMS = \
+                  model
+
+EXTRADIST = \
+            diagram.bpmn
diff --git a/tests/model.c b/tests/model.c
new file mode 100644 (file)
index 0000000..c87eca1
--- /dev/null
@@ -0,0 +1,52 @@
+/*
+ * Copyright (C) 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
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#include "model.h"
+
+int
+main (int argc, char *argv[])
+{
+       ZakGFlowModel *model;
+       GPtrArray *processes;
+       gint i;
+
+       model = zak_gflow_model_new_from_file (argv[1]);
+       if (model == NULL)
+               {
+                       g_warning ("No model loaded from xml file <%s>.", argv[1]);
+               }
+       else
+               {
+                       processes = zak_gflow_model_list_processes (model);
+                       if (processes != NULL
+                               && processes->len > 0)
+                               {
+                                       printf ("PROCESSES\n");
+                                       for (i = 0; i < processes->len; i++)
+                                               {
+                                                       printf (" - %s", (gchar *)g_ptr_array_index (processes, i));
+                                               }
+                               }
+                       else
+                               {
+                                       g_warning ("No processes in xml file.");
+                               }
+               }
+
+       return 0;
+}