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 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563
|
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#ifdef FOR_LT
#include "lt-memory.h"
#include "nsllib.h"
#define ERR(m) LT_ERROR(NECHAR,m)
#define ERR1(m,x) LT_ERROR1(NECHAR,m,x)
#define ERR2(m,x,y) LT_ERROR2(NECHAR,m,x,y)
#define ERR3(m,x,y,z) LT_ERROR3(NECHAR,m,x,y,z)
#define Malloc salloc
#define Realloc srealloc
#define Free sfree
#else
#include "system.h"
#define ERR(m) fprintf(stderr,m)
#define ERR1(m,x) fprintf(stderr,m,x)
#define ERR2(m,x,y) fprintf(stderr,m,x,y)
#define ERR3(m,x,y,z) fprintf(stderr,m,x,y,z)
#endif
#include "charset.h"
#include "string16.h"
#include "dtd.h"
#include "input.h"
#include "url.h"
#include "ctype16.h"
static int get_translated_line1(InputSource s);
InputSource SourceFromFILE16(const char8 *description, FILE16 *file16)
{
Entity e;
e = NewExternalEntity(0, 0, description, 0, 0);
if(!strchr8(description, '/'))
{
char8 *base = default_base_url();
EntitySetBaseURL(e, base);
Free(base);
}
return NewInputSource(e, file16);
}
InputSource SourceFromStream(const char8 *description, FILE *file)
{
FILE16 *file16 = MakeFILE16FromFILE(file, "r");
return SourceFromFILE16(description, file16);
}
InputSource EntityOpen(Entity e)
{
FILE16 *f16;
if(e->type == ET_external)
{
const char8 *url = EntityURL(e);
if(!url || !(f16 = url_open(url, 0, "r", 0)))
return 0;
}
else
{
f16 = MakeFILE16FromString((char *)e->text, -1, "r");
}
return NewInputSource(e, f16);
}
InputSource NewInputSource(Entity e, FILE16 *f16)
{
InputSource source;
if(!(source = Malloc(sizeof(*source))))
return 0;
source->line = 0;
source->line_alloc = 0;
source->line_length = 0;
source->next = 0;
source->seen_eoe = 0;
source->entity = e;
source->file16 = f16;
source->bytes_consumed = 0;
source->bytes_before_current_line = 0;
source->line_end_was_cr = 0;
source->line_number = 0;
source->not_read_yet = 1;
source->nextin = source->insize = 0;
source->parent = 0;
return source;
}
void SourceClose(InputSource source)
{
Fclose(source->file16);
if(source->entity->type == ET_external)
Free(source->line);
Free(source);
}
int SourceLineAndChar(InputSource s, int *linenum, int *charnum)
{
Entity e = s->entity, f = e->parent;
if(e->type == ET_external)
{
*linenum = s->line_number;
*charnum = s->next;
return 1;
}
if(f && f->type == ET_external)
{
if(e->matches_parent_text)
{
*linenum = e->line_offset + s->line_number;
*charnum = (s->line_number == 0 ? e->line1_char_offset : 0) +
s->next;
return 1;
}
else
{
*linenum = e->line_offset;
*charnum = e->line1_char_offset;
return 0;
}
}
if(f && f->matches_parent_text)
{
*linenum = f->line_offset + e->line_offset;
*charnum = (e->line_offset == 0 ? f->line1_char_offset : 0) +
e->line1_char_offset;
return 0;
}
return -1;
}
void SourcePosition(InputSource s, Entity *entity, int *byte_offset)
{
*entity = s->entity;
*byte_offset = SourceTell(s);
}
int SourceTell(InputSource s)
{
#if CHAR_SIZE == 8
return s->bytes_before_current_line + s->next;
#else
switch(s->entity->encoding)
{
case CE_ISO_10646_UCS_2B:
case CE_UTF_16B:
case CE_ISO_10646_UCS_2L:
case CE_UTF_16L:
return s->bytes_before_current_line + 2 * s->next;
case CE_ISO_8859_1:
case CE_ISO_8859_2:
case CE_ISO_8859_3:
case CE_ISO_8859_4:
case CE_ISO_8859_5:
case CE_ISO_8859_6:
case CE_ISO_8859_7:
case CE_ISO_8859_8:
case CE_ISO_8859_9:
case CE_unspecified_ascii_superset:
return s->bytes_before_current_line + s->next;
case CE_UTF_8:
if(s->complicated_utf8_line)
{
/* examine earlier chars in line to see how many bytes they used */
int i, c, n=0;
for(i = 0; i < s->next; i++)
{
c = s->line[i];
if(c <= 0x7f)
n += 1;
else if(c <= 0x7ff)
n += 2;
else if(c >= 0xd800 && c <= 0xdfff)
/* One of a surrogate pair, count 2 each */
n += 2;
else if(c <= 0xffff)
n += 3;
else if(c <= 0x1ffff)
n += 4;
else if(c <= 0x3ffffff)
n += 5;
else
n += 6;
}
return s->bytes_before_current_line + n;
}
else
return s->bytes_before_current_line + s->next;
default:
return -1;
}
#endif
}
int SourceSeek(InputSource s, int byte_offset)
{
s->line_length = 0;
s->next = 0;
s->seen_eoe = 0;
s->bytes_consumed = s->bytes_before_current_line = byte_offset;
s->nextin = s->insize = 0;
/* XXX line number will be wrong! */
s->line_number = -999999;
return Fseek(s->file16, byte_offset, SEEK_SET);
}
static int get_translated_line(InputSource s)
{
/* This is a hack, pending some reorganisation */
struct _FILE16 {
void *handle;
int handle2, handle3;
/* we don't need the rest here */
};
Entity e = s->entity;
Char *p;
struct _FILE16 *f16 = (struct _FILE16 *)s->file16;
if(e->type == ET_external)
return get_translated_line1(s);
if(!*(Char *)((char *)f16->handle + f16->handle2))
{
s->line_length = 0;
return 0;
}
s->line = (Char *)((char *)f16->handle + f16->handle2);
for(p=s->line; *p && *p != '\n'; p++)
;
if(*p)
p++;
f16->handle2 = (char *)p - (char *)f16->handle;
s->line_length = p - s->line;
s->bytes_before_current_line = f16->handle2;
return 0;
}
static int get_translated_line1(InputSource s)
{
unsigned int c; /* can't use Char, it might be >0x10000 */
unsigned char *inbuf = s->inbuf;
int nextin = s->nextin, insize = s->insize;
int startin = s->nextin;
Char *outbuf = s->line;
int outsize = s->line_alloc;
int nextout = 0;
int remaining = 0;
int ignore_linefeed = s->line_end_was_cr;
#if CHAR_SIZE == 16
int *to_unicode = 0; /* initialize to shut gcc up */
CharacterEncoding enc = s->entity->encoding;
int more, i;
s->complicated_utf8_line = 0;
if(enc >= CE_ISO_8859_2 && enc <= CE_ISO_8859_9)
to_unicode = iso_to_unicode[enc - CE_ISO_8859_2];
#endif
s->line_end_was_cr = 0;
s->bytes_before_current_line = s->bytes_consumed;
while(1)
{
/* There are never more characters than bytes in the input */
if(outsize < nextout + (insize - nextin))
{
outsize = nextout + (insize - nextin);
outbuf = Realloc(outbuf, outsize * sizeof(Char));
}
while(nextin < insize)
{
#if CHAR_SIZE == 8
c = inbuf[nextin++];
#else
switch(enc)
{
case CE_ISO_10646_UCS_2B:
case CE_UTF_16B:
if(nextin+2 > insize)
goto more_bytes;
c = (inbuf[nextin] << 8) + inbuf[nextin+1];
nextin += 2;
break;
case CE_ISO_10646_UCS_2L:
case CE_UTF_16L:
if(nextin+2 > insize)
goto more_bytes;
c = (inbuf[nextin+1] << 8) + inbuf[nextin];
nextin += 2;
break;
case CE_ISO_8859_1:
case CE_unspecified_ascii_superset:
c = inbuf[nextin++];
break;
case CE_ISO_8859_2:
case CE_ISO_8859_3:
case CE_ISO_8859_4:
case CE_ISO_8859_5:
case CE_ISO_8859_6:
case CE_ISO_8859_7:
case CE_ISO_8859_8:
case CE_ISO_8859_9:
c = to_unicode[inbuf[nextin++]];
if(c == (unsigned int)-1)
ERR3("Illegal %s character <0x%x> "
"at file offset %d\n",
CharacterEncodingName[enc], inbuf[nextin-1],
s->bytes_consumed + nextin - 1 - startin);
break;
case CE_UTF_8:
c = inbuf[nextin++];
if(c <= 0x7f)
break;
if(c <= 0xc0 || c >= 0xfe)
{
ERR2("Illegal UTF-8 start byte <0x%x> "
"at file offset %d\n",
c, s->bytes_consumed + nextin - 1 - startin);
return -1;
}
if(c <= 0xdf)
{
c &= 0x1f;
more = 1;
}
else if(c <= 0xef)
{
c &= 0x0f;
more = 2;
}
else if(c <= 0xf7)
{
c &= 0x07;
more = 3;
}
else if(c <= 0xfb)
{
c &= 0x03;
more = 4;
}
else
{
c &= 0x01;
more = 5;
}
if(nextin+more > insize)
{
nextin--;
goto more_bytes;
}
s->complicated_utf8_line = 1;
for(i=0; i<more; i++)
c = (c << 6) + (inbuf[nextin++] & 0x3f);
break;
default:
ERR("read from entity with unsupported encoding!\n");
return -1;
}
if(c > 0x110000 || (c < 0x10000 && !is_xml_legal(c)))
if(!(enc == CE_UTF_16L || enc == CE_UTF_16B) ||
c < 0xd800 || c > 0xdfff)
/* We treat the surrogates as legal because we didn't
combine them when translating from UTF-16. XXX */
{
ERR2("Error: illegal character <0x%x> "
"immediately before file offset %d\n",
c, s->bytes_consumed + nextin - startin);
return -1;
}
#endif
if(c == '\n' && ignore_linefeed)
{
/* Ignore lf at start of line if last line ended with cr */
ignore_linefeed = 0;
s->bytes_before_current_line += (nextin - startin);
}
else
{
ignore_linefeed = 0;
if(c == '\r')
{
s->line_end_was_cr = 1;
c = '\n';
}
#if CHAR_SIZE == 16
if(c >= 0x10000)
{
/* Use surrogates */
outbuf[nextout++] = ((c - 0x10000) >> 10) + 0xd800;
outbuf[nextout++] = ((c - 0x10000) & 0x3ff) + 0xdc00;
}
else
outbuf[nextout++] = c;
#else
outbuf[nextout++] = c;
#endif
if(c == '\n')
{
s->nextin = nextin;
s->insize = insize;
s->bytes_consumed += (nextin - startin);
s->line = outbuf;
s->line_alloc = outsize;
s->line_length = nextout;
return 0;
}
}
}
#if CHAR_SIZE == 16
more_bytes:
/* Copy down any partial character */
remaining = insize - nextin;
for(i=0; i<remaining; i++)
inbuf[i] = inbuf[nextin + i];
#endif
/* Get another block */
s->bytes_consumed += (nextin - startin);
insize = Readu(s->file16,
inbuf+insize-nextin, sizeof(s->inbuf)-remaining);
nextin = startin = 0;
if(insize <= 0)
{
s->nextin = nextin;
s->insize = 0;
s->line = outbuf;
s->line_alloc = outsize;
s->line_length = nextout;
return insize;
}
insize += remaining;
}
}
void determine_character_encoding(InputSource s)
{
Entity e = s->entity;
int nread;
unsigned char *b = (unsigned char *)s->inbuf;
b[0] = b[1] = b[2] = b[3] = 0;
while(s->insize < 4)
{
nread = Readu(s->file16, s->inbuf + s->insize, 4 - s->insize);
if(nread == -1)
return;
if(nread == 0)
break;
s->insize += nread;
}
#if 0
if(b[0] == 0 && b[1] == 0 && b[2] == 0 && b[3] == '<')
e->encoding = CE_ISO_10646_UCS_4B;
else if(b[0] == '<' && b[1] == 0 && b[2] == 0 && b[3] == 0)
e->encoding = CE_ISO_10646_UCS_4L;
else
#endif
if(b[0] == 0xfe && b[1] == 0xff)
{
e->encoding = CE_UTF_16B;
s->nextin = 2;
}
else if(b[0] == 0 && b[1] == '<' && b[2] == 0 && b[3] == '?')
e->encoding = CE_UTF_16B;
else if(b[0] == 0xff && b[1] == 0xfe)
{
e->encoding = CE_UTF_16L;
s->nextin = 2;
}
else if(b[0] == '<' && b[1] == 0 && b[2] == '?' && b[3] == 0)
e->encoding = CE_UTF_16L;
else
{
#if CHAR_SIZE == 8
e->encoding = CE_unspecified_ascii_superset;
#else
e->encoding = CE_UTF_8;
#endif
}
}
int get_with_fill(InputSource s)
{
assert(!s->seen_eoe);
if(get_translated_line(s) != 0)
{
/* It would be nice to pass this up to the parser, but we don't
know anything about parsers here! */
ERR1("I/O error on stream <%s>, ignore further errors\n",
EntityDescription(s->entity));
/* Restore old line and return EOE (is this the best thing to do?) */
s->line_length = s->next;
s->seen_eoe = 1;
return XEOE;
}
if(s->line_length == 0)
{
/* Restore old line */
s->line_length = s->next;
s->seen_eoe = 1;
return XEOE;
}
s->next = 0;
if(s->not_read_yet)
s->not_read_yet = 0;
else
s->line_number++;
return s->line[s->next++];
}
|