1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
|
/* $Id: unicode.c,v 2.0 1995/01/29 08:10:04 ygz Exp $ */
#ifndef lint
static char *rcs_id="$Id: unicode.c,v 2.0 1995/01/29 08:10:04 ygz Exp $";
#endif /* lint */
#include "config.h"
#include "io.h"
/*** UTF8 => UNICODE ***/
static int u8toun(p, len, pu1, pu2)
char *p;
int len;
unsigned char *pu1, *pu2;
{
register unsigned char c1 = p[0], c2 = p[1], c3 = p[2];
if ((c1 & 0x80) == 0) { /* ASCII character */
*pu1 = 0;
*pu2 = c1;
return 1;
}
if ((c1 & 0xc0) == 0x80) { /* unexpected tail character */
return -1;
}
if ((c1 & 0xe0) == 0xc0) { /* 110vvvvv 10vvvvvv */
if (len < 2) /* at least two characters are expected */
return 0; /* dangling */
if ((c2 & 0xc0) != 0x80) /* unexpected head character */
return -2;
*pu1 = (c1 & 0x1c) >> 2;
*pu2 = ((c1 & 0x03) << 6) | (c2 & 0x3f);
return 2;
}
if ((c1 & 0xf0) == 0xe0) { /* 1110vvvv 10vvvvvv 10vvvvvv */
if (len < 3) /* at least three characters are expected */
return 0; /* dangling */
if ((c2 & 0xc0) != 0x80) /* unexpected head character */
return -2;
if ((c3 & 0xc0) != 0x80) /* unexpected head character */
return -3;
*pu1 = ((c1 & 0x0f) << 4) | ((c2 & 0x3c) >> 2);
*pu2 = ((c2 & 0x03) << 6) | (c3 & 0x3f);
return 3;
}
}
static char utf8_uni_savec[MAX_MODULE][2];
int utf8_uni_init (arg)
char *arg;
{
static int utf8_uni_inst = 0;
utf8_uni_savec[utf8_uni_inst][0] = '\0';
utf8_uni_savec[utf8_uni_inst][1] = '\0';
return (utf8_uni_inst++);
}
#define CODE_ERROR 0x80
char *utf8_uni (s,plen,inst)
char *s;
int *plen;
int inst;
{
char buf[4096];
char *s_start = s;
register int len = *plen;
register char *p = buf;
if (len == 0)
return (s);
if (utf8_uni_savec[inst][0]) {
if (utf8_uni_savec[inst][1]) {
*(--s) = utf8_uni_savec[inst][1];
len++;
utf8_uni_savec[inst][1] = 0;
}
*(--s) = utf8_uni_savec[inst][0];
len++;
utf8_uni_savec[inst][0] = 0;
}
bcopy(s, p, len);
s = s_start;
while (len > 0) {
int nc = u8toun(p, len, s, s+1);
if (nc > 0) {
s++; s++;
p += nc;
len -= nc;
} else if (nc < 0) { /* bad character */
*s++ = 0;
*s++ = CODE_ERROR;
p += (-nc);
len -= (-nc);
} else { /* dangling */
if (len <= 2)
utf8_uni_savec[inst][0] = *p++;
if (len == 1)
utf8_uni_savec[inst][1] = *p++;
break;
}
}
*plen = s - s_start;
return s_start;
}
/*** UNICODE => UTF8 ***/
static char uni_utf8_savec[MAX_MODULE];
static char uni_utf8_saved[MAX_MODULE];
int uni_utf8_init (arg)
char *arg;
{
static int uni_utf8_inst = 0;
uni_utf8_saved[uni_utf8_inst] = 0;
return (uni_utf8_inst++);
}
char *uni_utf8 (s,plen,inst)
char *s;
int *plen;
int inst;
{
char buf[4096];
char *s_start = s;
register int len = *plen;
register char *p = buf;
if (len == 0)
return (s);
if (uni_utf8_saved[inst]) {
*(--s) = uni_utf8_savec[inst];
len++;
uni_utf8_saved[inst] = 0;
}
bcopy(s, p, len);
s = s_start;
while (len >= 2) {
if ((p[0] == 0) && ((p[1] & 0x80) == 0)) { /* ASCII */
*s++ = p[1];
} else if ((p[0] & 0xf8) == 0) { /* 0x0080 - 0x07ff */
*s++ = 0xc0 | (p[0] << 2) | ((p[1] >> 6) & 0x03);
*s++ = 0x80 | (p[1] & 0x3f);
} else { /* 0x0800 - 0xffff */
*s++ = 0xe0 | ((p[0] >> 4) & 0x0f);
*s++ = 0x80 | ((p[0] & 0x0f) << 2) |
((p[1] >> 6) & 0x03);
*s++ = 0x80 | (p[1] & 0x3f);
}
p++; p++;
len--; len--;
}
if (len == 1) { /* dangling */
uni_utf8_saved[inst] = 1;
uni_utf8_savec[inst] = *p;
}
*plen = s - s_start;
return s_start;
}
/*********** UTF 7 **************/
/* ASCII subsets */
static unsigned char base64[] =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
#define SAFE_CHARS "'(),-.:?"
#define SPACE_CHARS " \t\n\r"
/* character classes */
#define BASE64 0x01
#define SAFE 0x02
#define SPACE 0x04
/* base64 state */
#define IN_ASCII 0
#define IN_BASE64 1
#define AFTER_PLUS 2
static char inv_base64[128];
static char char_type[256];
static void init_utf7_tables()
{
register unsigned char *s;
static first_time = 1;
if (! first_time)
return;
for (s = base64; *s != '\0'; s++) {
char_type[*s] |= BASE64;
inv_base64[*s] = s - base64;
}
for (s = SAFE_CHARS; *s != '\0'; s++)
char_type[*s] |= SAFE;
for (s = SPACE_CHARS; *s != '\0'; s++)
char_type[*s] |= SPACE;
first_time = 0;
}
struct utf7_context {
short int state; /* state in the base64 */
short int nbits; /* number of bits in the bit buffer */
unsigned long bit_buffer;
};
static int u7toun(c, pu1, pu2, ctx) /* return 1 if a unicode is produced */
unsigned char c; /* a char in utf7 stream */
unsigned char *pu1, *pu2; /* the unicode */
struct utf7_context *ctx; /* the context */
{
if (ctx->state == IN_ASCII) {
if (c == '+') {
ctx->state = AFTER_PLUS;
return 0;
} else {
*pu1 = 0; *pu2 = c;
return 1;
}
}
if (ctx->state == AFTER_PLUS) {
if (c == '-') {
*pu1 = 0; *pu2 = '+';
return 1;
} else {
ctx->state = IN_BASE64;
ctx->nbits = 0;
/* don't return yet, continue to the IN_BASE64 mode */
}
}
/* now we're in Base64 mode */
if (char_type[c]&BASE64) {
ctx->bit_buffer <<= 6;
ctx->bit_buffer |= inv_base64[c];
ctx->nbits += 6;
if (ctx->nbits >= 16) {
ctx->nbits -= 16;
*pu1 = (char)((ctx->bit_buffer >> (ctx->nbits + 8))
& 0x00ff);
*pu2 = (char)((ctx->bit_buffer >> ctx->nbits )
& 0x00ff);
return 1;
}
return 0;
}
ctx->state = IN_ASCII;
if (c != '-') {
*pu1 = 0; *pu2 = c;
return 1;
}
return 0;
}
static int untou7(u1, u2, s, ctx) /* return the # of char written to s */
unsigned char u1, u2; /* the unicode */
unsigned char *s; /* store here */
struct utf7_context *ctx; /* the context */
{
unsigned char *prev_s = s;
if ( ((u1 == 0) && ((u2 & 0x80) == 0)) &&
(char_type[u2] & (BASE64|SAFE|SPACE)) ) { /* safe ASCII */
if (ctx->state == IN_BASE64) {
if (ctx->nbits > 0)
*s++ = base64[
(ctx->bit_buffer<<(6 - ctx->nbits)) & 0x3f
];
if ((char_type[u2] & BASE64) || u2 == '-') *s++ = '-';
ctx->state = IN_ASCII;
}
*s++ = u2;
if (u2 == '+')
*s++ = '-';
} else {
if (ctx->state == IN_ASCII) {
*s++ = '+';
ctx->state = IN_BASE64;
ctx->nbits = 0;
}
ctx->bit_buffer <<= 8;
ctx->bit_buffer |= u1;
ctx->bit_buffer <<= 8;
ctx->bit_buffer |= u2;
ctx->nbits += 16;
while (ctx->nbits >= 6) {
ctx->nbits -= 6;
*s++ = base64[(ctx->bit_buffer >> ctx->nbits) & 0x3f];
}
}
return (s - prev_s); /* return the length */
}
/***** UTF7 => UNICODE *****/
static struct utf7_context utf7_uni_context[MAX_MODULE];
int utf7_uni_init (arg)
char *arg;
{
static int utf7_uni_inst = 0;
init_utf7_tables();
utf7_uni_context[utf7_uni_inst].state = IN_ASCII;
utf7_uni_context[utf7_uni_inst].nbits = 0;
utf7_uni_context[utf7_uni_inst].bit_buffer = 0L;
return (utf7_uni_inst++);
}
char *utf7_uni (s,plen,inst)
char *s;
int *plen;
int inst;
{
char buf[4096];
char *s_start = s;
register int len = *plen;
register char *p = buf;
if (len == 0)
return (s);
bcopy(s, p, len);
while (len-- > 0) {
if (u7toun(*p++, s, s+1, &(utf7_uni_context[inst]))) {
s++; s++;
}
}
*plen = s - s_start;
return s_start;
}
/***** UNICODE => UTF7 *****/
static char uni_utf7_savec[MAX_MODULE];
static char uni_utf7_saved[MAX_MODULE];
static struct utf7_context uni_utf7_context[MAX_MODULE];
int uni_utf7_init (arg)
char *arg;
{
static int uni_utf7_inst = 0;
init_utf7_tables();
uni_utf7_saved[uni_utf7_inst] = 0;
uni_utf7_context[uni_utf7_inst].state = IN_ASCII;
uni_utf7_context[uni_utf7_inst].nbits = 0;
uni_utf7_context[uni_utf7_inst].bit_buffer = 0L;
return (uni_utf7_inst++);
}
char *uni_utf7 (s,plen,inst)
char *s;
int *plen;
int inst;
{
char buf[4096];
char *s_start = s;
register int len = *plen;
register char *p = buf;
if (len == 0)
return (s);
if (uni_utf7_saved[inst]) {
*(--s) = uni_utf7_savec[inst];
len++;
uni_utf7_saved[inst] = 0;
}
bcopy(s, p, len);
s = s_start;
while (len >= 2) {
s += untou7(p[0], p[1], s, &(uni_utf7_context[inst]));
len --; len --;
p++; p++;
}
if (len == 1) { /* dangling */
uni_utf7_saved[inst] = 1;
uni_utf7_savec[inst] = *p;
}
*plen = s - s_start;
return s_start;
}
|