#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: citrus_ctype.c,v 1.7 2013/05/28 16:57:56 joerg Exp $");
#endif
#include <sys/types.h>
#include <assert.h>
#include <errno.h>
#include <limits.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <stddef.h>
#include <wchar.h>
#include "citrus_module.h"
#include "citrus_ctype.h"
#include "citrus_ctype_fallback.h"
#include "citrus_none.h"
#include _CITRUS_DEFAULT_CTYPE_HEADER
_citrus_ctype_rec_t _citrus_ctype_default = {
&_CITRUS_DEFAULT_CTYPE_OPS,
NULL,
NULL
};
#ifdef _I18N_DYNAMIC
static int _initctypemodule(_citrus_ctype_t, char const *, _citrus_module_t,
void *, size_t, size_t);
static int
_initctypemodule(_citrus_ctype_t cc, char const *modname,
_citrus_module_t handle, void *variable, size_t lenvar,
size_t szpriv)
{
int ret;
_citrus_ctype_getops_t getops;
_DIAGASSERT(cc != NULL);
cc->cc_module = handle;
getops = (_citrus_ctype_getops_t)_citrus_find_getops(cc->cc_module,
modname,
"ctype");
if (getops == NULL)
return (EINVAL);
cc->cc_ops = (_citrus_ctype_ops_rec_t *)malloc(sizeof(*cc->cc_ops));
if (cc->cc_ops == NULL)
return (ENOMEM);
ret = (*getops)(cc->cc_ops, sizeof(*cc->cc_ops),
_CITRUS_CTYPE_ABI_VERSION);
if (ret)
goto bad;
switch (cc->cc_ops->co_abi_version) {
case 0x00000001:
cc->cc_ops->co_btowc = &_citrus_ctype_btowc_fallback;
cc->cc_ops->co_wctob = &_citrus_ctype_wctob_fallback;
case 0x00000002:
cc->cc_ops->co_mbsnrtowcs = &_citrus_ctype_mbsnrtowcs_fallback;
cc->cc_ops->co_wcsnrtombs = &_citrus_ctype_wcsnrtombs_fallback;
default:
break;
}
if (cc->cc_ops->co_init == NULL ||
cc->cc_ops->co_uninit == NULL ||
cc->cc_ops->co_get_mb_cur_max == NULL ||
cc->cc_ops->co_mblen == NULL ||
cc->cc_ops->co_mbrlen == NULL ||
cc->cc_ops->co_mbrtowc == NULL ||
cc->cc_ops->co_mbsinit == NULL ||
cc->cc_ops->co_mbsrtowcs == NULL ||
cc->cc_ops->co_mbsnrtowcs == NULL ||
cc->cc_ops->co_mbstowcs == NULL ||
cc->cc_ops->co_mbtowc == NULL ||
cc->cc_ops->co_wcrtomb == NULL ||
cc->cc_ops->co_wcsrtombs == NULL ||
cc->cc_ops->co_wcsnrtombs == NULL ||
cc->cc_ops->co_wcstombs == NULL ||
cc->cc_ops->co_wctomb == NULL ||
cc->cc_ops->co_btowc == NULL ||
cc->cc_ops->co_wctob == NULL) {
ret = EINVAL;
goto bad;
}
ret = (*cc->cc_ops->co_init)(
&cc->cc_closure, variable, lenvar, szpriv);
if (ret)
goto bad;
return (0);
bad:
if (cc->cc_ops)
free(cc->cc_ops);
cc->cc_ops = NULL;
return (ret);
}
int
_citrus_ctype_open(_citrus_ctype_t *rcc,
char const *encname, void *variable, size_t lenvar,
size_t szpriv)
{
int ret;
_citrus_module_t handle;
_citrus_ctype_t cc;
_DIAGASSERT(encname != NULL);
_DIAGASSERT(!lenvar || variable!=NULL);
_DIAGASSERT(rcc != NULL);
if (!strcmp(encname, _CITRUS_DEFAULT_CTYPE_NAME)) {
*rcc = &_citrus_ctype_default;
return (0);
}
ret = _citrus_load_module(&handle, encname);
if (ret)
return (ret);
cc = calloc(1, sizeof(*cc));
if (!cc) {
_citrus_unload_module(handle);
return (errno);
}
ret = _initctypemodule(cc, encname, handle, variable, lenvar, szpriv);
if (ret) {
_citrus_unload_module(cc->cc_module);
free(cc);
return (ret);
}
*rcc = cc;
return (0);
}
void
_citrus_ctype_close(_citrus_ctype_t cc)
{
_DIAGASSERT(cc != NULL);
if (cc == &_citrus_ctype_default)
return;
(*cc->cc_ops->co_uninit)(cc->cc_closure);
free(cc->cc_ops);
_citrus_unload_module(cc->cc_module);
free(cc);
}
#else
int
_citrus_ctype_open(_citrus_ctype_t *rcc,
char const *encname, void *variable, size_t lenvar,
size_t szpriv)
{
if (!strcmp(encname, _CITRUS_DEFAULT_CTYPE_NAME)) {
*rcc = &_citrus_ctype_default;
return (0);
}
return (EINVAL);
}
void
_citrus_ctype_close(_citrus_ctype_t cc)
{
}
#endif