]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - locale/programs/ld-address.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / locale / programs / ld-address.c
index fb440bb24b8bd0424c87fe4d04ba76f48ab61deb..75795c36b1620bce78b0a4cc95e641a15bdc3180 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998-2002, 2005, 2006, 2008 Free Software Foundation, Inc.
+/* Copyright (C) 1998-2019 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
 
@@ -20,9 +20,9 @@
 #endif
 
 #include <byteswap.h>
-#include <error.h>
 #include <langinfo.h>
 #include <string.h>
+#include <stdint.h>
 #include <sys/uio.h>
 
 #include <assert.h>
@@ -130,9 +130,8 @@ address_finish (struct localedef_t *locale, const struct charmap_t *charmap)
         empty one.  */
       if (address == NULL)
        {
-         if (! be_quiet)
-           WITH_CUR_LOCALE (error (0, 0, _("\
-No definition for %s category found"), "LC_ADDRESS"));
+         record_warning (_("\
+No definition for %s category found"), "LC_ADDRESS");
          address_startup (NULL, locale, 0);
          address = locale->categories[LC_ADDRESS].address;
          nothing = 1;
@@ -142,20 +141,20 @@ No definition for %s category found"), "LC_ADDRESS"));
   if (address->postal_fmt == NULL)
     {
       if (! nothing)
-       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' not defined"),
-                               "LC_ADDRESS", "postal_fmt"));
+       record_error (0, 0, _("%s: field `%s' not defined"),
+                     "LC_ADDRESS", "postal_fmt");
       /* Use as the default value the value of the i18n locale.  */
       address->postal_fmt = "%a%N%f%N%d%N%b%N%s %h %e %r%N%C-%z %T%N%c%N";
     }
   else
     {
-      /* We must check whether the format string contains only the
-        allowed escape sequences.  */
+      /* We must check whether the format string contains only the allowed
+        escape sequences.  Last checked against ISO 30112 WD10 [2014]. */
       const char *cp = address->postal_fmt;
 
       if (*cp == '\0')
-       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' must not be empty"),
-                               "LC_ADDRESS", "postal_fmt"));
+       record_error (0, 0, _("%s: field `%s' must not be empty"),
+                     "LC_ADDRESS", "postal_fmt");
       else
        while (*cp != '\0')
          {
@@ -164,11 +163,11 @@ No definition for %s category found"), "LC_ADDRESS"));
                if (*++cp == 'R')
                  /* Romanize-flag.  */
                  ++cp;
-               if (strchr ("afdbshNtreCzTSc%", *cp) == NULL)
+               if (strchr ("nafdbshNtreClzTSc%", *cp) == NULL)
                  {
-                   WITH_CUR_LOCALE (error (0, 0, _("\
+                   record_error (0, 0, _("\
 %s: invalid escape `%%%c' sequence in field `%s'"),
-                                           "LC_ADDRESS", *cp, "postal_fmt"));
+                                 "LC_ADDRESS", *cp, "postal_fmt");
                    break;
                  }
              }
@@ -180,8 +179,7 @@ No definition for %s category found"), "LC_ADDRESS"));
   if (address->cat == NULL)                                                  \
     {                                                                        \
       if (verbose && ! nothing)                                                      \
-       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' not defined"),        \
-                               "LC_ADDRESS", #cat));                         \
+       record_warning (_("%s: field `%s' not defined"), "LC_ADDRESS", #cat); \
       address->cat = "";                                                     \
     }
 
@@ -198,16 +196,16 @@ No definition for %s category found"), "LC_ADDRESS"));
   if (address->lang_term == NULL)
     {
       if (verbose && ! nothing)
-       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' not defined"),
-                               "LC_ADDRESS", "lang_term"));
+       record_warning (_("%s: field `%s' not defined"), "LC_ADDRESS",
+                       "lang_term");
       address->lang_term = "";
       cnt = sizeof (iso639) / sizeof (iso639[0]);
     }
   else if (address->lang_term[0] == '\0')
     {
       if (verbose)
-       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' must not be empty"),
-                               "LC_ADDRESS", "lang_term"));
+       record_warning (_("%s: field `%s' must not be empty"), "LC_ADDRESS",
+                       "lang_term");
       cnt = sizeof (iso639) / sizeof (iso639[0]);
     }
   else
@@ -217,9 +215,9 @@ No definition for %s category found"), "LC_ADDRESS"));
        if (strcmp (address->lang_term, iso639[cnt].term) == 0)
          break;
       if (cnt == sizeof (iso639) / sizeof (iso639[0]))
