]> arthur.barton.de Git - netatalk.git/blob - libatalk/unicode/charsets/mac_roman.c
Merge 2-2
[netatalk.git] / libatalk / unicode / charsets / mac_roman.c
1 /* 
2    Unix SMB/CIFS implementation.
3    minimal iconv implementation
4    Copyright (C) Andrew Tridgell 2001
5    Copyright (C) Jelmer Vernooij 2002,2003
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program 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
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20    
21    From samba 3.0 beta and GNU libiconv-1.8
22    It's bad but most of the time we can't use libc iconv service:
23    - it doesn't round trip for most encoding
24    - it doesn't know about Apple extension
25
26 */
27
28 #ifdef HAVE_CONFIG_H
29 #include "config.h"
30 #endif /* HAVE_CONFIG_H */
31 #include <stdlib.h>
32 #include <arpa/inet.h>
33
34 #include <atalk/unicode.h>
35
36 #include "mac_roman.h"
37 #include "generic_mb.h"
38
39 static size_t   mac_roman_pull(void *,char **, size_t *, char **, size_t *);
40 static size_t   mac_roman_push(void *,char **, size_t *, char **, size_t *);
41
42 struct charset_functions charset_mac_roman =
43 {
44         "MAC_ROMAN",
45         0,
46         mac_roman_pull,
47         mac_roman_push,
48         CHARSET_CLIENT | CHARSET_MULTIBYTE | CHARSET_PRECOMPOSED,
49         NULL,
50         NULL, NULL
51 };
52
53 /* ------------------------ */
54 static int
55 char_ucs2_to_mac_roman ( unsigned char *r, ucs2_t wc)
56 {
57         unsigned char c = 0;
58         if (wc < 0x0080) {
59                 *r = wc;
60                 return 1;
61         }
62         else if (wc >= 0x00a0 && wc < 0x0100)
63                 c = mac_roman_page00[wc-0x00a0];
64         else if (wc >= 0x0130 && wc < 0x0198)
65                 c = mac_roman_page01[wc-0x0130];
66         else if (wc >= 0x02c0 && wc < 0x02e0)
67                 c = mac_roman_page02[wc-0x02c0];
68         else if (wc == 0x03c0)
69                 c = 0xb9;
70         else if (wc >= 0x2010 && wc < 0x2048)
71                 c = mac_roman_page20[wc-0x2010];
72         else if (wc >= 0x2120 && wc < 0x2128)
73                 c = mac_roman_page21[wc-0x2120];
74         else if (wc >= 0x2200 && wc < 0x2268)
75                 c = mac_roman_page22[wc-0x2200];
76         else if (wc == 0x25ca)
77                 c = 0xd7;
78         else if (wc >= 0xfb00 && wc < 0xfb08)
79                 c = mac_roman_pagefb[wc-0xfb00];
80         else if (wc == 0xf8ff)
81                 c = 0xf0;
82
83         if (c != 0) {
84                 *r = c;
85                 return 1;
86         }
87         return 0;
88 }
89
90 static size_t mac_roman_push( void *cd, char **inbuf, size_t *inbytesleft,
91                          char **outbuf, size_t *outbytesleft)
92 {
93         /* No special handling required */
94         return (size_t) mb_generic_push( char_ucs2_to_mac_roman, cd, inbuf, inbytesleft, outbuf, outbytesleft);
95 }
96
97 /* ------------------------ */
98 static int
99 char_mac_roman_to_ucs2 (ucs2_t *pwc, const unsigned char *s)
100 {
101         unsigned char c = *s;
102         if (c < 0x80) {
103                 *pwc = (ucs2_t) c;
104                 return 1;
105         }
106         else {
107                 unsigned short wc = mac_roman_2uni[c-0x80];
108                 *pwc = (ucs2_t) wc;
109                 return 1;
110         }
111         return 0;
112 }
113
114 static size_t mac_roman_pull ( void *cd, char **inbuf, size_t *inbytesleft,
115                          char **outbuf, size_t *outbytesleft)
116 {
117         return (size_t) mb_generic_pull( char_mac_roman_to_ucs2, cd, inbuf, inbytesleft, outbuf, outbytesleft);
118 }