]> saetta.ns0.it Git - zakform/libzakform/commitdiff
Added ZakFormElementValidator::get_xml.
authorAndrea Zagli <azagli@libero.it>
Thu, 28 May 2020 06:46:42 +0000 (08:46 +0200)
committerAndrea Zagli <azagli@libero.it>
Thu, 28 May 2020 06:46:42 +0000 (08:46 +0200)
src/formelement.c
src/formelementvalidator.c
src/formelementvalidator.h
src/formelementvalidatordate.c
src/formelementvalidatorisnumber.c
src/formelementvalidatornotempty.c
src/formelementvalidatornumber.c
src/formelementvalidatorregex.c

index f806cc94115672647e1a8dc14747a500511c988b..538c71631d2cd609560800bdce473ec28ef07764 100644 (file)
@@ -1935,5 +1935,11 @@ xmlNode
                        xmlAddChild (xroot, xnode);
                }
 
+       for (i = 0; i < priv->pa_validators->len; i++)
+               {
+                       xnode = zak_form_element_validator_get_xml ((ZakFormElementValidator *)g_ptr_array_index (priv->pa_validators, i), version);
+                       xmlAddChild (xroot, xnode);
+               }
+
        return xroot;
 }
index 063b3b2ba7cd132e604d30dfd6b0c29faeaa51c8..ad7f6953f1facc3f7f66734376ac237a6e8fea5a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015-2017 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2020 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -161,6 +161,7 @@ zak_form_element_validator_set_id (ZakFormElementValidator *validator,
 {
        ZakFormElementValidatorPrivate *priv = zak_form_element_validator_get_instance_private (validator);
 
+       g_free (priv->id);
        if (id == NULL)
                {
                        priv->id = g_strdup ("");
@@ -242,6 +243,46 @@ zak_form_element_validator_set_enabled (ZakFormElementValidator *validator, gboo
        priv->enabled = enabled;
 }
 
+/**
+ * zak_form_element_validator_get_xml
+ * @validator:
+ * @version: not used.
+ *
+ * Returns: the xml for the filter.
+ */
+xmlNode
+*zak_form_element_validator_get_xml (ZakFormElementValidator *validator, const gchar *version)
+{
+       xmlNode *xnode;
+
+       xnode = xmlNewNode (NULL, (xmlChar *)"validator");
+
+       if (zak_form_element_validator_get_id (validator) != NULL
+           && g_strcmp0 (zak_form_element_validator_get_id (validator), "") != 0)
+               {
+                       xmlSetProp (xnode, (const xmlChar *)"id", (xmlChar *)zak_form_element_validator_get_id (validator));
+               }
+
+       if (!zak_form_element_validator_get_enabled (validator))
+               {
+                       xmlSetProp (xnode, (const xmlChar *)"disabled", (xmlChar *)"disabled");
+               }
+
+       if (zak_form_element_validator_get_message (validator) != NULL
+           && g_strcmp0 (zak_form_element_validator_get_message (validator), "") != 0
+           && g_strcmp0 (zak_form_element_validator_get_message (validator), _("Invalid value")) != 0)
+               {
+                       xmlSetProp (xnode, (const xmlChar *)"message", (xmlChar *)zak_form_element_validator_get_message (validator));
+               }
+
+       if (ZAK_FORM_ELEMENT_VALIDATOR_GET_CLASS (validator)->get_xml!= NULL)
+               {
+                       ZAK_FORM_ELEMENT_VALIDATOR_GET_CLASS (validator)->get_xml (validator, version, xnode);
+               }
+
+       return xnode;
+}
+
 /* PRIVATE */
 static void
 zak_form_element_validator_set_property (GObject *object,
index 4f9d9c534db120e5810e8c7c3a1ce71e810ff6ed..bff37c2b654828f12944b3f06eae20d812f2cdbf 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015-2017 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2020 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -36,6 +36,8 @@ struct _ZakFormElementValidatorClass
 
        gboolean (*xml_parsing) (ZakFormElementValidator *self, xmlNode *xnode);
        gboolean (*validate) (ZakFormElementValidator *self, const gchar *value);
+
+       void (*get_xml) (ZakFormElementValidator *self, const gchar *version, xmlNode *xnode);
 };
 
 gboolean zak_form_element_validator_xml_parsing (ZakFormElementValidator *self, xmlNode *xnode);
@@ -52,6 +54,8 @@ gchar *zak_form_element_validator_get_message (ZakFormElementValidator *validato
 gboolean zak_form_element_validator_get_enabled (ZakFormElementValidator *validator);
 void zak_form_element_validator_set_enabled (ZakFormElementValidator *validator, gboolean enabled);
 
+xmlNode *zak_form_element_validator_get_xml (ZakFormElementValidator *validator, const gchar *version);
+
 
 G_END_DECLS
 
index 580fd2db99c0a0372e5ff9741b0613b1ffc5745c..c6911d7c004deacebf8d1feb9bc538fdc2bfd34c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015-2017 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2020 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -44,6 +44,7 @@ static void zak_form_element_validator_date_finalize (GObject *gobject);
 
 static gboolean zak_form_element_validator_date_xml_parsing (ZakFormElementValidator *validator, xmlNode *xnode);
 static gboolean zak_form_element_validator_date_validate (ZakFormElementValidator *validator_date, const gchar *value);
+static void zak_form_element_validator_date_get_xml (ZakFormElementValidator *validator, const gchar *version, xmlNode *xnode);
 
 struct _ZakFormElementValidatorDate
 {
@@ -77,6 +78,7 @@ zak_form_element_validator_date_class_init (ZakFormElementValidatorDateClass *cl
 
        parent_class->xml_parsing = zak_form_element_validator_date_xml_parsing;
        parent_class->validate = zak_form_element_validator_date_validate;
+       parent_class->get_xml = zak_form_element_validator_date_get_xml;
 
        g_type_class_add_private (object_class, sizeof (ZakFormElementValidatorDatePrivate));
 }
@@ -390,3 +392,24 @@ zak_form_element_validator_date_validate (ZakFormElementValidator *validator_dat
 
        return ret;
 }
+
+static void
+zak_form_element_validator_date_get_xml (ZakFormElementValidator *validator, const gchar *version, xmlNode *xnode)
+{
+       ZakFormElementValidatorDate *validator_date = ZAK_FORM_ELEMENT_VALIDATOR_DATE (validator);
+       ZakFormElementValidatorDatePrivate *priv = ZAK_FORM_ELEMENT_VALIDATOR_DATE_GET_PRIVATE (validator_date);
+
+       xmlSetProp (xnode, (const xmlChar *)"type", (const xmlChar *)"zak_form_element_validator_date");
+
+       if (zak_form_element_validator_date_get_compare_type (validator_date) != ZAK_FORM_COMPARE_TYPE_NONE)
+               {
+                       xmlSetProp (xnode, (const xmlChar *)"type_comp", (const xmlChar *)zak_form_get_compare_type_stringify (zak_form_element_validator_date_get_compare_type (validator_date)));
+               }
+
+       if (g_strcmp0 (zak_form_element_validator_date_get_compare_value (validator_date), "") != 0)
+               {
+                       xmlSetProp (xnode, (const xmlChar *)"value_comp", (const xmlChar *)zak_form_element_validator_date_get_compare_value (validator_date));
+               }
+
+       xmlNodeSetContent (xnode, (xmlChar *)zak_form_element_validator_date_get_format (validator_date));
+}
index c2e6f00e52a9681b7a51d8ab0ec0932226788db2..2f707bc86e88de3c760deeb24d0471888a681ade 100644 (file)
@@ -45,6 +45,7 @@ static void zak_form_element_validator_is_number_finalize (GObject *gobject);
 
 static gboolean zak_form_element_validator_is_number_xml_parsing (ZakFormElementValidator *validator, xmlNode *xnode);
 static gboolean zak_form_element_validator_is_number_validate (ZakFormElementValidator *validator_is_number, const gchar *value);
+static void zak_form_element_validator_is_number_get_xml (ZakFormElementValidator *validator, const gchar *version, xmlNode *xnode);
 
 struct _ZakFormElementValidatorIsNumber
 {
@@ -78,6 +79,7 @@ zak_form_element_validator_is_number_class_init (ZakFormElementValidatorIsNumber
 
        parent_class->xml_parsing = zak_form_element_validator_is_number_xml_parsing;
        parent_class->validate = zak_form_element_validator_is_number_validate;
+       parent_class->get_xml = zak_form_element_validator_is_number_get_xml;
 
        g_type_class_add_private (object_class, sizeof (ZakFormElementValidatorIsNumberPrivate));
 }
@@ -343,3 +345,27 @@ zak_form_element_validator_is_number_validate (ZakFormElementValidator *validato
 
        return zak_form_element_validator_validate (ZAK_FORM_ELEMENT_VALIDATOR (validator), _value);
 }
+
+static void
+zak_form_element_validator_is_number_get_xml (ZakFormElementValidator *validator, const gchar *version, xmlNode *xnode)
+{
+       ZakFormElementValidatorIsNumber *validator_isnumber = ZAK_FORM_ELEMENT_VALIDATOR_IS_NUMBER (validator);
+       ZakFormElementValidatorIsNumberPrivate *priv = ZAK_FORM_ELEMENT_VALIDATOR_IS_NUMBER_GET_PRIVATE (validator_isnumber);
+
+       xmlSetProp (xnode, (const xmlChar *)"type", (const xmlChar *)"zak_form_element_validator_isnumber");
+
+       if (zak_form_element_validator_is_number_get_thousands_separator (validator_isnumber) != '.')
+               {
+                       xmlSetProp (xnode, (const xmlChar *)"thusands_separator", (const xmlChar *)zak_form_element_validator_is_number_get_thousands_separator (validator_isnumber));
+               }
+
+       if (zak_form_element_validator_is_number_get_decimals_separator (validator_isnumber) != ',')
+               {
+                       xmlSetProp (xnode, (const xmlChar *)"decimals_separator", (const xmlChar *)zak_form_element_validator_is_number_get_decimals_separator (validator_isnumber));
+               }
+
+       if (!zak_form_element_validator_is_number_get_plusminus (validator_isnumber))
+               {
+                       xmlSetProp (xnode, (const xmlChar *)"plusminus", (const xmlChar *)"FALSE");
+               }
+}
index ad40f649a66616ae3bf50cab56183bcf6e1df07b..498a67acff21bc6bf8a59fa3d844ebef795e5ab5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015-2017 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2020 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -46,6 +46,7 @@ static void zak_form_element_validator_notempty_finalize (GObject *gobject);
 
 static gboolean zak_form_element_validator_notempty_xml_parsing (ZakFormElementValidator *validator, xmlNode *xnode);
 static gboolean zak_form_element_validator_notempty_validate (ZakFormElementValidator *validator_notempty, const gchar *value);
+static void zak_form_element_validator_notempty_get_xml (ZakFormElementValidator *validator, const gchar *version, xmlNode *xnode);
 
 struct _ZakFormElementValidatorNotempty
 {
@@ -77,6 +78,7 @@ zak_form_element_validator_notempty_class_init (ZakFormElementValidatorNotemptyC
 
        parent_class->xml_parsing = zak_form_element_validator_notempty_xml_parsing;
        parent_class->validate = zak_form_element_validator_notempty_validate;
+       parent_class->get_xml = zak_form_element_validator_notempty_get_xml;
 
        g_type_class_add_private (object_class, sizeof (ZakFormElementValidatorNotemptyPrivate));
 
@@ -256,3 +258,17 @@ zak_form_element_validator_notempty_validate (ZakFormElementValidator *validator
 
        return ret;
 }
+
+static void
+zak_form_element_validator_notempty_get_xml (ZakFormElementValidator *validator, const gchar *version, xmlNode *xnode)
+{
+       ZakFormElementValidatorNotempty *validator_notempty = ZAK_FORM_ELEMENT_VALIDATOR_NOTEMPTY (validator);
+       ZakFormElementValidatorNotemptyPrivate *priv = ZAK_FORM_ELEMENT_VALIDATOR_NOTEMPTY_GET_PRIVATE (validator_notempty);
+
+       xmlSetProp (xnode, (const xmlChar *)"type", (const xmlChar *)"zak_form_element_validator_notempty");
+
+       if (g_strcmp0 (zak_form_element_validator_notempty_get_as_empty_string (validator_notempty), "") != 0)
+               {
+                       xmlSetProp (xnode, (const xmlChar *)"empty_string", (const xmlChar *)zak_form_element_validator_notempty_get_as_empty_string (validator_notempty));
+               }
+}
index 2bb4fcc381dc9682c3602ec437c0674c07c55678..5fb26d24ad467eaa5067284cbf466522f289ba4f 100644 (file)
@@ -44,6 +44,7 @@ static void zak_form_element_validator_number_finalize (GObject *gobject);
 
 static gboolean zak_form_element_validator_number_xml_parsing (ZakFormElementValidator *validator, xmlNode *xnode);
 static gboolean zak_form_element_validator_number_validate (ZakFormElementValidator *validator_number, const gchar *value);
+static void zak_form_element_validator_number_get_xml (ZakFormElementValidator *validator, const gchar *version, xmlNode *xnode);
 
 struct _ZakFormElementValidatorNumber
 {
@@ -76,6 +77,7 @@ zak_form_element_validator_number_class_init (ZakFormElementValidatorNumberClass
 
        parent_class->xml_parsing = zak_form_element_validator_number_xml_parsing;
        parent_class->validate = zak_form_element_validator_number_validate;
+       parent_class->get_xml = zak_form_element_validator_number_get_xml;
 
        g_type_class_add_private (object_class, sizeof (ZakFormElementValidatorNumberPrivate));
 }
@@ -296,3 +298,16 @@ zak_form_element_validator_number_validate (ZakFormElementValidator *validator_n
 
        return ret;
 }
+
+static void
+zak_form_element_validator_number_get_xml (ZakFormElementValidator *validator, const gchar *version, xmlNode *xnode)
+{
+       ZakFormElementValidatorNumber *validator_number = ZAK_FORM_ELEMENT_VALIDATOR_NUMBER (validator);
+       ZakFormElementValidatorNumberPrivate *priv = ZAK_FORM_ELEMENT_VALIDATOR_NUMBER_GET_PRIVATE (validator_number);
+
+       xmlSetProp (xnode, (const xmlChar *)"type", (const xmlChar *)"zak_form_element_validator_number");
+
+       xmlSetProp (xnode, (const xmlChar *)"type_comp", (const xmlChar *)zak_form_element_validator_number_get_compare_type (validator_number));
+
+       xmlSetProp (xnode, (const xmlChar *)"value_comp", (const xmlChar *)zak_form_element_validator_number_get_compare_value (validator_number));
+}
index ddce8a55bc4cae2b8f53b0547a96142d93f3326e..a7fc1cc9ecf6140c4c5dd45291a3bd8cd84a1b7a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015-2017 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2020 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -46,6 +46,7 @@ static void zak_form_element_validator_regex_finalize (GObject *gobject);
 
 static gboolean zak_form_element_validator_regex_xml_parsing (ZakFormElementValidator *validator, xmlNode *xnode);
 static gboolean zak_form_element_validator_regex_validate (ZakFormElementValidator *validator_regex, const gchar *value);
+static void zak_form_element_validator_regex_get_xml (ZakFormElementValidator *validator, const gchar *version, xmlNode *xnode);
 
 struct _ZakFormElementValidatorRegex
 {
@@ -77,6 +78,7 @@ zak_form_element_validator_regex_class_init (ZakFormElementValidatorRegexClass *
 
        parent_class->xml_parsing = zak_form_element_validator_regex_xml_parsing;
        parent_class->validate = zak_form_element_validator_regex_validate;
+       parent_class->get_xml = zak_form_element_validator_regex_get_xml;
 
        g_type_class_add_private (object_class, sizeof (ZakFormElementValidatorRegexPrivate));
 
@@ -234,7 +236,7 @@ zak_form_element_validator_regex_finalize (GObject *gobject)
 
 static gboolean
 zak_form_element_validator_regex_validate (ZakFormElementValidator *validator_regex,
-                                                                                          const gchar *value)
+                                           const gchar *value)
 {
        gboolean ret;
 
@@ -268,3 +270,14 @@ zak_form_element_validator_regex_validate (ZakFormElementValidator *validator_re
 
        return ret;
 }
+
+static void
+zak_form_element_validator_regex_get_xml (ZakFormElementValidator *validator, const gchar *version, xmlNode *xnode)
+{
+       ZakFormElementValidatorRegex *validator_regex = ZAK_FORM_ELEMENT_VALIDATOR_REGEX (validator);
+       ZakFormElementValidatorRegexPrivate *priv = ZAK_FORM_ELEMENT_VALIDATOR_REGEX_GET_PRIVATE (validator_regex);
+
+       xmlSetProp (xnode, (const xmlChar *)"type", (const xmlChar *)"zak_form_element_validator_regex");
+
+       xmlSetProp (xnode, (const xmlChar *)"regex", (const xmlChar *)zak_form_element_validator_regex_get_regex (validator_regex));
+}