]> arthur.barton.de Git - netatalk.git/blob - libatalk/unicode/charsets/mac_chinese_simp.c
fix LFS test for cross compilation, from Bolke de Bruin
[netatalk.git] / libatalk / unicode / charsets / mac_chinese_simp.c
1 /*
2  * MacChineseSimp
3  * Copyright (C) TSUBAKIMOTO Hiroya <zorac@4000do.co.jp> 2004
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  *
19  * Reference
20  * http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif /* HAVE_CONFIG_H */
26
27 #if HAVE_USABLE_ICONV
28
29 #include "generic_cjk.h"
30 #include "mac_chinese_simp.h"
31
32 static size_t mac_chinese_simp_pull(void *,char **, size_t *, char **, size_t *);
33 static size_t mac_chinese_simp_push(void *,char **, size_t *, char **, size_t *);
34
35 struct charset_functions charset_mac_chinese_simp = {
36   "MAC_CHINESE_SIMP",
37   25,
38   mac_chinese_simp_pull,
39   mac_chinese_simp_push,
40   CHARSET_ICONV | CHARSET_MULTIBYTE | CHARSET_PRECOMPOSED | CHARSET_CLIENT,
41   "EUC-CN",
42   NULL, NULL
43 };
44
45 static size_t mac_chinese_simp_char_push(u_int8_t* out, const ucs2_t* in, size_t* size)
46 {
47   ucs2_t wc = in[0];
48
49   if (wc <= 0x7f) {
50     *size = 1;
51     out[0] = (u_int8_t)wc;
52     return 1;
53   } else if ((wc & 0xf000) == 0xe000) {
54     *size = 1;
55     return 0;
56   } else if (*size >= 2 && (in[1] & ~15) == 0xf870) {
57     ucs2_t comp = cjk_compose(wc, in[1], mac_chinese_simp_compose,
58                               sizeof(mac_chinese_simp_compose) / sizeof(u_int32_t));
59     if (comp) {
60       wc = comp;
61       *size = 2;
62     } else {
63       *size = 1;
64     }
65   } else {
66     *size = 1;
67   }
68   return cjk_char_push(cjk_lookup(wc, mac_chinese_simp_uni2_index,
69                                   mac_chinese_simp_uni2_charset), out);
70 }
71
72 static size_t mac_chinese_simp_push(void *cd, char **inbuf, size_t *inbytesleft,
73                                     char **outbuf, size_t *outbytesleft)
74 {
75   return cjk_generic_push(mac_chinese_simp_char_push,
76                           cd, inbuf, inbytesleft, outbuf, outbytesleft);
77 }
78
79 static size_t mac_chinese_simp_char_pull(ucs2_t* out, const u_int8_t* in, size_t* size)
80 {
81   u_int16_t c = in[0];
82
83   if (c <= 0x7f) {
84     *size = 1;
85     *out = c;
86     return 1;
87   } else if (c >= 0xa1 && c <= 0xfc) {
88     if (*size >= 2) {
89       u_int8_t c2 = in[1];
90
91       if (c2 >= 0xa1 && c2 <= 0xfe) {
92         *size = 2;
93         c = (c << 8) + c2;
94       } else {
95         errno = EILSEQ;
96         return (size_t)-1;
97       }
98     } else {
99       errno = EINVAL;
100       return (size_t)-1;
101     }
102   } else {
103     *size = 1;
104   }
105   return cjk_char_pull(cjk_lookup(c, mac_chinese_simp_2uni_index,
106                                   mac_chinese_simp_2uni_charset),
107                        out, mac_chinese_simp_compose);
108 }
109
110 static size_t mac_chinese_simp_pull(void *cd, char **inbuf, size_t *inbytesleft,
111                                     char **outbuf, size_t *outbytesleft)
112 {
113   return cjk_generic_pull(mac_chinese_simp_char_pull,
114                           cd, inbuf, inbytesleft, outbuf, outbytesleft);
115 }
116 #endif