forked from wmorgan/whistlepig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.c
812 lines (675 loc) · 28.4 KB
/
search.c
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
#include "whistlepig.h"
/********* search states *********/
typedef struct term_search_state {
posting posting;
int started;
int done;
int label; // 1 if a label; 0 if a term
} term_search_state;
typedef struct neg_search_state {
docid_t next; // the next document in the child stream. we will never return this document.
docid_t cur; // the last doc we returned
} neg_search_state;
#define DISJ_SEARCH_STATE_EMPTY 0
#define DISJ_SEARCH_STATE_FILLED 1
#define DISJ_SEARCH_STATE_DONE 2
typedef struct disj_search_state {
docid_t last_docid;
uint8_t* states; // whether the search result has been initialized or not
search_result* results; // array of search results, one per child
} disj_search_state;
void wp_search_result_free(search_result* result) {
for(int i = 0; i < result->num_doc_matches; i++) {
//printf("for result at %p (dm %d), freeing positions at %p\n", result, i, result->doc_matches[i].positions);
free(result->doc_matches[i].positions);
}
free(result->doc_matches);
}
RAISING_STATIC(search_result_init(search_result* result, const char* field, const char* word, posting* posting)) {
result->doc_id = posting->doc_id;
result->num_doc_matches = 1;
result->doc_matches = malloc(sizeof(doc_match));
result->doc_matches[0].field = field;
result->doc_matches[0].word = word;
result->doc_matches[0].num_positions = posting->num_positions;
size_t size = sizeof(pos_t) * posting->num_positions;
result->doc_matches[0].positions = malloc(size);
//printf("for result at %p, allocated %u bytes for positions at %p\n", result, size, result->doc_matches[0].positions);
memcpy(result->doc_matches[0].positions, posting->positions, size);
return NO_ERROR;
}
RAISING_STATIC(search_result_combine_into(search_result* result, search_result* child_results, int num_child_results)) {
if(num_child_results <= 0) RAISE_ERROR("no child results");
result->doc_id = child_results[0].doc_id;
result->num_doc_matches = num_child_results;
result->doc_matches = malloc(sizeof(doc_match) * num_child_results);
for(int i = 0; i < num_child_results; i++) {
if(child_results[i].doc_matches == NULL) {
result->doc_matches[i].field = NULL;
result->doc_matches[i].word = NULL;
result->doc_matches[i].num_positions = 0;
result->doc_matches[i].positions = NULL;
}
else result->doc_matches[i] = child_results[i].doc_matches[0];
}
return NO_ERROR;
}
/*
* we provide two functions for iterating through result streams: next() and
* advance().
*
* next() returns results one at a time. it will set done = true if you're at
* the end of the stream. otherwise, it will give you a result. the next
* call to next() will give you the next result (or set done = true).
*
* advance() is given a docid and advances the stream to just *after* that
* document, and tells you whether it saw the docid on the way (and sets the
* result if so for your convenience).
*
* a next() followed by one or more advance() calls with the returned docid
* will set found = true and will not advance the stream beyond where it
* already is.
*
* however, an advance() to a docid followed by next() may skip a document in
* the stream. you probably don't want this.
*
* so advance is only useful if you have a particular doc_id in mind, and you
* want to see if this stream contains it. if you want to actually see all the
* docids in a stream, you must use next().
*
*/
/********** dispatch functions ***********/
static wp_error* term_init_search_state(wp_query* q, wp_segment* s) RAISES_ERROR;
static wp_error* conj_init_search_state(wp_query* q, wp_segment* s) RAISES_ERROR;
static wp_error* disj_init_search_state(wp_query* q, wp_segment* s) RAISES_ERROR;
static wp_error* phrase_init_search_state(wp_query* q, wp_segment* s) RAISES_ERROR;
static wp_error* neg_init_search_state(wp_query* q, wp_segment* s) RAISES_ERROR;
static wp_error* every_init_search_state(wp_query* q, wp_segment* s) RAISES_ERROR;
static wp_error* term_release_search_state(wp_query* q) RAISES_ERROR;
static wp_error* conj_release_search_state(wp_query* q) RAISES_ERROR;
static wp_error* disj_release_search_state(wp_query* q) RAISES_ERROR;
static wp_error* phrase_release_search_state(wp_query* q) RAISES_ERROR;
static wp_error* neg_release_search_state(wp_query* q) RAISES_ERROR;
static wp_error* every_release_search_state(wp_query* q) RAISES_ERROR;
static wp_error* term_next_doc(wp_query* q, wp_segment* s, search_result* result, int* done) RAISES_ERROR;
static wp_error* conj_next_doc(wp_query* q, wp_segment* s, search_result* result, int* done) RAISES_ERROR;
static wp_error* disj_next_doc(wp_query* q, wp_segment* s, search_result* result, int* done) RAISES_ERROR;
static wp_error* phrase_next_doc(wp_query* q, wp_segment* s, search_result* result, int* done) RAISES_ERROR;
static wp_error* neg_next_doc(wp_query* q, wp_segment* s, search_result* result, int* done) RAISES_ERROR;
static wp_error* every_next_doc(wp_query* q, wp_segment* s, search_result* result, int* done) RAISES_ERROR;
static wp_error* term_advance_to_doc(wp_query* q, wp_segment* s, docid_t doc_id, search_result* result, int* found, int* done) RAISES_ERROR;
static wp_error* conj_advance_to_doc(wp_query* q, wp_segment* s, docid_t doc_id, search_result* result, int* found, int* done) RAISES_ERROR;
static wp_error* disj_advance_to_doc(wp_query* q, wp_segment* s, docid_t doc_id, search_result* result, int* found, int* done) RAISES_ERROR;
static wp_error* phrase_advance_to_doc(wp_query* q, wp_segment* s, docid_t doc_id, search_result* result, int* found, int* done) RAISES_ERROR;
static wp_error* neg_advance_to_doc(wp_query* q, wp_segment* s, docid_t doc_id, search_result* result, int* found, int* done) RAISES_ERROR;
static wp_error* every_advance_to_doc(wp_query* q, wp_segment* s, docid_t doc_id, search_result* result, int* found, int* done) RAISES_ERROR;
// the term_* functions also handle labels
// we use conj for empty queries as well (why not)
#define DISPATCH(type, suffix, ...) \
switch(type) { \
case WP_QUERY_TERM: \
case WP_QUERY_LABEL: RELAY_ERROR(term_##suffix(__VA_ARGS__)); break; \
case WP_QUERY_EMPTY: \
case WP_QUERY_CONJ: RELAY_ERROR(conj_##suffix(__VA_ARGS__)); break; \
case WP_QUERY_DISJ: RELAY_ERROR(disj_##suffix(__VA_ARGS__)); break; \
case WP_QUERY_PHRASE: RELAY_ERROR(phrase_##suffix(__VA_ARGS__)); break; \
case WP_QUERY_NEG: RELAY_ERROR(neg_##suffix(__VA_ARGS__)); break; \
case WP_QUERY_EVERY: RELAY_ERROR(every_##suffix(__VA_ARGS__)); break; \
default: RAISE_ERROR("unknown query node type %d", type); \
} \
wp_error* wp_search_init_search_state(wp_query* q, wp_segment* s) {
DISPATCH(q->type, init_search_state, q, s);
return NO_ERROR;
}
wp_error* wp_search_release_search_state(wp_query* q) {
DISPATCH(q->type, release_search_state, q)
return NO_ERROR;
}
RAISING_STATIC(query_next_doc(wp_query* q, wp_segment* s, search_result* result, int* done)) {
DISPATCH(q->type, next_doc, q, s, result, done);
#ifdef DEBUGOUTPUT
char buf[1024];
wp_query_to_s(q, 1024, buf);
if(*done) DEBUG("query %s is done", buf);
else DEBUG("query %s has doc %u", buf, result->doc_id);
#endif
return NO_ERROR;
}
RAISING_STATIC(query_advance_to_doc(wp_query* q, wp_segment* s, docid_t doc_id, search_result* result, int* found, int* done)) {
DISPATCH(q->type, advance_to_doc, q, s, doc_id, result, found, done);
#ifdef DEBUGOUTPUT
char buf[1024];
wp_query_to_s(q, 1024, buf);
if(*done) DEBUG("query %s is done", buf);
else {
if(*found) DEBUG("query %s has doc %u", buf, doc_id);
else DEBUG("query %s does not have doc %u", buf, doc_id);
}
#endif
return NO_ERROR;
}
/************** init functions *************/
RAISING_STATIC(init_children(wp_query* q, wp_segment* s)) {
for(wp_query* child = q->children; child != NULL; child = child->next) RELAY_ERROR(wp_search_init_search_state(child, s));
return NO_ERROR;
}
RAISING_STATIC(release_children(wp_query* q)) {
for(wp_query* child = q->children; child != NULL; child = child->next) RELAY_ERROR(wp_search_release_search_state(child));
return NO_ERROR;
}
static wp_error* term_init_search_state(wp_query* q, wp_segment* seg) {
term t;
stringmap* sh = MMAP_OBJ(seg->stringmap, stringmap);
termhash* th = MMAP_OBJ(seg->termhash, termhash);
stringpool* sp = MMAP_OBJ(seg->stringpool, stringpool);
term_search_state* state = q->search_data = malloc(sizeof(term_search_state));
state->started = 0;
state->label = q->type == WP_QUERY_LABEL ? 1 : 0;
if(state->label) t.field_s = 0;
else t.field_s = stringmap_string_to_int(sh, sp, q->field); // will be -1 if not found
t.word_s = stringmap_string_to_int(sh, sp, q->word);
uint32_t offset;
posting_list_header* plh = termhash_get_val(th, t);
DEBUG("posting list header for %s:%s (-> %u:%u) is %p", q->field, q->word, t.field_s, t.word_s, plh);
if(plh == NULL) offset = OFFSET_NONE;
else offset = plh->next_offset;
if(plh) DEBUG("posting list header has count=%u next_offset=%u", plh->count, plh->next_offset);
if(offset == OFFSET_NONE) state->done = 1; // no entry in term hash
else {
state->done = 0;
if(state->label) RELAY_ERROR(wp_segment_read_label(seg, offset, &state->posting));
else RELAY_ERROR(wp_segment_read_posting(seg, offset, &state->posting, 1));
}
RELAY_ERROR(init_children(q, seg));
return NO_ERROR;
}
static wp_error* term_release_search_state(wp_query* q) {
term_search_state* state = q->search_data;
if(!state->done) free(state->posting.positions);
free(state);
RELAY_ERROR(release_children(q));
return NO_ERROR;
}
static wp_error* conj_init_search_state(wp_query* q, wp_segment* s) {
q->search_data = NULL; // no state needed
RELAY_ERROR(init_children(q, s));
return NO_ERROR;
}
static wp_error* conj_release_search_state(wp_query* q) {
RELAY_ERROR(release_children(q));
return NO_ERROR;
}
static wp_error* disj_init_search_state(wp_query* q, wp_segment* s) {
disj_search_state* state = q->search_data = malloc(sizeof(disj_search_state));
state->states = NULL;
state->results = NULL;
state->last_docid = DOCID_NONE;
RELAY_ERROR(init_children(q, s));
return NO_ERROR;
}
static wp_error* disj_release_search_state(wp_query* q) {
disj_search_state* state = (disj_search_state*)q->search_data;
if(state->states) {
// free any remaining search results in the buffer
for(uint16_t i = 0; i < q->num_children; i++) {
if(state->states[i] == DISJ_SEARCH_STATE_FILLED) wp_search_result_free(&state->results[i]);
}
free(state->states);
free(state->results);
}
free(state);
RELAY_ERROR(release_children(q));
return NO_ERROR;
}
static wp_error* phrase_init_search_state(wp_query* q, wp_segment* s) {
q->search_data = NULL; // no state needed
RELAY_ERROR(init_children(q, s));
return NO_ERROR;
}
static wp_error* phrase_release_search_state(wp_query* q) {
RELAY_ERROR(release_children(q));
return NO_ERROR;
}
static wp_error* neg_init_search_state(wp_query* q, wp_segment* seg) {
if(q->num_children != 1) RAISE_ERROR("negations currently only operate on single children");
RELAY_ERROR(wp_search_init_search_state(q->children, seg));
segment_info* si = MMAP_OBJ(seg->seginfo, segment_info);
neg_search_state* state = q->search_data = malloc(sizeof(neg_search_state));
state->cur = si->num_docs + 1;
search_result result;
int done;
RELAY_ERROR(query_next_doc(q->children, seg, &result, &done));
if(done) state->next = DOCID_NONE;
else {
state->next = result.doc_id;
wp_search_result_free(&result);
}
DEBUG("initialized with cur %u and next %u", state->cur, state->next);
return NO_ERROR;
}
static wp_error* neg_release_search_state(wp_query* q) {
RELAY_ERROR(wp_search_release_search_state(q->children));
free(q->search_data);
return NO_ERROR;
}
static wp_error* every_init_search_state(wp_query* q, wp_segment* seg) {
q->search_data = malloc(sizeof(docid_t));
segment_info* si = MMAP_OBJ(seg->seginfo, segment_info);
*(docid_t*)q->search_data = si->num_docs;
return NO_ERROR;
}
static wp_error* every_release_search_state(wp_query* q) {
free(q->search_data);
return NO_ERROR;
}
/********** search functions **********/
static wp_error* term_next_doc(wp_query* q, wp_segment* s, search_result* result, int* done) {
term_search_state* state = (term_search_state*)q->search_data;
DEBUG("[%s:'%s'] before: started is %d, done is %d", q->field, q->word, state->started, state->done);
if(state->done) {
*done = 1;
return NO_ERROR;
}
*done = 0;
if(!state->started) { // start
state->started = 1;
RELAY_ERROR(search_result_init(result, q->field, q->word, &state->posting));
}
else { // advance
free(state->posting.positions);
if(state->posting.next_offset == OFFSET_NONE) { // end of stream
*done = state->done = 1;
}
else {
if(state->label) RELAY_ERROR(wp_segment_read_label(s, state->posting.next_offset, &state->posting));
else RELAY_ERROR(wp_segment_read_posting(s, state->posting.next_offset, &state->posting, 1));
RELAY_ERROR(search_result_init(result, q->field, q->word, &state->posting));
}
}
DEBUG("[%s:'%s'] after: doc id %u, done is %d, started is %d", q->field, q->word, (state->started && !state->done && result) ? result->doc_id : 0, *done, state->started);
return NO_ERROR;
}
static wp_error* term_advance_to_doc(wp_query* q, wp_segment* s, docid_t doc_id, search_result* result, int* found, int* done) {
term_search_state* state = (term_search_state*)q->search_data;
DEBUG("[%s:'%s'] seeking through postings for doc %u", q->field, q->word, doc_id);
if(state->done) { // end of stream
*found = 0;
*done = 1;
return NO_ERROR;
}
while(state->posting.doc_id > doc_id) {
free(state->posting.positions);
DEBUG("skipping doc_id %u", state->posting.doc_id);
if(state->posting.next_offset == OFFSET_NONE) {
state->done = 1;
break;
}
if(state->label) RELAY_ERROR(wp_segment_read_label(s, state->posting.next_offset, &state->posting));
else RELAY_ERROR(wp_segment_read_posting(s, state->posting.next_offset, &state->posting, 1));
//DEBUG("advanced posting to %p", state->posting);
}
if(state->done) {
DEBUG("[%s:'%s'] posting list exhausted", q->field, q->word);
*found = 0;
*done = 1;
}
else {
*done = 0;
DEBUG("[%s:'%s'] posting advanced to that of doc %u", q->field, q->word, state->posting.doc_id);
*found = (doc_id == state->posting.doc_id ? 1 : 0);
if(*found) RELAY_ERROR(search_result_init(result, q->field, q->word, &state->posting));
}
return NO_ERROR;
}
// this advances all children *until* it finds a child that doesn't have the
// doc. at that point it stops. so it will return found=0 if any single child
// doesn't have the doc, and done=1 if any single child is done.
//
// this is used by both phrasal and conjunctive queries.
static wp_error* advance_all_children(wp_query* q, wp_segment* seg, docid_t search_doc, search_result* child_results, int* found, int* done) {
int num_children_searched = 0;
*found = 1;
DEBUG("advancing all children to doc %u with early termination", search_doc);
for(wp_query* child = q->children; child != NULL; child = child->next) {
RELAY_ERROR(query_advance_to_doc(child, seg, search_doc, &child_results[num_children_searched], found, done));
num_children_searched++;
if(!*found) break;
}
if(!*found) for(int i = 0; i < num_children_searched - 1; i++) wp_search_result_free(&child_results[i]);
return NO_ERROR;
}
static wp_error* disj_next_doc(wp_query* q, wp_segment* seg, search_result* result, int* done) {
if(q->children == NULL) {
*done = 1;
return NO_ERROR;
}
// allocate search state if necessary
disj_search_state* state = (disj_search_state*)q->search_data;
if(state->states == NULL) {
state->states = malloc(sizeof(uint8_t) * q->num_children);
state->results = malloc(sizeof(search_result) * q->num_children);
memset(state->states, DISJ_SEARCH_STATE_EMPTY, sizeof(uint8_t) * q->num_children);
}
// fill all the results we can into the buffer by calling next_doc on all
// non-done children
uint16_t i = 0;
for(wp_query* child = q->children; child != NULL; child = child->next) {
if(state->states[i] == DISJ_SEARCH_STATE_EMPTY) {
int thisdone = 0;
DEBUG("recursing on child %d", i);
RELAY_ERROR(query_next_doc(child, seg, &(state->results[i]), &thisdone));
if(thisdone == 1) state->states[i] = DISJ_SEARCH_STATE_DONE;
else state->states[i] = DISJ_SEARCH_STATE_FILLED;
DEBUG("after recurse, state %d is marked %d", i, state->states[i]);
}
i++;
}
// now find the largest
uint16_t max_doc_idx = 0;
docid_t max_docid = 0;
*done = 1;
i = 0;
for(wp_query* child = q->children; child != NULL; child = child->next) {
DEBUG("child %d is marked as %d", i, state->states[i]);
if(state->states[i] == DISJ_SEARCH_STATE_FILLED) {
if((*done == 1) || (state->results[i].doc_id > max_docid)) {
if(state->results[i].doc_id == state->last_docid) { // discard dupes
DEBUG("child %d has old result %u; voiding", i, state->last_docid);
wp_search_result_free(&state->results[i]);
state->states[i] = DISJ_SEARCH_STATE_EMPTY;
}
else {
*done = 0;
max_docid = state->results[i].doc_id;
max_doc_idx = i;
}
}
}
i++;
}
// finally, copy the result
if(*done == 0) {
DEBUG("returning doc %d at index %d", max_docid, max_doc_idx);
memcpy(result, &state->results[max_doc_idx], sizeof(search_result));
state->states[max_doc_idx] = DISJ_SEARCH_STATE_EMPTY;
state->last_docid = result->doc_id;
}
return NO_ERROR;
}
static wp_error* conj_next_doc(wp_query* q, wp_segment* seg, search_result* result, int* done) {
docid_t search_doc;
int found = 0;
*done = 0;
// start with the first child's first doc
// TODO: find smallest postings list and use that instead
wp_query* master = q->children;
if(master == NULL) *done = 1;
while(!found && !*done) {
RELAY_ERROR(query_next_doc(master, seg, result, done));
if(!*done) {
DEBUG("master reports doc %u done %d", result->doc_id, *done);
search_doc = result->doc_id;
wp_search_result_free(result); // sigh
RELAY_ERROR(conj_advance_to_doc(q, seg, search_doc, result, &found, done));
}
DEBUG("after search, found is %d and done is %d", found, *done);
}
return NO_ERROR;
}
static wp_error* conj_advance_to_doc(wp_query* q, wp_segment* s, docid_t doc_id, search_result* result, int* found, int* done) {
search_result* child_results = malloc(sizeof(search_result) * q->num_children);
RELAY_ERROR(advance_all_children(q, s, doc_id, child_results, found, done));
if(*found) {
DEBUG("successfully found doc %u", doc_id);
RELAY_ERROR(search_result_combine_into(result, child_results, q->num_children));
}
free(child_results);
return NO_ERROR;
}
static wp_error* disj_advance_to_doc(wp_query* q, wp_segment* seg, docid_t doc_id, search_result* result, int* found, int* done) {
search_result child_result;
int child_found;
DEBUG("advancing all to %d", doc_id);
*found = 0;
*done = 0;
uint16_t i = 0;
for(wp_query* child = q->children; child != NULL; child = child->next) {
int child_done;
RELAY_ERROR(query_advance_to_doc(child, seg, doc_id, &child_result, &child_found, &child_done));
DEBUG("child %u reports found %d and done %d", i, child_found, child_done);
*done = *done && child_done; // we're only done if ALL children are done
if(child_found && !*found) {
*found = 1;
*result = child_result;
}
i += 1;
// TODO XXXXXXXXXX does this leak memory when multiple children all return results?
}
#ifdef DEBUGOUTPUT
if(*found) DEBUG("successfully found doc %u", doc_id);
else DEBUG("did not find doc %u", doc_id);
#endif
// now release any buffered results if they're > doc_id
disj_search_state* state = (disj_search_state*)q->search_data;
if(state->states != NULL) {
uint16_t i = 0;
for(wp_query* child = q->children; child != NULL; child = child->next) {
if((state->states[i] == DISJ_SEARCH_STATE_FILLED) && (state->results[i].doc_id > doc_id)) {
wp_search_result_free(&state->results[i]);
state->states[i] = DISJ_SEARCH_STATE_EMPTY;
}
i++;
}
}
return NO_ERROR;
}
// sadly, this is basically a copy of conj_next_doc right now. all the
// interesting phrasal checking is done by phrase_advance_to_doc.
static wp_error* phrase_next_doc(wp_query* q, wp_segment* seg, search_result* result, int* done) {
#ifdef DEBUGOUTPUT
char query_s[1024];
wp_query_to_s(q, 1024, query_s);
DEBUG("called on %s", query_s);
#endif
docid_t search_doc;
int found = 0;
*done = 0;
// start with the first child's first doc
// TODO: find smallest postings list and use that instead
wp_query* master = q->children;
if(master == NULL) *done = 1;
while(!found && !*done) {
RELAY_ERROR(query_next_doc(master, seg, result, done));
if(!*done) {
DEBUG("master reports doc %u done %d", result->doc_id, *done);
search_doc = result->doc_id;
wp_search_result_free(result); // sigh
RELAY_ERROR(phrase_advance_to_doc(q, seg, search_doc, result, &found, done));
}
DEBUG("after search, found is %d and done is %d", found, *done);
}
return NO_ERROR;
}
static wp_error* phrase_advance_to_doc(wp_query* q, wp_segment* seg, docid_t doc_id, search_result* result, int* found, int* done) {
#ifdef DEBUGOUTPUT
char query_s[1024];
wp_query_to_s(q, 1024, query_s);
DEBUG("called on %s", query_s);
#endif
search_result* child_results = malloc(sizeof(search_result) * q->num_children);
DEBUG("will be searching for doc %u", doc_id);
RELAY_ERROR(advance_all_children(q, seg, doc_id, child_results, found, done));
if(*found) {
DEBUG("found doc %u. now checking for positional matches", doc_id);
// TODO remove this once we're less paranoid
for(int i = 0; i < q->num_children; i++) {
if(child_results[i].num_doc_matches != 1) RAISE_ERROR("invalid state: %d results", child_results[i].num_doc_matches);
if(child_results[i].doc_id != doc_id) RAISE_ERROR("invalid state: doc id %u vs searched-for %u", child_results[i].doc_id, doc_id);
}
/* the following can be optimized in several ways:
1. choose the doc with the smallest number of term matches, rather than aways picking the first.
2. do a binary search to find the position (since the array is sorted), rather than a linear
scan.
this is simply the simplest, stupidest, first-approach implementation.
*/
// we'll base everything off of this guy
doc_match* first_dm = &child_results[0].doc_matches[0];
// allocate enough space to hold the maximum number of positions
pos_t* phrase_positions = malloc(sizeof(pos_t) * first_dm->num_positions);
int num_positions_found = 0;
for(int i = 0; i < first_dm->num_positions; i++) {
pos_t position = first_dm->positions[i];
DEBUG("try %d: match by term 0 at position %u", i, position);
int found_in_this_position = 1;
for(int j = 1; j < q->num_children; j++) {
doc_match* this_dm = &child_results[j].doc_matches[0];
int k, found_in_doc = 0;
for(k = 0; k < this_dm->num_positions; k++) {
if(this_dm->positions[k] == (position + j)) {
found_in_doc = 1;
break;
}
}
if(!found_in_doc) {
found_in_this_position = 0;
DEBUG("term %d did NOT match at position %u after %d comparisons", j, position + j, k + 1);
break;
}
#ifdef DEBUGOUTPUT
else DEBUG("term %d matched at position %u after %d/%d comparisons", j, position + j, k + 1, this_dm->num_positions);
#endif
}
if(found_in_this_position) phrase_positions[num_positions_found++] = position; // got a match!
}
if(num_positions_found > 0) {
// fill in the result
result->doc_id = doc_id;
result->num_doc_matches = 1;
result->doc_matches = malloc(sizeof(doc_match));
result->doc_matches[0].field = NULL;
result->doc_matches[0].word = NULL;
result->doc_matches[0].num_positions = num_positions_found;
result->doc_matches[0].positions = phrase_positions;
}
else {
*found = 0;
free(phrase_positions);
}
for(int i = 0; i < q->num_children; i++) wp_search_result_free(&child_results[i]);
}
free(child_results);
return NO_ERROR;
}
static wp_error* neg_next_doc(wp_query* q, wp_segment* seg, search_result* result, int* done) {
neg_search_state* state = (neg_search_state*)q->search_data;
DEBUG("called with cur %u and next %u", state->cur, state->next);
if(state->cur == DOCID_NONE) {
*done = 1;
return NO_ERROR;
}
state->cur--; // advance virtual doc pointer
// if state->cur == state->next, we need to load the substream's next
// document, decrement our cur, and recheck.
while((state->cur > DOCID_NONE) && (state->cur == state->next)) { // need to advance the child stream
state->cur--; // can't use the previous value because == next; decrement
int child_done;
RELAY_ERROR(query_next_doc(q->children, seg, result, &child_done));
if(child_done) state->next = DOCID_NONE; // child stream is done
else {
state->next = result->doc_id;
wp_search_result_free(result);
}
DEBUG("after bump, cur %u and next %u", state->cur, state->next);
}
// check again... sigh
if(state->cur == DOCID_NONE) {
*done = 1;
return NO_ERROR;
}
DEBUG("returning doc %u", state->cur);
result->doc_id = state->cur;
result->num_doc_matches = 0;
result->doc_matches = NULL;
*done = 0;
return NO_ERROR;
}
static wp_error* neg_advance_to_doc(wp_query* q, wp_segment* seg, docid_t doc_id, search_result* result, int* found, int* done) {
neg_search_state* state = (neg_search_state*)q->search_data;
DEBUG("in search for %u, called with cur %u and next %u", doc_id, state->cur, state->next);
if(state->cur == DOCID_NONE) {
*done = 1;
*found = 0;
return NO_ERROR;
}
// seek through child stream until we find a docid it contains that's <= doc_id
while(state->next > doc_id) { // need to advance child stream
int child_done;
RELAY_ERROR(query_next_doc(q->children, seg, result, &child_done));
if(child_done) state->next = DOCID_NONE; // will break the loop too
else state->next = result->doc_id;
}
DEBUG("in search for %u, intermediate state is cur %u and next %u", doc_id, state->cur, state->next);
// at this point we know state->next, our child pointer, is <= doc_id
state->cur = doc_id;
if(state->next == doc_id) *found = 0; // opposite day
else {
*found = 1;
result->doc_id = doc_id;
result->num_doc_matches = 0;
result->doc_matches = NULL;
}
*done = state->cur == DOCID_NONE ? 1 : 0;
DEBUG("finally, state is cur %u and next %u and found is %d and done is %d", state->cur, state->next, *found, *done);
return NO_ERROR;
}
static wp_error* every_next_doc(wp_query* q, wp_segment* seg, search_result* result, int* done) {
(void)seg; // don't actually need to look in here!
docid_t* state_doc_id = (docid_t*)q->search_data;
DEBUG("called with cur %u", *state_doc_id);
if(*state_doc_id == DOCID_NONE) {
*done = 1;
}
else {
result->doc_id = *state_doc_id;
result->num_doc_matches = 0;
result->doc_matches = NULL;
(*state_doc_id)--;
*done = 0;
}
return NO_ERROR;
}
static wp_error* every_advance_to_doc(wp_query* q, wp_segment* seg, docid_t doc_id, search_result* result, int* found, int* done) {
(void)seg; // don't actually need to look in here!
docid_t* state_doc_id = q->search_data;
DEBUG("called with cur %u", *state_doc_id);
if(*state_doc_id == DOCID_NONE) {
*found = 0;
}
else {
*state_doc_id = doc_id - 1; // just after that doc
*found = 1; // we find everyhing
result->doc_id = doc_id;
result->num_doc_matches = 0;
result->doc_matches = NULL;
}
*done = (*state_doc_id == DOCID_NONE ? 1 : 0);
return NO_ERROR;
}
wp_error* wp_search_run_query_on_segment(struct wp_query* q, struct wp_segment* s, uint32_t max_num_results, uint32_t* num_results, search_result* results) {
int done;
*num_results = 0;
#ifdef DEBUG
char buf[1024];
wp_query_to_s(q, 1024, buf);
DEBUG("running query %s", buf);
#endif
while(*num_results < max_num_results) {
DEBUG("got %d results so far (max is %d)", *num_results, max_num_results);
RELAY_ERROR(query_next_doc(q, s, &results[*num_results], &done));
if(done) break;
DEBUG("got result %u (%u doc matches)", results[*num_results].doc_id, results[*num_results].num_doc_matches);
(*num_results)++;
DEBUG("num results now %d", *num_results);
}
return NO_ERROR;
}