#include "namespace.h"
#include <errno.h>
#include <pthread.h>
#include <stdio.h>
#include <string.h>
#include <runetype.h>
#include "libc_private.h"
#include "xlocale_private.h"
#include "un-namespace.h"
extern struct xlocale_component __xlocale_global_collate;
extern struct xlocale_component __xlocale_global_ctype;
extern struct xlocale_component __xlocale_global_monetary;
extern struct xlocale_component __xlocale_global_numeric;
extern struct xlocale_component __xlocale_global_time;
extern struct xlocale_component __xlocale_global_messages;
extern struct xlocale_component __xlocale_C_collate;
extern struct xlocale_component __xlocale_C_ctype;
__thread locale_t __thread_locale;
int __has_thread_locale;
const char * __get_locale_env(int category);
int __get_locale_str(int category, const char *str, char * const res);
int __detect_path_locale(void);
struct _xlocale __xlocale_global_locale = {
.header = {0},
.components = {
&__xlocale_global_collate,
&__xlocale_global_ctype,
&__xlocale_global_monetary,
&__xlocale_global_numeric,
&__xlocale_global_time,
&__xlocale_global_messages
},
.monetary_locale_changed = 1,
.using_monetary_locale = 0,
.numeric_locale_changed = 1,
.using_numeric_locale = 0
};
struct _xlocale __xlocale_C_locale = {
.header = {0},
.components = {
&__xlocale_C_collate,
&__xlocale_C_ctype,
0, 0, 0, 0
},
.monetary_locale_changed = 1,
.using_monetary_locale = 0,
.numeric_locale_changed = 1,
.using_numeric_locale = 0
};
static void*(*constructors[])(const char*, locale_t) =
{
__collate_load,
__ctype_load,
__monetary_load,
__numeric_load,
__time_load,
__messages_load
};
static pthread_key_t locale_info_key;
static int fake_tls;
static locale_t thread_local_locale;
static void init_key(void)
{
_pthread_key_create(&locale_info_key, xlocale_release);
_pthread_setspecific(locale_info_key, (void*)42);
if (_pthread_getspecific(locale_info_key) == (void*)42) {
_pthread_setspecific(locale_info_key, 0);
} else {
fake_tls = 1;
}
__has_thread_locale = 1;
__detect_path_locale();
}
static pthread_once_t once_control = PTHREAD_ONCE_INIT;
static locale_t
get_thread_locale(void)
{
_once(&once_control, init_key);
return (fake_tls ? thread_local_locale :
_pthread_getspecific(locale_info_key));
}
static void
set_thread_locale(locale_t loc)
{
locale_t l = (loc == LC_GLOBAL_LOCALE) ? 0 : loc;
_once(&once_control, init_key);
if (NULL != l) {
xlocale_retain((struct xlocale_refcounted*)l);
}
locale_t old = _pthread_getspecific(locale_info_key);
if ((NULL != old) && (l != old)) {
xlocale_release((struct xlocale_refcounted*)old);
}
if (fake_tls) {
thread_local_locale = l;
} else {
_pthread_setspecific(locale_info_key, l);
}
__thread_locale = l;
__set_thread_rune_locale(loc);
}
static void
destruct_locale(void *l)
{
locale_t loc = l;
for (int type=0 ; type<XLC_LAST ; type++) {
if (loc->components[type]) {
xlocale_release(loc->components[type]);
}
}
if (loc->csym) {
free(loc->csym);
}
free(l);
}
static locale_t
alloc_locale(void)
{
locale_t new = calloc(sizeof(struct _xlocale), 1);
new->header.destructor = destruct_locale;
new->monetary_locale_changed = 1;
new->numeric_locale_changed = 1;
return (new);
}
static void
copyflags(locale_t new, locale_t old)
{
new->using_monetary_locale = old->using_monetary_locale;
new->using_numeric_locale = old->using_numeric_locale;
new->using_time_locale = old->using_time_locale;
new->using_messages_locale = old->using_messages_locale;
}
static int dupcomponent(int type, locale_t base, locale_t new)
{
struct xlocale_component *src = base->components[type];
if (&__xlocale_global_locale == base) {
new->components[type] = constructors[type](src->locale, new);
if (new->components[type]) {
strncpy(new->components[type]->locale, src->locale,
ENCODING_LEN);
}
} else if (base->components[type]) {
new->components[type] = xlocale_retain(base->components[type]);
} else {
return 1;
}
return (0 != new->components[type]);
}
locale_t newlocale(int mask, const char *locale, locale_t base)
{
int type;
const char *realLocale = locale;
const char *np, *cp;
char lres[ENCODING_LEN + 1] = "";
int len;
int useenv = 0;
int useslh = 0;
int usestr = 0;
int success = 1;
_once(&once_control, init_key);
locale_t new = alloc_locale();
if (NULL == new) {
return (NULL);
}
FIX_LOCALE(base);
copyflags(new, base);
if (NULL == locale) {
realLocale = "C";
} else if ('\0' == locale[0]) {
useenv = 1;
} else if (strchr(locale, '/') != NULL) {
useslh = 1;
np = locale;
} else if ('L' == locale[0] && strchr(locale, ';') != NULL) {
usestr = 1;
}
for (type=0 ; type<XLC_LAST ; type++) {
if (useslh) {
cp = strchr(np, '/');
if (cp == NULL && type == XLC_LAST - 1) {
cp = locale + strlen(locale);
} else if (cp == NULL || type == XLC_LAST - 1) {
errno = EINVAL;
success = 0;
break;
}
len = cp - np;
if (len > ENCODING_LEN || len <= 0) {
errno = EINVAL;
success = 0;
break;
}
strncpy(lres, np, len);
lres[len] = '\0';
np = cp + 1;
}
if (mask & 1) {
if (useenv) {
realLocale = __get_locale_env(type + 1);
} else if (useslh) {
realLocale = lres;
} else if (usestr) {
__get_locale_str(type + 1, locale, lres);
realLocale = lres;
}
new->components[type] =
constructors[type](realLocale, new);
if (new->components[type]) {
strncpy(new->components[type]->locale,
realLocale, ENCODING_LEN);
} else {
success = 0;
break;
}
} else {
if (!dupcomponent(type, base, new)) {
success = 0;
break;
}
}
mask >>= 1;
}
if (0 == success) {
xlocale_release(new);
new = NULL;
}
return (new);
}
locale_t duplocale(locale_t base)
{
locale_t new = alloc_locale();
int type;
_once(&once_control, init_key);
if (NULL == new) {
return (NULL);
}
FIX_LOCALE(base);
copyflags(new, base);
for (type=0 ; type<XLC_LAST ; type++) {
dupcomponent(type, base, new);
}
return (new);
}
void
freelocale(locale_t loc)
{
if (loc != NULL && loc != LC_GLOBAL_LOCALE &&
loc != &__xlocale_global_locale)
xlocale_release(loc);
}
const char *querylocale(int mask, locale_t loc)
{
int type = ffs(mask) - 1;
FIX_LOCALE(loc);
if (type >= XLC_LAST)
return (NULL);
if (loc->components[type])
return (loc->components[type]->locale);
return ("C");
}
locale_t uselocale(locale_t loc)
{
locale_t old = get_thread_locale();
if (NULL != loc) {
set_thread_locale(loc);
}
return (old ? old : LC_GLOBAL_LOCALE);
}