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 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621
|
#include <string.h>
#include "search.h"
#include "array.h"
#include "internal.h"
#define BQ(query) ((BooleanQuery *)(query))
#define BW(weight) ((BooleanWeight *)(weight))
/***************************************************************************
*
* BooleanScorer
*
***************************************************************************/
/***************************************************************************
* Coordinator
***************************************************************************/
typedef struct Coordinator
{
int max_coord;
float *coord_factors;
Similarity *similarity;
int num_matches;
} Coordinator;
static Coordinator *coord_new(Similarity *similarity)
{
Coordinator *self = ALLOC_AND_ZERO(Coordinator);
self->similarity = similarity;
return self;
}
static Coordinator *coord_init(Coordinator *self)
{
int i;
self->coord_factors = ALLOC_N(float, self->max_coord + 1);
for (i = 0; i <= self->max_coord; i++) {
self->coord_factors[i]
= sim_coord(self->similarity, i, self->max_coord);
}
return self;
}
/***************************************************************************
* DisjunctionSumScorer
***************************************************************************/
#define DSSc(scorer) ((DisjunctionSumScorer *)(scorer))
typedef struct DisjunctionSumScorer
{
Scorer super;
float cum_score;
int num_matches;
int min_num_matches;
Scorer **sub_scorers;
int ss_cnt;
PriorityQueue *scorer_queue;
Coordinator *coordinator;
} DisjunctionSumScorer;
static float dssc_score(Scorer *self)
{
return DSSc(self)->cum_score;
}
static void dssc_init_scorer_queue(DisjunctionSumScorer *dssc)
{
int i;
Scorer *sub_scorer;
PriorityQueue *pq = dssc->scorer_queue
= pq_new(dssc->ss_cnt, (lt_ft)&scorer_doc_less_than, NULL);
for (i = 0; i < dssc->ss_cnt; i++) {
sub_scorer = dssc->sub_scorers[i];
if (sub_scorer->next(sub_scorer)) {
pq_insert(pq, sub_scorer);
}
}
}
static bool dssc_advance_after_current(Scorer *self)
{
DisjunctionSumScorer *dssc = DSSc(self);
PriorityQueue *scorer_queue = dssc->scorer_queue;
/* repeat until minimum number of matches is found */
while (true) {
Scorer *top = (Scorer *)pq_top(scorer_queue);
self->doc = top->doc;
dssc->cum_score = top->score(top);
dssc->num_matches = 1;
/* Until all sub-scorers are after self->doc */
while (true) {
if (top->next(top)) {
pq_down(scorer_queue);
}
else {
pq_pop(scorer_queue);
if (scorer_queue->size
< (dssc->min_num_matches - dssc->num_matches)) {
/* Not enough subscorers left for a match on this
* document, also no more chance of any further match */
return false;
}
if (scorer_queue->size == 0) {
/* nothing more to advance, check for last match. */
break;
}
}
top = (Scorer *)pq_top(scorer_queue);
if (top->doc != self->doc) {
/* All remaining subscorers are after self->doc */
break;
}
else {
dssc->cum_score += top->score(top);
dssc->num_matches++;
}
}
if (dssc->num_matches >= dssc->min_num_matches) {
return true;
}
else if (scorer_queue->size < dssc->min_num_matches) {
return false;
}
}
}
static bool dssc_next(Scorer *self)
{
if (DSSc(self)->scorer_queue == NULL) {
dssc_init_scorer_queue(DSSc(self));
}
if (DSSc(self)->scorer_queue->size < DSSc(self)->min_num_matches) {
return false;
}
else {
return dssc_advance_after_current(self);
}
}
static bool dssc_skip_to(Scorer *self, int doc_num)
{
DisjunctionSumScorer *dssc = DSSc(self);
PriorityQueue *scorer_queue = dssc->scorer_queue;
if (scorer_queue == NULL) {
dssc_init_scorer_queue(dssc);
scorer_queue = dssc->scorer_queue;
}
if (scorer_queue->size < dssc->min_num_matches) {
return false;
}
if (doc_num <= self->doc) {
doc_num = self->doc + 1;
}
while (true) {
Scorer *top = (Scorer *)pq_top(scorer_queue);
if (top->doc >= doc_num) {
return dssc_advance_after_current(self);
}
else if (top->skip_to(top, doc_num)) {
pq_down(scorer_queue);
}
else {
pq_pop(scorer_queue);
if (scorer_queue->size < dssc->min_num_matches) {
return false;
}
}
}
}
static Explanation *dssc_explain(Scorer *self, int doc_num)
{
int i;
DisjunctionSumScorer *dssc = DSSc(self);
Scorer *sub_scorer;
Explanation *e
= expl_new(0.0, "At least %d of:", dssc->min_num_matches);
for (i = 0; i < dssc->ss_cnt; i++) {
sub_scorer = dssc->sub_scorers[i];
expl_add_detail(e, sub_scorer->explain(sub_scorer, doc_num));
}
return e;
}
static void dssc_destroy(Scorer *self)
{
DisjunctionSumScorer *dssc = DSSc(self);
int i;
for (i = 0; i < dssc->ss_cnt; i++) {
dssc->sub_scorers[i]->destroy(dssc->sub_scorers[i]);
}
if (dssc->scorer_queue) {
pq_destroy(dssc->scorer_queue);
}
scorer_destroy_i(self);
}
static Scorer *disjunction_sum_scorer_new(Scorer **sub_scorers, int ss_cnt,
int min_num_matches)
{
Scorer *self = scorer_new(DisjunctionSumScorer, NULL);
DSSc(self)->ss_cnt = ss_cnt;
/* The document number of the current match */
self->doc = -1;
DSSc(self)->cum_score = -1.0;
/* The number of subscorers that provide the current match. */
DSSc(self)->num_matches = -1;
DSSc(self)->coordinator = NULL;
#ifdef DEBUG
if (min_num_matches <= 0) {
RAISE(ARG_ERROR, "The min_num_matches value <%d> should not be less "
"than 0\n", min_num_matches);
}
if (ss_cnt <= 1) {
RAISE(ARG_ERROR, "There should be at least 2 sub_scorers in a "
"DiscjunctionSumScorer. <%d> is not enough", ss_cnt);
}
#endif
DSSc(self)->min_num_matches = min_num_matches;
DSSc(self)->sub_scorers = sub_scorers;
DSSc(self)->scorer_queue = NULL;
self->score = &dssc_score;
self->next = &dssc_next;
self->skip_to = &dssc_skip_to;
self->explain = &dssc_explain;
self->destroy = &dssc_destroy;
return self;
}
static float cdssc_score(Scorer *self)
{
DSSc(self)->coordinator->num_matches += DSSc(self)->num_matches;
return DSSc(self)->cum_score;
}
static Scorer *counting_disjunction_sum_scorer_new(
Coordinator *coordinator, Scorer **sub_scorers, int ss_cnt,
int min_num_matches)
{
Scorer *self = disjunction_sum_scorer_new(sub_scorers, ss_cnt,
min_num_matches);
DSSc(self)->coordinator = coordinator;
self->score = &cdssc_score;
return self;
}
/***************************************************************************
* ConjunctionScorer
***************************************************************************/
#define CSc(scorer) ((ConjunctionScorer *)(scorer))
typedef struct ConjunctionScorer
{
Scorer super;
bool first_time : 1;
bool more : 1;
float coord;
Scorer **sub_scorers;
int ss_cnt;
int first_idx;
Coordinator *coordinator;
int last_scored_doc;
} ConjunctionScorer;
static void csc_sort_scorers(ConjunctionScorer *csc)
{
int i;
Scorer *current = csc->sub_scorers[0], *previous;
for (i = 1; i < csc->ss_cnt; i++) {
previous = current;
current = csc->sub_scorers[i];
if (previous->doc > current->doc) {
if (!current->skip_to(current, previous->doc)) {
csc->more = false;
return;
}
}
}
/*qsort(csc->sub_scorers, csc->ss_cnt, sizeof(Scorer *), &scorer_doc_cmp);*/
csc->first_idx = 0;
}
static void csc_init(Scorer *self, bool init_scorers)
{
ConjunctionScorer *csc = CSc(self);
const int sub_sc_cnt = csc->ss_cnt;
/* compute coord factor */
csc->coord = sim_coord(self->similarity, sub_sc_cnt, sub_sc_cnt);
csc->more = (sub_sc_cnt > 0);
if (init_scorers) {
int i;
/* move each scorer to its first entry */
for (i = 0; i < sub_sc_cnt; i++) {
Scorer *sub_scorer = csc->sub_scorers[i];
if (!csc->more) {
break;
}
csc->more = sub_scorer->next(sub_scorer);
}
if (csc->more) {
csc_sort_scorers(csc);
}
}
csc->first_time = false;
}
static float csc_score(Scorer *self)
{
ConjunctionScorer *csc = CSc(self);
const int sub_sc_cnt = csc->ss_cnt;
float score = 0.0; /* sum scores */
int i;
for (i = 0; i < sub_sc_cnt; i++) {
Scorer *sub_scorer = csc->sub_scorers[i];
score += sub_scorer->score(sub_scorer);
}
score *= csc->coord;
return score;
}
static bool csc_do_next(Scorer *self)
{
ConjunctionScorer *csc = CSc(self);
const int sub_sc_cnt = csc->ss_cnt;
int first_idx = csc->first_idx;
Scorer *first_sc = csc->sub_scorers[first_idx];
Scorer *last_sc = csc->sub_scorers[PREV_NUM(first_idx, sub_sc_cnt)];
/* skip to doc with all clauses */
while (csc->more && (first_sc->doc < last_sc->doc)) {
/* skip first upto last */
csc->more = first_sc->skip_to(first_sc, last_sc->doc);
/* move first to last */
last_sc = first_sc;
first_idx = NEXT_NUM(first_idx, sub_sc_cnt);
first_sc = csc->sub_scorers[first_idx];
}
self->doc = first_sc->doc;
csc->first_idx = first_idx;
return csc->more;
}
static bool csc_next(Scorer *self)
{
ConjunctionScorer *csc = CSc(self);
if (csc->first_time) {
csc_init(self, true);
}
else if (csc->more) {
/* trigger further scanning */
const int last_idx = PREV_NUM(csc->first_idx, csc->ss_cnt);
Scorer *sub_scorer = csc->sub_scorers[last_idx];
csc->more = sub_scorer->next(sub_scorer);
}
return csc_do_next(self);
}
static bool csc_skip_to(Scorer *self, int doc_num)
{
ConjunctionScorer *csc = CSc(self);
const int sub_sc_cnt = csc->ss_cnt;
int i;
bool more = csc->more;
if (csc->first_time) {
csc_init(self, false);
}
for (i = 0; i < sub_sc_cnt; i++) {
if (!more) {
break;
}
else {
Scorer *sub_scorer = csc->sub_scorers[i];
more = sub_scorer->skip_to(sub_scorer, doc_num);
}
}
if (more) {
/* resort the scorers */
csc_sort_scorers(csc);
}
csc->more = more;
return csc_do_next(self);
}
static void csc_destroy(Scorer *self)
{
ConjunctionScorer *csc = CSc(self);
const int sub_sc_cnt = csc->ss_cnt;
int i;
for (i = 0; i < sub_sc_cnt; i++) {
csc->sub_scorers[i]->destroy(csc->sub_scorers[i]);
}
free(csc->sub_scorers);
scorer_destroy_i(self);
}
static Scorer *conjunction_scorer_new(Similarity *similarity)
{
Scorer *self = scorer_new(ConjunctionScorer, similarity);
CSc(self)->first_time = true;
CSc(self)->more = true;
CSc(self)->coordinator = NULL;
self->score = &csc_score;
self->next = &csc_next;
self->skip_to = &csc_skip_to;
self->destroy = &csc_destroy;
return self;
}
static float ccsc_score(Scorer *self)
{
ConjunctionScorer *csc = CSc(self);
int doc;
if ((doc = self->doc) > csc->last_scored_doc) {
csc->last_scored_doc = doc;
csc->coordinator->num_matches += csc->ss_cnt;
}
return csc_score(self);
}
static Scorer *counting_conjunction_sum_scorer_new(
Coordinator *coordinator, Scorer **sub_scorers, int ss_cnt)
{
Scorer *self = conjunction_scorer_new(sim_create_default());
ConjunctionScorer *csc = CSc(self);
csc->coordinator = coordinator;
csc->last_scored_doc = -1;
csc->sub_scorers = ALLOC_N(Scorer *, ss_cnt);
memcpy(csc->sub_scorers, sub_scorers, sizeof(Scorer *) * ss_cnt);
csc->ss_cnt = ss_cnt;
self->score = &ccsc_score;
return self;
}
/***************************************************************************
* SingleMatchScorer
***************************************************************************/
#define SMSc(scorer) ((SingleMatchScorer *)(scorer))
typedef struct SingleMatchScorer
{
Scorer super;
Coordinator *coordinator;
Scorer *scorer;
} SingleMatchScorer;
static float smsc_score(Scorer *self)
{
SMSc(self)->coordinator->num_matches++;
return SMSc(self)->scorer->score(SMSc(self)->scorer);
}
static bool smsc_next(Scorer *self)
{
Scorer *scorer = SMSc(self)->scorer;
if (scorer->next(scorer)) {
self->doc = scorer->doc;
return true;
}
return false;
}
static bool smsc_skip_to(Scorer *self, int doc_num)
{
Scorer *scorer = SMSc(self)->scorer;
if (scorer->skip_to(scorer, doc_num)) {
self->doc = scorer->doc;
return true;
}
return false;
}
static Explanation *smsc_explain(Scorer *self, int doc_num)
{
Scorer *scorer = SMSc(self)->scorer;
return scorer->explain(scorer, doc_num);
}
static void smsc_destroy(Scorer *self)
{
Scorer *scorer = SMSc(self)->scorer;
scorer->destroy(scorer);
scorer_destroy_i(self);
}
static Scorer *single_match_scorer_new(Coordinator *coordinator,
Scorer *scorer)
{
Scorer *self = scorer_new(SingleMatchScorer, scorer->similarity);
SMSc(self)->coordinator = coordinator;
SMSc(self)->scorer = scorer;
self->score = &smsc_score;
self->next = &smsc_next;
self->skip_to = &smsc_skip_to;
self->explain = &smsc_explain;
self->destroy = &smsc_destroy;
return self;
}
/***************************************************************************
* ReqOptSumScorer
***************************************************************************/
#define ROSSc(scorer) ((ReqOptSumScorer *)(scorer))
typedef struct ReqOptSumScorer
{
Scorer super;
Scorer *req_scorer;
Scorer *opt_scorer;
bool first_time_opt;
} ReqOptSumScorer;
static float rossc_score(Scorer *self)
{
ReqOptSumScorer *rossc = ROSSc(self);
Scorer *req_scorer = rossc->req_scorer;
Scorer *opt_scorer = rossc->opt_scorer;
int cur_doc = req_scorer->doc;
float req_score = req_scorer->score(req_scorer);
if (rossc->first_time_opt) {
rossc->first_time_opt = false;
if (! opt_scorer->skip_to(opt_scorer, cur_doc)) {
SCORER_NULLIFY(rossc->opt_scorer);
return req_score;
}
}
else if (opt_scorer == NULL) {
return req_score;
}
else if ((opt_scorer->doc < cur_doc)
&& ! opt_scorer->skip_to(opt_scorer, cur_doc)) {
SCORER_NULLIFY(rossc->opt_scorer);
return req_score;
}
/* assert (@opt_scorer != nil) and (@opt_scorer.doc() >= cur_doc) */
return (opt_scorer->doc == cur_doc)
? req_score + opt_scorer->score(opt_scorer)
: req_score;
}
static bool rossc_next(Scorer *self)
{
Scorer *req_scorer = ROSSc(self)->req_scorer;
if (req_scorer->next(req_scorer)) {
self->doc = req_scorer->doc;
return true;
}
return false;
}
static bool rossc_skip_to(Scorer *self, int doc_num)
{
Scorer *req_scorer = ROSSc(self)->req_scorer;
if (req_scorer->skip_to(req_scorer, doc_num)) {
self->doc = req_scorer->doc;
return true;
}
return false;
}
static Explanation *rossc_explain(Scorer *self, int doc_num)
{
Scorer *req_scorer = ROSSc(self)->req_scorer;
Scorer *opt_scorer = ROSSc(self)->opt_scorer;
Explanation *e = expl_new(self->score(self),"required, optional:");
expl_add_detail(e, req_scorer->explain(req_scorer, doc_num));
expl_add_detail(e, opt_scorer->explain(opt_scorer, doc_num));
return e;
}
static void rossc_destroy(Scorer *self)
{
ReqOptSumScorer *rossc = ROSSc(self);
if (rossc->req_scorer) {
rossc->req_scorer->destroy(rossc->req_scorer);
}
if (rossc->opt_scorer) {
rossc->opt_scorer->destroy(rossc->opt_scorer);
}
scorer_destroy_i(self);
}
static Scorer *req_opt_sum_scorer_new(Scorer *req_scorer, Scorer *opt_scorer)
{
Scorer *self = scorer_new(ReqOptSumScorer, NULL);
ROSSc(self)->req_scorer = req_scorer;
ROSSc(self)->opt_scorer = opt_scorer;
ROSSc(self)->first_time_opt = true;
self->score = &rossc_score;
self->next = &rossc_next;
self->skip_to = &rossc_skip_to;
self->explain = &rossc_explain;
self->destroy = &rossc_destroy;
return self;
}
/***************************************************************************
* ReqExclScorer
***************************************************************************/
#define RXSc(scorer) ((ReqExclScorer *)(scorer))
typedef struct ReqExclScorer
{
Scorer super;
Scorer *req_scorer;
Scorer *excl_scorer;
bool first_time;
} ReqExclScorer;
static bool rxsc_to_non_excluded(Scorer *self)
{
Scorer *req_scorer = RXSc(self)->req_scorer;
Scorer *excl_scorer = RXSc(self)->excl_scorer;
int excl_doc = excl_scorer->doc, req_doc;
do {
/* may be excluded */
req_doc = req_scorer->doc;
if (req_doc < excl_doc) {
/* req_scorer advanced to before excl_scorer, ie. not excluded */
self->doc = req_doc;
return true;
}
else if (req_doc > excl_doc) {
if (! excl_scorer->skip_to(excl_scorer, req_doc)) {
/* emptied, no more exclusions */
SCORER_NULLIFY(RXSc(self)->excl_scorer);
self->doc = req_doc;
return true;
}
excl_doc = excl_scorer->doc;
if (excl_doc > req_doc) {
self->doc = req_doc;
return true; /* not excluded */
}
}
} while (req_scorer->next(req_scorer));
/* emptied, nothing left */
SCORER_NULLIFY(RXSc(self)->req_scorer);
return false;
}
static bool rxsc_next(Scorer *self)
{
ReqExclScorer *rxsc = RXSc(self);
Scorer *req_scorer = rxsc->req_scorer;
Scorer *excl_scorer = rxsc->excl_scorer;
if (rxsc->first_time) {
if (! excl_scorer->next(excl_scorer)) {
/* emptied at start */
SCORER_NULLIFY(rxsc->excl_scorer);
excl_scorer = NULL;
}
rxsc->first_time = false;
}
if (req_scorer == NULL) {
return false;
}
if (! req_scorer->next(req_scorer)) {
/* emptied, nothing left */
SCORER_NULLIFY(rxsc->req_scorer);
return false;
}
if (excl_scorer == NULL) {
self->doc = req_scorer->doc;
/* req_scorer->next() already returned true */
return true;
}
return rxsc_to_non_excluded(self);
}
static bool rxsc_skip_to(Scorer *self, int doc_num)
{
ReqExclScorer *rxsc = RXSc(self);
Scorer *req_scorer = rxsc->req_scorer;
Scorer *excl_scorer = rxsc->excl_scorer;
if (rxsc->first_time) {
rxsc->first_time = false;
if (! excl_scorer->skip_to(excl_scorer, doc_num)) {
/* emptied */
SCORER_NULLIFY(rxsc->excl_scorer);
excl_scorer = NULL;
}
}
if (req_scorer == NULL) {
return false;
}
if (excl_scorer == NULL) {
if (req_scorer->skip_to(req_scorer, doc_num)) {
self->doc = req_scorer->doc;
return true;
}
return false;
}
if (! req_scorer->skip_to(req_scorer, doc_num)) {
SCORER_NULLIFY(rxsc->req_scorer);
return false;
}
return rxsc_to_non_excluded(self);
}
static float rxsc_score(Scorer *self)
{
Scorer *req_scorer = RXSc(self)->req_scorer;
return req_scorer->score(req_scorer);
}
static Explanation *rxsc_explain(Scorer *self, int doc_num)
{
ReqExclScorer *rxsc = RXSc(self);
Scorer *req_scorer = rxsc->req_scorer;
Scorer *excl_scorer = rxsc->excl_scorer;
Explanation *e;
if (excl_scorer->skip_to(excl_scorer, doc_num)
&& excl_scorer->doc == doc_num) {
e = expl_new(0.0, "excluded:");
}
else {
e = expl_new(0.0, "not excluded:");
expl_add_detail(e, req_scorer->explain(req_scorer, doc_num));
}
return e;
}
static void rxsc_destroy(Scorer *self)
{
ReqExclScorer *rxsc = RXSc(self);
if (rxsc->req_scorer) {
rxsc->req_scorer->destroy(rxsc->req_scorer);
}
if (rxsc->excl_scorer) {
rxsc->excl_scorer->destroy(rxsc->excl_scorer);
}
scorer_destroy_i(self);
}
static Scorer *req_excl_scorer_new(Scorer *req_scorer, Scorer *excl_scorer)
{
Scorer *self = scorer_new(ReqExclScorer, NULL);
RXSc(self)->req_scorer = req_scorer;
RXSc(self)->excl_scorer = excl_scorer;
RXSc(self)->first_time = true;
self->score = &rxsc_score;
self->next = &rxsc_next;
self->skip_to = &rxsc_skip_to;
self->explain = &rxsc_explain;
self->destroy = &rxsc_destroy;
return self;
}
/***************************************************************************
* NonMatchScorer
***************************************************************************/
static float nmsc_score(Scorer *self)
{
(void)self;
return 0.0;
}
static bool nmsc_next(Scorer *self)
{
(void)self;
return false;
}
static bool nmsc_skip_to(Scorer *self, int doc_num)
{
(void)self; (void)doc_num;
return false;
}
static Explanation *nmsc_explain(Scorer *self, int doc_num)
{
(void)self; (void)doc_num;
return expl_new(0.0, "No documents matched");
}
static Scorer *non_matching_scorer_new()
{
Scorer *self = scorer_new(Scorer, NULL);
self->score = &nmsc_score;
self->next = &nmsc_next;
self->skip_to = &nmsc_skip_to;
self->explain = &nmsc_explain;
return self;
}
/***************************************************************************
* BooleanScorer
***************************************************************************/
#define BSc(scorer) ((BooleanScorer *)(scorer))
typedef struct BooleanScorer
{
Scorer super;
Scorer **required_scorers;
int rs_cnt;
int rs_capa;
Scorer **optional_scorers;
int os_cnt;
int os_capa;
Scorer **prohibited_scorers;
int ps_cnt;
int ps_capa;
Scorer *counting_sum_scorer;
Coordinator *coordinator;
} BooleanScorer;
static Scorer *counting_sum_scorer_create3(BooleanScorer *bsc,
Scorer *req_scorer,
Scorer *opt_scorer)
{
if (bsc->ps_cnt == 0) {
/* no prohibited */
return req_opt_sum_scorer_new(req_scorer, opt_scorer);
}
else if (bsc->ps_cnt == 1) {
/* 1 prohibited */
return req_opt_sum_scorer_new(
req_excl_scorer_new(req_scorer, bsc->prohibited_scorers[0]),
opt_scorer);
}
else {
/* more prohibited */
return req_opt_sum_scorer_new(
req_excl_scorer_new(
req_scorer,
disjunction_sum_scorer_new(bsc->prohibited_scorers,
bsc->ps_cnt, 1)),
opt_scorer);
}
}
static Scorer *counting_sum_scorer_create2(BooleanScorer *bsc,
Scorer *req_scorer,
Scorer **optional_scorers,
int os_cnt)
{
if (os_cnt == 0) {
if (bsc->ps_cnt == 0) {
return req_scorer;
}
else if (bsc->ps_cnt == 1) {
return req_excl_scorer_new(req_scorer,
bsc->prohibited_scorers[0]);
}
else {
/* no optional, more than 1 prohibited */
return req_excl_scorer_new(
req_scorer,
disjunction_sum_scorer_new(bsc->prohibited_scorers,
bsc->ps_cnt, 1));
}
}
else if (os_cnt == 1) {
return counting_sum_scorer_create3(
bsc,
req_scorer,
single_match_scorer_new(bsc->coordinator, optional_scorers[0]));
}
else {
/* more optional */
return counting_sum_scorer_create3(
bsc,
req_scorer,
counting_disjunction_sum_scorer_new(bsc->coordinator,
optional_scorers, os_cnt, 1));
}
}
static Scorer *counting_sum_scorer_create(BooleanScorer *bsc)
{
if (bsc->rs_cnt == 0) {
if (bsc->os_cnt == 0) {
int i;
/* only prohibited scorers so return non_matching scorer */
for (i = 0; i < bsc->ps_cnt; i++) {
bsc->prohibited_scorers[i]->destroy(
bsc->prohibited_scorers[i]);
}
return non_matching_scorer_new();
}
else if (bsc->os_cnt == 1) {
/* the only optional scorer is required */
return counting_sum_scorer_create2(
bsc,
single_match_scorer_new(bsc->coordinator,
bsc->optional_scorers[0]),
NULL, 0); /* no optional scorers left */
}
else {
/* more than 1 optional_scorers, no required scorers */
return counting_sum_scorer_create2(
bsc,
counting_disjunction_sum_scorer_new(bsc->coordinator,
bsc->optional_scorers,
bsc->os_cnt, 1),
NULL, 0); /* no optional scorers left */
}
}
else if (bsc->rs_cnt == 1) {
/* 1 required */
return counting_sum_scorer_create2(
bsc,
single_match_scorer_new(bsc->coordinator, bsc->required_scorers[0]),
bsc->optional_scorers, bsc->os_cnt);
}
else {
/* more required scorers */
return counting_sum_scorer_create2(
bsc,
counting_conjunction_sum_scorer_new(bsc->coordinator,
bsc->required_scorers,
bsc->rs_cnt),
bsc->optional_scorers, bsc->os_cnt);
}
}
static Scorer *bsc_init_counting_sum_scorer(BooleanScorer *bsc)
{
coord_init(bsc->coordinator);
return bsc->counting_sum_scorer = counting_sum_scorer_create(bsc);
}
static void bsc_add_scorer(Scorer *self, Scorer *scorer, unsigned int occur)
{
BooleanScorer *bsc = BSc(self);
if (occur != BC_MUST_NOT) {
bsc->coordinator->max_coord++;
}
switch (occur) {
case BC_MUST:
RECAPA(bsc, rs_cnt, rs_capa, required_scorers, Scorer *);
bsc->required_scorers[bsc->rs_cnt++] = scorer;
break;
case BC_SHOULD:
RECAPA(bsc, os_cnt, os_capa, optional_scorers, Scorer *);
bsc->optional_scorers[bsc->os_cnt++] = scorer;
break;
case BC_MUST_NOT:
RECAPA(bsc, ps_cnt, ps_capa, prohibited_scorers, Scorer *);
bsc->prohibited_scorers[bsc->ps_cnt++] = scorer;
break;
default:
RAISE(ARG_ERROR, "Invalid value for :occur. Try :should, :must or "
":must_not instead");
}
}
static float bsc_score(Scorer *self)
{
BooleanScorer *bsc = BSc(self);
Coordinator *coord = bsc->coordinator;
float sum;
coord->num_matches = 0;
sum = bsc->counting_sum_scorer->score(bsc->counting_sum_scorer);
return sum * coord->coord_factors[coord->num_matches];
}
static bool bsc_next(Scorer *self)
{
Scorer *cnt_sum_sc = BSc(self)->counting_sum_scorer;
if (!cnt_sum_sc) {
cnt_sum_sc = bsc_init_counting_sum_scorer(BSc(self));
}
if (cnt_sum_sc->next(cnt_sum_sc)) {
self->doc = cnt_sum_sc->doc;
return true;
}
else {
return false;
}
}
static bool bsc_skip_to(Scorer *self, int doc_num)
{
Scorer *cnt_sum_sc = BSc(self)->counting_sum_scorer;
if (!BSc(self)->counting_sum_scorer) {
cnt_sum_sc = bsc_init_counting_sum_scorer(BSc(self));
}
if (cnt_sum_sc->skip_to(cnt_sum_sc, doc_num)) {
self->doc = cnt_sum_sc->doc;
return true;
}
else {
return false;
}
}
static void bsc_destroy(Scorer *self)
{
BooleanScorer *bsc = BSc(self);
Coordinator *coord = bsc->coordinator;
free(coord->coord_factors);
free(coord);
if (bsc->counting_sum_scorer) {
bsc->counting_sum_scorer->destroy(bsc->counting_sum_scorer);
}
else {
int i;
for (i = 0; i < bsc->rs_cnt; i++) {
bsc->required_scorers[i]->destroy(bsc->required_scorers[i]);
}
for (i = 0; i < bsc->os_cnt; i++) {
bsc->optional_scorers[i]->destroy(bsc->optional_scorers[i]);
}
for (i = 0; i < bsc->ps_cnt; i++) {
bsc->prohibited_scorers[i]->destroy(bsc->prohibited_scorers[i]);
}
}
free(bsc->required_scorers);
free(bsc->optional_scorers);
free(bsc->prohibited_scorers);
scorer_destroy_i(self);
}
static Explanation *bsc_explain(Scorer *self, int doc_num)
{
(void)self; (void)doc_num;
return expl_new(0.0, "This explanation is not supported");
}
static Scorer *bsc_new(Similarity *similarity)
{
Scorer *self = scorer_new(BooleanScorer, similarity);
BSc(self)->coordinator = coord_new(similarity);
BSc(self)->counting_sum_scorer = NULL;
self->score = &bsc_score;
self->next = &bsc_next;
self->skip_to = &bsc_skip_to;
self->explain = &bsc_explain;
self->destroy = &bsc_destroy;
return self;
}
/***************************************************************************
*
* BooleanWeight
*
***************************************************************************/
typedef struct BooleanWeight
{
Weight w;
Weight **weights;
int w_cnt;
} BooleanWeight;
static float bw_sum_of_squared_weights(Weight *self)
{
BooleanQuery *bq = BQ(self->query);
float sum = 0.0;
int i;
for (i = 0; i < BW(self)->w_cnt; i++) {
if (! bq->clauses[i]->is_prohibited) {
Weight *weight = BW(self)->weights[i];
/* sum sub-weights */
sum += weight->sum_of_squared_weights(weight);
}
}
/* boost each sub-weight */
sum *= self->value * self->value;
return sum;
}
static void bw_normalize(Weight *self, float normalization_factor)
{
BooleanQuery *bq = BQ(self->query);
int i;
normalization_factor *= self->value; /* multiply by query boost */
for (i = 0; i < BW(self)->w_cnt; i++) {
if (! bq->clauses[i]->is_prohibited) {
Weight *weight = BW(self)->weights[i];
/* sum sub-weights */
weight->normalize(weight, normalization_factor);
}
}
}
static Scorer *bw_scorer(Weight *self, IndexReader *ir)
{
Scorer *bsc = bsc_new(self->similarity);
BooleanQuery *bq = BQ(self->query);
int i;
for (i = 0; i < BW(self)->w_cnt; i++) {
BooleanClause *clause = bq->clauses[i];
Weight *weight = BW(self)->weights[i];
Scorer *sub_scorer = weight->scorer(weight, ir);
if (sub_scorer) {
bsc_add_scorer(bsc, sub_scorer, clause->occur);
}
else if (clause->is_required) {
bsc->destroy(bsc);
return NULL;
}
}
return bsc;
}
static char *bw_to_s(Weight *self)
{
return strfmt("BooleanWeight(%f)", self->value);
}
static void bw_destroy(Weight *self)
{
int i;
for (i = 0; i < BW(self)->w_cnt; i++) {
BW(self)->weights[i]->destroy(BW(self)->weights[i]);
}
free(BW(self)->weights);
w_destroy(self);
}
static Explanation *bw_explain(Weight *self, IndexReader *ir, int doc_num)
{
BooleanQuery *bq = BQ(self->query);
Explanation *sum_expl = expl_new(0.0, "sum of:");
Explanation *explanation;
int coord = 0;
int max_coord = 0;
float coord_factor = 0.0;
float sum = 0.0;
int i;
for (i = 0; i < BW(self)->w_cnt; i++) {
Weight *weight = BW(self)->weights[i];
BooleanClause *clause = bq->clauses[i];
explanation = weight->explain(weight, ir, doc_num);
if (!clause->is_prohibited) {
max_coord++;
}
if (explanation->value > 0.0) {
if (!clause->is_prohibited) {
expl_add_detail(sum_expl, explanation);
sum += explanation->value;
coord++;
}
else {
expl_destroy(explanation);
expl_destroy(sum_expl);
return expl_new(0.0, "match prohibited");
}
}
else if (clause->is_required) {
expl_destroy(explanation);
expl_destroy(sum_expl);
return expl_new(0.0, "match required");
}
else {
expl_destroy(explanation);
}
}
sum_expl->value = sum;
if (coord == 1) { /* only one clause matched */
explanation = sum_expl; /* eliminate wrapper */
ary_size(sum_expl->details) = 0;
sum_expl = sum_expl->details[0];
expl_destroy(explanation);
}
coord_factor = sim_coord(self->similarity, coord, max_coord);
if (coord_factor == 1.0) { /* coord is no-op */
return sum_expl; /* eliminate wrapper */
}
else {
explanation = expl_new(sum * coord_factor, "product of:");
expl_add_detail(explanation, sum_expl);
expl_add_detail(explanation, expl_new(coord_factor, "coord(%d/%d)",
coord, max_coord));
return explanation;
}
}
static Weight *bw_new(Query *query, Searcher *searcher)
{
int i;
Weight *self = w_new(BooleanWeight, query);
BW(self)->w_cnt = BQ(query)->clause_cnt;
BW(self)->weights = ALLOC_N(Weight *, BW(self)->w_cnt);
for (i = 0; i < BW(self)->w_cnt; i++) {
BW(self)->weights[i] = q_weight(BQ(query)->clauses[i]->query, searcher);
}
self->normalize = &bw_normalize;
self->scorer = &bw_scorer;
self->explain = &bw_explain;
self->to_s = &bw_to_s;
self->destroy = &bw_destroy;
self->sum_of_squared_weights = &bw_sum_of_squared_weights;
self->similarity = query->get_similarity(query, searcher);
self->value = query->boost;
return self;
}
/***************************************************************************
*
* BooleanClause
*
***************************************************************************/
void bc_set_occur(BooleanClause *self, BCType occur)
{
self->occur = occur;
switch (occur) {
case BC_SHOULD:
self->is_prohibited = false;
self->is_required = false;
break;
case BC_MUST:
self->is_prohibited = false;
self->is_required = true;
break;
case BC_MUST_NOT:
self->is_prohibited = true;
self->is_required = false;
break;
default:
RAISE(ARG_ERROR, "Invalid value for :occur. Try :occur => :should, "
":must or :must_not instead");
}
}
void bc_deref(BooleanClause *self)
{
if (--self->ref_cnt <= 0) {
q_deref(self->query);
free(self);
}
}
static unsigned long bc_hash(BooleanClause *self)
{
return ((q_hash(self->query) << 2) | self->occur);
}
static int bc_eq(BooleanClause *self, BooleanClause *o)
{
return ((self->occur == o->occur) && q_eq(self->query, o->query));
}
BooleanClause *bc_new(Query *query, BCType occur)
{
BooleanClause *self = ALLOC(BooleanClause);
self->ref_cnt = 1;
self->query = query;
bc_set_occur(self, occur);
return self;
}
/***************************************************************************
*
* BooleanQuery
*
***************************************************************************/
static MatchVector *bq_get_matchv_i(Query *self, MatchVector *mv,
TermVector *tv)
{
int i;
for (i = BQ(self)->clause_cnt - 1; i >= 0; i--) {
if (BQ(self)->clauses[i]->occur != BC_MUST_NOT) {
Query *q = BQ(self)->clauses[i]->query;
q->get_matchv_i(q, mv, tv);
}
}
return mv;
}
static Query *bq_rewrite(Query *self, IndexReader *ir)
{
int i;
const int clause_cnt = BQ(self)->clause_cnt;
bool rewritten = false;
bool has_non_prohibited_clause = false;
if (clause_cnt == 1) {
/* optimize 1-clause queries */
BooleanClause *clause = BQ(self)->clauses[0];
if (! clause->is_prohibited) {
/* just return clause. Re-write first. */
Query *q = clause->query->rewrite(clause->query, ir);
if (self->boost != 1.0) {
/* original_boost is initialized to 0.0. If it has been set to
* something else it means this query has already been boosted
* before so boost from the original value */
if ((q == clause->query) && BQ(self)->original_boost) {
/* rewrite was no-op */
q->boost = BQ(self)->original_boost * self->boost;
}
else {
/* save original boost in case query is rewritten again */
BQ(self)->original_boost = q->boost;
q->boost *= self->boost;
}
}
return q;
}
}
self->ref_cnt++;
/* replace each clause's query with its rewritten query */
for (i = 0; i < clause_cnt; i++) {
BooleanClause *clause = BQ(self)->clauses[i];
Query *rq = clause->query->rewrite(clause->query, ir);
/* check for at least one non-prohibited clause */
if (clause->is_prohibited == false) has_non_prohibited_clause = true;
if (rq != clause->query) {
if (!rewritten) {
int j;
Query *new_self = q_new(BooleanQuery);
memcpy(new_self, self, sizeof(BooleanQuery));
BQ(new_self)->clauses = ALLOC_N(BooleanClause *,
BQ(self)->clause_capa);
memcpy(BQ(new_self)->clauses, BQ(self)->clauses,
BQ(self)->clause_capa * sizeof(BooleanClause *));
for (j = 0; j < clause_cnt; j++) {
REF(BQ(self)->clauses[j]);
}
self->ref_cnt--;
self = new_self;
self->ref_cnt = 1;
rewritten = true;
}
DEREF(clause);
BQ(self)->clauses[i] = bc_new(rq, clause->occur);
} else {
DEREF(rq);
}
}
if (clause_cnt > 0 && !has_non_prohibited_clause) {
bq_add_query_nr(self, maq_new(), BC_MUST);
}
return self;
}
static void bq_extract_terms(Query *self, HashSet *terms)
{
int i;
for (i = 0; i < BQ(self)->clause_cnt; i++) {
BooleanClause *clause = BQ(self)->clauses[i];
clause->query->extract_terms(clause->query, terms);
}
}
static char *bq_to_s(Query *self, Symbol field)
{
int i;
BooleanClause *clause;
Query *sub_query;
char *buffer;
char *clause_str;
int bp = 0;
int size = QUERY_STRING_START_SIZE;
int needed;
int clause_len;
buffer = ALLOC_N(char, size);
if (self->boost != 1.0) {
buffer[0] = '(';
bp++;
}
for (i = 0; i < BQ(self)->clause_cnt; i++) {
clause = BQ(self)->clauses[i];
clause_str = clause->query->to_s(clause->query, field);
clause_len = (int)strlen(clause_str);
needed = clause_len + 5;
while ((size - bp) < needed) {
size *= 2;
REALLOC_N(buffer, char, size);
}
if (i > 0) {
buffer[bp++] = ' ';
}
if (clause->is_prohibited) {
buffer[bp++] = '-';
}
else if (clause->is_required) {
buffer[bp++] = '+';
}
sub_query = clause->query;
if (sub_query->type == BOOLEAN_QUERY) {
/* wrap sub-bools in parens */
buffer[bp++] = '(';
memcpy(buffer + bp, clause_str, sizeof(char) * clause_len);
bp += clause_len;
buffer[bp++] = ')';
}
else {
memcpy(buffer + bp, clause_str, sizeof(char) * clause_len);
bp += clause_len;
}
free(clause_str);
}
if (self->boost != 1.0) {
char *boost_str = strfmt(")^%f", self->boost);
int boost_len = (int)strlen(boost_str);
REALLOC_N(buffer, char, bp + boost_len + 1);
memcpy(buffer + bp, boost_str, sizeof(char) * boost_len);
bp += boost_len;
free(boost_str);
}
buffer[bp] = 0;
return buffer;
}
static void bq_destroy(Query *self)
{
int i;
for (i = 0; i < BQ(self)->clause_cnt; i++) {
bc_deref(BQ(self)->clauses[i]);
}
free(BQ(self)->clauses);
if (BQ(self)->similarity) {
BQ(self)->similarity->destroy(BQ(self)->similarity);
}
q_destroy_i(self);
}
static float bq_coord_disabled(Similarity *sim, int overlap, int max_overlap)
{
(void)sim; (void)overlap; (void)max_overlap;
return 1.0;
}
static Similarity *bq_get_similarity(Query *self, Searcher *searcher)
{
if (!BQ(self)->similarity) {
Similarity *sim = q_get_similarity_i(self, searcher);
BQ(self)->similarity = ALLOC(Similarity);
memcpy(BQ(self)->similarity, sim, sizeof(Similarity));
BQ(self)->similarity->coord = &bq_coord_disabled;
BQ(self)->similarity->destroy = (void (*)(Similarity *))&free;
}
return BQ(self)->similarity;
}
static unsigned long bq_hash(Query *self)
{
int i;
unsigned long hash = 0;
for (i = 0; i < BQ(self)->clause_cnt; i++) {
hash ^= bc_hash(BQ(self)->clauses[i]);
}
return (hash << 1) | BQ(self)->coord_disabled;
}
static int bq_eq(Query *self, Query *o)
{
int i;
BooleanQuery *bq1 = BQ(self);
BooleanQuery *bq2 = BQ(o);
if ((bq1->coord_disabled != bq2->coord_disabled)
|| (bq1->max_clause_cnt != bq1->max_clause_cnt)
|| (bq1->clause_cnt != bq2->clause_cnt)) {
return false;
}
for (i = 0; i < bq1->clause_cnt; i++) {
if (!bc_eq(bq1->clauses[i], bq2->clauses[i])) {
return false;
}
}
return true;
}
Query *bq_new(bool coord_disabled)
{
Query *self = q_new(BooleanQuery);
BQ(self)->coord_disabled = coord_disabled;
if (coord_disabled) {
self->get_similarity = &bq_get_similarity;
}
BQ(self)->max_clause_cnt = DEFAULT_MAX_CLAUSE_COUNT;
BQ(self)->clause_cnt = 0;
BQ(self)->clause_capa = BOOLEAN_CLAUSES_START_CAPA;
BQ(self)->clauses = ALLOC_N(BooleanClause *, BOOLEAN_CLAUSES_START_CAPA);
BQ(self)->similarity = NULL;
BQ(self)->original_boost = 0.0;
self->type = BOOLEAN_QUERY;
self->rewrite = &bq_rewrite;
self->extract_terms = &bq_extract_terms;
self->to_s = &bq_to_s;
self->hash = &bq_hash;
self->eq = &bq_eq;
self->destroy_i = &bq_destroy;
self->create_weight_i = &bw_new;
self->get_matchv_i = &bq_get_matchv_i;
return self;
}
Query *bq_new_max(bool coord_disabled, int max)
{
Query *q = bq_new(coord_disabled);
BQ(q)->max_clause_cnt = max;
return q;
}
BooleanClause *bq_add_clause_nr(Query *self, BooleanClause *bc)
{
if (BQ(self)->clause_cnt >= BQ(self)->max_clause_cnt) {
RAISE(STATE_ERROR, "Two many clauses. The max clause limit is set to "
"<%d> but your query has <%d> clauses. You can try increasing "
":max_clause_count for the BooleanQuery or using a different "
"type of query.", BQ(self)->clause_cnt, BQ(self)->max_clause_cnt);
}
if (BQ(self)->clause_cnt >= BQ(self)->clause_capa) {
BQ(self)->clause_capa *= 2;
REALLOC_N(BQ(self)->clauses, BooleanClause *, BQ(self)->clause_capa);
}
BQ(self)->clauses[BQ(self)->clause_cnt] = bc;
BQ(self)->clause_cnt++;
return bc;
}
BooleanClause *bq_add_clause(Query *self, BooleanClause *bc)
{
REF(bc);
return bq_add_clause_nr(self, bc);
}
BooleanClause *bq_add_query_nr(Query *self, Query *sub_query, BCType occur)
{
BooleanClause *bc;
if (BQ(self)->clause_cnt >= BQ(self)->max_clause_cnt) {
RAISE(STATE_ERROR, "Two many clauses. The max clause limit is set to "
"<%d> but your query has <%d> clauses. You can try increasing "
":max_clause_count for the BooleanQuery or using a different "
"type of query.", BQ(self)->clause_cnt, BQ(self)->max_clause_cnt);
}
bc = bc_new(sub_query, occur);
bq_add_clause(self, bc);
bc_deref(bc); /* bc was referenced unnecessarily */
return bc;
}
BooleanClause *bq_add_query(Query *self, Query *sub_query, BCType occur)
{
REF(sub_query);
return bq_add_query_nr(self, sub_query, occur);
}
|