]> saetta.ns0.it Git - libzakutils/commitdiff
Added functions ::format_money_full and ::unformat_money_full.
authorAndrea Zagli <azagli@libero.it>
Tue, 15 Dec 2015 09:16:42 +0000 (10:16 +0100)
committerAndrea Zagli <azagli@libero.it>
Tue, 15 Dec 2015 09:16:42 +0000 (10:16 +0100)
src/datetime.c
src/generic.c
src/generic.h

index a5787f2019cce628301c0fd6c0df02b400d641ca..cad5883b99badd77bf3b2cfd89126a0d61009c04 100644 (file)
@@ -571,11 +571,11 @@ gchar
 {
        gchar *ret;
 
-       if (gdatetime == NULL) return "";
+       if (gdatetime == NULL) return g_strdup ("");
 
        ret = g_date_time_format (gdatetime, format);
 
-       if (ret == NULL) return "";
+       if (ret == NULL) return g_strdup ("");
 
        return ret;
 }
index b343c34f25133023a4ab34ae3f538502a77520f4..58665200e1f222b4b4d55cf85937c133bfec9fe7 100644 (file)
@@ -103,16 +103,18 @@ zak_utils_round (gdouble value, guint n_decimals)
 }
 
 /**
- * zak_utils_format_money:
+ * zak_utils_format_money_full:
  * @number:
  * @decimals:
- * with_currency_symbol:
+ * @thousands_separator:
+ * @currency_symbol:
  *
  */
 gchar
-*zak_utils_format_money (gdouble number,
-                                                gint decimals,
-                                                gboolean with_currency_symbol)
+*zak_utils_format_money_full (gdouble number,
+                                                         gint decimals,
+                                                         const gchar *thousands_separator,
+                                                         const gchar *currency_symbol)
 {
        gchar *ret;
 
@@ -153,7 +155,7 @@ gchar
                        str_len = g_utf8_strlen (ret, -1);
                        str = g_regex_replace ((const GRegex *)regex,
                                               ret, str_len, 0,
-                                              g_strdup_printf ("\\1%s\\2", localeinfo->mon_thousands_sep), 0,
+                                              g_strdup_printf ("\\1%s\\2", thousands_separator == NULL ? localeinfo->mon_thousands_sep : thousands_separator), 0,
                                               &error);
                        if (error != NULL)
                                {
@@ -173,9 +175,9 @@ gchar
                                }
                }
 
-       if (with_currency_symbol)
+       if (currency_symbol != NULL)
                {
-                       ret = g_strconcat (localeinfo->currency_symbol, " ", ret, NULL);
+                       ret = g_strconcat (g_strcmp0 (currency_symbol, "") == 0 ? localeinfo->currency_symbol : currency_symbol, " ", ret, NULL);
                }
 
        g_regex_unref (regex);
@@ -184,12 +186,31 @@ gchar
 }
 
 /**
- * zak_utils_unformat_money:
+ * zak_utils_format_money:
+ * @number:
+ * @decimals:
+ * @with_currency_symbol:
+ *
+ */
+gchar
+*zak_utils_format_money (gdouble number,
+                                                gint decimals,
+                                                gboolean with_currency_symbol)
+{
+       return zak_utils_format_money_full (number, decimals, NULL, "");
+}
+
+/**
+ * zak_utils_unformat_money_full:
  * @value:
+ * @thousand_separator:
+ * @currency_symbol:
  *
  */
 gdouble
-zak_utils_unformat_money (const gchar *value)
+zak_utils_unformat_money_full (const gchar *value,
+                                                          const gchar *thousands_separator,
+                                                          const gchar *currency_symbol)
 {
        gdouble ret;
 
@@ -208,7 +229,9 @@ zak_utils_unformat_money (const gchar *value)
        localeinfo = localeconv ();
 
        error = NULL;
-       regex = g_regex_new (g_strdup_printf ("[%s %s]", localeinfo->currency_symbol, localeinfo->mon_thousands_sep), 0, 0, &error);
+       regex = g_regex_new (g_strdup_printf ("[%s %s]",
+                                                                                 currency_symbol != NULL && g_strcmp0 (currency_symbol, "") != 0 ? currency_symbol : localeinfo->currency_symbol,
+                                                                                 thousands_separator != NULL ? thousands_separator : localeinfo->mon_thousands_sep), 0, 0, &error);
        if (error != NULL)
                {
                        g_warning ("Error on creating regex: %s.",
@@ -236,6 +259,17 @@ zak_utils_unformat_money (const gchar *value)
        return ret;
 }
 
+/**
+ * zak_utils_unformat_money:
+ * @value:
+ *
+ */
+gdouble
+zak_utils_unformat_money (const gchar *value)
+{
+       return zak_utils_unformat_money_full (value, NULL, NULL);
+}
+
 /**
  * zak_utils_gstring_initial_capital:
  * @gstring:
index d509d79c02458d20c929c7e2a01ed126a010171a..84efcd73fec699a6524e83d4cf39ac5d44963975 100644 (file)
@@ -36,7 +36,9 @@ gchar *zak_utils_string_replace (const gchar *string,
 
 gdouble zak_utils_round (gdouble value, guint n_decimals);
 
+gchar *zak_utils_format_money_full (gdouble number, gint decimals, const gchar *thousands_separator, const gchar *currency_symbol);
 gchar *zak_utils_format_money (gdouble number, gint decimals, gboolean with_currency_symbol);
+gdouble zak_utils_unformat_money_full (const gchar *value, const gchar *thousands_separator, const gchar *currency_symbol);
 gdouble zak_utils_unformat_money (const gchar *value);
 
 void zak_utils_gstring_initial_capital (GString *gstring);