123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /* Duplicate a locale object.
- Copyright (C) 2009-2023 Free Software Foundation, Inc.
- This file is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
- This file is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public License
- along with this program. If not, see <https://www.gnu.org/licenses/>. */
- /* Written by Bruno Haible <bruno@clisp.org>, 2007. */
- #include <config.h>
- /* Specification. */
- #include <locale.h>
- #include <errno.h>
- #include <string.h>
- #define SIZEOF(a) (sizeof(a) / sizeof(a[0]))
- #undef duplocale
- locale_t
- rpl_duplocale (locale_t locale)
- {
- /* Work around crash in the duplocale function in glibc < 2.12.
- See <https://sourceware.org/bugzilla/show_bug.cgi?id=10969>.
- Also, on AIX 7.1, duplocale(LC_GLOBAL_LOCALE) returns (locale_t)0 with
- errno set to EINVAL.
- Also, on NetBSD 7.0, duplocale(LC_GLOBAL_LOCALE) returns a locale that
- corresponds to the C locale. */
- if (locale == LC_GLOBAL_LOCALE)
- {
- /* Create a copy of the locale by fetching the name of each locale
- category, starting with LC_CTYPE. */
- static struct { int cat; int mask; } const categories[] =
- {
- { LC_NUMERIC, LC_NUMERIC_MASK },
- { LC_TIME, LC_TIME_MASK },
- { LC_COLLATE, LC_COLLATE_MASK },
- { LC_MONETARY, LC_MONETARY_MASK },
- { LC_MESSAGES, LC_MESSAGES_MASK }
- #ifdef LC_PAPER
- , { LC_PAPER, LC_PAPER_MASK }
- #endif
- #ifdef LC_NAME
- , { LC_NAME, LC_NAME_MASK }
- #endif
- #ifdef LC_ADDRESS
- , { LC_ADDRESS, LC_ADDRESS_MASK }
- #endif
- #ifdef LC_TELEPHONE
- , { LC_TELEPHONE, LC_TELEPHONE_MASK }
- #endif
- #ifdef LC_MEASUREMENT
- , { LC_MEASUREMENT, LC_MEASUREMENT_MASK }
- #endif
- #ifdef LC_IDENTIFICATION
- , { LC_IDENTIFICATION, LC_IDENTIFICATION_MASK }
- #endif
- };
- char base_name[SETLOCALE_NULL_MAX];
- int err;
- locale_t base_copy;
- unsigned int i;
- err = setlocale_null_r (LC_CTYPE, base_name, sizeof (base_name));
- if (err)
- {
- errno = err;
- return NULL;
- }
- base_copy = newlocale (LC_ALL_MASK, base_name, NULL);
- if (base_copy == NULL)
- return NULL;
- for (i = 0; i < SIZEOF (categories); i++)
- {
- int category = categories[i].cat;
- int category_mask = categories[i].mask;
- char name[SETLOCALE_NULL_MAX];
- err = setlocale_null_r (category, name, sizeof (name));
- if (err)
- {
- errno = err;
- return NULL;
- }
- if (strcmp (name, base_name) != 0)
- {
- locale_t copy = newlocale (category_mask, name, base_copy);
- if (copy == NULL)
- {
- int saved_errno = errno;
- freelocale (base_copy);
- errno = saved_errno;
- return NULL;
- }
- /* No need to call freelocale (base_copy) if copy != base_copy;
- the newlocale function already takes care of doing it. */
- base_copy = copy;
- }
- }
- return base_copy;
- }
- return duplocale (locale);
- }
|