r2565: syncing up for 3.0.8pre1
[Samba.git] / source / include / charset.h
blobc5d03a62e8920aff79751e1b101c6e3bcc3f8990
1 /*
2 Unix SMB/CIFS implementation.
3 charset defines
4 Copyright (C) Andrew Tridgell 2001
5 Copyright (C) Jelmer Vernooij 2002
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.
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.
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.
22 /* this defines the charset types used in samba */
23 typedef enum {CH_UCS2=0, CH_UNIX=1, CH_DISPLAY=2, CH_DOS=3, CH_UTF8=4} charset_t;
25 #define NUM_CHARSETS 5
27 /*
28 * for each charset we have a function that pushes from that charset to a ucs2
29 * buffer, and a function that pulls from ucs2 buffer to that charset.
30 * */
32 struct charset_functions {
33 const char *name;
34 size_t (*pull)(void *, const char **inbuf, size_t *inbytesleft,
35 char **outbuf, size_t *outbytesleft);
36 size_t (*push)(void *, const char **inbuf, size_t *inbytesleft,
37 char **outbuf, size_t *outbytesleft);
38 struct charset_functions *prev, *next;
42 * This is auxiliary struct used by source/script/gen-8-bit-gap.sh script
43 * during generation of an encoding table for charset module
44 * */
46 struct charset_gap_table {
47 uint16 start;
48 uint16 end;
49 int32 idx;
53 * Define stub for charset module which implements 8-bit encoding with gaps.
54 * Encoding tables for such module should be produced from glibc's CHARMAPs
55 * using script source/script/gen-8bit-gap.sh
56 * CHARSETNAME is CAPITALIZED charset name
58 * */
59 #define SMB_GENERATE_CHARSET_MODULE_8_BIT_GAP(CHARSETNAME) \
60 static size_t CHARSETNAME ## _push(void *cd, const char **inbuf, size_t *inbytesleft, \
61 char **outbuf, size_t *outbytesleft) \
62 { \
63 while (*inbytesleft >= 2 && *outbytesleft >= 1) { \
64 int i; \
65 int done = 0; \
67 uint16 ch = SVAL(*inbuf,0); \
69 for (i=0; from_idx[i].start != 0xffff; i++) { \
70 if ((from_idx[i].start <= ch) && (from_idx[i].end >= ch)) { \
71 ((unsigned char*)(*outbuf))[0] = from_ucs2[from_idx[i].idx+ch]; \
72 (*inbytesleft) -= 2; \
73 (*outbytesleft) -= 1; \
74 (*inbuf) += 2; \
75 (*outbuf) += 1; \
76 done = 1; \
77 break; \
78 } \
79 } \
80 if (!done) { \
81 errno = EINVAL; \
82 return -1; \
83 } \
85 } \
87 if (*inbytesleft == 1) { \
88 errno = EINVAL; \
89 return -1; \
90 } \
92 if (*inbytesleft > 1) { \
93 errno = E2BIG; \
94 return -1; \
95 } \
97 return 0; \
98 } \
100 static size_t CHARSETNAME ## _pull(void *cd, const char **inbuf, size_t *inbytesleft, \
101 char **outbuf, size_t *outbytesleft) \
103 while (*inbytesleft >= 1 && *outbytesleft >= 2) { \
104 *(uint16*)(*outbuf) = to_ucs2[((unsigned char*)(*inbuf))[0]]; \
105 (*inbytesleft) -= 1; \
106 (*outbytesleft) -= 2; \
107 (*inbuf) += 1; \
108 (*outbuf) += 2; \
111 if (*inbytesleft > 0) { \
112 errno = E2BIG; \
113 return -1; \
116 return 0; \
119 struct charset_functions CHARSETNAME ## _functions = \
120 {#CHARSETNAME, CHARSETNAME ## _pull, CHARSETNAME ## _push}; \
122 NTSTATUS charset_ ## CHARSETNAME ## _init(void) \
124 return smb_register_charset(& CHARSETNAME ## _functions); \