2020-10-25 21:49:04 +08:00
|
|
|
use std::borrow::Cow;
|
2020-10-30 17:56:35 +08:00
|
|
|
use std::path::Path;
|
2020-10-25 21:49:04 +08:00
|
|
|
|
2020-10-21 21:55:48 +08:00
|
|
|
use anyhow::Context;
|
|
|
|
use heed::types::*;
|
2020-11-02 18:48:33 +08:00
|
|
|
use heed::{PolyDatabase, Database, RwTxn, RoTxn};
|
2020-10-21 21:55:48 +08:00
|
|
|
use roaring::RoaringBitmap;
|
|
|
|
|
|
|
|
use crate::Search;
|
|
|
|
use crate::{BEU32, DocumentId};
|
2020-10-22 20:23:33 +08:00
|
|
|
use crate::fields_ids_map::FieldsIdsMap;
|
2020-10-21 21:55:48 +08:00
|
|
|
use crate::{
|
|
|
|
RoaringBitmapCodec, BEU32StrCodec, StrStrU8Codec, ObkvCodec,
|
2020-10-22 20:23:33 +08:00
|
|
|
BoRoaringBitmapCodec, CboRoaringBitmapCodec,
|
2020-10-21 21:55:48 +08:00
|
|
|
};
|
|
|
|
|
2020-11-02 18:45:16 +08:00
|
|
|
pub const DISPLAYED_FIELDS_KEY: &str = "displayed-fields";
|
2020-10-21 21:55:48 +08:00
|
|
|
pub const DOCUMENTS_IDS_KEY: &str = "documents-ids";
|
2020-10-31 18:28:48 +08:00
|
|
|
pub const FIELDS_IDS_MAP_KEY: &str = "fields-ids-map";
|
|
|
|
pub const PRIMARY_KEY_KEY: &str = "primary-key";
|
2020-10-24 22:23:08 +08:00
|
|
|
pub const USERS_IDS_DOCUMENTS_IDS_KEY: &str = "users-ids-documents-ids";
|
2020-10-31 18:28:48 +08:00
|
|
|
pub const WORDS_FST_KEY: &str = "words-fst";
|
2020-10-21 21:55:48 +08:00
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct Index {
|
2020-10-30 17:56:35 +08:00
|
|
|
/// The LMDB environment which this index is associated with.
|
|
|
|
pub env: heed::Env,
|
2020-10-22 20:23:33 +08:00
|
|
|
/// Contains many different types (e.g. the fields ids map).
|
2020-10-21 21:55:48 +08:00
|
|
|
pub main: PolyDatabase,
|
|
|
|
/// 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.
|
|
|
|
pub docid_word_positions: Database<BEU32StrCodec, BoRoaringBitmapCodec>,
|
|
|
|
/// Maps the proximity between a pair of words with all the docids where this relation appears.
|
|
|
|
pub word_pair_proximity_docids: Database<StrStrU8Codec, CboRoaringBitmapCodec>,
|
2020-10-22 20:23:33 +08:00
|
|
|
/// Maps the document id to the document as an obkv store.
|
2020-10-22 00:26:29 +08:00
|
|
|
pub documents: Database<OwnedType<BEU32>, ObkvCodec>,
|
2020-10-21 21:55:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Index {
|
2020-10-30 17:56:35 +08:00
|
|
|
pub fn new<P: AsRef<Path>>(mut options: heed::EnvOpenOptions, path: P) -> anyhow::Result<Index> {
|
|
|
|
options.max_dbs(5);
|
|
|
|
|
|
|
|
let env = options.open(path)?;
|
|
|
|
let main = env.create_poly_database(Some("main"))?;
|
|
|
|
let word_docids = env.create_database(Some("word-docids"))?;
|
|
|
|
let docid_word_positions = env.create_database(Some("docid-word-positions"))?;
|
|
|
|
let word_pair_proximity_docids = env.create_database(Some("word-pair-proximity-docids"))?;
|
|
|
|
let documents = env.create_database(Some("documents"))?;
|
|
|
|
|
|
|
|
Ok(Index { env, main, word_docids, docid_word_positions, word_pair_proximity_docids, documents })
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a write transaction to be able to write into the index.
|
2020-11-02 18:48:33 +08:00
|
|
|
pub fn write_txn(&self) -> heed::Result<RwTxn> {
|
2020-10-30 17:56:35 +08:00
|
|
|
self.env.write_txn()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a read transaction to be able to read the index.
|
2020-11-02 18:48:33 +08:00
|
|
|
pub fn read_txn(&self) -> heed::Result<RoTxn> {
|
2020-10-30 17:56:35 +08:00
|
|
|
self.env.read_txn()
|
2020-10-21 21:55:48 +08:00
|
|
|
}
|
|
|
|
|
2020-10-30 18:46:00 +08:00
|
|
|
/// Returns the canonicalized path where the heed `Env` of this `Index` lives.
|
|
|
|
pub fn path(&self) -> &Path {
|
|
|
|
self.env.path()
|
|
|
|
}
|
|
|
|
|
2020-10-30 18:46:14 +08:00
|
|
|
/// Returns an `EnvClosingEvent` that can be used to wait for the closing event,
|
|
|
|
/// multiple threads can wait on this event.
|
|
|
|
///
|
|
|
|
/// Make sure that you drop all the copies of `Index`es you have, env closing are triggered
|
|
|
|
/// when all references are dropped, the last one will eventually close the environment.
|
|
|
|
pub fn prepare_for_closing(self) -> heed::EnvClosingEvent {
|
|
|
|
self.env.prepare_for_closing()
|
|
|
|
}
|
|
|
|
|
2020-11-02 18:48:33 +08:00
|
|
|
/* documents ids */
|
|
|
|
|
2020-10-22 21:33:09 +08:00
|
|
|
/// Writes the documents ids that corresponds to the user-ids-documents-ids FST.
|
2020-11-02 18:48:33 +08:00
|
|
|
pub fn put_documents_ids(&self, wtxn: &mut RwTxn, docids: &RoaringBitmap) -> heed::Result<()> {
|
2020-10-22 21:33:09 +08:00
|
|
|
self.main.put::<_, Str, RoaringBitmapCodec>(wtxn, DOCUMENTS_IDS_KEY, docids)
|
2020-10-21 21:55:48 +08:00
|
|
|
}
|
|
|
|
|
2020-10-22 21:33:09 +08:00
|
|
|
/// Returns the internal documents ids.
|
2020-11-02 18:48:33 +08:00
|
|
|
pub fn documents_ids(&self, rtxn: &RoTxn) -> heed::Result<RoaringBitmap> {
|
2020-10-25 21:49:04 +08:00
|
|
|
Ok(self.main.get::<_, Str, RoaringBitmapCodec>(rtxn, DOCUMENTS_IDS_KEY)?.unwrap_or_default())
|
2020-10-21 21:55:48 +08:00
|
|
|
}
|
|
|
|
|
2020-11-02 18:48:33 +08:00
|
|
|
/* primary key */
|
|
|
|
|
2020-10-31 18:28:48 +08:00
|
|
|
/// Writes the documents primary key, this is the field name that is used to store the id.
|
2020-11-02 18:48:33 +08:00
|
|
|
pub fn put_primary_key(&self, wtxn: &mut RwTxn, primary_key: u8) -> heed::Result<()> {
|
2020-10-31 18:28:48 +08:00
|
|
|
self.main.put::<_, Str, OwnedType<u8>>(wtxn, PRIMARY_KEY_KEY, &primary_key)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Delete the primary key of the documents, this can be done to reset indexes settings.
|
2020-11-02 18:48:33 +08:00
|
|
|
pub fn delete_primary_key(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
2020-10-31 18:28:48 +08:00
|
|
|
self.main.delete::<_, Str>(wtxn, PRIMARY_KEY_KEY)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the documents primary key, `None` if it hasn't been defined.
|
2020-11-02 18:48:33 +08:00
|
|
|
pub fn primary_key(&self, rtxn: &RoTxn) -> heed::Result<Option<u8>> {
|
2020-10-31 18:28:48 +08:00
|
|
|
self.main.get::<_, Str, OwnedType<u8>>(rtxn, PRIMARY_KEY_KEY)
|
|
|
|
}
|
|
|
|
|
2020-11-02 18:48:33 +08:00
|
|
|
/* users ids documents ids */
|
|
|
|
|
2020-10-24 22:23:08 +08:00
|
|
|
/// Writes the users ids documents ids, a user id is a byte slice (i.e. `[u8]`)
|
2020-10-22 21:33:09 +08:00
|
|
|
/// and refers to an internal id (i.e. `u32`).
|
2020-11-02 18:48:33 +08:00
|
|
|
pub fn put_users_ids_documents_ids<A: AsRef<[u8]>>(&self, wtxn: &mut RwTxn, fst: &fst::Map<A>) -> heed::Result<()> {
|
2020-10-24 22:23:08 +08:00
|
|
|
self.main.put::<_, Str, ByteSlice>(wtxn, USERS_IDS_DOCUMENTS_IDS_KEY, fst.as_fst().as_bytes())
|
2020-10-21 21:55:48 +08:00
|
|
|
}
|
|
|
|
|
2020-10-22 21:33:09 +08:00
|
|
|
/// Returns the user ids documents ids map which associate the user ids (i.e. `[u8]`)
|
|
|
|
/// with the internal ids (i.e. `u32`).
|
2020-11-02 18:48:33 +08:00
|
|
|
pub fn users_ids_documents_ids<'t>(&self, rtxn: &'t RoTxn) -> anyhow::Result<fst::Map<Cow<'t, [u8]>>> {
|
2020-10-24 22:23:08 +08:00
|
|
|
match self.main.get::<_, Str, ByteSlice>(rtxn, USERS_IDS_DOCUMENTS_IDS_KEY)? {
|
2020-10-25 21:49:04 +08:00
|
|
|
Some(bytes) => Ok(fst::Map::new(bytes)?.map_data(Cow::Borrowed)?),
|
|
|
|
None => Ok(fst::Map::default().map_data(Cow::Owned)?),
|
2020-10-21 21:55:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-02 18:48:33 +08:00
|
|
|
/* fields ids map */
|
|
|
|
|
2020-10-22 21:33:09 +08:00
|
|
|
/// Writes the fields ids map which associate the documents keys with an internal field id
|
|
|
|
/// (i.e. `u8`), this field id is used to identify fields in the obkv documents.
|
2020-11-02 18:48:33 +08:00
|
|
|
pub fn put_fields_ids_map(&self, wtxn: &mut RwTxn, map: &FieldsIdsMap) -> heed::Result<()> {
|
2020-10-22 21:33:09 +08:00
|
|
|
self.main.put::<_, Str, SerdeJson<FieldsIdsMap>>(wtxn, FIELDS_IDS_MAP_KEY, map)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the fields ids map which associate the documents keys with an internal field id
|
|
|
|
/// (i.e. `u8`), this field id is used to identify fields in the obkv documents.
|
2020-11-02 18:48:33 +08:00
|
|
|
pub fn fields_ids_map(&self, rtxn: &RoTxn) -> heed::Result<FieldsIdsMap> {
|
2020-10-25 21:49:04 +08:00
|
|
|
Ok(self.main.get::<_, Str, SerdeJson<FieldsIdsMap>>(rtxn, FIELDS_IDS_MAP_KEY)?.unwrap_or_default())
|
2020-10-22 21:33:09 +08:00
|
|
|
}
|
|
|
|
|
2020-11-02 18:48:33 +08:00
|
|
|
/* displayed fields */
|
|
|
|
|
2020-11-02 18:45:16 +08:00
|
|
|
/// Writes the fields ids that must be displayed in the defined order.
|
|
|
|
/// There must be not be any duplicate field id.
|
2020-11-02 18:48:33 +08:00
|
|
|
pub fn put_displayed_fields(&self, wtxn: &mut RwTxn, fields: &[u8]) -> heed::Result<()> {
|
2020-11-02 18:45:16 +08:00
|
|
|
self.main.put::<_, Str, ByteSlice>(wtxn, DISPLAYED_FIELDS_KEY, fields)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Deletes the displayed fields ids, this will make the engine to display
|
|
|
|
/// all the documents attributes in the order of the `FieldsIdsMap`.
|
2020-11-02 18:48:33 +08:00
|
|
|
pub fn delete_displayed_fields(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
2020-11-02 18:45:16 +08:00
|
|
|
self.main.delete::<_, Str>(wtxn, DISPLAYED_FIELDS_KEY)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the displayed fields ids in the order they must be returned. If it returns
|
|
|
|
/// `None` it means that all the attributes are displayed in the order of the `FieldsIdsMap`.
|
2020-11-02 18:48:33 +08:00
|
|
|
pub fn displayed_fields<'t>(&self, rtxn: &'t RoTxn) -> heed::Result<Option<&'t [u8]>> {
|
2020-11-02 18:45:16 +08:00
|
|
|
self.main.get::<_, Str, ByteSlice>(rtxn, DISPLAYED_FIELDS_KEY)
|
|
|
|
}
|
|
|
|
|
2020-11-02 18:48:33 +08:00
|
|
|
/* words fst */
|
|
|
|
|
2020-10-22 21:33:09 +08:00
|
|
|
/// Writes the FST which is the words dictionnary of the engine.
|
2020-11-02 18:48:33 +08:00
|
|
|
pub fn put_words_fst<A: AsRef<[u8]>>(&self, wtxn: &mut RwTxn, fst: &fst::Set<A>) -> heed::Result<()> {
|
2020-10-22 21:33:09 +08:00
|
|
|
self.main.put::<_, Str, ByteSlice>(wtxn, WORDS_FST_KEY, fst.as_fst().as_bytes())
|
2020-10-21 21:55:48 +08:00
|
|
|
}
|
|
|
|
|
2020-10-22 21:33:09 +08:00
|
|
|
/// Returns the FST which is the words dictionnary of the engine.
|
2020-11-02 18:48:33 +08:00
|
|
|
pub fn words_fst<'t>(&self, rtxn: &'t RoTxn) -> anyhow::Result<fst::Set<Cow<'t, [u8]>>> {
|
2020-10-21 21:55:48 +08:00
|
|
|
match self.main.get::<_, Str, ByteSlice>(rtxn, WORDS_FST_KEY)? {
|
2020-10-25 21:49:04 +08:00
|
|
|
Some(bytes) => Ok(fst::Set::new(bytes)?.map_data(Cow::Borrowed)?),
|
|
|
|
None => Ok(fst::Set::default().map_data(Cow::Owned)?),
|
2020-10-21 21:55:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns a [`Vec`] of the requested documents. Returns an error if a document is missing.
|
|
|
|
pub fn documents<'t>(
|
|
|
|
&self,
|
2020-11-02 18:48:33 +08:00
|
|
|
rtxn: &'t RoTxn,
|
2020-10-22 00:26:29 +08:00
|
|
|
ids: impl IntoIterator<Item=DocumentId>,
|
|
|
|
) -> anyhow::Result<Vec<(DocumentId, obkv::KvReader<'t>)>>
|
2020-10-21 21:55:48 +08:00
|
|
|
{
|
2020-10-22 00:26:29 +08:00
|
|
|
let mut documents = Vec::new();
|
2020-10-21 21:55:48 +08:00
|
|
|
|
2020-10-22 00:26:29 +08:00
|
|
|
for id in ids {
|
|
|
|
let kv = self.documents.get(rtxn, &BEU32::new(id))?
|
2020-10-21 21:55:48 +08:00
|
|
|
.with_context(|| format!("Could not find document {}", id))?;
|
2020-10-22 00:26:29 +08:00
|
|
|
documents.push((id, kv));
|
2020-10-21 21:55:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(documents)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the number of documents indexed in the database.
|
2020-11-02 18:48:33 +08:00
|
|
|
pub fn number_of_documents(&self, rtxn: &RoTxn) -> anyhow::Result<usize> {
|
2020-10-25 21:49:04 +08:00
|
|
|
Ok(self.documents_ids(rtxn).map(|docids| docids.len() as usize)?)
|
2020-10-21 21:55:48 +08:00
|
|
|
}
|
|
|
|
|
2020-11-02 18:48:33 +08:00
|
|
|
pub fn search<'a>(&'a self, rtxn: &'a RoTxn) -> Search<'a> {
|
2020-10-21 21:55:48 +08:00
|
|
|
Search::new(rtxn, self)
|
|
|
|
}
|
|
|
|
}
|