]> saetta.ns0.it Git - zakform/libzakform/commitdiff
Added ZakFormValidator::get_xml (not for composite).
authorAndrea Zagli <azagli@libero.it>
Thu, 28 May 2020 07:12:45 +0000 (09:12 +0200)
committerAndrea Zagli <azagli@libero.it>
Thu, 28 May 2020 07:12:45 +0000 (09:12 +0200)
src/formvalidator.c
src/formvalidator.h
src/formvalidatorcompare.c
src/formvalidatorcomparedate.c
src/formvalidatorcomparenumber.c

index 24c1f8bc120f7cdcc2ef83672a857fd70aa076b8..0b15726e60ea710d14935b86edba613737beaf54 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
@@ -253,6 +253,46 @@ zak_form_validator_set_enabled (ZakFormValidator *validator, gboolean enabled)
        priv->enabled = enabled;
 }
 
+/**
+ * zak_form_validator_get_xml
+ * @validator:
+ * @version: not used.
+ *
+ * Returns: the xml for the filter.
+ */
+xmlNode
+*zak_form_validator_get_xml (ZakFormValidator *validator, const gchar *version)
+{
+       xmlNode *xnode;
+
+       xnode = xmlNewNode (NULL, (xmlChar *)"validator");
+
+       if (zak_form_validator_get_id (validator) != NULL
+           && g_strcmp0 (zak_form_validator_get_id (validator), "") != 0)
+               {
+                       xmlSetProp (xnode, (const xmlChar *)"id", (xmlChar *)zak_form_validator_get_id (validator));
+               }
+
+       if (!zak_form_validator_get_enabled (validator))
+               {
+                       xmlSetProp (xnode, (const xmlChar *)"disabled", (xmlChar *)"disabled");
+               }
+
+       if (zak_form_validator_get_message (validator) != NULL
+           && g_strcmp0 (zak_form_validator_get_id (validator), "") != 0
+           && g_strcmp0 (zak_form_validator_get_id (validator), _("Invalid value")) != 0)
+               {
+                       xmlSetProp (xnode, (const xmlChar *)"id", (xmlChar *)zak_form_validator_get_id (validator));
+               }
+
+       if (ZAK_FORM_VALIDATOR_GET_CLASS (validator)->get_xml!= NULL)
+               {
+                       ZAK_FORM_VALIDATOR_GET_CLASS (validator)->get_xml (validator, version, xnode);
+               }
+
+       return xnode;
+}
+
 /* PRIVATE */
 static void
 zak_form_validator_set_property (GObject *object,
index bdc01a19a13f5ba5fd7ee36b20541484eb46fc9c..18ab1a7f2a67c46625346efd44bd22d2731a7cf8 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
@@ -37,6 +37,8 @@ struct _ZakFormValidatorClass
 
        gboolean (*xml_parsing) (ZakFormValidator *self, xmlNode *xnode, gpointer zakform);
        gboolean (*validate) (ZakFormValidator *self);
+
+       void (*get_xml) (ZakFormValidator *self, const gchar *version, xmlNode *xnode);
 };
 
 gboolean zak_form_validator_xml_parsing (ZakFormValidator *validator, xmlNode *xnode, gpointer zakform);
@@ -53,6 +55,9 @@ gchar *zak_form_validator_get_message (ZakFormValidator *validator);
 gboolean zak_form_validator_get_enabled (ZakFormValidator *validator);
 void zak_form_validator_set_enabled (ZakFormValidator *validator, gboolean enabled);
 
+xmlNode *zak_form_validator_get_xml (ZakFormValidator *validator, const gchar *version);
+
+
 G_END_DECLS
 
 
index c92afd90c2b5e51d8d83bbc53178dbaa43844866..d847fea48cf65268e9c654da7e5fc21304ef5022 100644 (file)
@@ -45,6 +45,7 @@ static void zak_form_validator_compare_finalize (GObject *gobject);
 
 static gboolean zak_form_validator_compare_xml_parsing (ZakFormValidator *validator, xmlNode *xnode, gpointer form);
 static gboolean zak_form_validator_compare_validate (ZakFormValidator *validator_notempty);
+static void zak_form_validator_compare_get_xml (ZakFormValidator *validator, const gchar *version, xmlNode *xnode);
 
 struct _ZakFormValidatorCompare
 {
@@ -79,6 +80,7 @@ zak_form_validator_compare_class_init (ZakFormValidatorCompareClass *class)
 
        parent_class->xml_parsing = zak_form_validator_compare_xml_parsing;
        parent_class->validate = zak_form_validator_compare_validate;
+       parent_class->get_xml = zak_form_validator_compare_get_xml;
 
        g_type_class_add_private (object_class, sizeof (ZakFormValidatorComparePrivate));
 }
@@ -360,3 +362,18 @@ zak_form_validator_compare_validate (ZakFormValidator *validator)
 
        return ret;
 }
