#include <libxml/xpath.h>
+#include "commons.h"
#include "instance.h"
#ifdef G_OS_WIN32
typedef struct
{
- gpointer none;
+ xmlXPathContext *xpcontext;
+ GHashTable *ht_nodes;
+ GNode *nodes_history;
} ZakGFlowInstancePrivate;
G_DEFINE_TYPE_WITH_PRIVATE (ZakGFlowInstance, zak_gflow_instance, G_TYPE_OBJECT)
{
ZakGFlowInstancePrivate *priv = zak_gflow_instance_get_instance_private (zak_gflow_instance);
+ priv->nodes_history = g_node_new (NULL);
}
/*+
* zak_gflow_instance_new:
+ * @ht_nodes:
+ * @node_id:
*
*/
ZakGFlowInstance
-*zak_gflow_instance_new (void)
+*zak_gflow_instance_new (xmlXPathContext *xpcontext, GHashTable *ht_nodes, const gchar *node_id)
{
ZakGFlowInstance *instance;
+ ZakGFlowInstancePrivate *priv;
+
+ xmlNode *cur;
+ GNode *cur_node;
+
+ xmlNodeSet *xnodeset;
+
+ g_return_val_if_fail (xpcontext != NULL, NULL);
+ g_return_val_if_fail (ht_nodes != NULL, NULL);
+ g_return_val_if_fail (node_id != NULL, NULL);
instance = ZAK_GFLOW_INSTANCE (g_object_new (zak_gflow_instance_get_type (), NULL));
+ priv = zak_gflow_instance_get_instance_private (instance);
+
+ priv->xpcontext = xpcontext;
+ priv->ht_nodes = g_hash_table_ref (ht_nodes);
+
+ cur = g_hash_table_lookup (priv->ht_nodes, node_id);
+ if (cur == NULL)
+ {
+ g_warning ("No first/start node found/setted.");
+ }
+ else
+ {
+ cur_node = g_node_insert_data (priv->nodes_history, -1, cur);
+ if (xmlStrcmp (cur->name, (const xmlChar *)"startEvent") == 0)
+ {
+ g_message ("%s: %s", cur->name, (gchar *)xmlGetProp (cur, (const xmlChar *)"name"));
+
+ xnodeset = zak_gflow_commons_xml_search (priv->xpcontext, cur, (const xmlChar *)"child::bpmn:outgoing");
+ if (xnodeset != NULL
+ && xnodeset->nodeNr > 0)
+ {
+ cur = g_hash_table_lookup (priv->ht_nodes, xmlNodeGetContent (xnodeset->nodeTab[0]));
+ if (cur != NULL)
+ {
+ cur_node = g_node_insert_data (cur_node, -1, cur);
+ g_message ("\tnext: %s %s", cur->name, (gchar *)xmlGetProp (cur, (const xmlChar *)"id"));
+ }
+ else
+ {
+ g_message ("\tnext: no next found");
+ }
+ }
+ }
+ }
+
return instance;
}
#include <glib/gi18n-lib.h>
#include <gmodule.h>
+#include <glib.h>
#include <libxml/xpath.h>
#include <libxml/xpathInternals.h>
gchar *expr;
+ GHashTable *ht_nodes;
+
+ xmlNode *cur;
+
instance = NULL;
priv = zak_gflow_model_get_instance_private (model);
if (xnodeset != NULL
&& xnodeset->nodeNr > 0)
{
- instance = zak_gflow_instance_new ();
+ /* creation of an hash table with all nodes */
+ ht_nodes = g_hash_table_new (g_str_hash, g_str_equal);
+
+ cur = xnodeset->nodeTab[0]->children;
+ while (cur != NULL)
+ {
+ xmlChar *prop;
+
+ prop = xmlGetProp (cur, (const xmlChar *)"id");
+ if (prop != NULL)
+ {
+ g_hash_table_insert (ht_nodes, (gpointer)g_strdup ((gchar *)prop), (gpointer)cur);
+ xmlFree (prop);
+ }
+
+ cur = cur->next;
+ }
+
+ /* find start node */
+ xnodeset = zak_gflow_commons_xml_search (priv->xpcontext, xnodeset->nodeTab[0], (const xmlChar *)"child::bpmn:startEvent");
+ if (xnodeset != NULL
+ && xnodeset->nodeNr > 0)
+ {
+ instance = zak_gflow_instance_new (priv->xpcontext, ht_nodes, (const gchar *)xmlGetProp (xnodeset->nodeTab[0], (const xmlChar *)"id"));
+ }
+
+ g_hash_table_unref (ht_nodes);
}
else
{
g_warning ("No process with id <%s>.", model_id);
}
- g_free (expr);
-
return instance;
}