2012-01-20 20:31:29 +04:00
|
|
|
/* $NetBSD: global_locale.c,v 1.12 2012/01/20 16:31:29 joerg Exp $ */
|
Fixes PR lib/39662, shortcomings in LC_{MONETARY,NUMERIC,TIME,MESSAGES} db format.
ok'ed by core and releng.
(thanks for agc@, snj@ and i'm sorry for long time patience).
[libc]
- localeio.[ch] and lc*.[ch] in src/lib/libc/locale was replaced by
new locale-db implementation using citrus_db backend,
see src/lib/libc/citrus/citrus_lc_*.[ch].
- add citrus_bcs_strtou?l.c. don't use strtou?l locale implementation
internally, because they're locale-aware function.
- add some stubs for multi-locale issue, see {current,global}_locale.c.
- remove some obsolete file, setrunelocale.c, ___runetype_mb.c.
- remove __savectype() from ctypeio.[ch].
[tools]
- mklocale(1): add new option ``-t'' that generates new style
LC_{MONETARY,NUMERIC,TIME,MESSAGES} locale-db format.
- chrtbl(1): added ctypeio.[ch] for __savectype().
[locale-db]
- added en_US.US-ASCII locale.
- removed some shareable locale definition file:
en_US.US-ASCII -> en_US.ISO8859-1, en_US.UTF-8
zh_CN.eucCN -> zh_CN.GB18030
and more...see src/share/locale/*/Makefile.
- remove obsoleted locale sr_YU, added new locale sr_ME, sr_RS.
- change locale name ja_JP.ISO2022-JP* -> ja_JP.ISO-2022-JP*
for X11's locale.alias file alignments.
- fix regression test, wrong wcs?width(3), NAN/INF usage.
i tested release-build following arch:
i386, amd64, hpc{mips,arm,sh}, sparc64, vax.
citrus_lc_*.[ch] also can read old-plain-text style locale-db.
so that backward compatibility is keeped, but lc*.[ch] can't read
new citrus_db'ed locale-db and localeio.c never check sanity,
so forward compatibility is broken ;-<
old mklocale(1) doesn't know -t option, so you have to rebuild toolchain.
2009-01-02 03:20:18 +03:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c)2008 Citrus Project,
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
2012-01-20 20:31:29 +04:00
|
|
|
__RCSID("$NetBSD: global_locale.c,v 1.12 2012/01/20 16:31:29 joerg Exp $");
|
Fixes PR lib/39662, shortcomings in LC_{MONETARY,NUMERIC,TIME,MESSAGES} db format.
ok'ed by core and releng.
(thanks for agc@, snj@ and i'm sorry for long time patience).
[libc]
- localeio.[ch] and lc*.[ch] in src/lib/libc/locale was replaced by
new locale-db implementation using citrus_db backend,
see src/lib/libc/citrus/citrus_lc_*.[ch].
- add citrus_bcs_strtou?l.c. don't use strtou?l locale implementation
internally, because they're locale-aware function.
- add some stubs for multi-locale issue, see {current,global}_locale.c.
- remove some obsolete file, setrunelocale.c, ___runetype_mb.c.
- remove __savectype() from ctypeio.[ch].
[tools]
- mklocale(1): add new option ``-t'' that generates new style
LC_{MONETARY,NUMERIC,TIME,MESSAGES} locale-db format.
- chrtbl(1): added ctypeio.[ch] for __savectype().
[locale-db]
- added en_US.US-ASCII locale.
- removed some shareable locale definition file:
en_US.US-ASCII -> en_US.ISO8859-1, en_US.UTF-8
zh_CN.eucCN -> zh_CN.GB18030
and more...see src/share/locale/*/Makefile.
- remove obsoleted locale sr_YU, added new locale sr_ME, sr_RS.
- change locale name ja_JP.ISO2022-JP* -> ja_JP.ISO-2022-JP*
for X11's locale.alias file alignments.
- fix regression test, wrong wcs?width(3), NAN/INF usage.
i tested release-build following arch:
i386, amd64, hpc{mips,arm,sh}, sparc64, vax.
citrus_lc_*.[ch] also can read old-plain-text style locale-db.
so that backward compatibility is keeped, but lc*.[ch] can't read
new citrus_db'ed locale-db and localeio.c never check sanity,
so forward compatibility is broken ;-<
old mklocale(1) doesn't know -t option, so you have to rebuild toolchain.
2009-01-02 03:20:18 +03:00
|
|
|
#endif /* LIBC_SCCS and not lint */
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2010-06-01 17:52:07 +04:00
|
|
|
#include <sys/ctype_bits.h>
|
Fixes PR lib/39662, shortcomings in LC_{MONETARY,NUMERIC,TIME,MESSAGES} db format.
ok'ed by core and releng.
(thanks for agc@, snj@ and i'm sorry for long time patience).
[libc]
- localeio.[ch] and lc*.[ch] in src/lib/libc/locale was replaced by
new locale-db implementation using citrus_db backend,
see src/lib/libc/citrus/citrus_lc_*.[ch].
- add citrus_bcs_strtou?l.c. don't use strtou?l locale implementation
internally, because they're locale-aware function.
- add some stubs for multi-locale issue, see {current,global}_locale.c.
- remove some obsolete file, setrunelocale.c, ___runetype_mb.c.
- remove __savectype() from ctypeio.[ch].
[tools]
- mklocale(1): add new option ``-t'' that generates new style
LC_{MONETARY,NUMERIC,TIME,MESSAGES} locale-db format.
- chrtbl(1): added ctypeio.[ch] for __savectype().
[locale-db]
- added en_US.US-ASCII locale.
- removed some shareable locale definition file:
en_US.US-ASCII -> en_US.ISO8859-1, en_US.UTF-8
zh_CN.eucCN -> zh_CN.GB18030
and more...see src/share/locale/*/Makefile.
- remove obsoleted locale sr_YU, added new locale sr_ME, sr_RS.
- change locale name ja_JP.ISO2022-JP* -> ja_JP.ISO-2022-JP*
for X11's locale.alias file alignments.
- fix regression test, wrong wcs?width(3), NAN/INF usage.
i tested release-build following arch:
i386, amd64, hpc{mips,arm,sh}, sparc64, vax.
citrus_lc_*.[ch] also can read old-plain-text style locale-db.
so that backward compatibility is keeped, but lc*.[ch] can't read
new citrus_db'ed locale-db and localeio.c never check sanity,
so forward compatibility is broken ;-<
old mklocale(1) doesn't know -t option, so you have to rebuild toolchain.
2009-01-02 03:20:18 +03:00
|
|
|
#include <sys/localedef.h>
|
|
|
|
#include <langinfo.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#define __SETLOCALE_SOURCE__
|
|
|
|
#include <locale.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2012-01-20 20:31:29 +04:00
|
|
|
#include "runetype_local.h"
|
Fixes PR lib/39662, shortcomings in LC_{MONETARY,NUMERIC,TIME,MESSAGES} db format.
ok'ed by core and releng.
(thanks for agc@, snj@ and i'm sorry for long time patience).
[libc]
- localeio.[ch] and lc*.[ch] in src/lib/libc/locale was replaced by
new locale-db implementation using citrus_db backend,
see src/lib/libc/citrus/citrus_lc_*.[ch].
- add citrus_bcs_strtou?l.c. don't use strtou?l locale implementation
internally, because they're locale-aware function.
- add some stubs for multi-locale issue, see {current,global}_locale.c.
- remove some obsolete file, setrunelocale.c, ___runetype_mb.c.
- remove __savectype() from ctypeio.[ch].
[tools]
- mklocale(1): add new option ``-t'' that generates new style
LC_{MONETARY,NUMERIC,TIME,MESSAGES} locale-db format.
- chrtbl(1): added ctypeio.[ch] for __savectype().
[locale-db]
- added en_US.US-ASCII locale.
- removed some shareable locale definition file:
en_US.US-ASCII -> en_US.ISO8859-1, en_US.UTF-8
zh_CN.eucCN -> zh_CN.GB18030
and more...see src/share/locale/*/Makefile.
- remove obsoleted locale sr_YU, added new locale sr_ME, sr_RS.
- change locale name ja_JP.ISO2022-JP* -> ja_JP.ISO-2022-JP*
for X11's locale.alias file alignments.
- fix regression test, wrong wcs?width(3), NAN/INF usage.
i tested release-build following arch:
i386, amd64, hpc{mips,arm,sh}, sparc64, vax.
citrus_lc_*.[ch] also can read old-plain-text style locale-db.
so that backward compatibility is keeped, but lc*.[ch] can't read
new citrus_db'ed locale-db and localeio.c never check sanity,
so forward compatibility is broken ;-<
old mklocale(1) doesn't know -t option, so you have to rebuild toolchain.
2009-01-02 03:20:18 +03:00
|
|
|
#include "setlocale_local.h"
|
|
|
|
|
2010-03-27 18:25:21 +03:00
|
|
|
static struct lconv _global_ldata = {
|
|
|
|
.decimal_point = __UNCONST("."),
|
|
|
|
.thousands_sep = __UNCONST(""),
|
|
|
|
.grouping = __UNCONST(""),
|
|
|
|
.int_curr_symbol = __UNCONST(""),
|
|
|
|
.currency_symbol = __UNCONST(""),
|
|
|
|
.mon_decimal_point = __UNCONST(""),
|
|
|
|
.mon_thousands_sep = __UNCONST(""),
|
|
|
|
.mon_grouping = __UNCONST(""),
|
|
|
|
.positive_sign = __UNCONST(""),
|
|
|
|
.negative_sign = __UNCONST(""),
|
|
|
|
.int_frac_digits = CHAR_MAX,
|
|
|
|
.frac_digits = CHAR_MAX,
|
|
|
|
.p_cs_precedes = CHAR_MAX,
|
|
|
|
.p_sep_by_space = CHAR_MAX,
|
|
|
|
.n_cs_precedes = CHAR_MAX,
|
|
|
|
.n_sep_by_space = CHAR_MAX,
|
|
|
|
.p_sign_posn = CHAR_MAX,
|
|
|
|
.n_sign_posn = CHAR_MAX,
|
|
|
|
.int_p_cs_precedes = CHAR_MAX,
|
|
|
|
.int_n_cs_precedes = CHAR_MAX,
|
|
|
|
.int_p_sep_by_space = CHAR_MAX,
|
|
|
|
.int_n_sep_by_space = CHAR_MAX,
|
|
|
|
.int_p_sign_posn = CHAR_MAX,
|
|
|
|
.int_n_sign_posn = CHAR_MAX,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char *_global_items[(size_t)ALT_DIGITS + 1] = {
|
|
|
|
[(size_t)D_T_FMT ] = "%a %b %e %H:%M:%S %Y",
|
|
|
|
[(size_t)D_FMT ] = "%m/%d/%y",
|
|
|
|
[(size_t)T_FMT ] = "%H:%M:%S",
|
|
|
|
[(size_t)T_FMT_AMPM ] = "%I:%M:%S %p",
|
|
|
|
[(size_t)AM_STR ] = "AM",
|
|
|
|
[(size_t)PM_STR ] = "PM",
|
|
|
|
[(size_t)DAY_1 ] = "Sun",
|
|
|
|
[(size_t)DAY_2 ] = "Mon",
|
|
|
|
[(size_t)DAY_3 ] = "Tue",
|
|
|
|
[(size_t)DAY_4 ] = "Wed",
|
|
|
|
[(size_t)DAY_5 ] = "Thu",
|
|
|
|
[(size_t)DAY_6 ] = "Fri",
|
|
|
|
[(size_t)DAY_7 ] = "Sat",
|
|
|
|
[(size_t)ABDAY_1 ] = "Sunday",
|
|
|
|
[(size_t)ABDAY_2 ] = "Monday",
|
|
|
|
[(size_t)ABDAY_3 ] = "Tuesday",
|
|
|
|
[(size_t)ABDAY_4 ] = "Wednesday",
|
|
|
|
[(size_t)ABDAY_5 ] = "Thursday",
|
|
|
|
[(size_t)ABDAY_6 ] = "Friday",
|
|
|
|
[(size_t)ABDAY_7 ] = "Saturday",
|
|
|
|
[(size_t)MON_1 ] = "Jan",
|
|
|
|
[(size_t)MON_2 ] = "Feb",
|
|
|
|
[(size_t)MON_3 ] = "Mar",
|
|
|
|
[(size_t)MON_4 ] = "Apr",
|
|
|
|
[(size_t)MON_5 ] = "May",
|
|
|
|
[(size_t)MON_6 ] = "Jun",
|
|
|
|
[(size_t)MON_7 ] = "Jul",
|
|
|
|
[(size_t)MON_8 ] = "Aug",
|
|
|
|
[(size_t)MON_9 ] = "Sep",
|
|
|
|
[(size_t)MON_10 ] = "Oct",
|
|
|
|
[(size_t)MON_11 ] = "Nov",
|
|
|
|
[(size_t)MON_12 ] = "Dec",
|
|
|
|
[(size_t)ABMON_1 ] = "January",
|
|
|
|
[(size_t)ABMON_2 ] = "February",
|
|
|
|
[(size_t)ABMON_3 ] = "March",
|
|
|
|
[(size_t)ABMON_4 ] = "April",
|
|
|
|
[(size_t)ABMON_5 ] = "May",
|
|
|
|
[(size_t)ABMON_6 ] = "June",
|
|
|
|
[(size_t)ABMON_7 ] = "July",
|
2010-03-27 19:47:05 +03:00
|
|
|
[(size_t)ABMON_8 ] = "August",
|
2010-03-27 18:25:21 +03:00
|
|
|
[(size_t)ABMON_9 ] = "September",
|
|
|
|
[(size_t)ABMON_10 ] = "October",
|
|
|
|
[(size_t)ABMON_11 ] = "November",
|
|
|
|
[(size_t)ABMON_12 ] = "December",
|
|
|
|
[(size_t)RADIXCHAR ] = ".",
|
|
|
|
[(size_t)THOUSEP ] = "",
|
|
|
|
[(size_t)YESSTR ] = "yes",
|
|
|
|
[(size_t)YESEXPR ] = "^[Yy]",
|
|
|
|
[(size_t)NOSTR ] = "no",
|
|
|
|
[(size_t)NOEXPR ] = "^[Nn]",
|
|
|
|
[(size_t)CRNCYSTR ] = NULL,
|
|
|
|
[(size_t)CODESET ] = "646",
|
|
|
|
[(size_t)ERA ] = NULL,
|
|
|
|
[(size_t)ERA_D_FMT ] = NULL,
|
|
|
|
[(size_t)ERA_D_T_FMT] = NULL,
|
|
|
|
[(size_t)ERA_T_FMT ] = NULL,
|
|
|
|
[(size_t)ALT_DIGITS ] = NULL,
|
|
|
|
};
|
|
|
|
|
2010-05-22 17:15:59 +04:00
|
|
|
static struct _locale_cache_t _global_cache = {
|
|
|
|
.ctype_tab = (const unsigned char *)&_C_ctype_[0],
|
|
|
|
.tolower_tab = (const short *)&_C_tolower_[0],
|
|
|
|
.toupper_tab = (const short *)&_C_toupper_[0],
|
|
|
|
.mb_cur_max = (size_t)1,
|
|
|
|
.ldata = &_global_ldata,
|
|
|
|
.items = &_global_items[0],
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _locale_impl_t _global_locale = {
|
|
|
|
.cache = &_global_cache,
|
2009-01-19 01:03:19 +03:00
|
|
|
.query = { _C_LOCALE },
|
Fixes PR lib/39662, shortcomings in LC_{MONETARY,NUMERIC,TIME,MESSAGES} db format.
ok'ed by core and releng.
(thanks for agc@, snj@ and i'm sorry for long time patience).
[libc]
- localeio.[ch] and lc*.[ch] in src/lib/libc/locale was replaced by
new locale-db implementation using citrus_db backend,
see src/lib/libc/citrus/citrus_lc_*.[ch].
- add citrus_bcs_strtou?l.c. don't use strtou?l locale implementation
internally, because they're locale-aware function.
- add some stubs for multi-locale issue, see {current,global}_locale.c.
- remove some obsolete file, setrunelocale.c, ___runetype_mb.c.
- remove __savectype() from ctypeio.[ch].
[tools]
- mklocale(1): add new option ``-t'' that generates new style
LC_{MONETARY,NUMERIC,TIME,MESSAGES} locale-db format.
- chrtbl(1): added ctypeio.[ch] for __savectype().
[locale-db]
- added en_US.US-ASCII locale.
- removed some shareable locale definition file:
en_US.US-ASCII -> en_US.ISO8859-1, en_US.UTF-8
zh_CN.eucCN -> zh_CN.GB18030
and more...see src/share/locale/*/Makefile.
- remove obsoleted locale sr_YU, added new locale sr_ME, sr_RS.
- change locale name ja_JP.ISO2022-JP* -> ja_JP.ISO-2022-JP*
for X11's locale.alias file alignments.
- fix regression test, wrong wcs?width(3), NAN/INF usage.
i tested release-build following arch:
i386, amd64, hpc{mips,arm,sh}, sparc64, vax.
citrus_lc_*.[ch] also can read old-plain-text style locale-db.
so that backward compatibility is keeped, but lc*.[ch] can't read
new citrus_db'ed locale-db and localeio.c never check sanity,
so forward compatibility is broken ;-<
old mklocale(1) doesn't know -t option, so you have to rebuild toolchain.
2009-01-02 03:20:18 +03:00
|
|
|
.part_name = {
|
|
|
|
[(size_t)LC_ALL ] = _C_LOCALE,
|
|
|
|
[(size_t)LC_COLLATE ] = _C_LOCALE,
|
|
|
|
[(size_t)LC_CTYPE ] = _C_LOCALE,
|
|
|
|
[(size_t)LC_MONETARY] = _C_LOCALE,
|
|
|
|
[(size_t)LC_NUMERIC ] = _C_LOCALE,
|
|
|
|
[(size_t)LC_TIME ] = _C_LOCALE,
|
|
|
|
[(size_t)LC_MESSAGES] = _C_LOCALE,
|
|
|
|
},
|
|
|
|
.part_impl = {
|
|
|
|
[(size_t)LC_ALL ] = (_locale_part_t)NULL,
|
|
|
|
[(size_t)LC_COLLATE ] = (_locale_part_t)NULL,
|
|
|
|
[(size_t)LC_CTYPE ] = (_locale_part_t)
|
|
|
|
__UNCONST(&_DefaultRuneLocale),
|
|
|
|
[(size_t)LC_MONETARY] = (_locale_part_t)
|
|
|
|
__UNCONST(&_DefaultMonetaryLocale),
|
|
|
|
[(size_t)LC_NUMERIC ] = (_locale_part_t)
|
|
|
|
__UNCONST(&_DefaultNumericLocale),
|
|
|
|
[(size_t)LC_MESSAGES] = (_locale_part_t)
|
|
|
|
__UNCONST(&_DefaultMessagesLocale),
|
|
|
|
},
|
|
|
|
};
|