#include "form.h"
#include "formelement.h"
+#include "formelementfilter.h"
+#include "formelementvalidator.h"
#ifdef G_OS_WIN32
#include <windows.h>
typedef ZakFormElement *(* FormElementConstructorFunc) (void);
typedef gboolean (* FormElementXmlParsingFunc) (ZakFormElement *, xmlNodePtr);
+typedef ZakFormElementFilter *(* FormElementFilterConstructorFunc) (void);
+typedef gboolean (* FormElementFilterXmlParsingFunc) (ZakFormElementFilter *, xmlNodePtr);
+typedef ZakFormElementValidator *(* FormElementValidatorConstructorFunc) (void);
+typedef gboolean (* FormElementValidatorXmlParsingFunc) (ZakFormElementValidator *, xmlNodePtr);
static void zak_form_form_class_init (ZakFormFormClass *class);
static void zak_form_form_init (ZakFormForm *zak_form_form);
zak_form_form_load_modules (zak_form_form);
}
+static void
+zak_form_form_element_xml_parsing (ZakFormForm *zakform, ZakFormElement *element, xmlNode *xnode)
+{
+ ZakFormFormPrivate *priv;
+
+ gchar *type;
+ guint i;
+
+ ZakFormElementFilter *filter;
+ ZakFormElementValidator *validator;
+
+ FormElementFilterConstructorFunc filter_constructor;
+ FormElementFilterXmlParsingFunc filter_xml_parsing;
+ FormElementValidatorConstructorFunc validator_constructor;
+ FormElementValidatorXmlParsingFunc validator_xml_parsing;
+
+ priv = zak_form_form_get_instance_private (zakform);
+
+ xnode = xnode->children;
+ while (xnode)
+ {
+ if (xmlStrcmp (xnode->name, (const xmlChar *)"filter") == 0)
+ {
+ type = xmlGetProp (xnode, (const xmlChar *)"type");
+
+ /* for each module */
+ for (i = 0; i < priv->ar_modules->len; i++)
+ {
+ if (g_module_symbol ((GModule *)g_ptr_array_index (priv->ar_modules, i),
+ g_strconcat (type, "_new", NULL),
+ (gpointer *)&filter_constructor))
+ {
+ if (filter_constructor != NULL)
+ {
+ filter = filter_constructor ();
+ zak_form_element_add_filter (element, filter);
+
+ if (g_module_symbol ((GModule *)g_ptr_array_index (priv->ar_modules, i),
+ g_strconcat (type, "_xml_parsing", NULL),
+ (gpointer *)&filter_xml_parsing))
+ {
+ if (filter_xml_parsing != NULL)
+ {
+ filter_xml_parsing (filter, xnode);
+ }
+ }
+
+ break;
+ }
+ }
+ }
+ }
+ else if (xmlStrcmp (xnode->name, (const xmlChar *)"validator") == 0)
+ {
+ type = xmlGetProp (xnode, (const xmlChar *)"type");
+
+ /* for each module */
+ for (i = 0; i < priv->ar_modules->len; i++)
+ {
+ if (g_module_symbol ((GModule *)g_ptr_array_index (priv->ar_modules, i),
+ g_strconcat (type, "_new", NULL),
+ (gpointer *)&validator_constructor))
+ {
+ if (validator_constructor != NULL)
+ {
+ validator = validator_constructor ();
+ zak_form_element_add_validator (element, validator);
+
+ if (g_module_symbol ((GModule *)g_ptr_array_index (priv->ar_modules, i),
+ g_strconcat (type, "_xml_parsing", NULL),
+ (gpointer *)&validator_xml_parsing))
+ {
+ if (validator_xml_parsing != NULL)
+ {
+ validator_xml_parsing (validator, xnode);
+ }
+ }
+
+ break;
+ }
+ }
+ }
+ }
+
+ xnode = xnode->next;
+ }
+}
+
/**
* zak_form_form_load_from_xml:
* @zakform:
{
ZakFormFormPrivate *priv;
xmlNode *cur;
+ xmlNode *cur_clean;
gboolean ret;
if (element != NULL)
{
zak_form_form_add_element (zakform, element);
+
+ cur_clean = xmlCopyNode (cur, 1);
+ zak_form_form_element_xml_parsing (zakform, element, cur_clean);
+
if (g_module_symbol ((GModule *)g_ptr_array_index (priv->ar_modules, i),
g_strconcat (type, "_xml_parsing", NULL),
(gpointer *)&element_xml_parsing))
{
if (element_xml_parsing != NULL)
{
- element_xml_parsing (element, cur);
+ element_xml_parsing (element, cur_clean);
}
}
}
#endif
}
+ /* load myself as module (for filters and validators) */
+ module = g_module_open (NULL, G_MODULE_BIND_LAZY);
+ if (module == NULL)
+ {
+ g_warning (_("Unable to load module of myself"));
+ }
+ else
+ {
+ if (priv->ar_modules == NULL)
+ {
+ priv->ar_modules = g_ptr_array_new ();
+ }
+ g_ptr_array_add (priv->ar_modules, (gpointer)module);
+ }
+
/* for each file in MODULESDIR */
error = NULL;
dir = g_dir_open (modulesdir, 0, &error);
return zak_form_element_validator_regex;
}
+/**
+ * zak_form_element_validator_regex_xml_parsing:
+ * @validator:
+ * @xnode:
+ *
+ */
+gboolean
+zak_form_element_validator_regex_xml_parsing (ZakFormElementValidator *validator, xmlNode *xnode)
+{
+ ZakFormElementValidatorRegexPrivate *priv = ZAK_FORM_ELEMENT_VALIDATOR_REGEX_GET_PRIVATE (validator);
+
+ if (priv->regex != NULL)
+ {
+ g_free (priv->regex);
+ }
+ priv->regex = g_strdup ((gchar *)xmlNodeGetContent (xnode));
+ g_message ("regex: %s", priv->regex);
+
+ return TRUE;
+}
+
/* PRIVATE */
static void
zak_form_element_validator_regex_set_property (GObject *object,
ZakFormElementValidatorRegexPrivate *priv = ZAK_FORM_ELEMENT_VALIDATOR_REGEX_GET_PRIVATE (validator_regex);
+ if (priv->regex == NULL)
+ {
+ return TRUE;
+ }
+
error = NULL;
regex = g_regex_new (priv->regex, 0, 0, &error);
if (regex == NULL
}
ret = g_regex_match ((const GRegex *)regex, value, 0, NULL);
+ if (!ret)
+ {
+ g_warning ("Value «%s» not valid for regex «%s».", value, priv->regex);
+ }
return ret;
}