+
+static void
+zak_form_validator_compare_get_xml (ZakFormValidator *validator, const gchar *version, xmlNode *xnode)
+{
+       ZakFormValidatorCompare *validator_compare = ZAK_FORM_VALIDATOR_COMPARE (validator);
+       ZakFormValidatorComparePrivate *priv = ZAK_FORM_VALIDATOR_COMPARE_GET_PRIVATE (validator_compare);
+
+       xmlSetProp (xnode, (const xmlChar *)"type", (const xmlChar *)"zak_form_validator_compare");
+
+       xmlSetProp (xnode, (const xmlChar *)"type_comp", (const xmlChar *)zak_form_validator_compare_get_compare_type (validator_compare));
+
+       xmlSetProp (xnode, (const xmlChar *)"element1", (const xmlChar *)zak_form_validator_compare_get_element1 (validator_compare));
+
+       xmlSetProp (xnode, (const xmlChar *)"element2", (const xmlChar *)zak_form_validator_compare_get_element2 (validator_compare));
+}
index 6e349f84fbc4b155ab099f1de817b70bbd07b78d..3ff8be64fd22b4caa6dad4d44a573a62f22d539d 100644 (file)
@@ -46,6 +46,7 @@ static void zak_form_validator_compare_date_finalize (GObject *gobject);
 
 static gboolean zak_form_validator_compare_date_xml_parsing (ZakFormValidator *validator, xmlNode *xnode, gpointer form);
 static gboolean zak_form_validator_compare_date_validate (ZakFormValidator *validator_notempty);
+static void zak_form_validator_compare_date_get_xml (ZakFormValidator *validator, const gchar *version, xmlNode *xnode);
 
 struct _ZakFormValidatorCompareDate
 {
@@ -83,6 +84,7 @@ zak_form_validator_compare_date_class_init (ZakFormValidatorCompareDateClass *cl
 
        parent_class->xml_parsing = zak_form_validator_compare_date_xml_parsing;
        parent_class->validate = zak_form_validator_compare_date_validate;
+       parent_class->get_xml = zak_form_validator_compare_date_get_xml;
 
        g_type_class_add_private (object_class, sizeof (ZakFormValidatorCompareDatePrivate));
 }
@@ -430,3 +432,22 @@ zak_form_validator_compare_date_validate (ZakFormValidator *validator)
 
        return ret;
 }
+
+static void
+zak_form_validator_compare_date_get_xml (ZakFormValidator *validator, const gchar *version, xmlNode *xnode)
+{
+       ZakFormValidatorCompareDate *validator_compare_date = ZAK_FORM_VALIDATOR_COMPARE_DATE (validator_compare_date);
+       ZakFormValidatorCompareDatePrivate *priv = ZAK_FORM_VALIDATOR_COMPARE_DATE_GET_PRIVATE (validator_compare_date);
+
+       xmlSetProp (xnode, (const xmlChar *)"type", (const xmlChar *)"zak_form_validator_compare_date");
+
+       xmlSetProp (xnode, (const xmlChar *)"type_comp", (const xmlChar *)zak_form_validator_compare_date_get_compare_type (validator_compare_date));
+
+       xmlSetProp (xnode, (const xmlChar *)"element1", (const xmlChar *)zak_form_validator_compare_date_get_element1 (validator_compare_date));
+
+       xmlSetProp (xnode, (const xmlChar *)"format1", (const xmlChar *)zak_form_validator_compare_date_get_element1_format (validator_compare_date));
+
+       xmlSetProp (xnode, (const xmlChar *)"element2", (const xmlChar *)zak_form_validator_compare_date_get_element2 (validator_compare_date));
+
+       xmlSetProp (xnode, (const xmlChar *)"format2", (const xmlChar *)zak_form_validator_compare_date_get_element2_format (validator_compare_date));
+}
index f4dd7eb57e818dea656238c57a0e397f8bcc0ba4..e207f140be3fd85f86905390f5c11f7739f30126 100644 (file)
@@ -46,6 +46,7 @@ static void zak_form_validator_compare_number_finalize (GObject *gobject);
 
 static gboolean zak_form_validator_compare_number_xml_parsing (ZakFormValidator *validator, xmlNode *xnode, gpointer form);
 static gboolean zak_form_validator_compare_number_validate (ZakFormValidator *validator_notempty);
+static void zak_form_validator_compare_number_get_xml (ZakFormValidator *validator, const gchar *version, xmlNode *xnode);
 
 struct _ZakFormValidatorCompareNumber
 {
@@ -80,6 +81,7 @@ zak_form_validator_compare_number_class_init (ZakFormValidatorCompareNumberClass
 
        parent_class->xml_parsing = zak_form_validator_compare_number_xml_parsing;
        parent_class->validate = zak_form_validator_compare_number_validate;
+       parent_class->get_xml = zak_form_validator_compare_number_get_xml;
 
        g_type_class_add_private (object_class, sizeof (ZakFormValidatorCompareNumberPrivate));
 }
@@ -362,3 +364,18 @@ zak_form_validator_compare_number_validate (ZakFormValidator *validator)
 
        return ret;
 }
+
+static void
+zak_form_validator_compare_number_get_xml (ZakFormValidator *validator, const gchar *version, xmlNode *xnode)
+{
+       ZakFormValidatorCompareNumber *validator_compare_number = ZAK_FORM_VALIDATOR_COMPARE_NUMBER (validator_compare_number);
+       ZakFormValidatorCompareNumberPrivate *priv = ZAK_FORM_VALIDATOR_COMPARE_NUMBER_GET_PRIVATE (validator_compare_number);
+
+       xmlSetProp (xnode, (const xmlChar *)"type", (const xmlChar *)"zak_form_validator_compare_number");
+
+       xmlSetProp (xnode, (const xmlChar *)"type_comp", (const xmlChar *)zak_form_validator_compare_number_get_compare_type (validator_compare_number));
+
+       xmlSetProp (xnode, (const xmlChar *)"element1", (const xmlChar *)zak_form_validator_compare_number_get_element1 (validator_compare_number));
+
+       xmlSetProp (xnode, (const xmlChar *)"element2", (const xmlChar *)zak_form_validator_compare_number_get_element2 (validator_compare_number));
+}