2009-03-04 04:28:35 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 The Android Open Source 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:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * 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 COPYRIGHT HOLDERS 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
|
|
|
|
* COPYRIGHT OWNER 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.
|
|
|
|
*/
|
2012-10-23 02:05:27 +02:00
|
|
|
|
2014-11-21 09:18:07 +01:00
|
|
|
#include <errno.h>
|
2009-03-04 04:28:35 +01:00
|
|
|
#include <locale.h>
|
2014-04-08 23:34:12 +02:00
|
|
|
#include <pthread.h>
|
2012-10-23 02:05:27 +02:00
|
|
|
#include <stdlib.h>
|
2014-11-07 00:04:08 +01:00
|
|
|
#include <string.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <wchar.h>
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2014-07-30 19:53:48 +02:00
|
|
|
#include "private/bionic_macros.h"
|
|
|
|
|
2014-04-09 02:05:05 +02:00
|
|
|
// We currently support a single locale, the "C" locale (also known as "POSIX").
|
|
|
|
|
2014-07-30 19:53:48 +02:00
|
|
|
static bool __bionic_current_locale_is_utf8 = true;
|
|
|
|
|
2014-04-09 02:05:05 +02:00
|
|
|
struct __locale_t {
|
2014-07-30 19:53:48 +02:00
|
|
|
size_t mb_cur_max;
|
|
|
|
|
|
|
|
__locale_t(size_t mb_cur_max) : mb_cur_max(mb_cur_max) {
|
|
|
|
}
|
|
|
|
|
|
|
|
__locale_t(const __locale_t* other) {
|
|
|
|
if (other == LC_GLOBAL_LOCALE) {
|
|
|
|
mb_cur_max = __bionic_current_locale_is_utf8 ? 4 : 1;
|
|
|
|
} else {
|
|
|
|
mb_cur_max = other->mb_cur_max;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(__locale_t);
|
2014-04-09 02:05:05 +02:00
|
|
|
};
|
|
|
|
|
2015-03-06 05:08:21 +01:00
|
|
|
size_t __ctype_get_mb_cur_max() {
|
|
|
|
locale_t l = uselocale(NULL);
|
|
|
|
if (l == LC_GLOBAL_LOCALE) {
|
|
|
|
return __bionic_current_locale_is_utf8 ? 4 : 1;
|
|
|
|
} else {
|
|
|
|
return l->mb_cur_max;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-14 19:02:03 +02:00
|
|
|
static pthread_once_t g_locale_once = PTHREAD_ONCE_INIT;
|
|
|
|
static lconv g_locale;
|
2014-04-09 02:05:05 +02:00
|
|
|
|
2014-04-08 23:34:12 +02:00
|
|
|
static void __locale_init() {
|
2014-05-14 19:02:03 +02:00
|
|
|
g_locale.decimal_point = const_cast<char*>(".");
|
2014-04-08 23:34:12 +02:00
|
|
|
|
|
|
|
char* not_available = const_cast<char*>("");
|
2014-05-14 19:02:03 +02:00
|
|
|
g_locale.thousands_sep = not_available;
|
|
|
|
g_locale.grouping = not_available;
|
|
|
|
g_locale.int_curr_symbol = not_available;
|
|
|
|
g_locale.currency_symbol = not_available;
|
|
|
|
g_locale.mon_decimal_point = not_available;
|
|
|
|
g_locale.mon_thousands_sep = not_available;
|
|
|
|
g_locale.mon_grouping = not_available;
|
|
|
|
g_locale.positive_sign = not_available;
|
|
|
|
g_locale.negative_sign = not_available;
|
|
|
|
|
|
|
|
g_locale.int_frac_digits = CHAR_MAX;
|
|
|
|
g_locale.frac_digits = CHAR_MAX;
|
|
|
|
g_locale.p_cs_precedes = CHAR_MAX;
|
|
|
|
g_locale.p_sep_by_space = CHAR_MAX;
|
|
|
|
g_locale.n_cs_precedes = CHAR_MAX;
|
|
|
|
g_locale.n_sep_by_space = CHAR_MAX;
|
|
|
|
g_locale.p_sign_posn = CHAR_MAX;
|
|
|
|
g_locale.n_sign_posn = CHAR_MAX;
|
|
|
|
g_locale.int_p_cs_precedes = CHAR_MAX;
|
|
|
|
g_locale.int_p_sep_by_space = CHAR_MAX;
|
|
|
|
g_locale.int_n_cs_precedes = CHAR_MAX;
|
|
|
|
g_locale.int_n_sep_by_space = CHAR_MAX;
|
|
|
|
g_locale.int_p_sign_posn = CHAR_MAX;
|
|
|
|
g_locale.int_n_sign_posn = CHAR_MAX;
|
2014-04-09 02:05:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool __is_supported_locale(const char* locale) {
|
2014-05-01 07:03:12 +02:00
|
|
|
return (strcmp(locale, "") == 0 ||
|
2014-07-25 20:24:03 +02:00
|
|
|
strcmp(locale, "C") == 0 ||
|
|
|
|
strcmp(locale, "C.UTF-8") == 0 ||
|
|
|
|
strcmp(locale, "en_US.UTF-8") == 0 ||
|
2014-05-01 07:03:12 +02:00
|
|
|
strcmp(locale, "POSIX") == 0);
|
2014-04-09 02:05:05 +02:00
|
|
|
}
|
|
|
|
|
2014-04-08 23:34:12 +02:00
|
|
|
lconv* localeconv() {
|
2014-05-14 19:02:03 +02:00
|
|
|
pthread_once(&g_locale_once, __locale_init);
|
|
|
|
return &g_locale;
|
2014-04-09 02:05:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
locale_t duplocale(locale_t l) {
|
2014-07-30 19:53:48 +02:00
|
|
|
return new __locale_t(l);
|
2014-04-09 02:05:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void freelocale(locale_t l) {
|
2014-07-30 19:53:48 +02:00
|
|
|
delete l;
|
2014-04-08 23:34:12 +02:00
|
|
|
}
|
|
|
|
|
2014-04-09 02:05:05 +02:00
|
|
|
locale_t newlocale(int category_mask, const char* locale_name, locale_t /*base*/) {
|
2014-11-05 03:03:44 +01:00
|
|
|
// Are 'category_mask' and 'locale_name' valid?
|
|
|
|
if ((category_mask & ~LC_ALL_MASK) != 0 || locale_name == NULL) {
|
2014-04-09 02:05:05 +02:00
|
|
|
errno = EINVAL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!__is_supported_locale(locale_name)) {
|
|
|
|
errno = ENOENT;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-07-30 19:53:48 +02:00
|
|
|
return new __locale_t(strstr(locale_name, "UTF-8") != NULL ? 4 : 1);
|
2014-04-09 02:05:05 +02:00
|
|
|
}
|
|
|
|
|
2014-05-01 07:03:12 +02:00
|
|
|
char* setlocale(int category, const char* locale_name) {
|
2014-04-09 02:05:05 +02:00
|
|
|
// Is 'category' valid?
|
|
|
|
if (category < LC_CTYPE || category > LC_IDENTIFICATION) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-05-01 07:03:12 +02:00
|
|
|
// Caller wants to set the locale rather than just query?
|
|
|
|
if (locale_name != NULL) {
|
|
|
|
if (!__is_supported_locale(locale_name)) {
|
|
|
|
// We don't support this locale.
|
|
|
|
errno = ENOENT;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
__bionic_current_locale_is_utf8 = (strstr(locale_name, "UTF-8") != NULL);
|
2014-04-09 02:05:05 +02:00
|
|
|
}
|
|
|
|
|
2014-05-01 07:03:12 +02:00
|
|
|
return const_cast<char*>(__bionic_current_locale_is_utf8 ? "C.UTF-8" : "C");
|
2009-03-04 04:28:35 +01:00
|
|
|
}
|
2014-04-09 02:05:05 +02:00
|
|
|
|
2015-03-06 05:08:21 +01:00
|
|
|
// We can't use a constructor to create g_uselocal_key, because it may be used in constructors.
|
|
|
|
static pthread_once_t g_uselocale_once = PTHREAD_ONCE_INIT;
|
|
|
|
static pthread_key_t g_uselocale_key;
|
|
|
|
|
|
|
|
static void g_uselocale_key_init() {
|
|
|
|
pthread_key_create(&g_uselocale_key, NULL);
|
|
|
|
}
|
|
|
|
|
2014-04-09 02:05:05 +02:00
|
|
|
locale_t uselocale(locale_t new_locale) {
|
2015-03-06 05:08:21 +01:00
|
|
|
pthread_once(&g_uselocale_once, g_uselocale_key_init);
|
2014-05-14 19:02:03 +02:00
|
|
|
locale_t old_locale = static_cast<locale_t>(pthread_getspecific(g_uselocale_key));
|
2014-04-09 02:05:05 +02:00
|
|
|
|
|
|
|
// If this is the first call to uselocale(3) on this thread, we return LC_GLOBAL_LOCALE.
|
|
|
|
if (old_locale == NULL) {
|
|
|
|
old_locale = LC_GLOBAL_LOCALE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (new_locale != NULL) {
|
2014-05-14 19:02:03 +02:00
|
|
|
pthread_setspecific(g_uselocale_key, new_locale);
|
2014-04-09 02:05:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return old_locale;
|
|
|
|
}
|
2014-11-07 00:04:08 +01:00
|
|
|
|
|
|
|
int strcasecmp_l(const char* s1, const char* s2, locale_t) {
|
|
|
|
return strcasecmp(s1, s2);
|
|
|
|
}
|
|
|
|
|
|
|
|
int strcoll_l(const char* s1, const char* s2, locale_t) {
|
|
|
|
return strcoll(s1, s2);
|
|
|
|
}
|
|
|
|
|
|
|
|
char* strerror_l(int error, locale_t) {
|
|
|
|
return strerror(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t strftime_l(char* s, size_t max, const char* format, const struct tm* tm, locale_t) {
|
|
|
|
return strftime(s, max, format, tm);
|
|
|
|
}
|
|
|
|
|
|
|
|
int strncasecmp_l(const char* s1, const char* s2, size_t n, locale_t) {
|
|
|
|
return strncasecmp(s1, s2, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
long double strtold_l(const char* s, char** end_ptr, locale_t) {
|
|
|
|
return strtold(s, end_ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
long long strtoll_l(const char* s, char** end_ptr, int base, locale_t) {
|
|
|
|
return strtoll(s, end_ptr, base);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned long long strtoull_l(const char* s, char** end_ptr, int base, locale_t) {
|
|
|
|
return strtoull(s, end_ptr, base);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t strxfrm_l(char* dst, const char* src, size_t n, locale_t) {
|
|
|
|
return strxfrm(dst, src, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
int wcscasecmp_l(const wchar_t* ws1, const wchar_t* ws2, locale_t) {
|
|
|
|
return wcscasecmp(ws1, ws2);
|
|
|
|
}
|
|
|
|
|
|
|
|
int wcsncasecmp_l(const wchar_t* ws1, const wchar_t* ws2, size_t n, locale_t) {
|
|
|
|
return wcsncasecmp(ws1, ws2, n);
|
|
|
|
}
|