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 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191
|
/* Copyright (C) 1995, 1996 Tom Lord
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this software; see the file COPYING. If not, write to
* the Free Software Foundation, 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include <stdio.h>
#include "rxall.h"
#include "rxspencer.h"
#include "rxsimp.h"
static char * silly_hack_2 = 0;
struct rx_solutions rx_no_solutions;
#ifdef __STDC__
struct rx_solutions *
rx_make_solutions (struct rx_registers * regs, struct rx_unfaniverse * verse, struct rexp_node * expression, struct rexp_node ** subexps, int cset_size, int start, int end, rx_vmfn vmfn, rx_contextfn contextfn, void * closure)
#else
struct rx_solutions *
rx_make_solutions (regs, verse, expression, subexps, cset_size,
start, end, vmfn, contextfn, closure)
struct rx_registers * regs;
struct rx_unfaniverse * verse;
struct rexp_node * expression;
struct rexp_node ** subexps;
int cset_size;
int start;
int end;
rx_vmfn vmfn;
rx_contextfn contextfn;
void * closure;
#endif
{
struct rx_solutions * solns;
if ( expression
&& (expression->len >= 0)
&& (expression->len != (end - start)))
return &rx_no_solutions;
if (silly_hack_2)
{
solns = (struct rx_solutions *)silly_hack_2;
silly_hack_2 = 0;
}
else
solns = (struct rx_solutions *)malloc (sizeof (*solns));
if (!solns)
return 0;
rx_bzero ((char *)solns, sizeof (*solns));
solns->step = 0;
solns->cset_size = cset_size;
solns->subexps = subexps;
solns->exp = expression;
rx_save_rexp (expression);
solns->verse = verse;
solns->regs = regs;
solns->start = start;
solns->end = end;
solns->vmfn = vmfn;
solns->contextfn = contextfn;
solns->closure = closure;
if (!solns->exp || !solns->exp->observed)
{
solns->dfa = rx_unfa (verse, expression, cset_size);
if (!solns->dfa)
goto err_return;
rx_init_system (&solns->match_engine, solns->dfa->nfa);
if (rx_yes != rx_start_superstate (&solns->match_engine))
goto err_return;
}
else
{
struct rexp_node * simplified;
int status;
status = rx_simple_rexp (&simplified, cset_size, solns->exp, subexps);
if (status)
goto err_return;
solns->dfa = rx_unfa (verse, simplified, cset_size);
if (!solns->dfa)
{
rx_free_rexp (simplified);
goto err_return;
}
rx_init_system (&solns->match_engine, solns->dfa->nfa);
if (rx_yes != rx_start_superstate (&solns->match_engine))
goto err_return;
rx_free_rexp (simplified);
}
if (expression && ( (expression->type == r_concat)
|| (expression->type == r_plus)
|| (expression->type == r_star)
|| (expression->type == r_interval)))
{
struct rexp_node * subexp;
subexp = solns->exp->params.pair.left;
if (!subexp || !subexp->observed)
{
solns->left_dfa = rx_unfa (solns->verse, subexp, solns->cset_size);
}
else
{
struct rexp_node * simplified;
int status;
status = rx_simple_rexp (&simplified, solns->cset_size, subexp, solns->subexps);
if (status)
goto err_return;
solns->left_dfa = rx_unfa (solns->verse, simplified, solns->cset_size);
rx_free_rexp (simplified);
}
if (!solns->left_dfa)
goto err_return;
rx_bzero ((char *)&solns->left_match_engine, sizeof (solns->left_match_engine));
rx_init_system (&solns->left_match_engine, solns->left_dfa->nfa);
}
return solns;
err_return:
rx_free_rexp (solns->exp);
free (solns);
return 0;
}
#ifdef __STDC__
void
rx_free_solutions (struct rx_solutions * solns)
#else
void
rx_free_solutions (solns)
struct rx_solutions * solns;
#endif
{
if (!solns)
return;
if (solns == &rx_no_solutions)
return;
if (solns->left)
{
rx_free_solutions (solns->left);
solns->left = 0;
}
if (solns->right)
{
rx_free_solutions (solns->right);
solns->right = 0;
}
if (solns->dfa)
{
rx_free_unfa (solns->dfa);
solns->dfa = 0;
}
if (solns->left_dfa)
{
rx_terminate_system (&solns->left_match_engine);
rx_free_unfa (solns->left_dfa);
solns->left_dfa = 0;
}
rx_terminate_system (&solns->match_engine);
if (solns->exp)
{
rx_free_rexp (solns->exp);
solns->exp = 0;
}
if (!silly_hack_2)
silly_hack_2 = (char *)solns;
else
free (solns);
}
#ifdef __STDC__
static enum rx_answers
rx_solution_fit_p (struct rx_solutions * solns)
#else
static enum rx_answers
rx_solution_fit_p (solns)
struct rx_solutions * solns;
#endif
{
unsigned const char * burst;
int burst_addr;
int burst_len;
int burst_end_addr;
int rel_pos_in_burst;
enum rx_answers vmstat;
int current_pos;
current_pos = solns->start;
next_burst:
vmstat = solns->vmfn (solns->closure,
&burst, &burst_len, &burst_addr,
current_pos, solns->end,
current_pos);
if (vmstat != rx_yes)
return vmstat;
rel_pos_in_burst = current_pos - burst_addr;
burst_end_addr = burst_addr + burst_len;
if (burst_end_addr >= solns->end)
{
enum rx_answers fit_status;
fit_status = rx_fit_p (&solns->match_engine,
burst + rel_pos_in_burst,
solns->end - current_pos);
return fit_status;
}
else
{
enum rx_answers fit_status;
fit_status = rx_advance (&solns->match_engine,
burst + rel_pos_in_burst,
burst_len - rel_pos_in_burst);
if (fit_status != rx_yes)
{
return fit_status;
}
else
{
current_pos += burst_len - rel_pos_in_burst;
goto next_burst;
}
}
}
#ifdef __STDC__
static enum rx_answers
rx_solution_fit_str_p (struct rx_solutions * solns)
#else
static enum rx_answers
rx_solution_fit_str_p (solns)
struct rx_solutions * solns;
#endif
{
int current_pos;
unsigned const char * burst;
int burst_addr;
int burst_len;
int burst_end_addr;
int rel_pos_in_burst;
enum rx_answers vmstat;
int count;
unsigned char * key;
current_pos = solns->start;
count = solns->exp->params.cstr.len;
key = (unsigned char *)solns->exp->params.cstr.contents;
next_burst:
vmstat = solns->vmfn (solns->closure,
&burst, &burst_len, &burst_addr,
current_pos, solns->end,
current_pos);
if (vmstat != rx_yes)
return vmstat;
rel_pos_in_burst = current_pos - burst_addr;
burst_end_addr = burst_addr + burst_len;
{
unsigned const char * pos;
pos = burst + rel_pos_in_burst;
if (burst_end_addr >= solns->end)
{
while (count)
{
if (*pos != *key)
return rx_no;
++pos;
++key;
--count;
}
return rx_yes;
}
else
{
int part_count;
int part_count_init;
part_count_init = burst_len - rel_pos_in_burst;
part_count = part_count_init;
while (part_count)
{
if (*pos != *key)
return rx_no;
++pos;
++key;
--part_count;
}
count -= part_count_init;
current_pos += burst_len - rel_pos_in_burst;
goto next_burst;
}
}
}
#if 0
#ifdef __STDC__
int
rx_best_end_guess (struct rx_solutions * solns, struct rexp_node * exp, int bound)
#else
int
rx_best_end_guess (solns, exp, bound)
struct rx_solutions * solns;
struct rexp_node * exp;
int bound;
#endif
{
int current_pos;
unsigned const char * burst;
int burst_addr;
int burst_len;
int burst_end_addr;
int rel_pos_in_burst;
int best_guess;
enum rx_answers vmstat;
#if 0
unparse_print_rexp (256, solns->exp);
printf ("\n");
unparse_print_rexp (256, exp);
printf ("\nbound %d \n", bound);
#endif
if (rx_yes != rx_start_superstate (&solns->left_match_engine))
{
return bound - 1;
}
best_guess = current_pos = solns->start;
next_burst:
#if 0
printf (" best_guess %d\n", best_guess);
#endif
vmstat = solns->vmfn (solns->closure,
&burst, &burst_len, &burst_addr,
current_pos, bound,
current_pos);
#if 0
printf (" str>%s\n", burst);
#endif
if (vmstat != rx_yes)
{
return bound - 1;
}
rel_pos_in_burst = current_pos - burst_addr;
burst_end_addr = burst_addr + burst_len;
if (burst_end_addr > bound)
{
burst_end_addr = bound;
burst_len = bound - burst_addr;
}
{
int amt_advanced;
#if 0
printf (" rel_pos_in_burst %d burst_len %d\n", rel_pos_in_burst, burst_len);
#endif
while (rel_pos_in_burst < burst_len)
{
amt_advanced= rx_advance_to_final (&solns->left_match_engine,
burst + rel_pos_in_burst,
burst_len - rel_pos_in_burst);
#if 0
printf (" amt_advanced %d", amt_advanced);
#endif
if (amt_advanced < 0)
{
return bound - 1;
}
current_pos += amt_advanced;
rel_pos_in_burst += amt_advanced;
if (solns->left_match_engine.final_tag)
best_guess = current_pos;
#if 0
printf (" best_guess %d\n", best_guess);
printf (" current_pos %d\n", current_pos);
#endif
if (amt_advanced == 0)
{
return best_guess;
}
}
if (current_pos == bound)
{
return best_guess;
}
goto next_burst;
}
}
#endif
#ifdef __STDC__
enum rx_answers
rx_next_solution (struct rx_solutions * solns)
#else
enum rx_answers
rx_next_solution (solns)
struct rx_solutions * solns;
#endif
{
if (!solns)
return rx_bogus;
if (solns == &rx_no_solutions)
{
return rx_no;
}
if (!solns->exp)
{
if (solns->step != 0)
{
return rx_no;
}
else
{
solns->step = 1;
solns->final_tag = 1;
return (solns->start == solns->end
? rx_yes
: rx_no);
}
}
else if ( (solns->exp->len >= 0)
&& (solns->exp->len != (solns->end - solns->start)))
{
return rx_no;
}
else if (!solns->exp->observed)
{
if (solns->step != 0)
{
return rx_no;
}
else if (solns->exp->type == r_string)
{
enum rx_answers ans;
ans = rx_solution_fit_str_p (solns);
solns->final_tag = 1;
solns->step = -1;
return ans;
}
else
{
enum rx_answers ans;
ans = rx_solution_fit_p (solns);
solns->final_tag = solns->match_engine.final_tag;
solns->step = -1;
return ans;
}
}
else if (solns->exp->observed)
{
enum rx_answers fit_p;
switch (solns->step)
{
case -2:
if (solns->exp->params.intval)
{
solns->regs[solns->exp->params.intval].rm_so = solns->saved_rm_so;
solns->regs[solns->exp->params.intval].rm_eo = solns->saved_rm_eo;
}
return rx_no;
case -1:
return rx_no;
case 0:
fit_p = rx_solution_fit_p (solns);
/* Set final_tag here because this rough fit test
* may be all the matching that gets done.
* For example, consider a paren node containing
* a true regular expression ending with a cut
* operator.
*/
solns->final_tag = solns->match_engine.final_tag;
switch (fit_p)
{
case rx_no:
solns->step = -1;
return rx_no;
case rx_yes:
solns->step = 1;
goto resolve_fit;
case rx_bogus:
default:
solns->step = -1;
return fit_p;
}
default:
resolve_fit:
switch (solns->exp->type)
{
case r_cset:
case r_string:
case r_cut:
solns->step = -1;
return rx_bogus;
case r_parens:
{
enum rx_answers paren_stat;
switch (solns->step)
{
case 1:
if (solns->exp->params.intval)
{
solns->saved_rm_so = solns->regs[solns->exp->params.intval].rm_so;
solns->saved_rm_eo = solns->regs[solns->exp->params.intval].rm_eo;
}
if ( !solns->exp->params.pair.left
|| !solns->exp->params.pair.left->observed)
{
if (solns->exp->params.intval)
{
solns->regs[solns->exp->params.intval].rm_so = solns->start;
solns->regs[solns->exp->params.intval].rm_eo = solns->end;
}
solns->step = -2;
/* Keep the final_tag from the fit_p test. */
return rx_yes;
}
else
{
solns->left = rx_make_solutions (solns->regs,
solns->verse,
solns->exp->params.pair.left,
solns->subexps,
solns->cset_size,
solns->start,
solns->end,
solns->vmfn,
solns->contextfn,
solns->closure);
if (!solns->left)
{
solns->step = -1;
return rx_bogus;
}
}
solns->step = 2;
/* fall through */
case 2:
if (solns->exp->params.intval)
{
solns->regs[solns->exp->params.intval].rm_so = solns->saved_rm_so;
solns->regs[solns->exp->params.intval].rm_eo = solns->saved_rm_eo;
}
paren_stat = rx_next_solution (solns->left);
if (paren_stat == rx_yes)
{
if (solns->exp->params.intval)
{
solns->regs[solns->exp->params.intval].rm_so = solns->start;
solns->regs[solns->exp->params.intval].rm_eo = solns->end;
}
solns->final_tag = solns->left->final_tag;
return rx_yes;
}
else
{
solns->step = -1;
rx_free_solutions (solns->left);
solns->left = 0;
if (solns->exp->params.intval)
{
solns->regs[solns->exp->params.intval].rm_so = solns->saved_rm_so;
solns->regs[solns->exp->params.intval].rm_eo = solns->saved_rm_eo;
}
return paren_stat;
}
}
}
case r_opt:
{
enum rx_answers opt_stat;
switch (solns->step)
{
case 1:
solns->left = rx_make_solutions (solns->regs,
solns->verse,
solns->exp->params.pair.left,
solns->subexps,
solns->cset_size,
solns->start,
solns->end,
solns->vmfn,
solns->contextfn,
solns->closure);
if (!solns->left)
{
solns->step = -1;
return rx_bogus;
}
solns->step = 2;
/* fall through */
case 2:
opt_stat = rx_next_solution (solns->left);
if (opt_stat == rx_yes)
{
solns->final_tag = solns->left->final_tag;
return rx_yes;
}
else
{
solns->step = -1;
rx_free_solutions (solns->left);
solns->left = 0;
return ((solns->start == solns->end)
? rx_yes
: rx_no);
}
}
}
case r_alternate:
{
enum rx_answers alt_stat;
switch (solns->step)
{
case 1:
solns->left = rx_make_solutions (solns->regs,
solns->verse,
solns->exp->params.pair.left,
solns->subexps,
solns->cset_size,
solns->start,
solns->end,
solns->vmfn,
solns->contextfn,
solns->closure);
if (!solns->left)
{
solns->step = -1;
return rx_bogus;
}
solns->step = 2;
/* fall through */
case 2:
alt_stat = rx_next_solution (solns->left);
if (alt_stat == rx_yes)
{
solns->final_tag = solns->left->final_tag;
return alt_stat;
}
else
{
solns->step = 3;
rx_free_solutions (solns->left);
solns->left = 0;
/* fall through */
}
case 3:
solns->right = rx_make_solutions (solns->regs,
solns->verse,
solns->exp->params.pair.right,
solns->subexps,
solns->cset_size,
solns->start,
solns->end,
solns->vmfn,
solns->contextfn,
solns->closure);
if (!solns->right)
{
solns->step = -1;
return rx_bogus;
}
solns->step = 4;
/* fall through */
case 4:
alt_stat = rx_next_solution (solns->right);
if (alt_stat == rx_yes)
{
solns->final_tag = solns->right->final_tag;
return alt_stat;
}
else
{
solns->step = -1;
rx_free_solutions (solns->right);
solns->right = 0;
return alt_stat;
}
}
}
case r_concat:
{
switch (solns->step)
{
enum rx_answers concat_stat;
case 1:
solns->split_guess = solns->end;
#if 0
solns->split_guess = ((solns->end - solns->start) > RX_MANY_CASES
? rx_best_end_guess (solns,
solns->exp->params.pair.left, solns->end)
: solns->end);
#endif
concat_split_guess_loop:
solns->left = rx_make_solutions (solns->regs,
solns->verse,
solns->exp->params.pair.left,
solns->subexps,
solns->cset_size,
solns->start,
solns->split_guess,
solns->vmfn,
solns->contextfn,
solns->closure);
if (!solns->left)
{
solns->step = -1;
return rx_bogus;
}
solns->step = 2;
case 2:
concat_try_next_left_match:
concat_stat = rx_next_solution (solns->left);
if (concat_stat != rx_yes)
{
rx_free_solutions (solns->left);
rx_free_solutions (solns->right);
solns->left = solns->right = 0;
solns->split_guess = solns->split_guess - 1;
#if 0
solns->split_guess = ((solns->split_guess - solns->start) > RX_MANY_CASES
? rx_best_end_guess (solns,
solns->exp->params.pair.left,
solns->split_guess - 1)
: solns->split_guess - 1);
#endif
if (solns->split_guess >= solns->start)
goto concat_split_guess_loop;
else
{
solns->step = -1;
return concat_stat;
}
}
else
{
solns->step = 3;
/* fall through */
}
case 3:
solns->right = rx_make_solutions (solns->regs,
solns->verse,
solns->exp->params.pair.right,
solns->subexps,
solns->cset_size,
solns->split_guess,
solns->end,
solns->vmfn,
solns->contextfn,
solns->closure);
if (!solns->right)
{
rx_free_solutions (solns->left);
solns->left = 0;
solns->step = -1;
return rx_bogus;
}
solns->step = 4;
/* fall through */
case 4:
/* concat_try_next_right_match: */
concat_stat = rx_next_solution (solns->right);
if (concat_stat == rx_yes)
{
solns->final_tag = solns->right->final_tag;
return concat_stat;
}
else if (concat_stat == rx_no)
{
rx_free_solutions (solns->right);
solns->right = 0;
solns->step = 2;
goto concat_try_next_left_match;
}
else /* concat_stat == rx_bogus */
{
rx_free_solutions (solns->left);
solns->left = 0;
rx_free_solutions (solns->right);
solns->right = 0;
solns->step = -1;
return concat_stat;
}
}
}
case r_plus:
case r_star:
{
switch (solns->step)
{
enum rx_answers star_stat;
case 1:
solns->split_guess = solns->end;
#if 0
solns->split_guess = ((solns->end - solns->start) > RX_MANY_CASES
? rx_best_end_guess (solns,
solns->exp->params.pair.left, solns->end)
: solns->end);
#endif
star_split_guess_loop:
solns->left = rx_make_solutions (solns->regs,
solns->verse,
solns->exp->params.pair.left,
solns->subexps,
solns->cset_size,
solns->start,
solns->split_guess,
solns->vmfn,
solns->contextfn,
solns->closure);
if (!solns->left)
{
solns->step = -1;
return rx_bogus;
}
solns->step = 2;
case 2:
star_try_next_left_match:
star_stat = rx_next_solution (solns->left);
if (star_stat != rx_yes)
{
rx_free_solutions (solns->left);
rx_free_solutions (solns->right);
solns->left = solns->right = 0;
solns->split_guess = solns->split_guess - 1;
#if 0
solns->split_guess = ((solns->split_guess - solns->start) > RX_MANY_CASES
? rx_best_end_guess (solns,
solns->exp->params.pair.left,
solns->split_guess - 1)
: solns->split_guess - 1);
#endif
if (solns->split_guess >= solns->start)
goto star_split_guess_loop;
else
{
solns->step = -1;
if ( (solns->exp->type == r_star)
&& (solns->start == solns->end)
&& (star_stat == rx_no))
{
solns->final_tag = 1;
return rx_yes;
}
else
return star_stat;
}
}
else
{
solns->step = 3;
/* fall through */
}
if (solns->split_guess == solns->end)
{
solns->final_tag = solns->left->final_tag;
return rx_yes;
}
case 3:
solns->right = rx_make_solutions (solns->regs,
solns->verse,
solns->exp,
solns->subexps,
solns->cset_size,
solns->split_guess,
solns->end,
solns->vmfn,
solns->contextfn,
solns->closure);
if (!solns->right)
{
rx_free_solutions (solns->left);
solns->left = 0;
solns->step = -1;
return rx_bogus;
}
solns->step = 4;
/* fall through */
case 4:
/* star_try_next_right_match: */
star_stat = rx_next_solution (solns->right);
if (star_stat == rx_yes)
{
solns->final_tag = solns->right->final_tag;
return star_stat;
}
else if (star_stat == rx_no)
{
rx_free_solutions (solns->right);
solns->right = 0;
solns->step = 2;
goto star_try_next_left_match;
}
else /* star_stat == rx_bogus */
{
rx_free_solutions (solns->left);
solns->left = 0;
rx_free_solutions (solns->right);
solns->right = 0;
solns->step = -1;
return star_stat;
}
}
}
case r_interval:
{
switch (solns->step)
{
enum rx_answers interval_stat;
case 1:
/* If the interval permits nothing,
* return immediately.
*/
if (solns->exp->params.intval2 < solns->interval_x)
{
solns->step = -1;
return rx_no;
}
/* If the interval permits only 0 iterations,
* return immediately. Success depends on the
* emptiness of the match.
*/
if ( (solns->exp->params.intval2 == solns->interval_x)
&& (solns->exp->params.intval <= solns->interval_x))
{
solns->step = -1;
solns->final_tag = 1;
return ((solns->start == solns->end)
? rx_yes
: rx_no);
}
/* The interval permits at most 0 iterations,
* but also requires more. A bug.
*/
if (solns->exp->params.intval2 == solns->interval_x)
{
/* indicates a regexp compilation error, actually */
solns->step = -1;
return rx_bogus;
}
solns->split_guess = solns->end;
#if 0
solns->split_guess = ((solns->end - solns->start) > RX_MANY_CASES
? rx_best_end_guess (solns,
solns->exp->params.pair.left, solns->end)
: solns->end);
#endif
/* The interval permits more than 0 iterations.
* If it permits 0 and the match is to be empty,
* the trivial match is the most preferred answer.
*/
if (solns->exp->params.intval <= solns->interval_x)
{
solns->step = 2;
if (solns->start == solns->end)
{
solns->final_tag = 1;
return rx_yes;
}
/* If this isn't a trivial match, or if the trivial match
* is rejected, look harder.
*/
}
case 2:
interval_split_guess_loop:
/* The match requires at least one iteration, either because
* there are characters to match, or because the interval starts
* above 0.
*
* Look for the first iteration:
*/
solns->left = rx_make_solutions (solns->regs,
solns->verse,
solns->exp->params.pair.left,
solns->subexps,
solns->cset_size,
solns->start,
solns->split_guess,
solns->vmfn,
solns->contextfn,
solns->closure);
if (!solns->left)
{
solns->step = -1;
return rx_bogus;
}
solns->step = 3;
case 3:
interval_try_next_left_match:
interval_stat = rx_next_solution (solns->left);
if (interval_stat != rx_yes)
{
rx_free_solutions (solns->left);
rx_free_solutions (solns->right);
solns->left = solns->right = 0;
solns->split_guess = solns->split_guess - 1;
#if 0
solns->split_guess = ((solns->split_guess - solns->start) > RX_MANY_CASES
? rx_best_end_guess (solns,
solns->exp->params.pair.left,
solns->split_guess - 1)
: solns->split_guess - 1);
#endif
if (solns->split_guess >= solns->start)
goto interval_split_guess_loop;
else
{
solns->step = -1;
return interval_stat;
}
}
else
{
solns->step = 4;
/* fall through */
}
case 4:
{
/* After matching one required iteration, construct a smaller
* interval and try to match that against the rest.
*
* To avoid thwarting unfa caching, instead of building a new
* rexp node with different interval extents, we keep interval_x
* in each solns structure to keep track of the number of
* iterations matched so far.
*/
solns->right = rx_make_solutions (solns->regs,
solns->verse,
solns->exp,
solns->subexps,
solns->cset_size,
solns->split_guess,
solns->end,
solns->vmfn,
solns->contextfn,
solns->closure);
solns->right->interval_x = solns->interval_x + 1;
}
if (!solns->right)
{
rx_free_solutions (solns->left);
solns->left = 0;
solns->step = -1;
return rx_bogus;
}
solns->step = 5;
/* fall through */
case 5:
/* interval_try_next_right_match: */
interval_stat = rx_next_solution (solns->right);
if (interval_stat == rx_yes)
{
solns->final_tag = solns->right->final_tag;
return interval_stat;
}
else if (interval_stat == rx_no)
{
rx_free_solutions (solns->right);
solns->right = 0;
solns->step = 2;
goto interval_try_next_left_match;
}
else /* interval_stat == rx_bogus */
{
rx_free_solutions (solns->left);
solns->left = 0;
rx_free_solutions (solns->right);
solns->right = 0;
solns->step = -1;
return interval_stat;
}
}
}
case r_context:
{
solns->step = -1;
solns->final_tag = 1;
return solns->contextfn (solns->closure,
solns->exp,
solns->start, solns->end,
solns->regs);
}
}
}
return rx_bogus;
}
}
|