-       WITH_CUR_LOCALE (error (0, 0, _("\
+       record_error (0, 0, _("\
 %s: terminology language code `%s' not defined"),
-                               "LC_ADDRESS", address->lang_term));
+                     "LC_ADDRESS", address->lang_term);
     }
 
   if (address->lang_ab == NULL)
@@ -227,8 +225,8 @@ No definition for %s category found"), "LC_ADDRESS"));
       if ((cnt == sizeof (iso639) / sizeof (iso639[0])
           || iso639[cnt].ab[0] != '\0')
          && verbose && ! nothing)
-       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' not defined"),
-                               "LC_ADDRESS", "lang_ab"));
+       record_warning (_("%s: field `%s' not defined"), "LC_ADDRESS",
+                       "lang_ab");
       address->lang_ab = "";
     }
   else if (address->lang_ab[0] == '\0')
@@ -236,14 +234,14 @@ No definition for %s category found"), "LC_ADDRESS"));
       if ((cnt == sizeof (iso639) / sizeof (iso639[0])
           || iso639[cnt].ab[0] != '\0')
          && verbose)
-       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' must not be empty"),
-                               "LC_ADDRESS", "lang_ab"));
+       record_warning (_("%s: field `%s' must not be empty"),
+                       "LC_ADDRESS", "lang_ab");
     }
   else if (cnt < sizeof (iso639) / sizeof (iso639[0])
           && iso639[cnt].ab[0] == '\0')
     {
-      WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' must not be defined"),
-                             "LC_ADDRESS", "lang_ab"));
+      record_error (0, 0, _("%s: field `%s' must not be defined"),
+                   "LC_ADDRESS", "lang_ab");
 
       address->lang_ab = "";
     }
@@ -256,16 +254,16 @@ No definition for %s category found"), "LC_ADDRESS"));
            if (strcmp (address->lang_ab, iso639[cnt].ab) == 0)
              break;
          if (cnt == sizeof (iso639) / sizeof (iso639[0]))
-           WITH_CUR_LOCALE (error (0, 0, _("\
+           record_error (0, 0, _("\
 %s: language abbreviation `%s' not defined"),
-                                   "LC_ADDRESS", address->lang_ab));
+                         "LC_ADDRESS", address->lang_ab);
        }
       else
        if (strcmp (iso639[cnt].ab, address->lang_ab) != 0
            && iso639[cnt].ab[0] != '\0')
-         WITH_CUR_LOCALE (error (0, 0, _("\
+         record_error (0, 0, _("\
 %s: `%s' value does not match `%s' value"),
-                                 "LC_ADDRESS", "lang_ab", "lang_term"));
+                       "LC_ADDRESS", "lang_ab", "lang_term");
     }
 
   if (address->lang_lib == NULL)
@@ -274,8 +272,8 @@ No definition for %s category found"), "LC_ADDRESS"));
   else if (address->lang_lib[0] == '\0')
     {
       if (verbose)
-       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' must not be empty"),
-                               "LC_ADDRESS", "lang_lib"));
+       record_warning (_("%s: field `%s' must not be empty"),
+                       "LC_ADDRESS", "lang_lib");
     }
   else
     {
@@ -285,22 +283,22 @@ No definition for %s category found"), "LC_ADDRESS"));
            if (strcmp (address->lang_lib, iso639[cnt].lib) == 0)
              break;
          if (cnt == sizeof (iso639) / sizeof (iso639[0]))
-           WITH_CUR_LOCALE (error (0, 0, _("\
+           record_error (0, 0, _("\
 %s: language abbreviation `%s' not defined"),
-                                   "LC_ADDRESS", address->lang_lib));
+                         "LC_ADDRESS", address->lang_lib);
        }
       else
        if (strcmp (iso639[cnt].ab, address->lang_ab) != 0)
-         WITH_CUR_LOCALE (error (0, 0, _("\
+         record_error (0, 0, _("\
 %s: `%s' value does not match `%s' value"), "LC_ADDRESS", "lang_lib",
-                                 helper == 1 ? "lang_term" : "lang_ab"));
+                       helper == 1 ? "lang_term" : "lang_ab");
     }
 
   if (address->country_num == 0)
     {
       if (verbose && ! nothing)
-       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' not defined"),
-                               "LC_ADDRESS", "country_num"));
+       record_warning (_("%s: field `%s' not defined"), "LC_ADDRESS",
+                       "country_num");
       cnt = sizeof (iso3166) / sizeof (iso3166[0]);
     }
   else
@@ -310,36 +308,35 @@ No definition for %s category found"), "LC_ADDRESS"));
          break;
 
       if (cnt == sizeof (iso3166) / sizeof (iso3166[0]))
-       WITH_CUR_LOCALE (error (0, 0, _("\
+       record_error (0, 0, _("\
 %s: numeric country code `%d' not valid"),
-                               "LC_ADDRESS", address->country_num));
+                     "LC_ADDRESS", address->country_num);
     }
 
   if (address->country_ab2 == NULL)
     {
       if (verbose && ! nothing)
-       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' not defined"),
-                               "LC_ADDRESS", "country_ab2"));
+       record_warning (_("%s: field `%s' not defined"), "LC_ADDRESS",
+                       "country_ab2");
       address->country_ab2 = "  ";
     }
   else if (cnt != sizeof (iso3166) / sizeof (iso3166[0])
           && strcmp (address->country_ab2, iso3166[cnt].ab2) != 0)
-    WITH_CUR_LOCALE (error (0, 0,
-                           _("%s: `%s' value does not match `%s' value"),
-                           "LC_ADDRESS", "country_ab2", "country_num"));
+    record_error (0, 0, _("%s: `%s' value does not match `%s' value"),
+                 "LC_ADDRESS", "country_ab2", "country_num");
 
   if (address->country_ab3 == NULL)
     {
       if (verbose && ! nothing)
-       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' not defined"),
-                               "LC_ADDRESS", "country_ab3"));
+       record_warning (_("%s: field `%s' not defined"), "LC_ADDRESS",
+                       "country_ab3");
       address->country_ab3 = "   ";
     }
   else if (cnt != sizeof (iso3166) / sizeof (iso3166[0])
           && strcmp (address->country_ab3, iso3166[cnt].ab3) != 0)
