return instance;
}
+static gboolean
+traverse_func (GNode *node,
+ gpointer data)
+{
+ GPtrArray *ar;
+ xmlNode *xnode;
+
+ ar = (GPtrArray *)data;
+
+ xnode = (xmlNode *)node->data;
+ g_ptr_array_add (ar, (gpointer)xmlGetProp (xnode, (const xmlChar *)"id"));
+
+ return FALSE;
+}
+
+/**
+ * zak_gflow_instance_get_current_node:
+ * @instance:
+ *
+ */
+GPtrArray
+*zak_gflow_instance_get_current_nodes (ZakGFlowInstance *instance)
+{
+ GPtrArray *ret;
+
+ ZakGFlowInstancePrivate *priv = zak_gflow_instance_get_instance_private (instance);
+
+ ret = g_ptr_array_new ();
+
+ g_node_traverse (g_node_get_root (priv->nodes_history), G_POST_ORDER, G_TRAVERSE_LEAVES, -1, traverse_func, (gpointer)ret);
+
+ return ret;
+}
+
/* PRIVATE */
static void
zak_gflow_instance_set_property (GObject *object,
ZakGFlowInstance *zak_gflow_instance_new (xmlXPathContext *xpcontext, GHashTable *ht_nodes, const gchar *node_id);
+GPtrArray *zak_gflow_instance_get_current_nodes (ZakGFlowInstance *instance);
+
G_END_DECLS
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+#include <glib/gstdio.h>
+
#include "model.h"
#include "instance.h"
{
ZakGFlowModel *model;
ZakGFlowInstance *instance;
+ GPtrArray *ar;
+
+ guint i;
model = zak_gflow_model_new_from_file (argv[1]);
if (model == NULL)
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));
+ }
}
return 0;