Fix resume handle for _samr_EnumDomainGroups
[Samba.git] / source / include / charset.h
blob4d04b5a1a678ad0d40222ea2b796e89aa0b441de
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 3 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, see <http://www.gnu.org/licenses/>.
21 /* this defines the charset types used in samba */
22 typedef enum {CH_UTF16LE=0, CH_UTF16=0, CH_UNIX=1, CH_DISPLAY=2, CH_DOS=3, CH_UTF8=4, CH_UTF16BE=5} charset_t;
24 #define NUM_CHARSETS 6
26 /*
27 * for each charset we have a function that pushes from that charset to a ucs2
28 * buffer, and a function that pulls from ucs2 buffer to that charset.
29 * */
31 struct charset_functions {
32 const char *name;
33 size_t (*pull)(void *, const char **inbuf, size_t *inbytesleft,
34 char **outbuf, size_t *outbytesleft);
35 size_t (*push)(void *, const char **inbuf, size_t *inbytesleft,
36 char **outbuf, size_t *outbytesleft);
37 struct charset_functions *prev, *next;
41 * This is auxiliary struct used by source/script/gen-8-bit-gap.sh script
42 * during generation of an encoding table for charset module
43 * */
45 struct charset_gap_table {
46 uint16 start;
47 uint16 end;
48 int32 idx;
52 * Define stub for charset module which implements 8-bit encoding with gaps.
53 * Encoding tables for such module should be produced from glibc's CHARMAPs
54 * using script source/script/gen-8bit-gap.sh
55 * CHARSETNAME is CAPITALIZED charset name
57 * */
58 #define SMB_GENERATE_CHARSET_MODULE_8_BIT_GAP(CHARSETNAME) \
59 static size_t CHARSETNAME ## _push(void *cd, const char **inbuf, size_t *inbytesleft, \
60 char **outbuf, size_t *outbytesleft) \
61 { \
62 while (*inbytesleft >= 2 && *outbytesleft >= 1) { \
63 int i; \
64 int done = 0; \
66 uint16 ch = SVAL(*inbuf,0); \
68 for (i=0; from_idx[i].start != 0xffff; i++) { \
69 if ((from_idx[i].start <= ch) && (from_idx[i].end >= ch)) { \
70 ((unsigned char*)(*outbuf))[0] = from_ucs2[from_idx[i].idx+ch]; \
71 (*inbytesleft) -= 2; \
72 (*outbytesleft) -= 1; \
73 (*inbuf) += 2; \
74 (*outbuf) += 1; \
75 done = 1; \
76 break; \
77 } \
78 } \
79 if (!done) { \
80 errno = EINVAL; \
81 return -1; \
82 } \
84 } \
86 if (*inbytesleft == 1) { \
87 errno = EINVAL; \
88 return -1; \
89 } \
91 if (*inbytesleft > 1) { \
92 errno = E2BIG; \
93 return -1; \
94 } \
96 return 0; \
97 } \
99 static size_t CHARSETNAME ## _pull(void *cd, const char **inbuf, size_t *inbytesleft, \
100 char **outbuf, size_t *outbytesleft) \
102 while (*inbytesleft >= 1 && *outbytesleft >= 2) { \
103 *(uint16*)(*outbuf) = to_ucs2[((unsigned char*)(*inbuf))[0]]; \
104 (*inbytesleft) -= 1; \
105 (*outbytesleft) -= 2; \
106 (*inbuf) += 1; \
107 (*outbuf) += 2; \
110 if (*inbytesleft > 0) { \
111 errno = E2BIG; \
112 return -1; \
115 return 0; \
118 struct charset_functions CHARSETNAME ## _functions = \
119 {#CHARSETNAME, CHARSETNAME ## _pull, CHARSETNAME ## _push}; \
121 NTSTATUS charset_ ## CHARSETNAME ## _init(void); \
122 NTSTATUS charset_ ## CHARSETNAME ## _init(void) \
124 return smb_register_charset(& CHARSETNAME ## _functions); \