]> saetta.ns0.it Git - libzakutils/commitdiff
Added functions ::format_money and ::unformat_money.
authorAndrea Zagli <azagli@libero.it>
Sun, 6 Dec 2015 09:16:24 +0000 (10:16 +0100)
committerAndrea Zagli <azagli@libero.it>
Sun, 6 Dec 2015 09:16:24 +0000 (10:16 +0100)
src/generic.c
src/generic.h

index 3522f64e0d74dda634c8b1b923d37777d879cb57..76c9ee37ea77bfb6f86b085019c1464c8d1a5a84 100644 (file)
@@ -69,6 +69,129 @@ zak_utils_round (gdouble value, guint n_decimals)
        return ret;
 }
 
+/**
+ * zak_utils_format_money:
+ * @number:
+ * @decimals:
+ * with_currency_symbol:
+ *
+ */
+gchar
+*zak_utils_format_money (gdouble number,
+                                                gint decimals,
+                                                gboolean with_currency_symbol)
+{
+       gchar *ret;
+
+       GRegex *regex;
+       GError *error;
+
+       gchar *str_format;
+       gchar *str;
+       gssize str_len;
+
+       /* TODO
+        * - get number of decimals from locale
+        * - get grouping char from locale
+        * - get currency symbol from locale
+        */
+
+       ret = g_strdup ("");
+
+       error = NULL;
+       regex = g_regex_new ("(^[-\\d]?\\d+)(\\d\\d\\d)", 0, 0, &error);
+       if (regex == NULL || error != NULL)
+               {
+                       g_warning ("Error on creating regex: %s.",
+                                  error->message != NULL ? error->message : "no details");
+                       return "";
+               }
+
+       str_format = g_strdup_printf ("%%0%sf", decimals == 0 ? ".0" : (decimals < 0 ? ".2" : g_strdup_printf (".%d", decimals)));
+       ret = g_strdup_printf (str_format, number);
+
+       while (TRUE)
+               {
+                       error = NULL;
+                       str_len = g_utf8_strlen (ret, -1);
+                       str = g_regex_replace ((const GRegex *)regex,
+                                              ret, str_len, 0,
+                                              "\\1.\\2", 0,
+                                              &error);
+                       if (error != NULL)
+                               {
+                                       g_warning ("Error on regex replacing: %s.",
+                                                  error->message != NULL ? error->message : "no details");
+                                       g_regex_unref (regex);
+                                       return "";
+                               }
+                       if (g_strcmp0 (ret, str) != 0)
+                               {
+                                       ret = g_strdup (str);
+                                       g_free (str);
+                               }
+                       else
+                               {
+                                       break;
+                               }
+               }
+
+       if (with_currency_symbol)
+               {
+                       ret = g_strconcat ("€ ", ret, NULL);
+               }
+
+       g_regex_unref (regex);
+
+       return ret;
+}
+
+/**
+ * zak_utils_unformat_money:
+ * @value:
+ *
+ */
+gdouble
+zak_utils_unformat_money (const gchar *value)
+{
+       gdouble ret;
+
+       GRegex *regex;
+       GError *error;
+
+       gchar *str;
+
+       ret = 0.0;
+
+       error = NULL;
+       regex = g_regex_new ("[€ .]", 0, 0, &error);
+       if (error != NULL)
+               {
+                       g_warning ("Error on creating regex: %s.",
+                                  error->message != NULL ? error->message : "no details");
+                       return ret;
+               }
+
+       error = NULL;
+       str = g_regex_replace ((const GRegex *)regex,
+                              value, -1, 0,
+                              "", 0,
+                              &error);
+       if (error != NULL)
+               {
+                       g_warning ("Error on regex replacing: %s.",
+                                  error->message != NULL ? error->message : "no details");
+                       g_regex_unref (regex);
+                       return ret;
+               }
+
+       ret = g_strtod (str, NULL);
+
+       g_regex_unref (regex);
+
+       return ret;
+}
+
 /**
  * zak_utils_gstring_initial_capital:
  * @gstring:
index d654bc5915677fb9ba514935a89c5cb86bd67d0a..8ea64e1e0673d4fe59ef9c1bdd2fec4c963c883e 100644 (file)
@@ -32,6 +32,9 @@ gboolean zak_utils_file_exists (const gchar *filename);
 
 gdouble zak_utils_round (gdouble value, guint n_decimals);
 
+gchar *zak_utils_format_money (gdouble number, gint decimals, gboolean with_currency_symbol);
+gdouble zak_utils_unformat_money (const gchar *value);
+
 void zak_utils_gstring_initial_capital (GString *gstring);
 
 int zak_utils_compare_version (const gchar *ver1, const gchar *ver2, const gchar *delimiters, guint *part);