*.exe
*.csv
*.bpmn
-tests/model
\ No newline at end of file
+tests/model
+tests/instance
\ No newline at end of file
typedef struct
{
+ gpointer none;
} ZakGFlowInstancePrivate;
G_DEFINE_TYPE_WITH_PRIVATE (ZakGFlowInstance, zak_gflow_instance, G_TYPE_OBJECT)
}
+/*+
+ * zak_gflow_instance_new:
+ *
+ */
+ZakGFlowInstance
+*zak_gflow_instance_new (void)
+{
+ ZakGFlowInstance *instance;
+
+ instance = ZAK_GFLOW_INSTANCE (g_object_new (zak_gflow_instance_get_type (), NULL));
+
+ return instance;
+}
+
/* PRIVATE */
static void
zak_gflow_instance_set_property (GObject *object,
};
+ZakGFlowInstance *zak_gflow_instance_new (void);
G_END_DECLS
return ar;
}
+/**
+ * zak_gflow_model_start:
+ * @model:
+ * @model_id:
+ *
+ */
+ZakGFlowInstance
+*zak_gflow_model_start (ZakGFlowModel *model, const gchar *model_id)
+{
+ ZakGFlowInstance *instance;
+
+ ZakGFlowModelPrivate *priv;
+
+ xmlNodeSet *xnodeset;
+
+ gchar *expr;
+
+ instance = NULL;
+
+ priv = zak_gflow_model_get_instance_private (model);
+
+ expr = g_strdup_printf ("child::bpmn:process[@id='%s']", model_id);
+ xnodeset = zak_gflow_commons_xml_search (priv->xpcontext, priv->xroot, (const xmlChar *)expr);
+ g_free (expr);
+ if (xnodeset != NULL
+ && xnodeset->nodeNr > 0)
+ {
+ instance = zak_gflow_instance_new ();
+ }
+ else
+ {
+ g_warning ("No process with id <%s>.", model_id);
+ }
+
+ g_free (expr);
+
+ return instance;
+}
+
/* PRIVATE */
static void
zak_gflow_model_set_property (GObject *object,
LDADD = $(top_builddir)/src/libzakgflow.la
noinst_PROGRAMS = \
- model
+ model \
+ instance
EXTRADIST = \
diagram.bpmn
--- /dev/null
+/*
+ * 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"
+#include "instance.h"
+
+int
+main (int argc, char *argv[])
+{
+ ZakGFlowModel *model;
+ ZakGFlowInstance *instance;
+
+ model = zak_gflow_model_new_from_file (argv[1]);
+ if (model == NULL)
+ {
+ g_warning ("No model loaded from xml file <%s>.", argv[1]);
+ }
+ else
+ {
+ instance = zak_gflow_model_start (model, argv[2]);
+ }
+
+ return 0;
+}