2021-03-25 11:10:12 +01:00
|
|
|
use std::str;
|
|
|
|
|
|
|
|
use fst::Streamer;
|
|
|
|
use grenad::CompressionType;
|
|
|
|
use heed::types::ByteSlice;
|
|
|
|
|
2021-06-09 12:17:11 +02:00
|
|
|
use crate::update::index_documents::{
|
2021-08-16 13:36:30 +02:00
|
|
|
create_sorter, merge_roaring_bitmaps, sorter_into_lmdb_database, WriteMethod,
|
2021-06-09 12:17:11 +02:00
|
|
|
};
|
2021-06-16 18:33:33 +02:00
|
|
|
use crate::{Index, Result};
|
2021-03-25 11:10:12 +01:00
|
|
|
|
|
|
|
pub struct WordPrefixDocids<'t, 'u, 'i> {
|
|
|
|
wtxn: &'t mut heed::RwTxn<'i, 'u>,
|
|
|
|
index: &'i Index,
|
|
|
|
pub(crate) chunk_compression_type: CompressionType,
|
|
|
|
pub(crate) chunk_compression_level: Option<u32>,
|
|
|
|
pub(crate) max_nb_chunks: Option<usize>,
|
|
|
|
pub(crate) max_memory: Option<usize>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'t, 'u, 'i> WordPrefixDocids<'t, 'u, 'i> {
|
2021-06-16 18:33:33 +02:00
|
|
|
pub fn new(
|
|
|
|
wtxn: &'t mut heed::RwTxn<'i, 'u>,
|
|
|
|
index: &'i Index,
|
|
|
|
) -> WordPrefixDocids<'t, 'u, 'i> {
|
2021-03-25 11:10:12 +01:00
|
|
|
WordPrefixDocids {
|
|
|
|
wtxn,
|
|
|
|
index,
|
|
|
|
chunk_compression_type: CompressionType::None,
|
|
|
|
chunk_compression_level: None,
|
|
|
|
max_nb_chunks: None,
|
|
|
|
max_memory: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-24 13:55:53 +02:00
|
|
|
#[logging_timer::time("WordPrefixDocids::{}")]
|
2021-06-14 16:46:19 +02:00
|
|
|
pub fn execute(self) -> Result<()> {
|
2021-03-25 11:10:12 +01:00
|
|
|
// Clear the word prefix docids database.
|
|
|
|
self.index.word_prefix_docids.clear(self.wtxn)?;
|
|
|
|
|
|
|
|
let prefix_fst = self.index.words_prefixes_fst(self.wtxn)?;
|
|
|
|
|
|
|
|
// It is forbidden to keep a mutable reference into the database
|
|
|
|
// and write into it at the same time, therefore we write into another file.
|
|
|
|
let mut prefix_docids_sorter = create_sorter(
|
2021-08-16 13:36:30 +02:00
|
|
|
merge_roaring_bitmaps,
|
2021-03-25 11:10:12 +01:00
|
|
|
self.chunk_compression_type,
|
|
|
|
self.chunk_compression_level,
|
|
|
|
self.max_nb_chunks,
|
|
|
|
self.max_memory,
|
|
|
|
);
|
|
|
|
|
|
|
|
// We iterate over all the prefixes and retrieve the corresponding docids.
|
|
|
|
let mut prefix_stream = prefix_fst.stream();
|
|
|
|
while let Some(bytes) = prefix_stream.next() {
|
|
|
|
let prefix = str::from_utf8(bytes)?;
|
|
|
|
let db = self.index.word_docids.remap_data_type::<ByteSlice>();
|
|
|
|
for result in db.prefix_iter(self.wtxn, prefix)? {
|
|
|
|
let (_word, data) = result?;
|
|
|
|
prefix_docids_sorter.insert(prefix, data)?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
drop(prefix_fst);
|
|
|
|
|
|
|
|
// We finally write the word prefix docids into the LMDB database.
|
|
|
|
sorter_into_lmdb_database(
|
|
|
|
self.wtxn,
|
|
|
|
*self.index.word_prefix_docids.as_polymorph(),
|
|
|
|
prefix_docids_sorter,
|
2021-08-16 13:36:30 +02:00
|
|
|
merge_roaring_bitmaps,
|
2021-03-25 11:10:12 +01:00
|
|
|
WriteMethod::Append,
|
|
|
|
)?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|