2020-10-25 14:49:04 +01:00
|
|
|
use std::borrow::Cow;
|
2021-04-28 17:58:16 +02:00
|
|
|
use std::collections::{HashMap, HashSet};
|
2020-10-30 10:56:35 +01:00
|
|
|
use std::path::Path;
|
2020-10-25 14:49:04 +01:00
|
|
|
|
2020-10-21 15:55:48 +02:00
|
|
|
use anyhow::Context;
|
2021-04-07 10:53:57 +02:00
|
|
|
use chrono::{DateTime, Utc};
|
|
|
|
use heed::{Database, PolyDatabase, RoTxn, RwTxn};
|
2020-10-21 15:55:48 +02:00
|
|
|
use heed::types::*;
|
|
|
|
use roaring::RoaringBitmap;
|
|
|
|
|
2021-04-07 10:53:57 +02:00
|
|
|
use crate::{Criterion, default_criteria, FacetDistribution, FieldsDistribution, Search};
|
|
|
|
use crate::{BEU32, DocumentId, ExternalDocumentsIds, FieldId};
|
2020-10-21 15:55:48 +02:00
|
|
|
use crate::{
|
2021-04-07 10:53:57 +02:00
|
|
|
BEU32StrCodec, BoRoaringBitmapCodec, CboRoaringBitmapCodec,
|
2021-03-11 17:24:35 +01:00
|
|
|
ObkvCodec, RoaringBitmapCodec, RoaringBitmapLenCodec, StrLevelPositionCodec, StrStrU8Codec,
|
2021-05-27 15:27:41 +02:00
|
|
|
FieldIdWordCountCodec,
|
2020-10-21 15:55:48 +02:00
|
|
|
};
|
2021-04-21 11:49:26 +02:00
|
|
|
use crate::heed_codec::facet::{
|
|
|
|
FieldDocIdFacetF64Codec, FieldDocIdFacetStringCodec,
|
|
|
|
FacetValueStringCodec, FacetLevelValueF64Codec,
|
|
|
|
};
|
2021-04-07 10:53:57 +02:00
|
|
|
use crate::fields_ids_map::FieldsIdsMap;
|
2020-10-21 15:55:48 +02:00
|
|
|
|
2020-11-27 12:14:56 +01:00
|
|
|
pub const CRITERIA_KEY: &str = "criteria";
|
2020-11-02 11:45:16 +01:00
|
|
|
pub const DISPLAYED_FIELDS_KEY: &str = "displayed-fields";
|
2021-04-07 12:38:48 +02:00
|
|
|
pub const DISTINCT_ATTRIBUTE_KEY: &str = "distinct-attribute-key";
|
2020-10-21 15:55:48 +02:00
|
|
|
pub const DOCUMENTS_IDS_KEY: &str = "documents-ids";
|
2021-06-01 12:19:55 +02:00
|
|
|
pub const FILTERABLE_FIELDS_KEY: &str = "filterable-fields";
|
2021-03-31 17:14:23 +02:00
|
|
|
pub const FIELDS_DISTRIBUTION_KEY: &str = "fields-distribution";
|
2021-04-28 17:58:16 +02:00
|
|
|
pub const FIELDS_IDS_MAP_KEY: &str = "fields-ids-map";
|
|
|
|
pub const HARD_EXTERNAL_DOCUMENTS_IDS_KEY: &str = "hard-external-documents-ids";
|
|
|
|
pub const NUMBER_FACETED_DOCUMENTS_IDS_PREFIX: &str = "number-faceted-documents-ids";
|
2020-10-31 11:28:48 +01:00
|
|
|
pub const PRIMARY_KEY_KEY: &str = "primary-key";
|
2020-11-01 17:52:04 +01:00
|
|
|
pub const SEARCHABLE_FIELDS_KEY: &str = "searchable-fields";
|
2020-11-22 17:28:41 +01:00
|
|
|
pub const SOFT_EXTERNAL_DOCUMENTS_IDS_KEY: &str = "soft-external-documents-ids";
|
2021-03-29 19:15:47 +02:00
|
|
|
pub const STOP_WORDS_KEY: &str = "stop-words";
|
2021-04-28 17:58:16 +02:00
|
|
|
pub const STRING_FACETED_DOCUMENTS_IDS_PREFIX: &str = "string-faceted-documents-ids";
|
2021-04-07 10:53:57 +02:00
|
|
|
pub const SYNONYMS_KEY: &str = "synonyms";
|
2021-04-28 17:58:16 +02:00
|
|
|
pub const WORDS_FST_KEY: &str = "words-fst";
|
2021-02-03 10:30:33 +01:00
|
|
|
pub const WORDS_PREFIXES_FST_KEY: &str = "words-prefixes-fst";
|
2021-03-11 18:32:04 +01:00
|
|
|
const CREATED_AT_KEY: &str = "created-at";
|
2021-03-11 18:42:21 +01:00
|
|
|
const UPDATED_AT_KEY: &str = "updated-at";
|
2020-10-21 15:55:48 +02:00
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct Index {
|
2020-10-30 10:56:35 +01:00
|
|
|
/// The LMDB environment which this index is associated with.
|
|
|
|
pub env: heed::Env,
|
2021-04-21 11:49:26 +02:00
|
|
|
|
2020-10-22 14:23:33 +02:00
|
|
|
/// Contains many different types (e.g. the fields ids map).
|
2020-10-21 15:55:48 +02:00
|
|
|
pub main: PolyDatabase,
|
2021-04-21 11:49:26 +02:00
|
|
|
|
2020-10-21 15:55:48 +02:00
|
|
|
/// A word and all the documents ids containing the word.
|
|
|
|
pub word_docids: Database<Str, RoaringBitmapCodec>,
|
2021-02-03 10:30:33 +01:00
|
|
|
/// A prefix of word and all the documents ids containing this prefix.
|
|
|
|
pub word_prefix_docids: Database<Str, RoaringBitmapCodec>,
|
2021-04-21 11:49:26 +02:00
|
|
|
|
2020-10-21 15:55:48 +02:00
|
|
|
/// Maps a word and a document id (u32) to all the positions where the given word appears.
|
|
|
|
pub docid_word_positions: Database<BEU32StrCodec, BoRoaringBitmapCodec>,
|
2021-04-21 11:49:26 +02:00
|
|
|
|
2020-10-21 15:55:48 +02:00
|
|
|
/// Maps the proximity between a pair of words with all the docids where this relation appears.
|
|
|
|
pub word_pair_proximity_docids: Database<StrStrU8Codec, CboRoaringBitmapCodec>,
|
2021-02-10 10:28:15 +01:00
|
|
|
/// Maps the proximity between a pair of word and prefix with all the docids where this relation appears.
|
|
|
|
pub word_prefix_pair_proximity_docids: Database<StrStrU8Codec, CboRoaringBitmapCodec>,
|
2021-05-27 15:27:41 +02:00
|
|
|
|
2021-03-11 17:24:35 +01:00
|
|
|
/// Maps the word, level and position range with the docids that corresponds to it.
|
|
|
|
pub word_level_position_docids: Database<StrLevelPositionCodec, CboRoaringBitmapCodec>,
|
2021-05-27 15:27:41 +02:00
|
|
|
/// Maps the field id and the word count with the docids that corresponds to it.
|
|
|
|
pub field_id_word_count_docids: Database<FieldIdWordCountCodec, CboRoaringBitmapCodec>,
|
2021-03-25 11:10:12 +01:00
|
|
|
/// Maps the level positions of a word prefix with all the docids where this prefix appears.
|
|
|
|
pub word_prefix_level_position_docids: Database<StrLevelPositionCodec, CboRoaringBitmapCodec>,
|
2021-04-21 11:49:26 +02:00
|
|
|
|
|
|
|
/// Maps the facet field id, level and the number with the docids that corresponds to it.
|
|
|
|
pub facet_id_f64_docids: Database<FacetLevelValueF64Codec, CboRoaringBitmapCodec>,
|
|
|
|
/// Maps the facet field id and the string with the docids that corresponds to it.
|
|
|
|
pub facet_id_string_docids: Database<FacetValueStringCodec, CboRoaringBitmapCodec>,
|
|
|
|
|
|
|
|
/// Maps the document id, the facet field id and the numbers.
|
|
|
|
pub field_id_docid_facet_f64s: Database<FieldDocIdFacetF64Codec, Unit>,
|
|
|
|
/// Maps the document id, the facet field id and the strings.
|
|
|
|
pub field_id_docid_facet_strings: Database<FieldDocIdFacetStringCodec, Unit>,
|
|
|
|
|
2020-10-22 14:23:33 +02:00
|
|
|
/// Maps the document id to the document as an obkv store.
|
2020-10-21 18:26:29 +02:00
|
|
|
pub documents: Database<OwnedType<BEU32>, ObkvCodec>,
|
2020-10-21 15:55:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Index {
|
2020-10-30 10:56:35 +01:00
|
|
|
pub fn new<P: AsRef<Path>>(mut options: heed::EnvOpenOptions, path: P) -> anyhow::Result<Index> {
|
2021-05-27 15:27:41 +02:00
|
|
|
options.max_dbs(14);
|
2020-10-30 10:56:35 +01:00
|
|
|
|
|
|
|
let env = options.open(path)?;
|
|
|
|
let main = env.create_poly_database(Some("main"))?;
|
|
|
|
let word_docids = env.create_database(Some("word-docids"))?;
|
2021-02-03 10:30:33 +01:00
|
|
|
let word_prefix_docids = env.create_database(Some("word-prefix-docids"))?;
|
2020-10-30 10:56:35 +01:00
|
|
|
let docid_word_positions = env.create_database(Some("docid-word-positions"))?;
|
|
|
|
let word_pair_proximity_docids = env.create_database(Some("word-pair-proximity-docids"))?;
|
2021-02-10 10:28:15 +01:00
|
|
|
let word_prefix_pair_proximity_docids = env.create_database(Some("word-prefix-pair-proximity-docids"))?;
|
2021-03-11 17:24:35 +01:00
|
|
|
let word_level_position_docids = env.create_database(Some("word-level-position-docids"))?;
|
2021-05-27 15:27:41 +02:00
|
|
|
let field_id_word_count_docids = env.create_database(Some("field-id-word-count-docids"))?;
|
2021-03-25 11:10:12 +01:00
|
|
|
let word_prefix_level_position_docids = env.create_database(Some("word-prefix-level-position-docids"))?;
|
2021-04-21 11:49:26 +02:00
|
|
|
let facet_id_f64_docids = env.create_database(Some("facet-id-f64-docids"))?;
|
|
|
|
let facet_id_string_docids = env.create_database(Some("facet-id-string-docids"))?;
|
|
|
|
let field_id_docid_facet_f64s = env.create_database(Some("field-id-docid-facet-f64s"))?;
|
|
|
|
let field_id_docid_facet_strings = env.create_database(Some("field-id-docid-facet-strings"))?;
|
2020-10-30 10:56:35 +01:00
|
|
|
let documents = env.create_database(Some("documents"))?;
|
|
|
|
|
2021-04-21 11:48:23 +02:00
|
|
|
Index::initialize_creation_dates(&env, main)?;
|
2021-03-11 18:32:04 +01:00
|
|
|
|
2020-11-11 16:04:04 +01:00
|
|
|
Ok(Index {
|
|
|
|
env,
|
|
|
|
main,
|
|
|
|
word_docids,
|
2021-02-03 10:30:33 +01:00
|
|
|
word_prefix_docids,
|
2020-11-11 16:04:04 +01:00
|
|
|
docid_word_positions,
|
|
|
|
word_pair_proximity_docids,
|
2021-02-10 10:28:15 +01:00
|
|
|
word_prefix_pair_proximity_docids,
|
2021-03-11 17:24:35 +01:00
|
|
|
word_level_position_docids,
|
2021-03-25 11:10:12 +01:00
|
|
|
word_prefix_level_position_docids,
|
2021-05-27 15:27:41 +02:00
|
|
|
field_id_word_count_docids,
|
2021-04-21 11:49:26 +02:00
|
|
|
facet_id_f64_docids,
|
|
|
|
facet_id_string_docids,
|
|
|
|
field_id_docid_facet_f64s,
|
|
|
|
field_id_docid_facet_strings,
|
2020-11-11 16:04:04 +01:00
|
|
|
documents,
|
|
|
|
})
|
2020-10-30 10:56:35 +01:00
|
|
|
}
|
|
|
|
|
2021-04-21 11:49:26 +02:00
|
|
|
fn initialize_creation_dates(env: &heed::Env, main: PolyDatabase) -> heed::Result<()> {
|
|
|
|
let mut txn = env.write_txn()?;
|
|
|
|
// The db was just created, we update its metadata with the relevant information.
|
|
|
|
if main.get::<_, Str, SerdeJson<DateTime<Utc>>>(&txn, CREATED_AT_KEY)?.is_none() {
|
|
|
|
let now = Utc::now();
|
|
|
|
main.put::<_, Str, SerdeJson<DateTime<Utc>>>(&mut txn, UPDATED_AT_KEY, &now)?;
|
|
|
|
main.put::<_, Str, SerdeJson<DateTime<Utc>>>(&mut txn, CREATED_AT_KEY, &now)?;
|
|
|
|
txn.commit()?;
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-10-30 10:56:35 +01:00
|
|
|
/// Create a write transaction to be able to write into the index.
|
2020-11-02 11:48:33 +01:00
|
|
|
pub fn write_txn(&self) -> heed::Result<RwTxn> {
|
2020-10-30 10:56:35 +01:00
|
|
|
self.env.write_txn()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a read transaction to be able to read the index.
|
2020-11-02 11:48:33 +01:00
|
|
|
pub fn read_txn(&self) -> heed::Result<RoTxn> {
|
2020-10-30 10:56:35 +01:00
|
|
|
self.env.read_txn()
|
2020-10-21 15:55:48 +02:00
|
|
|
}
|
|
|
|
|
2020-10-30 11:46:00 +01:00
|
|
|
/// Returns the canonicalized path where the heed `Env` of this `Index` lives.
|
|
|
|
pub fn path(&self) -> &Path {
|
|
|
|
self.env.path()
|
|
|
|
}
|
|
|
|
|
2020-10-30 11:46:14 +01: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 11:48:33 +01:00
|
|
|
/* documents ids */
|
|
|
|
|
2020-10-22 15:33:09 +02:00
|
|
|
/// Writes the documents ids that corresponds to the user-ids-documents-ids FST.
|
2020-11-02 11:48:33 +01:00
|
|
|
pub fn put_documents_ids(&self, wtxn: &mut RwTxn, docids: &RoaringBitmap) -> heed::Result<()> {
|
2020-10-22 15:33:09 +02:00
|
|
|
self.main.put::<_, Str, RoaringBitmapCodec>(wtxn, DOCUMENTS_IDS_KEY, docids)
|
2020-10-21 15:55:48 +02:00
|
|
|
}
|
|
|
|
|
2020-10-22 15:33:09 +02:00
|
|
|
/// Returns the internal documents ids.
|
2020-11-02 11:48:33 +01:00
|
|
|
pub fn documents_ids(&self, rtxn: &RoTxn) -> heed::Result<RoaringBitmap> {
|
2020-10-25 14:49:04 +01:00
|
|
|
Ok(self.main.get::<_, Str, RoaringBitmapCodec>(rtxn, DOCUMENTS_IDS_KEY)?.unwrap_or_default())
|
2020-10-21 15:55:48 +02:00
|
|
|
}
|
|
|
|
|
2021-03-09 10:24:27 +01:00
|
|
|
/// Returns the number of documents indexed in the database.
|
|
|
|
pub fn number_of_documents(&self, rtxn: &RoTxn) -> anyhow::Result<u64> {
|
|
|
|
let count = self.main.get::<_, Str, RoaringBitmapLenCodec>(rtxn, DOCUMENTS_IDS_KEY)?;
|
|
|
|
Ok(count.unwrap_or_default())
|
|
|
|
}
|
|
|
|
|
2020-11-02 11:48:33 +01:00
|
|
|
/* primary key */
|
|
|
|
|
2020-10-31 11:28:48 +01:00
|
|
|
/// Writes the documents primary key, this is the field name that is used to store the id.
|
2021-01-20 17:27:43 +01:00
|
|
|
pub fn put_primary_key(&self, wtxn: &mut RwTxn, primary_key: &str) -> heed::Result<()> {
|
2021-03-12 14:43:17 +01:00
|
|
|
self.set_updated_at(wtxn, &Utc::now())?;
|
2021-01-20 17:27:43 +01:00
|
|
|
self.main.put::<_, Str, Str>(wtxn, PRIMARY_KEY_KEY, &primary_key)
|
2020-10-31 11:28:48 +01:00
|
|
|
}
|
|
|
|
|
2020-11-01 17:52:04 +01:00
|
|
|
/// Deletes the primary key of the documents, this can be done to reset indexes settings.
|
2020-11-02 11:48:33 +01:00
|
|
|
pub fn delete_primary_key(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
2020-10-31 11:28:48 +01:00
|
|
|
self.main.delete::<_, Str>(wtxn, PRIMARY_KEY_KEY)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the documents primary key, `None` if it hasn't been defined.
|
2021-01-20 17:27:43 +01:00
|
|
|
pub fn primary_key<'t>(&self, rtxn: &'t RoTxn) -> heed::Result<Option<&'t str>> {
|
|
|
|
self.main.get::<_, Str, Str>(rtxn, PRIMARY_KEY_KEY)
|
2020-10-31 11:28:48 +01:00
|
|
|
}
|
|
|
|
|
2020-11-22 11:54:04 +01:00
|
|
|
/* external documents ids */
|
2020-11-02 11:48:33 +01:00
|
|
|
|
2020-11-22 17:28:41 +01:00
|
|
|
/// Writes the external documents ids and internal ids (i.e. `u32`).
|
|
|
|
pub fn put_external_documents_ids<'a>(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
external_documents_ids: &ExternalDocumentsIds<'a>,
|
|
|
|
) -> heed::Result<()>
|
|
|
|
{
|
|
|
|
let ExternalDocumentsIds { hard, soft } = external_documents_ids;
|
|
|
|
let hard = hard.as_fst().as_bytes();
|
|
|
|
let soft = soft.as_fst().as_bytes();
|
|
|
|
self.main.put::<_, Str, ByteSlice>(wtxn, HARD_EXTERNAL_DOCUMENTS_IDS_KEY, hard)?;
|
|
|
|
self.main.put::<_, Str, ByteSlice>(wtxn, SOFT_EXTERNAL_DOCUMENTS_IDS_KEY, soft)?;
|
|
|
|
Ok(())
|
2020-10-21 15:55:48 +02:00
|
|
|
}
|
|
|
|
|
2020-11-22 17:28:41 +01:00
|
|
|
/// Returns the external documents ids map which associate the external ids
|
2020-10-22 15:33:09 +02:00
|
|
|
/// with the internal ids (i.e. `u32`).
|
2020-11-22 17:28:41 +01:00
|
|
|
pub fn external_documents_ids<'t>(&self, rtxn: &'t RoTxn) -> anyhow::Result<ExternalDocumentsIds<'t>> {
|
|
|
|
let hard = self.main.get::<_, Str, ByteSlice>(rtxn, HARD_EXTERNAL_DOCUMENTS_IDS_KEY)?;
|
|
|
|
let soft = self.main.get::<_, Str, ByteSlice>(rtxn, SOFT_EXTERNAL_DOCUMENTS_IDS_KEY)?;
|
2020-11-22 17:53:33 +01:00
|
|
|
let hard = match hard {
|
|
|
|
Some(hard) => fst::Map::new(hard)?.map_data(Cow::Borrowed)?,
|
|
|
|
None => fst::Map::default().map_data(Cow::Owned)?,
|
|
|
|
};
|
|
|
|
let soft = match soft {
|
|
|
|
Some(soft) => fst::Map::new(soft)?.map_data(Cow::Borrowed)?,
|
|
|
|
None => fst::Map::default().map_data(Cow::Owned)?,
|
|
|
|
};
|
|
|
|
Ok(ExternalDocumentsIds::new(hard, soft))
|
2020-10-21 15:55:48 +02:00
|
|
|
}
|
|
|
|
|
2020-11-02 11:48:33 +01:00
|
|
|
/* fields ids map */
|
|
|
|
|
2020-10-22 15:33:09 +02: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 11:48:33 +01:00
|
|
|
pub fn put_fields_ids_map(&self, wtxn: &mut RwTxn, map: &FieldsIdsMap) -> heed::Result<()> {
|
2020-10-22 15:33:09 +02: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 11:48:33 +01:00
|
|
|
pub fn fields_ids_map(&self, rtxn: &RoTxn) -> heed::Result<FieldsIdsMap> {
|
2020-10-25 14:49:04 +01:00
|
|
|
Ok(self.main.get::<_, Str, SerdeJson<FieldsIdsMap>>(rtxn, FIELDS_IDS_MAP_KEY)?.unwrap_or_default())
|
2020-10-22 15:33:09 +02:00
|
|
|
}
|
|
|
|
|
2021-03-31 17:14:23 +02:00
|
|
|
/* fields distribution */
|
2021-03-31 17:14:23 +02:00
|
|
|
|
2021-04-01 09:07:16 +02:00
|
|
|
/// Writes the fields distribution which associates every field name with
|
|
|
|
/// the number of times it occurs in the documents.
|
2021-03-31 17:14:23 +02:00
|
|
|
pub fn put_fields_distribution(&self, wtxn: &mut RwTxn, distribution: &FieldsDistribution) -> heed::Result<()> {
|
2021-04-01 09:07:16 +02:00
|
|
|
self.main.put::<_, Str, SerdeJson<FieldsDistribution>>(wtxn, FIELDS_DISTRIBUTION_KEY, distribution)
|
2021-03-31 17:14:23 +02:00
|
|
|
}
|
2021-03-31 17:14:23 +02:00
|
|
|
|
2021-04-01 09:07:16 +02:00
|
|
|
/// Returns the fields distribution which associates every field name with
|
|
|
|
/// the number of times it occurs in the documents.
|
2021-03-31 17:14:23 +02:00
|
|
|
pub fn fields_distribution(&self, rtxn: &RoTxn) -> heed::Result<FieldsDistribution> {
|
|
|
|
Ok(self.main.get::<_, Str, SerdeJson<FieldsDistribution>>(rtxn, FIELDS_DISTRIBUTION_KEY)?.unwrap_or_default())
|
2021-03-31 17:14:23 +02:00
|
|
|
}
|
|
|
|
|
2020-11-02 11:48:33 +01:00
|
|
|
/* displayed fields */
|
|
|
|
|
2021-01-20 17:27:43 +01:00
|
|
|
/// Writes the fields that must be displayed in the defined order.
|
2020-11-02 11:45:16 +01:00
|
|
|
/// There must be not be any duplicate field id.
|
2021-01-20 17:27:43 +01:00
|
|
|
pub fn put_displayed_fields(&self, wtxn: &mut RwTxn, fields: &[&str]) -> heed::Result<()> {
|
|
|
|
self.main.put::<_, Str, SerdeBincode<&[&str]>>(wtxn, DISPLAYED_FIELDS_KEY, &fields)
|
2020-11-02 11:45:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// 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 11:48:33 +01:00
|
|
|
pub fn delete_displayed_fields(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
2020-11-02 11:45:16 +01:00
|
|
|
self.main.delete::<_, Str>(wtxn, DISPLAYED_FIELDS_KEY)
|
|
|
|
}
|
|
|
|
|
2021-01-20 17:27:43 +01:00
|
|
|
/// Returns the displayed fields in the order they were set by the user. If it returns
|
|
|
|
/// `None` it means that all the attributes are set as displayed in the order of the `FieldsIdsMap`.
|
|
|
|
pub fn displayed_fields<'t>(&self, rtxn: &'t RoTxn) -> heed::Result<Option<Vec<&'t str>>> {
|
|
|
|
self.main.get::<_, Str, SerdeBincode<Vec<&'t str>>>(rtxn, DISPLAYED_FIELDS_KEY)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn displayed_fields_ids(&self, rtxn: &RoTxn) -> heed::Result<Option<Vec<FieldId>>> {
|
|
|
|
let fields_ids_map = self.fields_ids_map(rtxn)?;
|
|
|
|
let ids = self.displayed_fields(rtxn)?
|
|
|
|
.map(|fields| fields
|
|
|
|
.into_iter()
|
|
|
|
.map(|name| fields_ids_map.id(name).expect("Field not found"))
|
|
|
|
.collect::<Vec<_>>());
|
|
|
|
Ok(ids)
|
2020-11-02 11:45:16 +01:00
|
|
|
}
|
|
|
|
|
2020-11-01 17:52:04 +01:00
|
|
|
/* searchable fields */
|
|
|
|
|
|
|
|
/// Writes the searchable fields, when this list is specified, only these are indexed.
|
2021-01-20 17:27:43 +01:00
|
|
|
pub fn put_searchable_fields(&self, wtxn: &mut RwTxn, fields: &[&str]) -> heed::Result<()> {
|
|
|
|
self.main.put::<_, Str, SerdeBincode<&[&str]>>(wtxn, SEARCHABLE_FIELDS_KEY, &fields)
|
2020-11-01 17:52:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Deletes the searchable fields, when no fields are specified, all fields are indexed.
|
|
|
|
pub fn delete_searchable_fields(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
|
|
|
self.main.delete::<_, Str>(wtxn, SEARCHABLE_FIELDS_KEY)
|
|
|
|
}
|
|
|
|
|
2021-01-20 17:27:43 +01:00
|
|
|
/// Returns the searchable fields, those are the fields that are indexed,
|
2020-11-01 17:52:04 +01:00
|
|
|
/// if the searchable fields aren't there it means that **all** the fields are indexed.
|
2021-01-20 17:27:43 +01:00
|
|
|
pub fn searchable_fields<'t>(&self, rtxn: &'t RoTxn) -> heed::Result<Option<Vec<&'t str>>> {
|
|
|
|
self.main.get::<_, Str, SerdeBincode<Vec<&'t str>>>(rtxn, SEARCHABLE_FIELDS_KEY)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Identical to `searchable_fields`, but returns the ids instead.
|
|
|
|
pub fn searchable_fields_ids(&self, rtxn: &RoTxn) -> heed::Result<Option<Vec<FieldId>>> {
|
|
|
|
match self.searchable_fields(rtxn)? {
|
|
|
|
Some(names) => {
|
|
|
|
let fields_map = self.fields_ids_map(rtxn)?;
|
|
|
|
let mut ids = Vec::new();
|
|
|
|
for name in names {
|
|
|
|
let id = fields_map
|
|
|
|
.id(name)
|
|
|
|
.ok_or_else(|| format!("field id map must contain {:?}", name))
|
|
|
|
.expect("corrupted data: ");
|
|
|
|
ids.push(id);
|
|
|
|
}
|
|
|
|
Ok(Some(ids))
|
|
|
|
}
|
|
|
|
None => Ok(None),
|
|
|
|
}
|
2020-11-01 17:52:04 +01:00
|
|
|
}
|
|
|
|
|
2021-06-01 12:19:55 +02:00
|
|
|
/* filterable fields */
|
2020-11-11 16:17:37 +01:00
|
|
|
|
2021-06-01 12:19:55 +02:00
|
|
|
/// Writes the filterable fields names in the database.
|
|
|
|
pub fn put_filterable_fields(&self, wtxn: &mut RwTxn, fields: &HashSet<String>) -> heed::Result<()> {
|
|
|
|
self.main.put::<_, Str, SerdeJson<_>>(wtxn, FILTERABLE_FIELDS_KEY, fields)
|
2020-11-11 16:17:37 +01:00
|
|
|
}
|
|
|
|
|
2021-06-01 12:19:55 +02:00
|
|
|
/// Deletes the filterable fields ids in the database.
|
|
|
|
pub fn delete_filterable_fields(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
|
|
|
self.main.delete::<_, Str>(wtxn, FILTERABLE_FIELDS_KEY)
|
2020-11-11 16:17:37 +01:00
|
|
|
}
|
|
|
|
|
2021-06-01 12:19:55 +02:00
|
|
|
/// Returns the filterable fields names.
|
|
|
|
pub fn filterable_fields(&self, rtxn: &RoTxn) -> heed::Result<HashSet<String>> {
|
|
|
|
Ok(self.main.get::<_, Str, SerdeJson<_>>(rtxn, FILTERABLE_FIELDS_KEY)?.unwrap_or_default())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Same as `filterable_fields`, but returns ids instead.
|
|
|
|
pub fn filterable_fields_ids(&self, rtxn: &RoTxn) -> heed::Result<HashSet<FieldId>> {
|
|
|
|
let filterable_fields = self.filterable_fields(rtxn)?;
|
|
|
|
let fields_ids_map = self.fields_ids_map(rtxn)?;
|
|
|
|
let filterable_fields = filterable_fields
|
|
|
|
.iter()
|
|
|
|
.map(|k| {
|
|
|
|
fields_ids_map
|
|
|
|
.id(k)
|
|
|
|
.ok_or_else(|| format!("{:?} should be present in the field id map", k))
|
|
|
|
.expect("corrupted data: ")
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
Ok(filterable_fields)
|
|
|
|
}
|
2021-06-01 12:20:29 +02:00
|
|
|
|
|
|
|
/* faceted documents ids */
|
|
|
|
|
|
|
|
/// Returns the faceted fields names.
|
|
|
|
///
|
|
|
|
/// Faceted fields are the union of all the filterable, distinct, and Asc/Desc fields.
|
2021-04-28 17:58:16 +02:00
|
|
|
pub fn faceted_fields(&self, rtxn: &RoTxn) -> heed::Result<HashSet<String>> {
|
2021-06-01 12:20:29 +02:00
|
|
|
let filterable_fields = self.filterable_fields(rtxn)?;
|
|
|
|
let distinct_field = self.distinct_attribute(rtxn)?;
|
|
|
|
let asc_desc_fields = self.criteria(rtxn)?
|
|
|
|
.into_iter()
|
|
|
|
.filter_map(|criterion| match criterion {
|
|
|
|
Criterion::Asc(field) | Criterion::Desc(field) => Some(field),
|
|
|
|
_otherwise => None,
|
|
|
|
});
|
|
|
|
|
|
|
|
let mut faceted_fields = filterable_fields;
|
|
|
|
faceted_fields.extend(asc_desc_fields);
|
|
|
|
if let Some(field) = distinct_field {
|
|
|
|
faceted_fields.insert(field.to_owned());
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(faceted_fields)
|
2021-01-20 17:27:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Same as `faceted_fields`, but returns ids instead.
|
2021-04-28 17:58:16 +02:00
|
|
|
pub fn faceted_fields_ids(&self, rtxn: &RoTxn) -> heed::Result<HashSet<FieldId>> {
|
2021-01-20 17:27:43 +01:00
|
|
|
let faceted_fields = self.faceted_fields(rtxn)?;
|
|
|
|
let fields_ids_map = self.fields_ids_map(rtxn)?;
|
|
|
|
let faceted_fields = faceted_fields
|
|
|
|
.iter()
|
2021-04-28 17:58:16 +02:00
|
|
|
.map(|k| {
|
|
|
|
fields_ids_map
|
2021-01-20 17:27:43 +01:00
|
|
|
.id(k)
|
|
|
|
.ok_or_else(|| format!("{:?} should be present in the field id map", k))
|
2021-04-28 17:58:16 +02:00
|
|
|
.expect("corrupted data: ")
|
2021-01-20 17:27:43 +01:00
|
|
|
})
|
|
|
|
.collect();
|
2021-04-28 17:58:16 +02:00
|
|
|
|
2021-01-20 17:27:43 +01:00
|
|
|
Ok(faceted_fields)
|
2020-11-11 16:17:37 +01:00
|
|
|
}
|
|
|
|
|
2020-11-23 13:08:57 +01:00
|
|
|
/* faceted documents ids */
|
|
|
|
|
2021-04-28 17:58:16 +02:00
|
|
|
/// Writes the documents ids that are faceted with numbers under this field id.
|
|
|
|
pub fn put_number_faceted_documents_ids(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
field_id: FieldId,
|
|
|
|
docids: &RoaringBitmap,
|
|
|
|
) -> heed::Result<()>
|
|
|
|
{
|
|
|
|
let mut buffer = [0u8; STRING_FACETED_DOCUMENTS_IDS_PREFIX.len() + 1];
|
|
|
|
buffer[..STRING_FACETED_DOCUMENTS_IDS_PREFIX.len()]
|
|
|
|
.copy_from_slice(STRING_FACETED_DOCUMENTS_IDS_PREFIX.as_bytes());
|
|
|
|
*buffer.last_mut().unwrap() = field_id;
|
|
|
|
self.main.put::<_, ByteSlice, RoaringBitmapCodec>(wtxn, &buffer, docids)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Retrieve all the documents ids that faceted with numbers under this field id.
|
|
|
|
pub fn number_faceted_documents_ids(
|
|
|
|
&self,
|
|
|
|
rtxn: &RoTxn,
|
|
|
|
field_id: FieldId,
|
|
|
|
) -> heed::Result<RoaringBitmap>
|
|
|
|
{
|
|
|
|
let mut buffer = [0u8; STRING_FACETED_DOCUMENTS_IDS_PREFIX.len() + 1];
|
|
|
|
buffer[..STRING_FACETED_DOCUMENTS_IDS_PREFIX.len()]
|
|
|
|
.copy_from_slice(STRING_FACETED_DOCUMENTS_IDS_PREFIX.as_bytes());
|
|
|
|
*buffer.last_mut().unwrap() = field_id;
|
|
|
|
match self.main.get::<_, ByteSlice, RoaringBitmapCodec>(rtxn, &buffer)? {
|
|
|
|
Some(docids) => Ok(docids),
|
|
|
|
None => Ok(RoaringBitmap::new()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Writes the documents ids that are faceted with strings under this field id.
|
|
|
|
pub fn put_string_faceted_documents_ids(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
field_id: FieldId,
|
|
|
|
docids: &RoaringBitmap,
|
|
|
|
) -> heed::Result<()>
|
|
|
|
{
|
|
|
|
let mut buffer = [0u8; NUMBER_FACETED_DOCUMENTS_IDS_PREFIX.len() + 1];
|
|
|
|
buffer[..NUMBER_FACETED_DOCUMENTS_IDS_PREFIX.len()]
|
|
|
|
.copy_from_slice(NUMBER_FACETED_DOCUMENTS_IDS_PREFIX.as_bytes());
|
2020-11-23 13:08:57 +01:00
|
|
|
*buffer.last_mut().unwrap() = field_id;
|
|
|
|
self.main.put::<_, ByteSlice, RoaringBitmapCodec>(wtxn, &buffer, docids)
|
|
|
|
}
|
|
|
|
|
2021-04-28 17:58:16 +02:00
|
|
|
/// Retrieve all the documents ids that faceted with strings under this field id.
|
|
|
|
pub fn string_faceted_documents_ids(
|
|
|
|
&self,
|
|
|
|
rtxn: &RoTxn,
|
|
|
|
field_id: FieldId,
|
|
|
|
) -> heed::Result<RoaringBitmap>
|
|
|
|
{
|
|
|
|
let mut buffer = [0u8; NUMBER_FACETED_DOCUMENTS_IDS_PREFIX.len() + 1];
|
|
|
|
buffer[..NUMBER_FACETED_DOCUMENTS_IDS_PREFIX.len()]
|
|
|
|
.copy_from_slice(NUMBER_FACETED_DOCUMENTS_IDS_PREFIX.as_bytes());
|
2020-11-23 13:08:57 +01:00
|
|
|
*buffer.last_mut().unwrap() = field_id;
|
|
|
|
match self.main.get::<_, ByteSlice, RoaringBitmapCodec>(rtxn, &buffer)? {
|
|
|
|
Some(docids) => Ok(docids),
|
|
|
|
None => Ok(RoaringBitmap::new()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-14 12:00:45 +02:00
|
|
|
/* Distinct attribute */
|
|
|
|
|
|
|
|
pub(crate) fn put_distinct_attribute(&self, wtxn: &mut RwTxn, distinct_attribute: &str) -> heed::Result<()> {
|
|
|
|
self.main.put::<_, Str, Str>(wtxn, DISTINCT_ATTRIBUTE_KEY, distinct_attribute)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn distinct_attribute<'a>(&self, rtxn: &'a RoTxn) -> heed::Result<Option<&'a str>> {
|
|
|
|
self.main.get::<_, Str, Str>(rtxn, DISTINCT_ATTRIBUTE_KEY)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn delete_distinct_attribute(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
|
|
|
self.main.delete::<_, Str>(wtxn, DISTINCT_ATTRIBUTE_KEY)
|
|
|
|
}
|
|
|
|
|
2020-11-27 12:14:56 +01:00
|
|
|
/* criteria */
|
|
|
|
|
|
|
|
pub fn put_criteria(&self, wtxn: &mut RwTxn, criteria: &[Criterion]) -> heed::Result<()> {
|
|
|
|
self.main.put::<_, Str, SerdeJson<&[Criterion]>>(wtxn, CRITERIA_KEY, &criteria)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn delete_criteria(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
|
|
|
self.main.delete::<_, Str>(wtxn, CRITERIA_KEY)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn criteria(&self, rtxn: &RoTxn) -> heed::Result<Vec<Criterion>> {
|
|
|
|
match self.main.get::<_, Str, SerdeJson<Vec<Criterion>>>(rtxn, CRITERIA_KEY)? {
|
|
|
|
Some(criteria) => Ok(criteria),
|
|
|
|
None => Ok(default_criteria()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-02 11:48:33 +01:00
|
|
|
/* words fst */
|
|
|
|
|
2021-04-07 10:53:57 +02:00
|
|
|
/// Writes the FST which is the words dictionary of the engine.
|
2020-11-02 11:48:33 +01:00
|
|
|
pub fn put_words_fst<A: AsRef<[u8]>>(&self, wtxn: &mut RwTxn, fst: &fst::Set<A>) -> heed::Result<()> {
|
2020-10-22 15:33:09 +02:00
|
|
|
self.main.put::<_, Str, ByteSlice>(wtxn, WORDS_FST_KEY, fst.as_fst().as_bytes())
|
2020-10-21 15:55:48 +02:00
|
|
|
}
|
|
|
|
|
2021-04-07 10:53:57 +02:00
|
|
|
/// Returns the FST which is the words dictionary of the engine.
|
2020-11-02 11:48:33 +01:00
|
|
|
pub fn words_fst<'t>(&self, rtxn: &'t RoTxn) -> anyhow::Result<fst::Set<Cow<'t, [u8]>>> {
|
2020-10-21 15:55:48 +02:00
|
|
|
match self.main.get::<_, Str, ByteSlice>(rtxn, WORDS_FST_KEY)? {
|
2020-10-25 14:49:04 +01:00
|
|
|
Some(bytes) => Ok(fst::Set::new(bytes)?.map_data(Cow::Borrowed)?),
|
|
|
|
None => Ok(fst::Set::default().map_data(Cow::Owned)?),
|
2020-10-21 15:55:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-29 19:15:47 +02:00
|
|
|
/* stop words */
|
|
|
|
|
|
|
|
pub fn put_stop_words<A: AsRef<[u8]>>(&self, wtxn: &mut RwTxn, fst: &fst::Set<A>) -> heed::Result<()> {
|
|
|
|
self.main.put::<_, Str, ByteSlice>(wtxn, STOP_WORDS_KEY, fst.as_fst().as_bytes())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn delete_stop_words(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
|
|
|
self.main.delete::<_, Str>(wtxn, STOP_WORDS_KEY)
|
|
|
|
}
|
2021-04-07 10:53:57 +02:00
|
|
|
|
2021-03-29 19:15:47 +02:00
|
|
|
pub fn stop_words<'t>(&self, rtxn: &'t RoTxn) -> anyhow::Result<Option<fst::Set<&'t [u8]>>> {
|
|
|
|
match self.main.get::<_, Str, ByteSlice>(rtxn, STOP_WORDS_KEY)? {
|
|
|
|
Some(bytes) => Ok(Some(fst::Set::new(bytes)?)),
|
|
|
|
None => Ok(None),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-07 10:53:57 +02:00
|
|
|
/* synonyms */
|
|
|
|
|
|
|
|
pub fn put_synonyms(&self, wtxn: &mut RwTxn, synonyms: &HashMap<Vec<String>, Vec<Vec<String>>>) -> heed::Result<()> {
|
|
|
|
self.main.put::<_, Str, SerdeBincode<_>>(wtxn, SYNONYMS_KEY, synonyms)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn delete_synonyms(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
|
|
|
self.main.delete::<_, Str>(wtxn, SYNONYMS_KEY)
|
|
|
|
}
|
|
|
|
|
2021-04-09 21:56:20 +02:00
|
|
|
pub fn synonyms(&self, rtxn: &RoTxn) -> heed::Result<HashMap<Vec<String>, Vec<Vec<String>>>> {
|
|
|
|
Ok(self.main.get::<_, Str, SerdeBincode<_>>(rtxn, SYNONYMS_KEY)?.unwrap_or_default())
|
2021-04-07 10:53:57 +02:00
|
|
|
}
|
|
|
|
|
2021-04-09 21:56:20 +02:00
|
|
|
pub fn words_synonyms<S: AsRef<str>>(&self, rtxn: &RoTxn, words: &[S]) -> heed::Result<Option<Vec<Vec<String>>>> {
|
|
|
|
let words: Vec<_> = words.iter().map(|s| s.as_ref().to_owned()).collect();
|
|
|
|
Ok(self.synonyms(rtxn)?.remove(&words))
|
2021-04-07 10:53:57 +02:00
|
|
|
}
|
|
|
|
|
2021-02-03 10:30:33 +01:00
|
|
|
/* words prefixes fst */
|
|
|
|
|
|
|
|
/// Writes the FST which is the words prefixes dictionnary of the engine.
|
|
|
|
pub fn put_words_prefixes_fst<A: AsRef<[u8]>>(&self, wtxn: &mut RwTxn, fst: &fst::Set<A>) -> heed::Result<()> {
|
|
|
|
self.main.put::<_, Str, ByteSlice>(wtxn, WORDS_PREFIXES_FST_KEY, fst.as_fst().as_bytes())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the FST which is the words prefixes dictionnary of the engine.
|
|
|
|
pub fn words_prefixes_fst<'t>(&self, rtxn: &'t RoTxn) -> anyhow::Result<fst::Set<Cow<'t, [u8]>>> {
|
|
|
|
match self.main.get::<_, Str, ByteSlice>(rtxn, WORDS_PREFIXES_FST_KEY)? {
|
|
|
|
Some(bytes) => Ok(fst::Set::new(bytes)?.map_data(Cow::Borrowed)?),
|
|
|
|
None => Ok(fst::Set::default().map_data(Cow::Owned)?),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-18 14:35:14 +01:00
|
|
|
/* word documents count */
|
|
|
|
|
|
|
|
/// Returns the number of documents ids associated with the given word,
|
|
|
|
/// it is much faster than deserializing the bitmap and getting the length of it.
|
2021-02-18 14:59:37 +01:00
|
|
|
pub fn word_documents_count(&self, rtxn: &RoTxn, word: &str) -> heed::Result<Option<u64>> {
|
|
|
|
self.word_docids.remap_data_type::<RoaringBitmapLenCodec>().get(rtxn, word)
|
2021-02-18 14:35:14 +01:00
|
|
|
}
|
|
|
|
|
2021-02-03 10:30:33 +01:00
|
|
|
/* documents */
|
|
|
|
|
2020-10-21 15:55:48 +02:00
|
|
|
/// Returns a [`Vec`] of the requested documents. Returns an error if a document is missing.
|
|
|
|
pub fn documents<'t>(
|
|
|
|
&self,
|
2020-11-02 11:48:33 +01:00
|
|
|
rtxn: &'t RoTxn,
|
2020-10-21 18:26:29 +02:00
|
|
|
ids: impl IntoIterator<Item=DocumentId>,
|
|
|
|
) -> anyhow::Result<Vec<(DocumentId, obkv::KvReader<'t>)>>
|
2020-10-21 15:55:48 +02:00
|
|
|
{
|
2020-10-21 18:26:29 +02:00
|
|
|
let mut documents = Vec::new();
|
2020-10-21 15:55:48 +02:00
|
|
|
|
2020-10-21 18:26:29 +02:00
|
|
|
for id in ids {
|
|
|
|
let kv = self.documents.get(rtxn, &BEU32::new(id))?
|
2020-10-21 15:55:48 +02:00
|
|
|
.with_context(|| format!("Could not find document {}", id))?;
|
2020-10-21 18:26:29 +02:00
|
|
|
documents.push((id, kv));
|
2020-10-21 15:55:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(documents)
|
|
|
|
}
|
|
|
|
|
2021-05-04 11:23:51 +02:00
|
|
|
/// Returns an iterator over all the documents in the index.
|
|
|
|
pub fn all_documents<'t>(
|
|
|
|
&self,
|
|
|
|
rtxn: &'t RoTxn,
|
|
|
|
) -> anyhow::Result<impl Iterator<Item = heed::Result<(DocumentId, obkv::KvReader<'t>)>>> {
|
|
|
|
Ok(self
|
|
|
|
.documents
|
|
|
|
.iter(rtxn)?
|
|
|
|
// we cast the BEU32 to a DocumentId
|
|
|
|
.map(|document| document.map(|(id, obkv)| (id.get(), obkv))))
|
|
|
|
}
|
|
|
|
|
2021-01-27 14:15:33 +01:00
|
|
|
pub fn facets_distribution<'a>(&'a self, rtxn: &'a RoTxn) -> FacetDistribution<'a> {
|
2020-12-28 19:08:53 +01:00
|
|
|
FacetDistribution::new(rtxn, self)
|
|
|
|
}
|
|
|
|
|
2020-11-02 11:48:33 +01:00
|
|
|
pub fn search<'a>(&'a self, rtxn: &'a RoTxn) -> Search<'a> {
|
2020-10-21 15:55:48 +02:00
|
|
|
Search::new(rtxn, self)
|
|
|
|
}
|
2021-03-11 18:32:04 +01:00
|
|
|
|
|
|
|
/// Returns the index creation time.
|
|
|
|
pub fn created_at(&self, rtxn: &RoTxn) -> heed::Result<DateTime<Utc>> {
|
|
|
|
let time = self.main
|
|
|
|
.get::<_, Str, SerdeJson<DateTime<Utc>>>(rtxn, CREATED_AT_KEY)?
|
|
|
|
.expect("Index without creation time");
|
|
|
|
Ok(time)
|
|
|
|
}
|
|
|
|
|
2021-03-11 18:42:21 +01:00
|
|
|
/// Returns the index last updated time.
|
2021-03-11 18:32:04 +01:00
|
|
|
pub fn updated_at(&self, rtxn: &RoTxn) -> heed::Result<DateTime<Utc>> {
|
|
|
|
let time = self.main
|
|
|
|
.get::<_, Str, SerdeJson<DateTime<Utc>>>(rtxn, UPDATED_AT_KEY)?
|
|
|
|
.expect("Index without update time");
|
|
|
|
Ok(time)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn set_updated_at(&self, wtxn: &mut RwTxn, time: &DateTime<Utc>) -> heed::Result<()> {
|
|
|
|
self.main.put::<_, Str, SerdeJson<DateTime<Utc>>>(wtxn, UPDATED_AT_KEY, &time)
|
|
|
|
}
|
2020-10-21 15:55:48 +02:00
|
|
|
}
|
2021-03-31 17:14:23 +02:00
|
|
|
|
|
|
|
#[cfg(test)]
|
2021-04-15 15:29:37 +02:00
|
|
|
pub(crate) mod tests {
|
|
|
|
use std::ops::Deref;
|
|
|
|
|
2021-03-31 17:14:23 +02:00
|
|
|
use heed::EnvOpenOptions;
|
2021-03-31 17:14:23 +02:00
|
|
|
use maplit::hashmap;
|
2021-04-15 15:29:37 +02:00
|
|
|
use tempfile::TempDir;
|
2021-03-31 17:14:23 +02:00
|
|
|
|
|
|
|
use crate::Index;
|
|
|
|
use crate::update::{IndexDocuments, UpdateFormat};
|
|
|
|
|
2021-04-15 15:29:37 +02:00
|
|
|
pub(crate) struct TempIndex {
|
|
|
|
inner: Index,
|
|
|
|
_tempdir: TempDir,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Deref for TempIndex {
|
|
|
|
type Target = Index;
|
|
|
|
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
&self.inner
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TempIndex {
|
|
|
|
/// Creates a temporary index, with a default `4096 * 100` size. This should be enough for
|
|
|
|
/// most tests.
|
|
|
|
pub fn new() -> Self {
|
|
|
|
let mut options = EnvOpenOptions::new();
|
|
|
|
options.map_size(100 * 4096);
|
|
|
|
let _tempdir = TempDir::new_in(".").unwrap();
|
|
|
|
let inner = Index::new(options, _tempdir.path()).unwrap();
|
|
|
|
Self {
|
|
|
|
inner,
|
|
|
|
_tempdir
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-01 09:07:16 +02:00
|
|
|
#[test]
|
|
|
|
fn initial_fields_distribution() {
|
2021-03-31 17:14:23 +02:00
|
|
|
let path = tempfile::tempdir().unwrap();
|
|
|
|
let mut options = EnvOpenOptions::new();
|
|
|
|
options.map_size(10 * 1024 * 1024); // 10 MB
|
|
|
|
let index = Index::new(options, &path).unwrap();
|
|
|
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-04-01 09:07:16 +02:00
|
|
|
let content = &br#"[
|
2021-05-04 21:01:11 +02:00
|
|
|
{ "id": 1, "name": "kevin" },
|
|
|
|
{ "id": 2, "name": "bob", "age": 20 },
|
|
|
|
{ "id": 2, "name": "bob", "age": 20 }
|
2021-04-01 09:07:16 +02:00
|
|
|
]"#[..];
|
2021-03-31 17:14:23 +02:00
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 0);
|
2021-04-01 09:07:16 +02:00
|
|
|
builder.update_format(UpdateFormat::Json);
|
2021-03-31 17:14:23 +02:00
|
|
|
builder.execute(content, |_, _| ()).unwrap();
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
2021-03-31 17:14:23 +02:00
|
|
|
let fields_distribution = index.fields_distribution(&rtxn).unwrap();
|
2021-04-07 10:53:57 +02:00
|
|
|
assert_eq!(fields_distribution, hashmap! {
|
2021-05-04 21:01:11 +02:00
|
|
|
"id".to_string() => 2,
|
2021-04-01 09:07:16 +02:00
|
|
|
"name".to_string() => 2,
|
2021-03-31 17:14:23 +02:00
|
|
|
"age".to_string() => 1,
|
|
|
|
});
|
2021-03-31 17:14:23 +02:00
|
|
|
}
|
|
|
|
}
|