minix/lib/libc/citrus/citrus_ctype.c
Ben Gras 2fe8fb192f Full switch to clang/ELF. Drop ack. Simplify.
There is important information about booting non-ack images in
docs/UPDATING. ack/aout-format images can't be built any more, and
booting clang/ELF-format ones is a little different. Updating to the
new boot monitor is recommended.

Changes in this commit:

	. drop boot monitor -> allowing dropping ack support
	. facility to copy ELF boot files to /boot so that old boot monitor
	  can still boot fairly easily, see UPDATING
	. no more ack-format libraries -> single-case libraries
	. some cleanup of OBJECT_FMT, COMPILER_TYPE, etc cases
	. drop several ack toolchain commands, but not all support
	  commands (e.g. aal is gone but acksize is not yet).
	. a few libc files moved to netbsd libc dir
	. new /bin/date as minix date used code in libc/
	. test compile fix
	. harmonize includes
	. /usr/lib is no longer special: without ack, /usr/lib plays no
	  kind of special bootstrapping role any more and bootstrapping
	  is done exclusively through packages, so releases depend even
	  less on the state of the machine making them now.
	. rename nbsd_lib* to lib*
	. reduce mtree
2012-02-14 14:52:02 +01:00

211 lines
5.3 KiB
C

/* $NetBSD: citrus_ctype.c,v 1.5 2008/06/14 16:01:07 tnozaki Exp $ */
/*-
* Copyright (c)1999, 2000, 2001, 2002 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)
__RCSID("$NetBSD: citrus_ctype.c,v 1.5 2008/06/14 16:01:07 tnozaki Exp $");
#endif /* LIBC_SCCS and not lint */
#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, /* cc_ops */
NULL, /* cc_closure */
NULL /* cc_module */
};
#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;
/* If return ABI version is not expected, fixup it here*/
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;
/* FALLTHROUGH */
case 0x00000002:
/* FALLTHROUGH */
default:
break;
}
/* validation check */
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_mbstowcs == NULL ||
cc->cc_ops->co_mbtowc == NULL ||
cc->cc_ops->co_wcrtomb == NULL ||
cc->cc_ops->co_wcsrtombs == 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)
goto bad;
/* init and get closure */
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
/* !_I18N_DYNAMIC */
int
/*ARGSUSED*/
_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
/*ARGSUSED*/
_citrus_ctype_close(_citrus_ctype_t cc)
{
}
#endif