2020-08-12 16:43:02 +08:00
|
|
|
mod criterion;
|
2020-10-01 22:28:49 +08:00
|
|
|
mod mdfs;
|
2020-06-05 15:48:46 +08:00
|
|
|
mod query_tokens;
|
2020-08-13 20:15:05 +08:00
|
|
|
mod search;
|
2020-10-18 21:16:57 +08:00
|
|
|
mod update_store;
|
2020-08-28 20:16:37 +08:00
|
|
|
pub mod heed_codec;
|
2020-09-22 16:53:20 +08:00
|
|
|
pub mod proximity;
|
2020-08-31 03:50:30 +08:00
|
|
|
pub mod tokenizer;
|
2020-06-05 02:25:51 +08:00
|
|
|
|
2020-08-13 20:15:05 +08:00
|
|
|
use std::collections::HashMap;
|
2020-05-31 22:09:34 +08:00
|
|
|
use std::hash::BuildHasherDefault;
|
|
|
|
|
2020-08-29 21:14:04 +08:00
|
|
|
use anyhow::Context;
|
2020-08-31 20:20:42 +08:00
|
|
|
use csv::StringRecord;
|
2020-06-30 04:25:59 +08:00
|
|
|
use fxhash::{FxHasher32, FxHasher64};
|
2020-05-31 23:48:13 +08:00
|
|
|
use heed::types::*;
|
|
|
|
use heed::{PolyDatabase, Database};
|
2020-10-06 20:52:05 +08:00
|
|
|
use roaring::RoaringBitmap;
|
2020-06-05 02:25:51 +08:00
|
|
|
|
2020-08-13 20:15:05 +08:00
|
|
|
pub use self::search::{Search, SearchResult};
|
|
|
|
pub use self::criterion::{Criterion, default_criteria};
|
2020-09-07 21:42:20 +08:00
|
|
|
pub use self::heed_codec::{
|
2020-09-22 20:04:33 +08:00
|
|
|
RoaringBitmapCodec, BEU32StrCodec, StrStrU8Codec,
|
2020-10-01 17:14:26 +08:00
|
|
|
CsvStringRecordCodec, BoRoaringBitmapCodec, CboRoaringBitmapCodec,
|
2020-09-07 21:42:20 +08:00
|
|
|
};
|
2020-05-31 22:09:34 +08:00
|
|
|
|
|
|
|
pub type FastMap4<K, V> = HashMap<K, V, BuildHasherDefault<FxHasher32>>;
|
2020-06-30 04:25:59 +08:00
|
|
|
pub type FastMap8<K, V> = HashMap<K, V, BuildHasherDefault<FxHasher64>>;
|
2020-05-31 22:09:34 +08:00
|
|
|
pub type SmallString32 = smallstr::SmallString<[u8; 32]>;
|
2020-06-11 17:55:03 +08:00
|
|
|
pub type SmallVec32<T> = smallvec::SmallVec<[T; 32]>;
|
|
|
|
pub type SmallVec16<T> = smallvec::SmallVec<[T; 16]>;
|
2020-05-31 22:09:34 +08:00
|
|
|
pub type BEU32 = heed::zerocopy::U32<heed::byteorder::BE>;
|
2020-10-18 21:16:57 +08:00
|
|
|
pub type BEU64 = heed::zerocopy::U64<heed::byteorder::BE>;
|
2020-05-31 22:09:34 +08:00
|
|
|
pub type DocumentId = u32;
|
2020-08-06 17:08:24 +08:00
|
|
|
pub type Attribute = u32;
|
2020-07-07 18:21:22 +08:00
|
|
|
pub type Position = u32;
|
2020-05-31 22:09:34 +08:00
|
|
|
|
2020-10-04 19:17:58 +08:00
|
|
|
pub const WORDS_FST_KEY: &str = "words-fst";
|
|
|
|
pub const HEADERS_KEY: &str = "headers";
|
|
|
|
pub const DOCUMENTS_IDS_KEY: &str = "documents-ids";
|
2020-08-28 21:38:05 +08:00
|
|
|
|
2020-05-31 23:48:13 +08:00
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct Index {
|
2020-06-23 00:02:22 +08:00
|
|
|
/// Contains many different types (e.g. the documents CSV headers).
|
2020-05-31 23:48:13 +08:00
|
|
|
pub main: PolyDatabase,
|
2020-09-06 00:03:06 +08:00
|
|
|
/// A word and all the documents ids containing the word.
|
|
|
|
pub word_docids: Database<Str, RoaringBitmapCodec>,
|
|
|
|
/// Maps a word and a document id (u32) to all the positions where the given word appears.
|
2020-10-01 16:58:19 +08:00
|
|
|
pub docid_word_positions: Database<BEU32StrCodec, BoRoaringBitmapCodec>,
|
2020-09-22 20:04:33 +08:00
|
|
|
/// Maps the proximity between a pair of words with all the docids where this relation appears.
|
2020-10-01 17:14:26 +08:00
|
|
|
pub word_pair_proximity_docids: Database<StrStrU8Codec, CboRoaringBitmapCodec>,
|
2020-10-02 22:46:05 +08:00
|
|
|
/// Maps the document id to the document as a CSV line.
|
|
|
|
pub documents: Database<OwnedType<BEU32>, ByteSlice>,
|
2020-05-31 23:48:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Index {
|
2020-08-28 21:38:05 +08:00
|
|
|
pub fn new(env: &heed::Env) -> anyhow::Result<Index> {
|
2020-06-23 00:02:22 +08:00
|
|
|
Ok(Index {
|
2020-10-04 19:17:58 +08:00
|
|
|
main: env.create_poly_database(Some("main"))?,
|
2020-09-06 00:03:06 +08:00
|
|
|
word_docids: env.create_database(Some("word-docids"))?,
|
2020-09-06 16:30:53 +08:00
|
|
|
docid_word_positions: env.create_database(Some("docid-word-positions"))?,
|
2020-09-22 20:04:33 +08:00
|
|
|
word_pair_proximity_docids: env.create_database(Some("word-pair-proximity-docids"))?,
|
2020-10-02 22:46:05 +08:00
|
|
|
documents: env.create_database(Some("documents"))?,
|
2020-06-23 00:02:22 +08:00
|
|
|
})
|
2020-05-31 23:48:13 +08:00
|
|
|
}
|
|
|
|
|
2020-10-06 20:52:05 +08:00
|
|
|
pub fn documents_ids(&self, rtxn: &heed::RoTxn) -> anyhow::Result<Option<RoaringBitmap>> {
|
|
|
|
Ok(self.main.get::<_, Str, RoaringBitmapCodec>(rtxn, DOCUMENTS_IDS_KEY)?)
|
|
|
|
}
|
|
|
|
|
2020-08-31 20:20:42 +08:00
|
|
|
pub fn put_headers(&self, wtxn: &mut heed::RwTxn, headers: &StringRecord) -> heed::Result<()> {
|
|
|
|
self.main.put::<_, Str, CsvStringRecordCodec>(wtxn, HEADERS_KEY, headers)
|
2020-06-29 19:54:47 +08:00
|
|
|
}
|
|
|
|
|
2020-08-31 20:20:42 +08:00
|
|
|
pub fn headers(&self, rtxn: &heed::RoTxn) -> heed::Result<Option<StringRecord>> {
|
|
|
|
self.main.get::<_, Str, CsvStringRecordCodec>(rtxn, HEADERS_KEY)
|
2020-05-31 23:48:13 +08:00
|
|
|
}
|
|
|
|
|
2020-08-31 20:20:42 +08:00
|
|
|
pub fn number_of_attributes(&self, rtxn: &heed::RoTxn) -> anyhow::Result<Option<usize>> {
|
2020-07-13 23:50:16 +08:00
|
|
|
match self.headers(rtxn)? {
|
2020-08-31 20:20:42 +08:00
|
|
|
Some(headers) => Ok(Some(headers.len())),
|
2020-07-13 23:50:16 +08:00
|
|
|
None => Ok(None),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-29 19:54:47 +08:00
|
|
|
pub fn put_fst<A: AsRef<[u8]>>(&self, wtxn: &mut heed::RwTxn, fst: &fst::Set<A>) -> anyhow::Result<()> {
|
2020-08-28 21:38:05 +08:00
|
|
|
Ok(self.main.put::<_, Str, ByteSlice>(wtxn, WORDS_FST_KEY, fst.as_fst().as_bytes())?)
|
2020-06-29 19:54:47 +08:00
|
|
|
}
|
|
|
|
|
2020-06-23 01:04:10 +08:00
|
|
|
pub fn fst<'t>(&self, rtxn: &'t heed::RoTxn) -> anyhow::Result<Option<fst::Set<&'t [u8]>>> {
|
2020-08-28 21:38:05 +08:00
|
|
|
match self.main.get::<_, Str, ByteSlice>(rtxn, WORDS_FST_KEY)? {
|
2020-06-23 01:04:10 +08:00
|
|
|
Some(bytes) => Ok(Some(fst::Set::new(bytes)?)),
|
|
|
|
None => Ok(None),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-10 19:47:19 +08:00
|
|
|
/// Returns a [`Vec`] of the requested documents. Returns an error if a document is missing.
|
2020-08-28 21:38:05 +08:00
|
|
|
pub fn documents<'t>(
|
|
|
|
&self,
|
|
|
|
rtxn: &'t heed::RoTxn,
|
|
|
|
iter: impl IntoIterator<Item=DocumentId>,
|
2020-08-31 20:20:42 +08:00
|
|
|
) -> anyhow::Result<Vec<(DocumentId, StringRecord)>>
|
2020-08-28 21:38:05 +08:00
|
|
|
{
|
2020-08-31 20:20:42 +08:00
|
|
|
let ids: Vec<_> = iter.into_iter().collect();
|
|
|
|
let mut content = Vec::new();
|
|
|
|
|
|
|
|
for id in ids.iter().cloned() {
|
|
|
|
let document_content = self.documents.get(rtxn, &BEU32::new(id))?
|
2020-08-29 21:14:04 +08:00
|
|
|
.with_context(|| format!("Could not find document {}", id))?;
|
2020-08-31 20:20:42 +08:00
|
|
|
content.extend_from_slice(document_content);
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut rdr = csv::ReaderBuilder::new().has_headers(false).from_reader(&content[..]);
|
|
|
|
|
|
|
|
let mut documents = Vec::with_capacity(ids.len());
|
|
|
|
for (id, result) in ids.into_iter().zip(rdr.records()) {
|
|
|
|
documents.push((id, result?));
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(documents)
|
2020-08-10 19:47:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the number of documents indexed in the database.
|
2020-10-06 20:52:05 +08:00
|
|
|
pub fn number_of_documents(&self, rtxn: &heed::RoTxn) -> anyhow::Result<usize> {
|
|
|
|
match self.documents_ids(rtxn)? {
|
|
|
|
Some(docids) => Ok(docids.len() as usize),
|
|
|
|
None => Ok(0),
|
|
|
|
}
|
2020-08-10 19:47:19 +08:00
|
|
|
}
|
|
|
|
|
2020-08-13 20:15:05 +08:00
|
|
|
pub fn search<'a>(&'a self, rtxn: &'a heed::RoTxn) -> Search<'a> {
|
|
|
|
Search::new(rtxn, self)
|
2020-05-31 23:48:13 +08:00
|
|
|
}
|
|
|
|
}
|