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 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709
|
/* $Id: reader.cc,v 1.10 1997/03/25 23:26:02 dps Exp $ */
/* Reads the word document */
#include <iostream.h>
#include <stdio.h>
extern "C" {
#include <string.h>
#include <ctype.h>
}
#include "word6.h"
#include "interface.h"
#include "reader.h"
#define RESUME_CHARS 30
/* This code is basically a layered filtration process. At the bottom layer
is this next function that reads a character from a word document. Pointers
to object are used extensively to avoid implicit copies. */
static int read_character(FILE *in)
{
int c, d, asc;
re_feed:
c=fgetc(in);
switch(c)
{
case 0:
/* This is a hack to skip junk---seems to work quite well */
asc=0;
while (asc<RESUME_CHARS)
{
if ((c=fgetc(in))==EOF)
goto re_feed;
if (c>=' ' && c<127)
asc++;
else
asc=0;
}
fseek(in, -RESUME_CHARS, SEEK_CUR);
return CH_SUSPECT;
case PAR_END:
return (CH_PAR | CONTROL_FLAG);
case TABLE_SEP:
d=fgetc(in);
if (d!=c)
{
ungetc(d, in); /* Push back character */
return (CH_FIELD | CONTROL_FLAG);
}
return (CH_ROW | CONTROL_FLAG);
case START_CTL:
return (CH_SPEC | CONTROL_FLAG);
case END_CTL:
return (CH_ENDSPEC | CONTROL_FLAG);
case HARD_RETURN:
return (CH_HDRTN | CONTROL_FLAG);
default:
if (c<' ' && c!=EOF)
return (CH_OTHER | CONTROL_FLAG);
else
return c;
}
}
/* This function reads a paragraph, field of a table or whatever. It copies
everything in any embed tags unprocessed and leaves it in the element */
void chunk_reader::read_chunk_raw(void)
{
int c, is_ctl=0;
text.zero(); // Zero text buffer
while ((c=read_character(in))!=(EOF | CONTROL_FLAG))
{
if (c & CONTROL_FLAG)
{
c &= ~CONTROL_FLAG;
/* If in embedded item then ignore all but end embed */
if (is_ctl)
{
if (c==CH_ENDSPEC)
{
is_ctl=0;
text.add(c);
}
continue;
}
switch(c)
{
case CH_PAR:
case CH_FIELD:
case CH_ROW:
break;
case CH_HDRTN:
text.add('\n'); // Add newline
continue; // Continue processing
case CH_OTHER:
continue; // Just ignore character
case CH_SPEC:
text.add(c);
if (!is_ctl)
is_ctl=1;
continue;
case CH_ENDSPEC:
cerr<<"Suprious ^U ignored\n";
continue;
default:
cerr<<"Unexpected value "<<(c & (~CONTROL_FLAG))\
<<" switch\n";
continue;
}
type=c;
tptr=text;
return;
}
/* Not control or end of inclusion */
text.add(c);
}
type=CH_EOF;
tptr=text;
return;
}
/* This function reads chunks from using read_chunk_raw and hands them
out in contigous peices of the same type. Emebedded stuff gets
seperated from the rest here. The partial flag is set if only some
of a field is returned (usually because of an embedded item).
*/
struct chunk_rtn chunk_reader::read_chunk(void)
{
const char *s; // Save stupid compilers
struct chunk_rtn res;
if (tptr==NULL)
this->read_chunk_raw();
s=tptr;
/* Embed */
if (*s==CH_SPEC)
{
while (*(++s))
{
if (*s==CH_ENDSPEC)
break;
res.txt.add(*s);
}
tptr=s+1;
res.type=CH_SPEC;
return res;
}
/* Normal */
while (*s)
{
if (*s==CH_SPEC)
{
tptr=s;
res.type=(PART_FLAG | type);
return res;
}
res.txt.add(*s);
s++;
}
res.type=type;
tptr=NULL;
text.zero(); // Save memory
return res;
}
/*
* Code that scans forward to the end of stuff that looks like an extension
* of some maths that was the last thing.
*/
const char *math_forward_scan(const char *s)
{
const char *scan, *end;
int blvl;
end=scan=s;
/* Check whether the first part looks like more of the equation */
while (1)
{
/* Skip spaces */
while (isspace(*scan))
scan++;
/* Look for binary operator */
if (*scan=='+' || *scan=='-' || *scan=='*' || *scan=='/' ||
*scan=='=')
{
/* skip spaces */
scan++;
while (isspace(*scan))
scan++;
/* Grab next word */
blvl=0;
while (!isspace(*scan) || blvl>0)
{
switch(*scan)
{
case '(':
blvl++;
break;
case ')':
blvl--;
break;
default:
break;
}
if (*scan=='\0')
break; // Robustness fix
scan++;
}
end=scan; // Update end
}
else
break; // No binary operator, assume no text
}
return end;
}
/*
* Code that scans backwards to the start of stuff that looks like it should
* ohave been prepended to the current maths.
*/
const char *math_reverse_scan(const char *s)
{
const char *scan, *start;
int blvl;
start=scan=s+strlen(s)-1;
/* Check whether the first part looks like more of the equation */
while (scan>=s)
{
/* Skip spaces */
while (scan>=s && isspace(*scan))
scan--;
if (scan<s)
return s;
/* Look for binary operator */
if (*scan=='+' || *scan=='-' || *scan=='*' || *scan=='/' ||
*scan=='=')
{
/* skip spaces */
scan--;
while (scan>=s && isspace(*scan))
scan--;
if (scan<s)
return s;
/* Grab next word */
blvl=0;
while (!isspace(*scan) || blvl>0 )
{
switch(*scan)
{
case ')':
blvl++;
break;
case '(':
blvl--;
break;
default:
break;
}
if (scan==s)
return s; // Robustness fix
scan--;
}
start=scan; // Update end
}
else
break; // No binary operator, assume no text
}
return start;
}
/*
* Code to feed a token one at a time. (private, need prostproccessing
* to compensate for equation abuse by word users)
*/
const tok_seq::tok *tok_seq::feed_token(void)
{
while (output.is_empty())
{
if (!rd_token())
{
if (!done_end)
{
tok *t;
t=new(tok)(T_DOC, "End of word2x output", tok::TOK_END);
output.enqueue(t);
done_end=1;
}
else
return NULL;
}
}
return output.dequeue();
}
/* Private token reader, compensates for equation abouse */
const tok_seq::tok *tok_seq::math_collect(void)
{
const tok *rdt, *ntok, *nntok;
const char *mptr, *endptr;
char *s, *t;
math_aggregate: ;
if ((rdt=this->saved_tok)==NULL)
{
if ((rdt=this->feed_token())==NULL)
return NULL;
}
else
saved_tok=NULL;
switch (rdt->tok & (~PART_FLAG))
{
case T_PARAGRAPH:
if (rdt->end!=tok::TOK_START || (rdt->tok & PART_FLAG==0)
|| rdt->data.d==NULL)
break;
if ((ntok=this->feed_token())==NULL)
break;
/* Passed all the easy rejection cases, invoke math_reverse_scan */
saved_tok=ntok;
if (ntok->tok==T_SPEC && ntok->end==tok::TOK_START &&
ntok->data.d!=NULL && strncmp(ntok->data.d, "eq ", 3)==0)
{
mptr=math_reverse_scan(rdt->data.d);
endptr=rdt->data.d+strlen(rdt->data.d)-1;
if (mptr>=endptr)
break;
/* Allocate memory */
if ((s=(char *) malloc(mptr-rdt->data.d+1))==NULL)
{
cerr<<"Malloc read_token::malloc failure (fatal)\n";
exit(1);
}
if ((t=(char *) malloc(strlen(ntok->data.d)+endptr-mptr+1))==NULL)
{
free((void *) s);
cerr<<"Malloc read_token::malloc failure (fatal)\n";
exit(1);
}
/* Compute result strings */
memcpy(s, rdt->data.d, mptr-rdt->data.d);
*(s+(mptr-rdt->data.d))='\0';
memcpy(t, ntok->data.d, 3);
memcpy(t+3, mptr, endptr-mptr+1);
strcpy(t+3+(endptr-mptr)+1, ntok->data.d+3);
/* Replace original data */
free((void *) rdt->data.d);
((tok *) rdt)->data.d=s;
free((void *) ntok->data.d);
((tok *) ntok)->data.d=t;
}
break;
case T_SPEC:
if (rdt->end!=tok::TOK_START || rdt->data.d==NULL ||
strncmp(rdt->data.d, "eq ", 3)!=0)
break;
if ((nntok=this->feed_token())==NULL)
break; // this is the end of the SPEC.
if (nntok->tok!=T_SPEC || nntok->end!=tok::TOK_END)
{
cerr<<"Unexpected value of nntok: type "
<<nntok->tok<<" end "<<nntok->end<<"\n";
}
if ((ntok=this->feed_token())==NULL)
{
output.insert(nntok);
break;
}
/* Passed all the easy rejection cases, invoke math_forward_scan */
saved_tok=ntok;
if (ntok->tok==T_PARAGRAPH && ntok->end!=tok::TOK_END &&
ntok->data.d!=NULL)
{
mptr=math_forward_scan(ntok->data.d);
endptr=ntok->data.d+strlen(ntok->data.d);
if (mptr==ntok->data.d)
{
output.insert(ntok); // This comes out second
output.insert(nntok);
saved_tok=NULL;
break;
}
/* Allocate memory */
if (*mptr!='\0')
{
if ((s=(char *) malloc(endptr-mptr))==NULL)
{
cerr<<"Malloc read_token::malloc failure (fatal)\n";
exit(1);
}
memcpy(s, mptr, endptr-mptr);
*(s+(endptr-mptr))='\0';
}
else
s=NULL;
if ((t=(char *)
malloc(strlen(rdt->data.d)+mptr-ntok->data.d+1))==NULL)
{
if (s!=NULL)
free((void *) s);
cerr<<"Malloc read_token::malloc failure (fatal)\n";
exit(1);
}
endptr=rdt->data.d+strlen(rdt->data.d);
memcpy(t, rdt->data.d, endptr-rdt->data.d);
memcpy(t+(endptr-rdt->data.d), ntok->data.d, mptr-ntok->data.d);
*(t+(endptr-rdt->data.d)+(mptr-ntok->data.d))='\0';
/* Afjust result */
free((void *) rdt->data.d);
((tok *) rdt)->data.d=t;
if (*mptr=='\0')
{
/* If we consumed 100% continue seeking */
delete(ntok);
saved_tok=rdt;
output.insert(nntok); // Re-insert end of spec.
goto math_aggregate;
}
free((void *) ntok->data.d);
((tok *) ntok)->data.d=s;
/* Not all consumed, return result */
}
else if (ntok->tok==T_SPEC && ntok->end==tok::TOK_START &&
ntok->data.d!=NULL && strncmp(ntok->data.d, "eq ", 3)==0)
{
/* Combine consecutive eq's */
endptr=rdt->data.d+strlen(rdt->data.d);
if ((t=(char *)
malloc((endptr-rdt->data.d)+strlen(ntok->data.d)-2))==NULL)
{
cerr<<"Malloc read_token::malloc failure (fatal)\n";
exit(1);
}
memcpy(t, rdt->data.d, endptr-rdt->data.d);
strcpy(t+(endptr-rdt->data.d), ntok->data.d+3);
delete(nntok); // Reply on end of spec following this eq
delete(ntok); // Junk this eq
free((void *) rdt->data.d);
((tok *) rdt)->data.d=t;
saved_tok=rdt;
goto math_aggregate;
}
output.insert(ntok); // This comes out second
output.insert(nntok);
saved_tok=NULL;
break;
default:
break;
}
return rdt;
}
/* Public token reader */
const tok_seq::tok *tok_seq::read_token(void)
{
const tok *t, *n;
fifo<tok> *tf;
int tot, specs;
if ((t=this->math_collect())==NULL)
return NULL;
switch(t->tok)
{
case T_PARAGRAPH:
if (t->end!=tok::TOK_START)
return t;
/* Check for spec only paragraph */
tf=new(fifo<tok>);
n=t;
tot=0;
specs=0;
/*
* This loop counts the number of characters in paragraphs and other
* items untilt the end of the paragraph. Each item is dumped on tf
* and this is inserted onto the beginning of the output queue.
*/
while(1)
{
tf->enqueue(n);
if (n->tok==T_PARAGRAPH)
{
if (n->end==tok::TOK_END)
break;
if (n->data.d!=NULL)
tot+=strlen(n->data.d);
if (tot>DISPL_TRESHOLD)
break;
}
else
specs++;
if (n->tok!=T_SPEC && n->tok!=T_OTHER && n->tok!=T_PARAGRAPH)
{
tot+=DISPL_TRESHOLD;
break;
}
if ((n=this->math_collect())==NULL)
break;
}
/*
* If the total is small enough and there is one or more item that
* will make it through the filter. Since insert()ed things end up
* in reverse order we must first reverse the queue (this is the
* uncommon case, so it is OK if it costs a bit more).
*/
if (tot<DISPL_TRESHOLD && specs>0)
{
tf->rev();
while ((n=tf->dequeue())!=NULL)
{
if (n->tok!=T_PARAGRAPH)
output.insert(n);
else
delete(n);
}
}
else
{
output.ins_trans(tf);
}
delete(tf);
t=output.dequeue();
break;
default:
break;
}
return t;
}
/*
* Refill the token queue.
*/
int tok_seq::rd_token(void)
{
struct chunk_rtn r;
tok *t;
int i;
r=read_chunk();
if (r.type==CH_EOF)
return 0;
switch(r.type & ~PART_FLAG)
{
case CH_ROW:
if (table==NULL)
table=new(table_info);
/* Handle 1 field rows properly */
if (table->col==0)
{
t=new(tok)(T_ROW, NULL, tok::TOK_START);
table->enqueue(t);
}
table->col++;
if (table->col>table->cols)
table->cols=table->col;
table->rows++;
table->tok_push(T_FIELD, &(r.txt));
t=new(tok)(T_ROW, NULL, tok::TOK_END);
table->enqueue(t);
table->col=0;
break;
case CH_FIELD:
if (table==NULL)
{
table=new(table_info);
}
if (table->col==0)
{
t=new(tok)(T_ROW, NULL, tok::TOK_START);
table->enqueue(t);
}
table->col++;
table->tok_push(T_FIELD, &(r.txt));
break;
case CH_PAR:
if (table!=NULL)
{
/* Table handling */
if (table->col!=0)
{
table->tok_push(T_FIELD, &(r.txt));
t=new(tok)(T_ROW, NULL, tok::TOK_END);
table->enqueue(t);
t=new(tok)(T_ROW, NULL, tok::TOK_START);
table->enqueue(t);
for (i=0; i<table->col; i++)
{
t=new(tok)(T_FIELD, "\0", tok::TOK_START);
table->enqueue(t);
t=new(tok)(T_FIELD, NULL, tok::TOK_END);
table->enqueue(t);
}
table->rows++;
break;
}
table->finish(&output);
delete(table);
table=NULL;
}
if (r.type & PART_FLAG)
{
tok *td;
td=new(tok)(T_PARAGRAPH, (const char *) (r.txt), tok::TOK_START);
output.enqueue(td);
}
else
tok_push(T_PARAGRAPH, &(r.txt));
break;
case CH_SPEC:
tok_push(T_SPEC, &(r.txt));
break;
default:
break;
}
return 1;
}
ostream &operator<<(ostream &os, const tok_seq::tok *d)
{
os<<'('<<d->tok<<',';
switch(d->dtype)
{
case 1:
if (d->data.d!=NULL && strlen(d->data.d)>10)
{
char foo[11];
int i;
for(i=0; i<7; i++)
foo[i]=d->data.d[i];
for ( ; i<10; i++)
foo[i]='.';
foo[10]='\0';
os<<foo;
}
else
os<<d->data.d;
break;
case 0:
os<<d->data.table.rows<<'x'<<d->data.table.cols;
break;
}
os<<','<<((d->end==tok_seq::tok::TOK_START) ? "start" : "end")<<')';
return os;
}
tok_seq::tok &tok_seq::tok::operator=(const tok_seq::tok &d)
{
tok=d.tok;
end=d.end;
dtype=d.dtype;
if (d.dtype==TEXT && d.data.d!=NULL)
{
data.d=strdup(d.data.d);
}
return (*this);
}
|