iconv.c revision 1.3       1 /*	$NetBSD: iconv.c,v 1.3 2004/08/01 16:40:58 tshiozak Exp $	*/
      2 
      3 /*-
      4  * Copyright (c)2003 Citrus Project,
      5  * All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  *
     16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  * SUCH DAMAGE.
     27  */
     28 
     29 #include <sys/cdefs.h>
     30 #if defined(LIBC_SCCS) && !defined(lint)
     31 __RCSID("$NetBSD: iconv.c,v 1.3 2004/08/01 16:40:58 tshiozak Exp $");
     32 #endif /* LIBC_SCCS and not lint */
     33 
     34 #include "namespace.h"
     35 #include <assert.h>
     36 #include <errno.h>
     37 #include <paths.h>
     38 #include <sys/queue.h>
     39 
     40 #include <iconv.h>
     41 
     42 #ifdef CITRUS_ICONV
     43 #include <sys/types.h>
     44 #include <citrus/citrus_types.h>
     45 #include <citrus/citrus_module.h>
     46 #include <citrus/citrus_esdb.h>
     47 #include <citrus/citrus_hash.h>
     48 #include <citrus/citrus_iconv.h>
     49 
     50 #define ISBADF(_h_)	(!(_h_) || (_h_) == (iconv_t)-1)
     51 
     52 #ifdef __weak_alias
     53 __weak_alias(iconv, _iconv)
     54 __weak_alias(iconv_open, _iconv_open)
     55 __weak_alias(iconv_close, _iconv_close)
     56 #endif
     57 
     58 iconv_t
     59 _iconv_open(const char *out, const char *in)
     60 {
     61 	int ret;
     62 	struct _citrus_iconv *handle;
     63 
     64 	ret = _citrus_iconv_open(&handle, _PATH_ICONV, in, out);
     65 	if (ret) {
     66 		errno = ret;
     67 		return ((iconv_t)-1);
     68 	}
     69 
     70 	return ((iconv_t)(void *)handle);
     71 }
     72 
     73 int
     74 _iconv_close(iconv_t handle)
     75 {
     76 	if (ISBADF(handle)) {
     77 		errno = EBADF;
     78 		return (-1);
     79 	}
     80 
     81 	_citrus_iconv_close((struct _citrus_iconv *)(void *)handle);
     82 
     83 	return (0);
     84 }
     85 
     86 size_t
     87 _iconv(iconv_t handle, char **in, size_t *szin, char **out, size_t *szout)
     88 {
     89 	int err;
     90 	size_t ret;
     91 
     92 	if (ISBADF(handle)) {
     93 		errno = EBADF;
     94 		return ((size_t)-1);
     95 	}
     96 
     97 	err = _citrus_iconv_convert(
     98 		(struct _citrus_iconv *)(void *)handle, (const char **)in, szin,
     99 		out, szout,
    100 		0, &ret);
    101 	if (err) {
    102 		errno = err;
    103 		ret = (size_t)-1;
    104 	}
    105 
    106 	return (ret);
    107 }
    108 
    109 size_t
    110 __iconv(iconv_t handle, const char **in, size_t *szin, char **out,
    111 	size_t *szout, u_int32_t flags, size_t *invalids)
    112 {
    113 	int err;
    114 	size_t ret;
    115 
    116 	if (ISBADF(handle)) {
    117 		errno = EBADF;
    118 		return ((size_t)-1);
    119 	}
    120 
    121 	err = _citrus_iconv_convert(
    122 		(struct _citrus_iconv *)(void *)handle, in, szin, out, szout,
    123 		flags, &ret);
    124 	if (invalids)
    125 		*invalids = ret;
    126 	if (err) {
    127 		errno = err;
    128 		ret = (size_t)-1;
    129 	}
    130 
    131 	return (ret);
    132 }
    133 
    134 int
    135 __iconv_get_list(char ***rlist, size_t *rsz)
    136 {
    137 	int ret;
    138 
    139 	ret = _citrus_esdb_get_list(rlist, rsz);
    140 	if (ret) {
    141 		errno = ret;
    142 		return -1;
    143 	}
    144 
    145 	return 0;
    146 }
    147 
    148 void
    149 __iconv_free_list(char **list, size_t sz)
    150 {
    151 	_citrus_esdb_free_list(list, sz);
    152 }
    153 
    154 #else
    155 iconv_t
    156 /*ARGSUSED*/
    157 _iconv_open(const char *in, const char *out)
    158 {
    159 	errno = EINVAL;
    160 	return ((iconv_t)-1);
    161 }
    162 int
    163 /*ARGSUSED*/
    164 _iconv_close(iconv_t handle)
    165 {
    166 	errno = EBADF;
    167 	return (-1);
    168 }
    169 size_t
    170 /*ARGSUSED*/
    171 _iconv(iconv_t handle, const char **in, size_t *szin, char **out, size_t *szout)
    172 {
    173 	errno = EBADF;
    174 	return ((size_t)-1);
    175 }
    176 int
    177 /*ARGSUSED*/
    178 __iconv_get_list(char ***rlist, size_t *rsz)
    179 {
    180 	errno = EINVAL;
    181 	return -1;
    182 }
    183 void
    184 /*ARGSUSED*/
    185 __iconv_free_list(char **list, size_t sz)
    186 {
    187 }
    188 #endif
    189