-    WITH_CUR_LOCALE (error (0, 0, _("\
+    record_error (0, 0, _("\
 %s: `%s' value does not match `%s' value"),
-                           "LC_ADDRESS", "country_ab3", "country_num"));
+                 "LC_ADDRESS", "country_ab3", "country_num");
 }
 
 
@@ -348,97 +345,23 @@ address_output (struct localedef_t *locale, const struct charmap_t *charmap,
                const char *output_path)
 {
   struct locale_address_t *address = locale->categories[LC_ADDRESS].address;
-  struct iovec iov[3 + _NL_ITEM_INDEX (_NL_NUM_LC_ADDRESS)];
-  struct locale_file data;
-  uint32_t idx[_NL_ITEM_INDEX (_NL_NUM_LC_ADDRESS)];
-  size_t cnt = 0;
-
-  data.magic = LIMAGIC (LC_ADDRESS);
-  data.n = _NL_ITEM_INDEX (_NL_NUM_LC_ADDRESS);
-  iov[cnt].iov_base = (void *) &data;
-  iov[cnt].iov_len = sizeof (data);
-  ++cnt;
-
-  iov[cnt].iov_base = (void *) idx;
-  iov[cnt].iov_len = sizeof (idx);
-  ++cnt;
-
-  idx[cnt - 2] = iov[0].iov_len + iov[1].iov_len;
-  iov[cnt].iov_base = (void *) address->postal_fmt;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 2] = idx[cnt - 3] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->country_name;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 2] = idx[cnt - 3] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->country_post;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 2] = idx[cnt - 3] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->country_ab2;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 2] = idx[cnt - 3] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->country_ab3;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 2] = idx[cnt - 3] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->country_car;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 2] = idx[cnt - 3] + iov[cnt - 1].iov_len;
-
-  /* Align following data */
-  iov[cnt].iov_base = (void *) "\0\0";
-  iov[cnt].iov_len = ((idx[cnt - 2] + 3) & ~3) - idx[cnt - 2];
-  idx[cnt - 2] = (idx[cnt - 2] + 3) & ~3;
-  ++cnt;
-
-  iov[cnt].iov_base = (void *) &address->country_num;
-  iov[cnt].iov_len = sizeof (uint32_t);
-  ++cnt;
-
-  idx[cnt - 3] = idx[cnt - 4] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->country_isbn;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 3] = idx[cnt - 4] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->lang_name;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 3] = idx[cnt - 4] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->lang_ab;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 3] = idx[cnt - 4] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->lang_term;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 3] = idx[cnt - 4] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->lang_lib;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 3] = idx[cnt - 4] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) charmap->code_set_name;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  assert (cnt == 3 + _NL_ITEM_INDEX (_NL_NUM_LC_ADDRESS));
-
-  write_locale_data (output_path, LC_ADDRESS, "LC_ADDRESS",
-                    3 + _NL_ITEM_INDEX (_NL_NUM_LC_ADDRESS), iov);
+  struct locale_file file;
+
+  init_locale_data (&file, _NL_ITEM_INDEX (_NL_NUM_LC_ADDRESS));
+  add_locale_string (&file, address->postal_fmt);
+  add_locale_string (&file, address->country_name);
+  add_locale_string (&file, address->country_post);
+  add_locale_string (&file, address->country_ab2);
+  add_locale_string (&file, address->country_ab3);
+  add_locale_string (&file, address->country_car);
+  add_locale_uint32 (&file, address->country_num);
+  add_locale_string (&file, address->country_isbn);
+  add_locale_string (&file, address->lang_name);
+  add_locale_string (&file, address->lang_ab);
+  add_locale_string (&file, address->lang_term);
+  add_locale_string (&file, address->lang_lib);
+  add_locale_string (&file, charmap->code_set_name);
+  write_locale_data (output_path, LC_ADDRESS, "LC_ADDRESS", &file);
 }
 
 
@@ -558,8 +481,8 @@ address_read (struct linereader *ldfile, struct localedef_t *result,
                address->cat = arg->val.str.startmb;                          \
              else                                                            \
                {                                                             \
-                 char *numbuf = (char *) xmalloc (11);                       \
-                 snprintf (numbuf, 11, "%ld", arg->val.num);                 \
+                 char *numbuf = (char *) xmalloc (21);                       \
+                 snprintf (numbuf, 21, "%ld", arg->val.num);                 \
                  address->cat = numbuf;                                      \
                }                                                             \
            }                                                                 \