[BACK]Return to citrus_ctype.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / citrus

File: [cvs.NetBSD.org] / src / lib / libc / citrus / citrus_ctype.c (download)

Revision 1.7, Tue May 28 16:57:56 2013 UTC (10 years, 10 months ago) by joerg
Branch: MAIN
CVS Tags: yamt-pagecache-base9, tls-maxphys-base, tls-earlyentropy-base, tls-earlyentropy, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3, riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2, prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, phil-wifi-base, phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, phil-wifi-20191119, phil-wifi-20190609, phil-wifi, pgoyette-localcount-base, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, pgoyette-localcount, pgoyette-compat-merge-20190127, pgoyette-compat-base, pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, pgoyette-compat-0906, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315, pgoyette-compat, perseant-stdc-iso10646-base, netbsd-9-base, netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, netbsd-9, netbsd-8-base, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, netbsd-8, netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, netbsd-7-base, netbsd-7-2-RELEASE, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0, netbsd-7, netbsd-10-base, netbsd-10-0-RELEASE, netbsd-10-0-RC6, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1, netbsd-10, matt-nb8-mediatek-base, matt-nb8-mediatek, localcount-20160914, is-mlppp-base, is-mlppp, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan, HEAD
Branch point for: perseant-stdc-iso10646
Changes since 1.6: +6 -2 lines

Add mbsnrtowcs and wcsnrtombs. Approved by core.

/*	$NetBSD: citrus_ctype.c,v 1.7 2013/05/28 16:57:56 joerg 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.7 2013/05/28 16:57:56 joerg 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:
		cc->cc_ops->co_mbsnrtowcs = &_citrus_ctype_mbsnrtowcs_fallback;
		cc->cc_ops->co_wcsnrtombs = &_citrus_ctype_wcsnrtombs_fallback;
		/* 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_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;
	}

	/* 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