Update.
[platform/upstream/glibc.git] / iconv / iconv.c
1 /* Convert characters in input buffer using conversion descriptor to
2    output buffer.
3    Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
4    This file is part of the GNU C Library.
5    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
6
7    The GNU C Library is free software; you can redistribute it and/or
8    modify it under the terms of the GNU Library General Public License as
9    published by the Free Software Foundation; either version 2 of the
10    License, or (at your option) any later version.
11
12    The GNU C Library is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    Library General Public License for more details.
16
17    You should have received a copy of the GNU Library General Public
18    License along with the GNU C Library; see the file COPYING.LIB.  If not,
19    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20    Boston, MA 02111-1307, USA.  */
21
22 #include <errno.h>
23 #include <iconv.h>
24
25 #include <gconv_int.h>
26
27 #include <assert.h>
28
29
30 size_t
31 iconv (iconv_t cd, const char **inbuf, size_t *inbytesleft, char **outbuf,
32        size_t *outbytesleft)
33 {
34   gconv_t gcd = (gconv_t) cd;
35   char *outstart = outbuf ? *outbuf : NULL;
36   size_t converted;
37   int result;
38
39   if (inbuf == NULL || *inbuf == NULL)
40     {
41       result = __gconv (gcd, NULL, NULL, (unsigned char **) outbuf,
42                         (unsigned char *) (outstart + *outbytesleft),
43                         &converted);
44     }
45   else
46     {
47       const char *instart = *inbuf;
48
49       result = __gconv (gcd, (const unsigned char **) inbuf,
50                         (const unsigned char *)  (*inbuf + *inbytesleft),
51                         (unsigned char **) outbuf,
52                         (unsigned char *) (*outbuf + *outbytesleft),
53                         &converted);
54
55       *inbytesleft -= *inbuf - instart;
56     }
57   if (outstart != NULL)
58     *outbytesleft -= *outbuf - outstart;
59
60   switch (result)
61     {
62     case GCONV_ILLEGAL_DESCRIPTOR:
63       __set_errno (EBADF);
64       converted = (size_t) -1L;
65       break;
66
67     case GCONV_ILLEGAL_INPUT:
68       __set_errno (EILSEQ);
69       converted = (size_t) -1L;
70       break;
71
72     case GCONV_FULL_OUTPUT:
73       __set_errno (E2BIG);
74       converted = (size_t) -1L;
75       break;
76
77     case GCONV_INCOMPLETE_INPUT:
78       __set_errno (EINVAL);
79       converted = (size_t) -1L;
80       break;
81
82     case GCONV_EMPTY_INPUT:
83     case GCONV_OK:
84       /* Nothing.  */
85       break;
86
87     default:
88       assert (!"Nothing like this should happen");
89     }
90
91   return converted;
92 }