New module 'uniconv/u8-conv-from-enc'.
[gnulib.git] / lib / uniconv / u8-conv-from-enc.c
1 /* Conversion to UTF-8 from legacy encodings.
2    Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify it
5    under the terms of the GNU Library General Public License as published
6    by the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Library General Public License for more details.
13
14    You should have received a copy of the GNU Library General Public
15    License along with this program; if not, write to the Free Software
16    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
17    USA.  */
18
19 /* Written by Bruno Haible <bruno@clisp.org>.  */
20
21 #include <config.h>
22
23 /* Specification.  */
24 #include "uniconv.h"
25
26 #include <errno.h>
27 #include <stdlib.h>
28 #include <string.h>
29
30 #include "c-strcaseeq.h"
31 #include "striconveha.h"
32 #include "unistr.h"
33
34 int
35 u8_conv_from_encoding (const char *fromcode,
36                        enum iconv_ilseq_handler handler,
37                        const char *src, size_t srclen,
38                        size_t *offsets,
39                        uint8_t **resultp, size_t *lengthp)
40 {
41   if (STRCASEEQ (fromcode, "UTF-8", 'U','T','F','-','8',0,0,0,0))
42     {
43       /* Conversion from UTF-8 to UTF-8.  No need to go through iconv().  */
44       uint8_t *result;
45
46       if (u8_check ((const uint8_t *) src, srclen))
47         {
48           errno = EILSEQ;
49           return -1;
50         }
51
52       if (offsets != NULL)
53         {
54           size_t i;
55
56           for (i = 0; i < srclen; )
57             {
58               int count = u8_mblen (src + i, srclen - i);
59               /* We can rely on count > 0 because of the previous u8_check.  */
60               if (count <= 0)
61                 abort ();
62               offsets[i] = i;
63               i++;
64               while (--count > 0)
65                 offsets[i++] = (size_t)(-1);
66             }
67         }
68
69       /* Memory allocation.  */
70       if (*resultp != NULL && *lengthp >= srclen)
71         result = *resultp;
72       else
73         {
74           result = (uint8_t *) malloc (srclen);
75           if (result == NULL)
76             {
77               errno = ENOMEM;
78               return -1;
79             }
80         }
81
82       memcpy ((char *) result, src, srclen);
83       *resultp = result;
84       *lengthp = srclen;
85       return 0;
86     }
87   else
88     return mem_iconveha (src, srclen, fromcode, "UTF-8", true, handler,
89                          offsets, (char **) resultp, lengthp);
90 }