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
|
#include <stdio.h> /* stderr etc */
#include <stdlib.h> /* malloc free */
#include <string.h> /* strlen */
#include <ctype.h> /* isalpha etc */
#include "header.h"
struct system_word {
int s_size; /* size of system word */
const byte * s; /* pointer to the system word */
int code; /* its internal code */
};
/* ASCII collating assumed in syswords.h */
#include "syswords.h"
#define INITIAL_INPUT_BUFFER_SIZE 8192
static int hex_to_num(int ch);
static int smaller(int a, int b) { return a < b ? a : b; }
extern byte * get_input(const char * filename) {
FILE * input = fopen(filename, "r");
if (input == NULL) { return NULL; }
{
byte * u = create_s(INITIAL_INPUT_BUFFER_SIZE);
int size = 0;
while (true) {
int ch = getc(input);
if (ch == EOF) break;
if (size >= CAPACITY(u)) u = increase_capacity_s(u, size);
u[size++] = ch;
}
fclose(input);
SIZE(u) = size;
return u;
}
}
static void error(struct tokeniser * t, const char * s1, byte * p, int n, const char * s2) {
if (t->error_count == 20) { fprintf(stderr, "... etc\n"); exit(1); }
fprintf(stderr, "%s:%d: ", t->file, t->line_number);
if (s1) fprintf(stderr, "%s", s1);
if (p) {
int i;
for (i = 0; i < n; i++) fprintf(stderr, "%c", p[i]);
}
if (s2) fprintf(stderr, "%s", s2);
fprintf(stderr, "\n");
t->error_count++;
}
static void error1(struct tokeniser * t, const char * s) {
error(t, s, NULL, 0, NULL);
}
static void error2(struct tokeniser * t, const char * s) {
error(t, "unexpected end of text after ", NULL, 0, s);
}
static int compare_words(int m, const byte * p, int n, const byte * q) {
if (m != n) return m - n;
return memcmp(p, q, n);
}
static int find_word(int n, const byte * p) {
int i = 0; int j = vocab->code;
do {
int k = i + (j - i)/2;
const struct system_word * w = vocab + k;
int diff = compare_words(n, p, w->s_size, w->s);
if (diff == 0) return w->code;
if (diff < 0) j = k; else i = k;
} while (j - i != 1);
return -1;
}
static int white_space(struct tokeniser * t, int ch) {
switch (ch) {
case '\n':
t->line_number++;
/* fall through */
case '\r':
case '\t':
case ' ':
return true;
}
return false;
}
static symbol * find_in_m(struct tokeniser * t, int n, byte * p) {
struct m_pair * q;
for (q = t->m_pairs; q; q = q->next) {
byte * name = q->name;
if (n == SIZE(name) && memcmp(name, p, n) == 0) return q->value;
}
return NULL;
}
static int read_literal_string(struct tokeniser * t, int c) {
byte * p = t->p;
int ch;
SIZE(t->b) = 0;
while (true) {
if (c >= SIZE(p) || p[c] == '\n') {
error1(t, "string literal not terminated");
return c;
}
ch = p[c];
c++;
if (ch == t->m_start) {
/* Inside insert characters. */
int c0 = c;
int newlines = false; /* no newlines as yet */
int all_whitespace = true; /* no printing chars as yet */
while (true) {
if (c >= SIZE(p) || (p[c] == '\n' && !all_whitespace)) {
error1(t, "string literal not terminated");
return c;
}
ch = p[c];
if (ch == '\n') {
newlines = true;
}
c++;
if (ch == t->m_end) break;
if (!white_space(t, ch)) all_whitespace = false;
}
if (!newlines) {
int n = c - c0 - 1; /* macro size */
int firstch = p[c0];
symbol * q = find_in_m(t, n, p + c0);
if (q == NULL) {
if (n == 1 && (firstch == '\'' || firstch == t->m_start))
t->b = add_symbol_to_b(t->b, p[c0]);
else if (n >= 3 && firstch == 'U' && p[c0 + 1] == '+') {
int codepoint = 0;
int x;
if (t->uplusmode == UPLUS_DEFINED) {
/* See if found with xxxx upper-cased. */
byte * uc = create_s(n);
int i;
for (i = 0; i != n; ++i) {
uc[i] = toupper(p[c0 + i]);
}
q = find_in_m(t, n, uc);
lose_s(uc);
if (q != NULL) {
t->b = add_to_b(t->b, q, SIZE(q));
continue;
}
error1(t, "Some U+xxxx stringdefs seen but not this one");
} else {
t->uplusmode = UPLUS_UNICODE;
}
for (x = c0 + 2; x != c - 1; ++x) {
int hex = hex_to_num(p[x]);
if (hex < 0) {
error1(t, "Bad hex digit following U+");
break;
}
codepoint = (codepoint << 4) | hex;
}
if (t->encoding == ENC_UTF8) {
if (codepoint < 0 || codepoint > 0x01ffff) {
error1(t, "character values exceed 0x01ffff");
}
/* Ensure there's enough space for a max length
* UTF-8 sequence. */
if (CAPACITY(t->b) < SIZE(t->b) + 3) {
t->b = increase_capacity_b(t->b, 3);
}
SIZE(t->b) += put_utf8(codepoint, t->b + SIZE(t->b));
} else {
if (t->encoding == ENC_SINGLEBYTE) {
/* Only ISO-8859-1 is handled this way - for
* other single-byte character sets you need
* to stringdef all the U+xxxx codes you use
* like - e.g.:
*
* stringdef U+0171 hex 'FB'
*/
if (codepoint < 0 || codepoint > 0xff) {
error1(t, "character values exceed 256");
}
} else {
if (codepoint < 0 || codepoint > 0xffff) {
error1(t, "character values exceed 64K");
}
}
t->b = add_symbol_to_b(t->b, (symbol)codepoint);
}
} else {
error(t, "string macro '", p + c0, n, "' undeclared");
}
} else {
t->b = add_to_b(t->b, q, SIZE(q));
}
}
} else {
if (ch == '\'') return c;
if (ch < 0 || ch >= 0x80) {
if (t->encoding != ENC_WIDECHARS) {
/* We don't really want people using non-ASCII literal
* strings, but historically it's worked for single-byte
* and UTF-8 if the source encoding matches what the
* generated stemmer works in and it seems unfair to just
* suddenly make this a hard error.
*/
fprintf(stderr,
"%s:%d: warning: Non-ASCII literal strings aren't "
"portable - use stringdef instead\n",
t->file, t->line_number);
} else {
error1(t, "Non-ASCII literal strings aren't "
"portable - use stringdef instead");
}
}
t->b = add_symbol_to_b(t->b, p[c - 1]);
}
}
}
static int next_token(struct tokeniser * t) {
byte * p = t->p;
int c = t->c;
int ch;
int code = -1;
while (true) {
if (c >= SIZE(p)) { t->c = c; return -1; }
ch = p[c];
if (white_space(t, ch)) { c++; continue; }
if (isalpha(ch)) {
int c0 = c;
while (c < SIZE(p) && (isalnum(p[c]) || p[c] == '_')) c++;
code = find_word(c - c0, p + c0);
if (code < 0 || t->token_disabled[code]) {
SIZE(t->s) = 0;
t->s = add_s_to_s(t->s, (const char*)p + c0, c - c0);
code = c_name;
}
} else if (isdigit(ch)) {
int value = ch - '0';
while (++c < SIZE(p) && isdigit(p[c])) {
value = 10 * value + (p[c] - '0');
}
t->number = value;
code = c_number;
} else if (ch == '\'') {
c = read_literal_string(t, c + 1);
code = c_literalstring;
} else {
int lim = smaller(2, SIZE(p) - c);
int i;
for (i = lim; i > 0; i--) {
code = find_word(i, p + c);
if (code >= 0) { c += i; break; }
}
}
if (code >= 0) {
t->c = c;
return code;
}
error(t, "'", p + c, 1, "' unknown");
c++;
continue;
}
}
static int next_char(struct tokeniser * t) {
if (t->c >= SIZE(t->p)) return -1;
return t->p[t->c++];
}
static int next_real_char(struct tokeniser * t) {
while (true) {
int ch = next_char(t);
if (!white_space(t, ch)) return ch;
}
}
static void read_chars(struct tokeniser * t) {
int ch = next_real_char(t);
if (ch < 0) { error2(t, "stringdef"); return; }
{
int c0 = t->c-1;
while (true) {
ch = next_char(t);
if (white_space(t, ch) || ch < 0) break;
}
SIZE(t->s) = 0;
t->s = add_s_to_s(t->s, (const char*)t->p + c0, t->c - c0 - 1);
}
}
static int decimal_to_num(int ch) {
if ('0' <= ch && ch <= '9') return ch - '0';
return -1;
}
static int hex_to_num(int ch) {
if ('0' <= ch && ch <= '9') return ch - '0';
if ('a' <= ch && ch <= 'f') return ch - 'a' + 10;
if ('A' <= ch && ch <= 'F') return ch - 'A' + 10;
return -1;
}
static void convert_numeric_string(struct tokeniser * t, symbol * p, int base) {
int c = 0; int d = 0;
while (true) {
while (c < SIZE(p) && p[c] == ' ') c++;
if (c == SIZE(p)) break;
{
int number = 0;
while (c != SIZE(p)) {
int ch = p[c];
if (ch == ' ') break;
if (base == 10) {
ch = decimal_to_num(ch);
if (ch < 0) {
error1(t, "decimal string contains non-digits");
return;
}
} else {
ch = hex_to_num(ch);
if (ch < 0) {
error1(t, "hex string contains non-hex characters");
return;
}
}
number = base * number + ch;
c++;
}
if (t->encoding == ENC_SINGLEBYTE) {
if (number < 0 || number > 0xff) {
error1(t, "character values exceed 256");
return;
}
} else {
if (number < 0 || number > 0xffff) {
error1(t, "character values exceed 64K");
return;
}
}
if (t->encoding == ENC_UTF8)
d += put_utf8(number, p + d);
else
p[d++] = number;
}
}
SIZE(p) = d;
}
extern int read_token(struct tokeniser * t) {
byte * p = t->p;
int held = t->token_held;
t->token_held = false;
if (held) return t->token;
t->token_reported_as_unexpected = false;
while (true) {
int code = next_token(t);
switch (code) {
case c_comment1: /* slash-slash comment */
while (t->c < SIZE(p) && p[t->c] != '\n') t->c++;
continue;
case c_comment2: { /* slash-star comment */
// Scan for a '*' stopping one before the end since we need a
// '/' to follow it to close the comment.
int size_less_one = SIZE(p) - 1;
int c = t->c;
while (true) {
if (c >= size_less_one) {
error1(t, "/* comment not terminated");
t->token = -1;
return -1;
}
if (p[c] == '\n') {
t->line_number++;
} else if (p[c] == '*' && p[c + 1] == '/') {
// Found '*/' to end of comment.
t->c = c + 2;
break;
}
++c;
}
continue;
}
case c_stringescapes: {
int ch1 = next_real_char(t);
int ch2 = next_real_char(t);
if (ch2 < 0) {
error2(t, "stringescapes");
continue;
}
if (ch1 == '\'') {
error1(t, "first stringescape cannot be '");
continue;
}
t->m_start = ch1;
t->m_end = ch2;
continue;
}
case c_stringdef: {
int base = 0;
read_chars(t);
code = read_token(t);
if (code == c_hex) { base = 16; code = read_token(t); } else
if (code == c_decimal) { base = 10; code = read_token(t); }
if (code != c_literalstring) {
error1(t, "string omitted after stringdef");
continue;
}
if (base > 0) convert_numeric_string(t, t->b, base);
{ NEW(m_pair, q);
q->next = t->m_pairs;
q->name = copy_s(t->s);
q->value = copy_b(t->b);
t->m_pairs = q;
if (t->uplusmode != UPLUS_DEFINED &&
(SIZE(t->s) >= 3 && t->s[0] == 'U' && t->s[1] == '+')) {
if (t->uplusmode == UPLUS_UNICODE) {
error1(t, "U+xxxx already used with implicit meaning");
} else {
t->uplusmode = UPLUS_DEFINED;
}
}
}
continue;
}
case c_get:
code = read_token(t);
if (code != c_literalstring) {
error1(t, "string omitted after get"); continue;
}
t->get_depth++;
if (t->get_depth > 10) {
error1(t, "get directives go 10 deep. Looping?");
exit(1);
}
{
NEW(input, q);
char * file = b_to_sz(t->b);
int file_owned = 1;
byte * u = get_input(file);
if (u == NULL) {
struct include * r;
for (r = t->includes; r; r = r->next) {
byte * s = copy_s(r->s);
s = add_sz_to_s(s, file);
s[SIZE(s)] = 0;
if (file_owned > 0) {
free(file);
} else {
lose_s((byte *)file);
}
file = (char*)s;
file_owned = -1;
u = get_input(file);
if (u != NULL) break;
}
}
if (u == NULL) {
error(t, "Can't get '", (byte *)file, strlen(file), "'");
exit(1);
}
memmove(q, t, sizeof(struct input));
t->next = q;
t->p = u;
t->c = 0;
t->file = file;
t->file_owned = file_owned;
t->line_number = 1;
}
p = t->p;
continue;
case -1:
if (t->next) {
lose_s(p);
{
struct input * q = t->next;
memmove(t, q, sizeof(struct input)); p = t->p;
FREE(q);
}
t->get_depth--;
continue;
}
/* fall through */
default:
t->previous_token = t->token;
t->token = code;
return code;
}
}
}
extern int peek_token(struct tokeniser * t) {
int token = read_token(t);
t->token_held = true;
return token;
}
extern const char * name_of_token(int code) {
int i;
for (i = 1; i < vocab->code; i++)
if ((vocab + i)->code == code) return (const char *)(vocab + i)->s;
switch (code) {
case c_mathassign: return "=";
case c_name: return "name";
case c_number: return "number";
case c_literalstring:return "literal";
case c_neg: return "neg";
case c_grouping: return "grouping";
case c_call: return "call";
case c_booltest: return "Boolean test";
case c_functionend: return "Function end";
case c_goto_grouping:
return "goto grouping";
case c_gopast_grouping:
return "gopast grouping";
case c_goto_non: return "goto non";
case c_gopast_non: return "gopast non";
case -2: return "start of text";
case -1: return "end of text";
default: return "?";
}
}
extern void disable_token(struct tokeniser * t, int code) {
t->token_disabled[code] = 1;
}
extern struct tokeniser * create_tokeniser(byte * p, char * file) {
NEW(tokeniser, t);
t->next = NULL;
t->p = p;
t->c = 0;
t->file = file;
t->file_owned = 0;
t->line_number = 1;
t->b = create_b(0);
t->s = create_s(0);
t->m_start = -1;
t->m_pairs = NULL;
t->get_depth = 0;
t->error_count = 0;
t->token_held = false;
t->token_reported_as_unexpected = false;
t->token = -2;
t->previous_token = -2;
t->uplusmode = UPLUS_NONE;
memset(t->token_disabled, 0, sizeof(t->token_disabled));
return t;
}
extern void close_tokeniser(struct tokeniser * t) {
lose_b(t->b);
lose_s(t->s);
{
struct m_pair * q = t->m_pairs;
while (q) {
struct m_pair * q_next = q->next;
lose_s(q->name);
lose_b(q->value);
FREE(q);
q = q_next;
}
}
{
struct input * q = t->next;
while (q) {
struct input * q_next = q->next;
FREE(q);
q = q_next;
}
}
if (t->file_owned > 0) {
free(t->file);
} else if (t->file_owned < 0) {
lose_s((byte *)t->file);
}
FREE(t);
}
|