else if (xmlStrcmp (cur->name, (const xmlChar *)"task") == 0
|| xmlStrcmp (cur->name, (const xmlChar *)"userTask") == 0)
{
- g_message ("%s", cur->name);
+ g_message ("%s: %s", cur->name, (gchar *)xmlGetProp (cur, (const xmlChar *)"name"));
}
else
{
return ret;
}
+/**
+ * zak_gflow_instance_task_complete:
+ * @instance:
+ * @node_id:
+ *
+ */
+gboolean
+zak_gflow_instance_task_complete (ZakGFlowInstance *instance, const gchar *node_id)
+{
+ gboolean ret;
+
+ xmlNode *xnode;
+
+ GNode *node;
+
+ xmlNodeSet *xnodeset;
+
+ ZakGFlowInstancePrivate *priv = zak_gflow_instance_get_instance_private (instance);
+
+ ret = FALSE;
+
+ xnode = (xmlNode *)g_hash_table_lookup (priv->ht_nodes, node_id);
+ if (xnode != NULL)
+ {
+ node = g_node_find (priv->nodes_history,
+ G_POST_ORDER,
+ G_TRAVERSE_LEAVES,
+ xnode);
+ if (node != NULL)
+ {
+ /* move to next */
+ xnodeset = zak_gflow_commons_xml_search (priv->xpcontext, xnode, (const xmlChar *)"child::bpmn:outgoing");
+ if (xnodeset != NULL
+ && xnodeset->nodeNr > 0)
+ {
+ zak_gflow_instance_next (instance, (const gchar *)xmlNodeGetContent (xnodeset->nodeTab[0]), node);
+ }
+ }
+ else
+ {
+ g_warning ("The node <%s> isn't a waiting node", node_id);
+ }
+ }
+ else
+ {
+ g_warning ("Invalide node <%s>.", node_id);
+ }
+
+ return ret;
+}
+
/* PRIVATE */
static void
zak_gflow_instance_set_property (GObject *object,
else
{
instance = zak_gflow_model_start (model, argv[2]);
+
ar = zak_gflow_instance_get_current_nodes (instance);
+ for (i = 0; i < ar->len; i++)
+ {
+ g_printf ("Currente node: %s\n", (gchar *)g_ptr_array_index (ar, i));
+ }
+ /* wrong node_id */
+ zak_gflow_instance_task_complete (instance, "jon_doe");
+
+ /* not waiting node_id */
+ zak_gflow_instance_task_complete (instance, "StartEvent_1");
+
+ /* right node_id */
+ zak_gflow_instance_task_complete (instance, (gchar *)g_ptr_array_index (ar, 0));
+
+ ar = zak_gflow_instance_get_current_nodes (instance);
for (i = 0; i < ar->len; i++)
{
g_printf ("Currente node: %s\n", (gchar *)g_ptr_array_index (ar, i));