forked from wmorgan/whistlepig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
segment.c
741 lines (591 loc) · 27.1 KB
/
segment.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
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include "whistlepig.h"
#define POSTINGS_REGION_TYPE_IMMUTABLE_VBE 1
#define POSTINGS_REGION_TYPE_MUTABLE_NO_POSITIONS 2 // bigger, mutable
#define SEGMENT_VERSION 4
#define wp_segment_label_posting_at(posting_region, offset) ((label_posting*)(posting_region->postings + offset))
static posting_list_header blank_plh = { .count = 0, .next_offset = OFFSET_NONE };
static term dead_term = { .field_s = 0, .word_s = 0 };
wp_error* wp_segment_grab_readlock(wp_segment* seg) {
segment_info* si = MMAP_OBJ(seg->seginfo, segment_info);
RELAY_ERROR(wp_lock_grab(&si->lock, WP_LOCK_READLOCK));
return NO_ERROR;
}
wp_error* wp_segment_grab_writelock(wp_segment* seg) {
segment_info* si = MMAP_OBJ(seg->seginfo, segment_info);
RELAY_ERROR(wp_lock_grab(&si->lock, WP_LOCK_WRITELOCK));
return NO_ERROR;
}
wp_error* wp_segment_release_lock(wp_segment* seg) {
segment_info* si = MMAP_OBJ(seg->seginfo, segment_info);
RELAY_ERROR(wp_lock_release(&si->lock));
return NO_ERROR;
}
wp_error* wp_segment_count_term(wp_segment* seg, const char* field, const char* word, uint32_t* num_results) {
stringmap* sh = MMAP_OBJ(seg->stringmap, stringmap);
stringpool* sp = MMAP_OBJ(seg->stringpool, stringpool);
termhash* th = MMAP_OBJ(seg->termhash, termhash);
term t;
if(field == NULL) t.field_s = 0; // label sentinel
else t.field_s = stringmap_string_to_int(sh, sp, field);
t.word_s = stringmap_string_to_int(sh, sp, word);
posting_list_header* plh = termhash_get_val(th, t);
if(plh == NULL) *num_results = 0;
else *num_results = plh->count;
return NO_ERROR;
}
static void postings_region_init(postings_region* pr, uint32_t initial_size, uint32_t postings_type_and_flags) {
pr->postings_type_and_flags = postings_type_and_flags;
pr->num_postings = 0;
pr->postings_head = 1; // skip one byte, which is reserved as OFFSET_NONE
pr->postings_tail = initial_size;
}
RAISING_STATIC(segment_info_init(segment_info* si, uint32_t segment_version)) {
si->segment_version = segment_version;
si->num_docs = 0;
RELAY_ERROR(wp_lock_setup(&si->lock));
return NO_ERROR;
}
RAISING_STATIC(segment_info_validate(segment_info* si, uint32_t segment_version)) {
if(si->segment_version != segment_version) RAISE_VERSION_ERROR("segment has type %u; expecting type %u", si->segment_version, segment_version);
return NO_ERROR;
}
RAISING_STATIC(postings_region_validate(postings_region* pr, uint32_t postings_type_and_flags)) {
if(pr->postings_type_and_flags != postings_type_and_flags) RAISE_ERROR("postings region has type %u; expecting type %u", pr->postings_type_and_flags, postings_type_and_flags);
return NO_ERROR;
}
#define INITIAL_POSTINGS_SIZE 2048
#define FN_SIZE 1024
wp_error* wp_segment_load(wp_segment* segment, const char* pathname_base) {
char fn[FN_SIZE];
// open the segment info
snprintf(fn, 128, "%s.si", pathname_base);
RELAY_ERROR(mmap_obj_load(&segment->seginfo, "wp/seginfo", fn));
RELAY_ERROR(segment_info_validate(MMAP_OBJ(segment->seginfo, segment_info), SEGMENT_VERSION));
// open the string pool
snprintf(fn, 128, "%s.sp", pathname_base);
RELAY_ERROR(mmap_obj_load(&segment->stringpool, "wp/stringpool", fn));
// open the string hash
snprintf(fn, 128, "%s.sh", pathname_base);
RELAY_ERROR(mmap_obj_load(&segment->stringmap, "wp/stringmap", fn));
// open the term hash
snprintf(fn, 128, "%s.th", pathname_base);
RELAY_ERROR(mmap_obj_load(&segment->termhash, "wp/termhash", fn));
// open the postings region
snprintf(fn, 128, "%s." WP_SEGMENT_POSTING_REGION_PATH_SUFFIX, pathname_base);
RELAY_ERROR(mmap_obj_load(&segment->postings, "wp/postings", fn));
RELAY_ERROR(postings_region_validate(MMAP_OBJ(segment->postings, postings_region), POSTINGS_REGION_TYPE_IMMUTABLE_VBE));
// open the labels postings region
snprintf(fn, 128, "%s.lb", pathname_base);
RELAY_ERROR(mmap_obj_load(&segment->labels, "wp/labels", fn));
RELAY_ERROR(postings_region_validate(MMAP_OBJ(segment->labels, postings_region), POSTINGS_REGION_TYPE_MUTABLE_NO_POSITIONS));
return NO_ERROR;
}
wp_error* wp_segment_reload(wp_segment* segment) {
RELAY_ERROR(mmap_obj_reload(&segment->seginfo));
RELAY_ERROR(mmap_obj_reload(&segment->stringpool));
RELAY_ERROR(mmap_obj_reload(&segment->stringmap));
RELAY_ERROR(mmap_obj_reload(&segment->termhash));
RELAY_ERROR(mmap_obj_reload(&segment->postings));
RELAY_ERROR(mmap_obj_reload(&segment->labels));
return NO_ERROR;
}
wp_error* wp_segment_create(wp_segment* segment, const char* pathname_base) {
char fn[FN_SIZE];
// create the segment info
snprintf(fn, 128, "%s.si", pathname_base);
RELAY_ERROR(mmap_obj_create(&segment->seginfo, "wp/seginfo", fn, sizeof(segment_info)));
RELAY_ERROR(segment_info_init(MMAP_OBJ(segment->seginfo, segment_info), SEGMENT_VERSION));
// create the string pool
snprintf(fn, 128, "%s.sp", pathname_base);
RELAY_ERROR(mmap_obj_create(&segment->stringpool, "wp/stringpool", fn, stringpool_initial_size()));
stringpool_init(MMAP_OBJ(segment->stringpool, stringpool));
// create the string hash
snprintf(fn, 128, "%s.sh", pathname_base);
RELAY_ERROR(mmap_obj_create(&segment->stringmap, "wp/stringmap", fn, stringmap_initial_size()));
stringmap_init(MMAP_OBJ(segment->stringmap, stringmap));
// create the term hash
snprintf(fn, 128, "%s.th", pathname_base);
RELAY_ERROR(mmap_obj_create(&segment->termhash, "wp/termhash", fn, termhash_initial_size()));
termhash_init(MMAP_OBJ(segment->termhash, termhash));
// create the postings region
snprintf(fn, 128, "%s." WP_SEGMENT_POSTING_REGION_PATH_SUFFIX, pathname_base);
RELAY_ERROR(mmap_obj_create(&segment->postings, "wp/postings", fn, sizeof(postings_region) + INITIAL_POSTINGS_SIZE));
postings_region_init(MMAP_OBJ(segment->postings, postings_region), INITIAL_POSTINGS_SIZE, POSTINGS_REGION_TYPE_IMMUTABLE_VBE);
// create the labels postings region
snprintf(fn, 128, "%s.lb", pathname_base);
RELAY_ERROR(mmap_obj_create(&segment->labels, "wp/labels", fn, sizeof(postings_region) + INITIAL_POSTINGS_SIZE));
postings_region_init(MMAP_OBJ(segment->labels, postings_region), INITIAL_POSTINGS_SIZE, POSTINGS_REGION_TYPE_MUTABLE_NO_POSITIONS);
return NO_ERROR;
}
int wp_segment_exists(const char* pathname_base) {
struct stat fstat;
char fn[FN_SIZE];
snprintf(fn, 128, "%s.sp", pathname_base);
return !stat(fn, &fstat);
}
wp_error* wp_segment_delete(const char* pathname_base) {
char fn[FN_SIZE];
snprintf(fn, 128, "%s.si", pathname_base);
unlink(fn);
snprintf(fn, 128, "%s." WP_SEGMENT_POSTING_REGION_PATH_SUFFIX, pathname_base);
unlink(fn);
snprintf(fn, 128, "%s.sp", pathname_base);
unlink(fn);
snprintf(fn, 128, "%s.sh", pathname_base);
unlink(fn);
snprintf(fn, 128, "%s.th", pathname_base);
unlink(fn);
snprintf(fn, 128, "%s.lb", pathname_base);
unlink(fn);
return NO_ERROR;
}
wp_error* wp_segment_unload(wp_segment* s) {
RELAY_ERROR(mmap_obj_unload(&s->stringpool));
RELAY_ERROR(mmap_obj_unload(&s->stringmap));
RELAY_ERROR(mmap_obj_unload(&s->termhash));
RELAY_ERROR(mmap_obj_unload(&s->postings));
RELAY_ERROR(mmap_obj_unload(&s->labels));
return NO_ERROR;
}
RAISING_STATIC(bump_stringmap(wp_segment* s, int* success)) {
stringmap* sh = MMAP_OBJ(s->stringmap, stringmap);
*success = 1;
if(stringmap_needs_bump(sh)) {
DEBUG("bumping stringmap size");
uint32_t next_size = stringmap_next_size(sh);
if(next_size <= stringmap_size(sh)) {
DEBUG("stringmap can't be bumped no more!");
*success = 0;
}
else {
RELAY_ERROR(mmap_obj_resize(&s->stringmap, next_size));
RELAY_ERROR(stringmap_bump_size(MMAP_OBJ(s->stringmap, stringmap), MMAP_OBJ(s->stringpool, stringpool)));
}
}
return NO_ERROR;
}
RAISING_STATIC(bump_stringpool(wp_segment* s, int* success)) {
stringpool* sp = MMAP_OBJ(s->stringpool, stringpool);
*success = 1;
if(stringpool_needs_bump(sp)) {
DEBUG("bumping stringpool size");
uint32_t next_size = stringpool_next_size(sp);
if(next_size <= stringpool_size(sp)) {
DEBUG("stringpool can't be bumped no more!");
*success = 0;
}
else {
RELAY_ERROR(mmap_obj_resize(&s->stringpool, next_size));
stringpool_bump_size(MMAP_OBJ(s->stringpool, stringpool));
}
}
return NO_ERROR;
}
RAISING_STATIC(bump_termhash(wp_segment* s, int* success)) {
termhash* th = MMAP_OBJ(s->termhash, termhash);
*success = 1;
if(termhash_needs_bump(th)) {
DEBUG("bumping termhash size");
uint32_t next_size = termhash_next_size(th);
if(next_size <= termhash_size(th)) {
DEBUG("termhash can't be bumped no more!");
*success = 0;
}
else {
RELAY_ERROR(mmap_obj_resize(&s->termhash, next_size));
RELAY_ERROR(termhash_bump_size(MMAP_OBJ(s->termhash, termhash)));
*success = 1;
}
}
return NO_ERROR;
}
RAISING_STATIC(postings_region_ensure_fit(mmap_obj* mmopr, uint32_t postings_bytes, int* success)) {
postings_region* pr = MMAP_OBJ_PTR(mmopr, postings_region);
uint32_t new_head = pr->postings_head + postings_bytes;
DEBUG("ensuring fit for %u postings bytes", postings_bytes);
uint32_t new_tail = pr->postings_tail;
while(new_tail <= new_head) new_tail = new_tail * 2;
if(new_tail > MAX_POSTINGS_REGION_SIZE - sizeof(mmap_obj_header)) new_tail = MAX_POSTINGS_REGION_SIZE - sizeof(mmap_obj_header);
DEBUG("new tail will be %u, current is %u, max is %u", new_tail, pr->postings_tail, MAX_POSTINGS_REGION_SIZE);
if(new_tail <= new_head) { // can't increase enough
*success = 0;
return NO_ERROR;
}
if(new_tail != pr->postings_tail) { // need to resize
DEBUG("request for %u postings bytes, old tail is %u, new tail will be %u, max is %u\n", postings_bytes, pr->postings_tail, new_tail, MAX_POSTINGS_REGION_SIZE);
RELAY_ERROR(mmap_obj_resize(mmopr, new_tail));
pr = MMAP_OBJ_PTR(mmopr, postings_region); // may have changed!
pr->postings_tail = new_tail;
}
*success = 1;
return NO_ERROR;
}
// TODO make this function take the number of stringpool entries, the number of
// terms, etc rather than just being a heuristic for everything except for the
// postings list
wp_error* wp_segment_ensure_fit(wp_segment* seg, uint32_t postings_bytes, uint32_t label_bytes, int* success) {
RELAY_ERROR(postings_region_ensure_fit(&seg->postings, postings_bytes, success));
if(!*success) return NO_ERROR;
RELAY_ERROR(postings_region_ensure_fit(&seg->labels, label_bytes, success));
if(!*success) return NO_ERROR;
RELAY_ERROR(bump_stringmap(seg, success));
if(!*success) return NO_ERROR;
RELAY_ERROR(bump_stringpool(seg, success));
if(!*success) return NO_ERROR;
RELAY_ERROR(bump_termhash(seg, success));
if(!*success) return NO_ERROR;
DEBUG("fit of %u postings bytes ensured", postings_bytes);
return NO_ERROR;
}
static uint32_t size_of(uint32_t num_positions, pos_t positions[]) {
(void)positions;
uint32_t position_size = (uint32_t)sizeof(pos_t) * num_positions;
uint32_t size = (uint32_t)sizeof(posting) - (uint32_t)sizeof(pos_t*) + position_size;
return size;
}
wp_error* wp_segment_sizeof_posarray(wp_segment* seg, uint32_t num_positions, pos_t* positions, uint32_t* size) {
(void)seg;
*size = size_of(num_positions, positions);
return NO_ERROR;
}
#define VALUE_BITMASK 0x7f
RAISING_STATIC(write_multibyte(uint8_t* location, uint32_t val, uint32_t* size)) {
//printf("xx writing %u to position %p as:\n", val, location);
uint8_t* start = location;
while(val > VALUE_BITMASK) {
uint8_t c = (val & VALUE_BITMASK) | 0x80;
*location = c;
//printf("xx %d = %d | %d at %p\n", c, val & BITMASK, 0x80, location);
location++;
val >>= 7;
}
uint8_t c = (val & VALUE_BITMASK);
*location = c;
//printf("xx %d at %p\n", c, location);
*size = (uint32_t)(location + 1 - start);
//printf("xx total %u bytes\n", *size);
return NO_ERROR;
}
RAISING_STATIC(read_multibyte(uint8_t* location, uint32_t* val, uint32_t* size)) {
uint8_t* start = location;
uint32_t shift = 0;
*val = 0;
while(*location & 0x80) {
//printf("yy read continue byte %d -> %d at %p\n", *location, *location & ~0x80, location);
*val |= (*location & ~0x80) << shift;
shift += 7;
location++;
}
*val |= *location << shift;
//printf("yy read final byte %d at %p\n", *location, location);
*size = (uint32_t)(location + 1 - start);
//printf("yy total %d bytes, val = %d\n\n", *size, *val);
return NO_ERROR;
}
/* write posting entry using a variable-byte encoding
unfortunately we can't write doc_id deltas, which is what would really make
this encoding pay off, because we write the entries in increasing doc_id
order but read them in decreasing order. so we write doc_ids raw.
for next_offsets, we write the delta against the current offset. since the
next_offset is guaranteed to be less than the current offset, we subtract
next from current.
positions are written as deltas.
*/
RAISING_STATIC(write_posting(wp_segment* seg, posting* po, pos_t positions[])) {
postings_region* pr = MMAP_OBJ(seg->postings, postings_region);
uint32_t size;
uint32_t offset = pr->postings_head;
if(po->next_offset >= pr->postings_head) RAISE_ERROR("next_offset %u >= postings_head %u", po->next_offset, pr->postings_head);
if(po->num_positions == 0) RAISE_ERROR("num_positions == 0");
uint32_t doc_id = po->doc_id << 1;
if(po->num_positions == 1) doc_id |= 1; // marker for single postings
RELAY_ERROR(write_multibyte(&pr->postings[pr->postings_head], doc_id, &size));
pr->postings_head += size;
//printf("wrote %u-byte doc_id %u (np1 == %d)\n", size, doc_id, po->num_positions == 1 ? 1 : 0);
RELAY_ERROR(write_multibyte(&pr->postings[pr->postings_head], offset - po->next_offset, &size));
pr->postings_head += size;
//printf("wrote %u-byte offset %u\n", size, offset - po->next_offset);
if(po->num_positions > 1) {
RELAY_ERROR(write_multibyte(&pr->postings[pr->postings_head], po->num_positions, &size));
pr->postings_head += size;
//printf("wrote %u-byte num positions %u\n", size, po->num_positions);
}
for(uint32_t i = 0; i < po->num_positions; i++) {
RELAY_ERROR(write_multibyte(&pr->postings[pr->postings_head], positions[i] - (i == 0 ? 0 : positions[i - 1]), &size));
pr->postings_head += size;
//printf("wrote %u-byte positions %u\n", size, positions[i] - (i == 0 ? 0 : positions[i - 1]));
}
//printf("done writing posting\n\n");
//printf(">>> done writing posting %d %d %d to %p\n\n", (prev_docid == 0 ? po->doc_id : prev_docid - po->doc_id), offset - po->next_offset, po->num_positions, &pr->postings[pl->postings_head]);
pr->num_postings++;
return NO_ERROR;
}
/* if include_positions is true, will malloc the positions array for you, and
* you must free it when done (assuming num_positions > 0)!
*/
wp_error* wp_segment_read_posting(wp_segment* s, uint32_t offset, posting* po, int include_positions) {
uint32_t size;
uint32_t orig_offset = offset;
postings_region* pr = MMAP_OBJ(s->postings, postings_region);
//DEBUG("reading posting from offset %u -> %p (pr %p base %p)", offset, &pr->postings[offset], pr, &pr->postings);
RELAY_ERROR(read_multibyte(&pr->postings[offset], &po->doc_id, &size));
int is_single_posting = po->doc_id & 1;
po->doc_id = po->doc_id >> 1;
//DEBUG("read doc_id %u (%u bytes)", po->doc_id, size);
offset += size;
RELAY_ERROR(read_multibyte(&pr->postings[offset], &po->next_offset, &size));
//DEBUG("read next_offset %u -> %u (%u bytes)", po->next_offset, orig_offset - po->next_offset, size);
if((po->next_offset == 0) || (po->next_offset > orig_offset)) RAISE_ERROR("read invalid next_offset %u (must be > 0 and < %u)", po->next_offset, orig_offset);
po->next_offset = orig_offset - po->next_offset;
offset += size;
if(include_positions) {
if(is_single_posting) po->num_positions = 1;
else {
RELAY_ERROR(read_multibyte(&pr->postings[offset], &po->num_positions, &size));
//DEBUG("read num_positions: %u (%u bytes)", po->num_positions, size);
offset += size;
}
po->positions = malloc(po->num_positions * sizeof(pos_t));
for(uint32_t i = 0; i < po->num_positions; i++) {
RELAY_ERROR(read_multibyte(&pr->postings[offset], &po->positions[i], &size));
offset += size;
po->positions[i] += (i == 0 ? 0 : po->positions[i - 1]);
//DEBUG("read position %u (%u bytes)", po->positions[i], size);
}
}
else {
po->num_positions = 0;
po->positions = NULL;
}
//DEBUG("total record took %u bytes", offset - orig_offset);
//printf("*** read posting %u %u %u from %u\n", po->doc_id, po->next_offset, po->num_positions, orig_offset);
return NO_ERROR;
}
wp_error* wp_segment_add_posting(wp_segment* s, const char* field, const char* word, docid_t doc_id, uint32_t num_positions, pos_t positions[]) {
// TODO move this logic up to ensure_fit()
int success;
if(doc_id == 0) RAISE_ERROR("can't add a label to doc 0");
RELAY_ERROR(bump_stringmap(s, &success));
RELAY_ERROR(bump_stringpool(s, &success));
RELAY_ERROR(bump_termhash(s, &success));
DEBUG("adding posting for %s:%s and doc %u with %u positions", field, word, doc_id, num_positions);
postings_region* pr = MMAP_OBJ(s->postings, postings_region);
stringmap* sh = MMAP_OBJ(s->stringmap, stringmap);
termhash* th = MMAP_OBJ(s->termhash, termhash);
stringpool* sp = MMAP_OBJ(s->stringpool, stringpool);
// construct the term object
term t;
RELAY_ERROR(stringmap_add(sh, sp, field, &t.field_s));
RELAY_ERROR(stringmap_add(sh, sp, word, &t.word_s));
DEBUG("%s:%s maps to %u:%u", field, word, t.field_s, t.word_s);
// find the offset of the next posting
posting_list_header* plh = termhash_get_val(th, t);
if(plh == NULL) {
RELAY_ERROR(termhash_put_val(th, t, &blank_plh));
plh = termhash_get_val(th, t);
}
DEBUG("posting list header for %s:%s is at %p", field, word, plh);
posting po;
uint32_t next_offset = plh->next_offset;
if(next_offset != OFFSET_NONE) { // TODO remove this check for speed once happy [PERFORMANCE]
RELAY_ERROR(wp_segment_read_posting(s, next_offset, &po, 0));
if(po.doc_id >= doc_id) RAISE_ERROR("cannot add a doc_id out of sorted order");
}
// write the entry to the postings region
uint32_t entry_offset = pr->postings_head;
DEBUG("writing posting at offset %u. next offset is %u.", entry_offset, next_offset);
po.doc_id = doc_id;
po.next_offset = next_offset;
po.num_positions = num_positions;
RELAY_ERROR(write_posting(s, &po, positions)); // prev_docid is 0 for th
DEBUG("posting list head now at %u", pr->postings_head);
// really finally, update the tail pointer so that readers can access this posting
plh->count++;
plh->next_offset = entry_offset;
DEBUG("posting list header for %s:%s now reads count=%u offset=%u", field, word, plh->count, plh->next_offset);
return NO_ERROR;
}
/*
* currently, labels are implemented as a separate postings space and separate
* postings structure, but with the same term hash (the offsets just are
* relative to the different space).
*
* we use the sentinel field value 0 to demarcate a label. since no strings have
* have stringmap value 0, this is safe.
*
* we also maintain a free list of unused label postings. since all label
* postings are the same size, we can do this to reuse them and avoid losing
* space in this area; since label postings can be changed frequently, this is
* desirable. we use the sentinel postings value field=0 word=0 to keep track
* of this list.
*
*/
wp_error* wp_segment_read_label(wp_segment* s, uint32_t offset, posting* po) {
postings_region* pr = MMAP_OBJ(s->labels, postings_region);
label_posting* lp = wp_segment_label_posting_at(pr, offset);
po->doc_id = lp->doc_id;
po->next_offset = lp->next_offset;
po->num_positions = 0;
po->positions = NULL;
return NO_ERROR;
}
wp_error* wp_segment_add_label(wp_segment* s, const char* label, docid_t doc_id) {
// TODO move this logic up to ensure_fit()
int success;
if(doc_id == 0) RAISE_ERROR("can't add a label to doc 0");
RELAY_ERROR(bump_stringmap(s, &success));
RELAY_ERROR(bump_stringpool(s, &success));
RELAY_ERROR(bump_termhash(s, &success));
DEBUG("adding label '%s' to doc %u", label, doc_id);
postings_region* pr = MMAP_OBJ(s->labels, postings_region);
stringmap* sh = MMAP_OBJ(s->stringmap, stringmap);
termhash* th = MMAP_OBJ(s->termhash, termhash);
stringpool* sp = MMAP_OBJ(s->stringpool, stringpool);
// construct the term object. term objects for labels have the special
// sentinel field value 0
term t;
t.field_s = 0; // label sentinel value
RELAY_ERROR(stringmap_add(sh, sp, label, &t.word_s)); // get word key
// find the previous and next label postings, between which we'll insert this
// posting
posting_list_header* plh = termhash_get_val(th, t);
if(plh == NULL) {
RELAY_ERROR(termhash_put_val(th, t, &blank_plh));
plh = termhash_get_val(th, t);
}
uint32_t next_offset = plh->next_offset;
docid_t last_docid = DOCID_NONE;
uint32_t prev_offset = OFFSET_NONE;
DEBUG("start offset is %u (none is %u)", next_offset, OFFSET_NONE);
while(next_offset != OFFSET_NONE) {
label_posting* lp = wp_segment_label_posting_at(pr, next_offset);
if((last_docid != DOCID_NONE) && (lp->doc_id >= last_docid))
RAISE_ERROR("whistlepig index corruption! lp %u has docid %u but last docid at lp %u was %u", next_offset, lp->doc_id, prev_offset, last_docid);
else
last_docid = lp->doc_id;
DEBUG("got doc id %u next_offset %u at offset %u (looking for doc id %u)", lp->doc_id, lp->next_offset, next_offset, doc_id);
if(lp->doc_id == doc_id) {
DEBUG("already have label '%s' for doc %u; returning", label, doc_id);
return NO_ERROR;
}
else if(lp->doc_id < doc_id) break;
prev_offset = next_offset;
next_offset = lp->next_offset;
}
// find a space for the posting by first checking for a free postings in the
// dead list. the dead list is the list stored under the sentinel term with
// field 0 and word 0.
posting_list_header* dead_plh = termhash_get_val(th, dead_term);
if(dead_plh == NULL) {
RELAY_ERROR(termhash_put_val(th, dead_term, &blank_plh));
dead_plh = termhash_get_val(th, t);
}
uint32_t entry_offset;
uint32_t dead_offset = dead_plh->next_offset;
if(dead_offset == OFFSET_NONE) { // make a new posting
entry_offset = pr->postings_head;
}
else { // we'll use this one; remove it from the linked list
DEBUG("offset from dead list is %u, using it for the new posting!", dead_offset);
entry_offset = dead_plh->next_offset;
dead_plh->next_offset = wp_segment_label_posting_at(pr, dead_offset)->next_offset;
dead_plh->count--;
}
// finally, write the entry to the label postings region
DEBUG("label entry will be at offset %u, prev offset is %u and next offset is %u", entry_offset, prev_offset, next_offset);
label_posting* po = wp_segment_label_posting_at(pr, entry_offset);
po->doc_id = doc_id;
po->next_offset = next_offset;
pr->postings_head += (uint32_t)sizeof(label_posting);
DEBUG("label posting list head now at %u", pr->postings_head);
// really finally, update either the previous offset or the tail pointer
// for this label so that readers can access this posting
plh->count++;
if(prev_offset == OFFSET_NONE) plh->next_offset = entry_offset;
else wp_segment_label_posting_at(pr, prev_offset)->next_offset = entry_offset;
return NO_ERROR;
}
wp_error* wp_segment_remove_label(wp_segment* s, const char* label, docid_t doc_id) {
// TODO move this logic to ensure_fit
int success;
RELAY_ERROR(bump_termhash(s, &success)); // we might add an entry for the dead list
postings_region* pr = MMAP_OBJ(s->labels, postings_region);
stringmap* sh = MMAP_OBJ(s->stringmap, stringmap);
termhash* th = MMAP_OBJ(s->termhash, termhash);
stringpool* sp = MMAP_OBJ(s->stringpool, stringpool);
// construct the term object. term objects for labels have the special
// sentinel field value 0
term t;
t.field_s = 0; // label sentinel value
t.word_s = stringmap_string_to_int(sh, sp, label); // will be -1 if not there
// find the posting and the previous posting in the list, if any
docid_t last_docid = DOCID_NONE;
uint32_t prev_offset = OFFSET_NONE;
posting_list_header* plh = termhash_get_val(th, t);
if(plh == NULL) {
DEBUG("no such label %s", label);
return NO_ERROR;
}
uint32_t offset = plh->next_offset;
label_posting* lp = NULL;
while(offset != OFFSET_NONE) {
lp = wp_segment_label_posting_at(pr, offset);
if((last_docid != DOCID_NONE) && (lp->doc_id >= last_docid)) {
RAISE_ERROR("whistlepig index corruption! lp %u has docid %u but last docid at lp %u was %u", offset, lp->doc_id, prev_offset, last_docid);
}
else {
last_docid = lp->doc_id;
}
if(lp->doc_id < doc_id) offset = OFFSET_NONE; // nasty hack to induce failure
if(lp->doc_id <= doc_id) break;
prev_offset = offset;
offset = lp->next_offset;
}
DEBUG("found label posting for doc %u at offset %u; prev_offset is %u", doc_id, offset, prev_offset);
if(offset == OFFSET_NONE) {
DEBUG("no label %s found for doc %u", label, doc_id);
return NO_ERROR;
}
// we've found the posting; now remove it from the list
if(prev_offset == OFFSET_NONE) plh->next_offset = lp->next_offset;
else wp_segment_label_posting_at(pr, prev_offset)->next_offset = lp->next_offset;
plh->count--;
// now add it to the dead list for later reclamation
posting_list_header* dead_plh = termhash_get_val(th, dead_term);
if(dead_plh == NULL) {
RELAY_ERROR(termhash_put_val(th, dead_term, &blank_plh));
dead_plh = termhash_get_val(th, t);
}
DEBUG("adding dead label posting %u to head of deadlist with next_offset %u", offset, lp->next_offset);
uint32_t dead_offset = dead_plh->next_offset;
lp->next_offset = dead_offset;
dead_plh->next_offset = offset;
return NO_ERROR;
}
wp_error* wp_segment_grab_docid(wp_segment* segment, docid_t* doc_id) {
segment_info* si = MMAP_OBJ(segment->seginfo, segment_info);
*doc_id = ++si->num_docs;
return NO_ERROR;
}
wp_error* wp_segment_dumpinfo(wp_segment* segment, FILE* stream) {
segment_info* si = MMAP_OBJ(segment->seginfo, segment_info);
postings_region* pr = MMAP_OBJ(segment->postings, postings_region);
stringmap* sh = MMAP_OBJ(segment->stringmap, stringmap);
stringpool* sp = MMAP_OBJ(segment->stringpool, stringpool);
termhash* th = MMAP_OBJ(segment->termhash, termhash);
#define p(a, b) 100.0 * (float)a / (float)b
fprintf(stream, "segment has type %u and version %u\n", pr->postings_type_and_flags, si->segment_version);
fprintf(stream, "segment has %u docs and %u postings\n", si->num_docs, pr->num_postings);
fprintf(stream, "postings region is %6ukb at %3.1f%% saturation\n", segment->postings.content->size / 1024, p(pr->postings_head, pr->postings_tail));
fprintf(stream, " string hash is %6ukb at %3.1f%% saturation\n", segment->stringmap.content->size / 1024, p(sh->n_occupied, sh->n_buckets));
fprintf(stream, " stringpool is %6ukb at %3.1f%% saturation\n", segment->stringpool.content->size / 1024, p(sp->next, sp->size));
fprintf(stream, " term hash has %6ukb at %3.1f%% saturation\n", segment->termhash.content->size / 1024, p(th->n_occupied, th->n_buckets));
return NO_ERROR;
}
uint64_t wp_segment_num_docs(wp_segment* seg) {
segment_info* si = MMAP_OBJ(seg->seginfo, segment_info);
return si->num_docs;
}