NetBSD/lib/libc/locale/runeglue.c

138 lines
4.2 KiB
C
Raw Normal View History

/* $NetBSD: runeglue.c,v 1.4 2000/12/28 05:27:35 itojun Exp $ */
/*-
* Copyright (c)1999 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.
*
* citrus Id: runeglue.c,v 1.7 2000/12/22 22:52:29 itojun Exp
*/
/*
* Glue code to hide "rune" facility from user programs.
* This is important to keep backward/future compatibility.
*/
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: runeglue.c,v 1.4 2000/12/28 05:27:35 itojun Exp $");
#endif /* LIBC_SCCS and not lint */
#define _CTYPE_PRIVATE
#include <stdio.h>
#include <sys/types.h>
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include "runetype.h"
#include "rune_local.h"
#if EOF != -1
#error "EOF != -1"
#endif
#if _CACHED_RUNES != 256
#error "_CACHED_RUNES != 256"
#endif
int
2000-12-23 01:51:22 +03:00
__runetable_to_netbsd_ctype(locale)
const char *locale;
{
int i;
unsigned char *new_ctype;
short *new_toupper, *new_tolower;
/* set to C locale, to ease failure case handling */
if (_ctype_ != _C_ctype_) {
/* LINTED const castaway */
free((void *)_ctype_);
_ctype_ = _C_ctype_;
}
if (_toupper_tab_ != _C_toupper_) {
/* LINTED const castaway */
free((void *)_toupper_tab_);
_toupper_tab_ = _C_toupper_;
}
if (_tolower_tab_ != _C_tolower_) {
/* LINTED const castaway */
free((void *)_tolower_tab_);
_tolower_tab_ = _C_tolower_;
}
2000-12-23 01:51:22 +03:00
if (!strcmp(locale, "C") || !strcmp(locale, "POSIX"))
return 0;
new_ctype = malloc(sizeof(*new_ctype) * (1 + _CTYPE_NUM_CHARS));
if (!new_ctype)
return -1;
new_toupper = malloc(sizeof(*new_toupper) * (1 + 256));
if (!new_toupper) {
free(new_ctype);
return -1;
}
new_tolower = malloc(sizeof(*new_tolower) * (1 + 256));
if (!new_tolower) {
free(new_ctype);
free(new_toupper);
return -1;
}
memset(new_ctype, 0, sizeof(*new_ctype) * (1 + _CTYPE_NUM_CHARS));
memset(new_toupper, 0, sizeof(*new_toupper) * (1 + 256));
memset(new_tolower, 0, sizeof(*new_tolower) * (1 + 256));
new_ctype[0] = 0;
new_toupper[0] = EOF;
new_tolower[0] = EOF;
for (i = 0; i < _CTYPE_NUM_CHARS; i++) {
new_ctype[i + 1]=0;
if (_CurrentRuneLocale->__runetype[i] & _CTYPE_U)
new_ctype[i + 1] |= _U;
if (_CurrentRuneLocale->__runetype[i] & _CTYPE_L)
new_ctype[i + 1] |= _L;
if (_CurrentRuneLocale->__runetype[i] & _CTYPE_D)
new_ctype[i + 1] |= _N;
if (_CurrentRuneLocale->__runetype[i] & _CTYPE_S)
new_ctype[i + 1] |= _S;
if (_CurrentRuneLocale->__runetype[i] & _CTYPE_P)
new_ctype[i + 1] |= _P;
if (_CurrentRuneLocale->__runetype[i] & _CTYPE_C)
new_ctype[i + 1] |= _C;
if (_CurrentRuneLocale->__runetype[i] & _CTYPE_X)
new_ctype[i + 1] |= _X;
if (_CurrentRuneLocale->__runetype[i] & _CTYPE_B)
new_ctype[i + 1] |= _B;
new_toupper[i + 1] = (short)_CurrentRuneLocale->__mapupper[i];
new_tolower[i + 1] = (short)_CurrentRuneLocale->__maplower[i];
}
/* LINTED const cast */
_ctype_ = (const unsigned char *)new_ctype;
/* LINTED const cast */
_toupper_tab_ = (const short *)new_toupper;
/* LINTED const cast */
_tolower_tab_ = (const short *)new_tolower;
return 0;
}