]> git.sesse.net Git - plocate/blob - database-builder.cpp
Remove unfinished debug code.
[plocate] / database-builder.cpp
1 #include "database-builder.h"
2
3 #include "dprintf.h"
4 #include "turbopfor-encode.h"
5
6 #include <algorithm>
7 #include <assert.h>
8 #include <fcntl.h>
9 #include <string.h>
10 #include <string_view>
11 #include <sys/stat.h>
12 #include <sys/time.h>
13 #include <sys/types.h>
14 #include <zdict.h>
15 #include <zstd.h>
16
17 #define P4NENC_BOUND(n) ((n + 127) / 128 + (n + 32) * sizeof(uint32_t))
18
19 #define NUM_TRIGRAMS 16777216
20
21 using namespace std;
22 using namespace std::chrono;
23
24 constexpr unsigned num_overflow_slots = 16;
25
26 string zstd_compress(const string &src, ZSTD_CDict *cdict, string *tempbuf);
27
28 static inline uint32_t read_unigram(const string_view s, size_t idx)
29 {
30         if (idx < s.size()) {
31                 return (unsigned char)s[idx];
32         } else {
33                 return 0;
34         }
35 }
36
37 static inline uint32_t read_trigram(const string_view s, size_t start)
38 {
39         return read_unigram(s, start) |
40                 (read_unigram(s, start + 1) << 8) |
41                 (read_unigram(s, start + 2) << 16);
42 }
43
44 class PostingListBuilder {
45 public:
46         inline void add_docid(uint32_t docid);
47         void finish();
48
49         string encoded;
50         size_t num_docids = 0;
51
52 private:
53         void write_header(uint32_t docid);
54         void append_block();
55
56         vector<uint32_t> pending_deltas;
57
58         uint32_t last_block_end, last_docid = -1;
59 };
60
61 void PostingListBuilder::add_docid(uint32_t docid)
62 {
63         // Deduplicate against the last inserted value, if any.
64         if (docid == last_docid) {
65                 return;
66         }
67
68         if (num_docids == 0) {
69                 // Very first docid.
70                 write_header(docid);
71                 ++num_docids;
72                 last_block_end = last_docid = docid;
73                 return;
74         }
75
76         pending_deltas.push_back(docid - last_docid - 1);
77         last_docid = docid;
78         if (pending_deltas.size() == 128) {
79                 append_block();
80                 pending_deltas.clear();
81                 last_block_end = docid;
82         }
83         ++num_docids;
84 }
85
86 void PostingListBuilder::finish()
87 {
88         if (pending_deltas.empty()) {
89                 return;
90         }
91
92         assert(!encoded.empty());  // write_header() should already have run.
93
94         // No interleaving for partial blocks.
95         unsigned char buf[P4NENC_BOUND(128)];
96         unsigned char *end = encode_pfor_single_block<128>(pending_deltas.data(), pending_deltas.size(), /*interleaved=*/false, buf);
97         encoded.append(reinterpret_cast<char *>(buf), reinterpret_cast<char *>(end));
98 }
99
100 void PostingListBuilder::append_block()
101 {
102         unsigned char buf[P4NENC_BOUND(128)];
103         assert(pending_deltas.size() == 128);
104         unsigned char *end = encode_pfor_single_block<128>(pending_deltas.data(), 128, /*interleaved=*/true, buf);
105         encoded.append(reinterpret_cast<char *>(buf), reinterpret_cast<char *>(end));
106 }
107
108 void PostingListBuilder::write_header(uint32_t docid)
109 {
110         unsigned char buf[P4NENC_BOUND(1)];
111         unsigned char *end = write_baseval(docid, buf);
112         encoded.append(reinterpret_cast<char *>(buf), end - buf);
113 }
114
115 void DictionaryBuilder::add_file(string filename)
116 {
117         if (keep_current_block) {  // Only bother saving the filenames if we're actually keeping the block.
118                 if (!current_block.empty()) {
119                         current_block.push_back('\0');
120                 }
121                 current_block += filename;
122         }
123         if (++num_files_in_block == block_size) {
124                 flush_block();
125         }
126 }
127
128 void DictionaryBuilder::flush_block()
129 {
130         if (keep_current_block) {
131                 if (slot_for_current_block == -1) {
132                         lengths.push_back(current_block.size());
133                         sampled_blocks.push_back(move(current_block));
134                 } else {
135                         lengths[slot_for_current_block] = current_block.size();
136                         sampled_blocks[slot_for_current_block] = move(current_block);
137                 }
138         }
139         current_block.clear();
140         num_files_in_block = 0;
141         ++block_num;
142
143         if (block_num < blocks_to_keep) {
144                 keep_current_block = true;
145                 slot_for_current_block = -1;
146         } else {
147                 // Keep every block with equal probability (reservoir sampling).
148                 uint64_t idx = uniform_int_distribution<uint64_t>(0, block_num)(reservoir_rand);
149                 keep_current_block = (idx < blocks_to_keep);
150                 slot_for_current_block = idx;
151         }
152 }
153
154 string DictionaryBuilder::train(size_t buf_size)
155 {
156         string dictionary_buf;
157         sort(sampled_blocks.begin(), sampled_blocks.end());  // Seemingly important for decompression speed.
158         for (const string &block : sampled_blocks) {
159                 dictionary_buf += block;
160         }
161
162         string buf;
163         buf.resize(buf_size);
164         size_t ret = ZDICT_trainFromBuffer(&buf[0], buf_size, dictionary_buf.data(), lengths.data(), lengths.size());
165         if (ret == size_t(-1)) {
166                 return "";
167         }
168         dprintf("Sampled %zu bytes in %zu blocks, built a dictionary of size %zu\n", dictionary_buf.size(), lengths.size(), ret);
169         buf.resize(ret);
170
171         sampled_blocks.clear();
172         lengths.clear();
173
174         return buf;
175 }
176
177 Corpus::Corpus(FILE *outfp, size_t block_size, ZSTD_CDict *cdict)
178         : invindex(new PostingListBuilder *[NUM_TRIGRAMS]), outfp(outfp), block_size(block_size), cdict(cdict)
179 {
180         fill(invindex.get(), invindex.get() + NUM_TRIGRAMS, nullptr);
181 }
182
183 Corpus::~Corpus()
184 {
185         for (unsigned i = 0; i < NUM_TRIGRAMS; ++i) {
186                 delete invindex[i];
187         }
188 }
189
190 PostingListBuilder &Corpus::get_pl_builder(uint32_t trgm)
191 {
192         if (invindex[trgm] == nullptr) {
193                 invindex[trgm] = new PostingListBuilder;
194         }
195         return *invindex[trgm];
196 }
197
198 void Corpus::add_file(string filename)
199 {
200         ++num_files;
201         if (!current_block.empty()) {
202                 current_block.push_back('\0');
203         }
204         current_block += filename;
205         if (++num_files_in_block == block_size) {
206                 flush_block();
207         }
208 }
209
210 void Corpus::flush_block()
211 {
212         if (current_block.empty()) {
213                 return;
214         }
215
216         uint32_t docid = num_blocks;
217
218         // Create trigrams.
219         const char *ptr = current_block.c_str();
220         while (ptr < current_block.c_str() + current_block.size()) {
221                 string_view s(ptr);
222                 if (s.size() >= 3) {
223                         for (size_t j = 0; j < s.size() - 2; ++j) {
224                                 uint32_t trgm = read_trigram(s, j);
225                                 get_pl_builder(trgm).add_docid(docid);
226                         }
227                 }
228                 ptr += s.size() + 1;
229         }
230
231         // Compress and add the filename block.
232         filename_blocks.push_back(ftell(outfp));
233         string compressed = zstd_compress(current_block, cdict, &tempbuf);
234         if (fwrite(compressed.data(), compressed.size(), 1, outfp) != 1) {
235                 perror("fwrite()");
236                 exit(1);
237         }
238
239         current_block.clear();
240         num_files_in_block = 0;
241         ++num_blocks;
242 }
243
244 void Corpus::finish()
245 {
246         flush_block();
247 }
248
249 size_t Corpus::num_trigrams() const
250 {
251         size_t num = 0;
252         for (unsigned trgm = 0; trgm < NUM_TRIGRAMS; ++trgm) {
253                 if (invindex[trgm] != nullptr) {
254                         ++num;
255                 }
256         }
257         return num;
258 }
259
260 string zstd_compress(const string &src, ZSTD_CDict *cdict, string *tempbuf)
261 {
262         static ZSTD_CCtx *ctx = nullptr;
263         if (ctx == nullptr) {
264                 ctx = ZSTD_createCCtx();
265         }
266
267         size_t max_size = ZSTD_compressBound(src.size());
268         if (tempbuf->size() < max_size) {
269                 tempbuf->resize(max_size);
270         }
271         size_t size;
272         if (cdict == nullptr) {
273                 size = ZSTD_compressCCtx(ctx, &(*tempbuf)[0], max_size, src.data(), src.size(), /*level=*/6);
274         } else {
275                 size = ZSTD_compress_usingCDict(ctx, &(*tempbuf)[0], max_size, src.data(), src.size(), cdict);
276         }
277         return string(tempbuf->data(), size);
278 }
279
280 bool is_prime(uint32_t x)
281 {
282         if ((x % 2) == 0 || (x % 3) == 0) {
283                 return false;
284         }
285         uint32_t limit = ceil(sqrt(x));
286         for (uint32_t factor = 5; factor <= limit; ++factor) {
287                 if ((x % factor) == 0) {
288                         return false;
289                 }
290         }
291         return true;
292 }
293
294 uint32_t next_prime(uint32_t x)
295 {
296         if ((x % 2) == 0) {
297                 ++x;
298         }
299         while (!is_prime(x)) {
300                 x += 2;
301         }
302         return x;
303 }
304
305 unique_ptr<Trigram[]> create_hashtable(Corpus &corpus, const vector<uint32_t> &all_trigrams, uint32_t ht_size, uint32_t num_overflow_slots)
306 {
307         unique_ptr<Trigram[]> ht(new Trigram[ht_size + num_overflow_slots + 1]);  // 1 for the sentinel element at the end.
308         for (unsigned i = 0; i < ht_size + num_overflow_slots + 1; ++i) {
309                 ht[i].trgm = uint32_t(-1);
310                 ht[i].num_docids = 0;
311                 ht[i].offset = 0;
312         }
313         for (uint32_t trgm : all_trigrams) {
314                 // We don't know offset yet, so set it to zero.
315                 Trigram to_insert{ trgm, uint32_t(corpus.get_pl_builder(trgm).num_docids), 0 };
316
317                 uint32_t bucket = hash_trigram(trgm, ht_size);
318                 unsigned distance = 0;
319                 while (ht[bucket].num_docids != 0) {
320                         // Robin Hood hashing; reduces the longest distance by a lot.
321                         unsigned other_distance = bucket - hash_trigram(ht[bucket].trgm, ht_size);
322                         if (distance > other_distance) {
323                                 swap(to_insert, ht[bucket]);
324                                 distance = other_distance;
325                         }
326
327                         ++bucket, ++distance;
328                         if (distance > num_overflow_slots) {
329                                 return nullptr;
330                         }
331                 }
332                 ht[bucket] = to_insert;
333         }
334         return ht;
335 }
336
337 DatabaseBuilder::DatabaseBuilder(const char *outfile, int block_size, string dictionary)
338         : block_size(block_size)
339 {
340         umask(0027);
341         outfp = fopen(outfile, "wb");
342         if (outfp == nullptr) {
343                 perror(outfile);
344                 exit(1);
345         }
346
347         // Write the header.
348         memcpy(hdr.magic, "\0plocate", 8);
349         hdr.version = -1;  // Mark as broken.
350         hdr.hashtable_size = 0;  // Not known yet.
351         hdr.extra_ht_slots = num_overflow_slots;
352         hdr.num_docids = 0;
353         hdr.hash_table_offset_bytes = -1;  // We don't know these offsets yet.
354         hdr.max_version = 1;
355         hdr.filename_index_offset_bytes = -1;
356         hdr.zstd_dictionary_length_bytes = -1;
357         fwrite(&hdr, sizeof(hdr), 1, outfp);
358
359         if (dictionary.empty()) {
360                 hdr.zstd_dictionary_offset_bytes = 0;
361                 hdr.zstd_dictionary_length_bytes = 0;
362         } else {
363                 hdr.zstd_dictionary_offset_bytes = ftell(outfp);
364                 fwrite(dictionary.data(), dictionary.size(), 1, outfp);
365                 hdr.zstd_dictionary_length_bytes = dictionary.size();
366                 cdict = ZSTD_createCDict(dictionary.data(), dictionary.size(), /*level=*/6);
367         }
368 }
369
370 Corpus *DatabaseBuilder::start_corpus()
371 {
372         corpus_start = steady_clock::now();
373         corpus = new Corpus(outfp, block_size, cdict);
374         return corpus;
375 }
376
377 void DatabaseBuilder::finish_corpus()
378 {
379         corpus->finish();
380         hdr.num_docids = corpus->filename_blocks.size();
381
382         // Stick an empty block at the end as sentinel.
383         corpus->filename_blocks.push_back(ftell(outfp));
384         const size_t bytes_for_filenames = corpus->filename_blocks.back() - corpus->filename_blocks.front();
385
386         // Write the offsets to the filenames.
387         hdr.filename_index_offset_bytes = ftell(outfp);
388         const size_t bytes_for_filename_index = corpus->filename_blocks.size() * sizeof(uint64_t);
389         fwrite(corpus->filename_blocks.data(), corpus->filename_blocks.size(), sizeof(uint64_t), outfp);
390         corpus->filename_blocks.clear();
391         corpus->filename_blocks.shrink_to_fit();
392
393         // Finish up encoding the posting lists.
394         size_t trigrams = 0, longest_posting_list = 0;
395         size_t bytes_for_posting_lists = 0;
396         for (unsigned trgm = 0; trgm < NUM_TRIGRAMS; ++trgm) {
397                 if (!corpus->seen_trigram(trgm))
398                         continue;
399                 PostingListBuilder &pl_builder = corpus->get_pl_builder(trgm);
400                 pl_builder.finish();
401                 longest_posting_list = max(longest_posting_list, pl_builder.num_docids);
402                 trigrams += pl_builder.num_docids;
403                 bytes_for_posting_lists += pl_builder.encoded.size();
404         }
405         size_t num_trigrams = corpus->num_trigrams();
406         dprintf("%zu files, %zu different trigrams, %zu entries, avg len %.2f, longest %zu\n",
407                 corpus->num_files, num_trigrams, trigrams, double(trigrams) / num_trigrams, longest_posting_list);
408         dprintf("%zu bytes used for posting lists (%.2f bits/entry)\n", bytes_for_posting_lists, 8 * bytes_for_posting_lists / double(trigrams));
409
410         dprintf("Building posting lists took %.1f ms.\n\n", 1e3 * duration<float>(steady_clock::now() - corpus_start).count());
411
412         // Find the used trigrams.
413         vector<uint32_t> all_trigrams;
414         for (unsigned trgm = 0; trgm < NUM_TRIGRAMS; ++trgm) {
415                 if (corpus->seen_trigram(trgm)) {
416                         all_trigrams.push_back(trgm);
417                 }
418         }
419
420         // Create the hash table.
421         unique_ptr<Trigram[]> hashtable;
422         uint32_t ht_size = next_prime(all_trigrams.size());
423         for (;;) {
424                 hashtable = create_hashtable(*corpus, all_trigrams, ht_size, num_overflow_slots);
425                 if (hashtable == nullptr) {
426                         dprintf("Failed creating hash table of size %u, increasing by 5%% and trying again.\n", ht_size);
427                         ht_size = next_prime(ht_size * 1.05);
428                 } else {
429                         dprintf("Created hash table of size %u.\n\n", ht_size);
430                         break;
431                 }
432         }
433
434         // Find the offsets for each posting list.
435         size_t bytes_for_hashtable = (ht_size + num_overflow_slots + 1) * sizeof(Trigram);
436         uint64_t offset = ftell(outfp) + bytes_for_hashtable;
437         for (unsigned i = 0; i < ht_size + num_overflow_slots + 1; ++i) {
438                 hashtable[i].offset = offset;  // Needs to be there even for empty slots.
439                 if (hashtable[i].num_docids == 0) {
440                         continue;
441                 }
442
443                 const string &encoded = corpus->get_pl_builder(hashtable[i].trgm).encoded;
444                 offset += encoded.size();
445         }
446
447         // Write the hash table.
448         hdr.hash_table_offset_bytes = ftell(outfp);
449         hdr.hashtable_size = ht_size;
450         fwrite(hashtable.get(), ht_size + num_overflow_slots + 1, sizeof(Trigram), outfp);
451
452         // Write the actual posting lists.
453         for (unsigned i = 0; i < ht_size + num_overflow_slots + 1; ++i) {
454                 if (hashtable[i].num_docids == 0) {
455                         continue;
456                 }
457                 const string &encoded = corpus->get_pl_builder(hashtable[i].trgm).encoded;
458                 fwrite(encoded.data(), encoded.size(), 1, outfp);
459         }
460
461         // Rewind, and write the updated header.
462         hdr.version = 1;
463         fseek(outfp, 0, SEEK_SET);
464         fwrite(&hdr, sizeof(hdr), 1, outfp);
465         fclose(outfp);
466
467         size_t total_bytes = (bytes_for_hashtable + bytes_for_posting_lists + bytes_for_filename_index + bytes_for_filenames);
468
469         dprintf("Block size:     %7d files\n", block_size);
470         dprintf("Dictionary:     %'7.1f MB\n", hdr.zstd_dictionary_length_bytes / 1048576.0);
471         dprintf("Hash table:     %'7.1f MB\n", bytes_for_hashtable / 1048576.0);
472         dprintf("Posting lists:  %'7.1f MB\n", bytes_for_posting_lists / 1048576.0);
473         dprintf("Filename index: %'7.1f MB\n", bytes_for_filename_index / 1048576.0);
474         dprintf("Filenames:      %'7.1f MB\n", bytes_for_filenames / 1048576.0);
475         dprintf("Total:          %'7.1f MB\n", total_bytes / 1048576.0);
476         dprintf("\n");
477 }