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};
|
2022-06-22 16:23:11 +02:00
|
|
|
use std::fs::File;
|
2021-07-29 15:49:23 +02:00
|
|
|
use std::mem::size_of;
|
2020-10-30 10:56:35 +01:00
|
|
|
use std::path::Path;
|
2020-10-25 14:49:04 +01:00
|
|
|
|
2021-07-05 16:36:13 +02:00
|
|
|
use heed::flags::Flags;
|
2020-10-21 15:55:48 +02:00
|
|
|
use heed::types::*;
|
2022-06-22 16:23:11 +02:00
|
|
|
use heed::{CompactionOption, Database, PolyDatabase, RoTxn, RwTxn};
|
2020-10-21 15:55:48 +02:00
|
|
|
use roaring::RoaringBitmap;
|
2021-08-23 16:32:11 +02:00
|
|
|
use rstar::RTree;
|
2022-02-15 11:41:55 +01:00
|
|
|
use time::OffsetDateTime;
|
2020-10-21 15:55:48 +02:00
|
|
|
|
2021-07-22 17:11:17 +02:00
|
|
|
use crate::error::{InternalError, UserError};
|
2021-06-16 18:33:33 +02:00
|
|
|
use crate::fields_ids_map::FieldsIdsMap;
|
2021-04-21 11:49:26 +02:00
|
|
|
use crate::heed_codec::facet::{
|
2021-07-17 12:50:01 +02:00
|
|
|
FacetLevelValueF64Codec, FacetStringLevelZeroCodec, FacetStringLevelZeroValueCodec,
|
2022-07-19 09:30:19 +02:00
|
|
|
FieldDocIdFacetF64Codec, FieldDocIdFacetStringCodec, FieldIdCodec,
|
2021-06-16 18:33:33 +02:00
|
|
|
};
|
|
|
|
use crate::{
|
|
|
|
default_criteria, BEU32StrCodec, BoRoaringBitmapCodec, CboRoaringBitmapCodec, Criterion,
|
2021-06-22 15:36:22 +02:00
|
|
|
DocumentId, ExternalDocumentsIds, FacetDistribution, FieldDistribution, FieldId,
|
2021-08-23 16:32:11 +02:00
|
|
|
FieldIdWordCountCodec, GeoPoint, ObkvCodec, Result, RoaringBitmapCodec, RoaringBitmapLenCodec,
|
2022-07-04 08:41:54 +02:00
|
|
|
Search, StrBEU32Codec, StrStrU8Codec, BEU16, BEU32,
|
2021-04-21 11:49:26 +02:00
|
|
|
};
|
2020-10-21 15:55:48 +02:00
|
|
|
|
2022-03-31 18:23:12 +02:00
|
|
|
pub const DEFAULT_MIN_WORD_LEN_ONE_TYPO: u8 = 5;
|
|
|
|
pub const DEFAULT_MIN_WORD_LEN_TWO_TYPOS: u8 = 9;
|
2022-03-21 13:03:06 +01:00
|
|
|
|
2021-06-15 11:06:42 +02:00
|
|
|
pub mod main_key {
|
|
|
|
pub const CRITERIA_KEY: &str = "criteria";
|
|
|
|
pub const DISPLAYED_FIELDS_KEY: &str = "displayed-fields";
|
|
|
|
pub const DISTINCT_FIELD_KEY: &str = "distinct-field-key";
|
|
|
|
pub const DOCUMENTS_IDS_KEY: &str = "documents-ids";
|
2022-06-13 17:59:34 +02:00
|
|
|
pub const SOFT_DELETED_DOCUMENTS_IDS_KEY: &str = "soft-deleted-documents-ids";
|
2022-03-23 17:28:41 +01:00
|
|
|
pub const HIDDEN_FACETED_FIELDS_KEY: &str = "hidden-faceted-fields";
|
2021-06-15 11:06:42 +02:00
|
|
|
pub const FILTERABLE_FIELDS_KEY: &str = "filterable-fields";
|
2021-08-23 11:37:18 +02:00
|
|
|
pub const SORTABLE_FIELDS_KEY: &str = "sortable-fields";
|
2021-06-17 15:16:20 +02:00
|
|
|
pub const FIELD_DISTRIBUTION_KEY: &str = "fields-distribution";
|
2021-06-15 11:06:42 +02:00
|
|
|
pub const FIELDS_IDS_MAP_KEY: &str = "fields-ids-map";
|
2021-08-26 17:49:50 +02:00
|
|
|
pub const GEO_FACETED_DOCUMENTS_IDS_KEY: &str = "geo-faceted-documents-ids";
|
|
|
|
pub const GEO_RTREE_KEY: &str = "geo-rtree";
|
2021-06-15 11:06:42 +02:00
|
|
|
pub const HARD_EXTERNAL_DOCUMENTS_IDS_KEY: &str = "hard-external-documents-ids";
|
|
|
|
pub const NUMBER_FACETED_DOCUMENTS_IDS_PREFIX: &str = "number-faceted-documents-ids";
|
|
|
|
pub const PRIMARY_KEY_KEY: &str = "primary-key";
|
|
|
|
pub const SEARCHABLE_FIELDS_KEY: &str = "searchable-fields";
|
2022-05-16 15:22:52 +02:00
|
|
|
pub const USER_DEFINED_SEARCHABLE_FIELDS_KEY: &str = "user-defined-searchable-fields";
|
2021-06-15 11:06:42 +02:00
|
|
|
pub const SOFT_EXTERNAL_DOCUMENTS_IDS_KEY: &str = "soft-external-documents-ids";
|
|
|
|
pub const STOP_WORDS_KEY: &str = "stop-words";
|
|
|
|
pub const STRING_FACETED_DOCUMENTS_IDS_PREFIX: &str = "string-faceted-documents-ids";
|
|
|
|
pub const SYNONYMS_KEY: &str = "synonyms";
|
|
|
|
pub const WORDS_FST_KEY: &str = "words-fst";
|
|
|
|
pub const WORDS_PREFIXES_FST_KEY: &str = "words-prefixes-fst";
|
|
|
|
pub const CREATED_AT_KEY: &str = "created-at";
|
|
|
|
pub const UPDATED_AT_KEY: &str = "updated-at";
|
2022-03-16 10:03:18 +01:00
|
|
|
pub const AUTHORIZE_TYPOS: &str = "authorize-typos";
|
2022-03-21 13:03:06 +01:00
|
|
|
pub const ONE_TYPO_WORD_LEN: &str = "one-typo-word-len";
|
|
|
|
pub const TWO_TYPOS_WORD_LEN: &str = "two-typos-word-len";
|
2022-03-21 14:03:31 +01:00
|
|
|
pub const EXACT_WORDS: &str = "exact-words";
|
2022-03-22 19:07:59 +01:00
|
|
|
pub const EXACT_ATTRIBUTES: &str = "exact-attributes";
|
2022-06-08 17:28:23 +02:00
|
|
|
pub const MAX_VALUES_PER_FACET: &str = "max-values-per-facet";
|
2022-06-22 12:00:45 +02:00
|
|
|
pub const PAGINATION_MAX_TOTAL_HITS: &str = "pagination-max-total-hits";
|
2021-06-15 11:06:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub mod db_name {
|
|
|
|
pub const MAIN: &str = "main";
|
|
|
|
pub const WORD_DOCIDS: &str = "word-docids";
|
2022-03-24 15:22:57 +01:00
|
|
|
pub const EXACT_WORD_DOCIDS: &str = "exact-word-docids";
|
2021-06-15 11:06:42 +02:00
|
|
|
pub const WORD_PREFIX_DOCIDS: &str = "word-prefix-docids";
|
2022-03-25 10:49:34 +01:00
|
|
|
pub const EXACT_WORD_PREFIX_DOCIDS: &str = "exact-word-prefix-docids";
|
2021-06-15 11:06:42 +02:00
|
|
|
pub const DOCID_WORD_POSITIONS: &str = "docid-word-positions";
|
|
|
|
pub const WORD_PAIR_PROXIMITY_DOCIDS: &str = "word-pair-proximity-docids";
|
|
|
|
pub const WORD_PREFIX_PAIR_PROXIMITY_DOCIDS: &str = "word-prefix-pair-proximity-docids";
|
2021-10-05 11:18:42 +02:00
|
|
|
pub const WORD_POSITION_DOCIDS: &str = "word-position-docids";
|
|
|
|
pub const WORD_PREFIX_POSITION_DOCIDS: &str = "word-prefix-position-docids";
|
2021-06-15 11:06:42 +02:00
|
|
|
pub const FIELD_ID_WORD_COUNT_DOCIDS: &str = "field-id-word-count-docids";
|
|
|
|
pub const FACET_ID_F64_DOCIDS: &str = "facet-id-f64-docids";
|
2022-07-19 09:30:19 +02:00
|
|
|
pub const FACET_ID_EXISTS_DOCIDS: &str = "facet-id-exists-docids";
|
2021-06-15 11:06:42 +02:00
|
|
|
pub const FACET_ID_STRING_DOCIDS: &str = "facet-id-string-docids";
|
|
|
|
pub const FIELD_ID_DOCID_FACET_F64S: &str = "field-id-docid-facet-f64s";
|
|
|
|
pub const FIELD_ID_DOCID_FACET_STRINGS: &str = "field-id-docid-facet-strings";
|
|
|
|
pub const DOCUMENTS: &str = "documents";
|
|
|
|
}
|
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.
|
2022-06-13 16:39:17 +02:00
|
|
|
pub(crate) 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).
|
2022-06-13 16:39:17 +02:00
|
|
|
pub(crate) 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>,
|
2022-03-24 15:22:57 +01:00
|
|
|
|
|
|
|
/// A word and all the documents ids containing the word, from attributes for which typos are not allowed.
|
|
|
|
pub exact_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
|
|
|
|
2022-03-25 10:49:34 +01:00
|
|
|
/// A prefix of word and all the documents ids containing this prefix, from attributes for which typos are not allowed.
|
|
|
|
pub exact_word_prefix_docids: Database<Str, RoaringBitmapCodec>,
|
|
|
|
|
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-10-05 11:18:42 +02:00
|
|
|
/// Maps the word and the position with the docids that corresponds to it.
|
|
|
|
pub word_position_docids: Database<StrBEU32Codec, 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-10-05 11:18:42 +02:00
|
|
|
/// Maps the position of a word prefix with all the docids where this prefix appears.
|
|
|
|
pub word_prefix_position_docids: Database<StrBEU32Codec, CboRoaringBitmapCodec>,
|
2021-04-21 11:49:26 +02:00
|
|
|
|
2022-07-19 09:30:19 +02:00
|
|
|
/// Maps the facet field id and the docids for which this field exists
|
|
|
|
pub facet_id_exists_docids: Database<FieldIdCodec, 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>,
|
2021-07-17 12:50:01 +02:00
|
|
|
/// Maps the facet field id and the string with the original string and docids that corresponds to it.
|
2021-08-16 13:36:30 +02:00
|
|
|
pub facet_id_string_docids: Database<FacetStringLevelZeroCodec, FacetStringLevelZeroValueCodec>,
|
2021-04-21 11:49:26 +02:00
|
|
|
|
|
|
|
/// 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.
|
2021-07-15 10:19:35 +02:00
|
|
|
pub field_id_docid_facet_strings: Database<FieldDocIdFacetStringCodec, Str>,
|
2021-04-21 11:49:26 +02:00
|
|
|
|
2020-10-22 14:23:33 +02:00
|
|
|
/// Maps the document id to the document as an obkv store.
|
2022-06-13 16:39:17 +02:00
|
|
|
pub(crate) documents: Database<OwnedType<BEU32>, ObkvCodec>,
|
2020-10-21 15:55:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Index {
|
2021-06-14 16:46:19 +02:00
|
|
|
pub fn new<P: AsRef<Path>>(mut options: heed::EnvOpenOptions, path: P) -> Result<Index> {
|
2021-06-15 11:06:42 +02:00
|
|
|
use db_name::*;
|
|
|
|
|
2022-07-19 09:30:19 +02:00
|
|
|
options.max_dbs(17);
|
2021-07-05 16:36:13 +02:00
|
|
|
unsafe { options.flag(Flags::MdbAlwaysFreePages) };
|
2020-10-30 10:56:35 +01:00
|
|
|
|
|
|
|
let env = options.open(path)?;
|
2021-06-15 11:06:42 +02:00
|
|
|
let main = env.create_poly_database(Some(MAIN))?;
|
|
|
|
let word_docids = env.create_database(Some(WORD_DOCIDS))?;
|
2022-03-24 15:22:57 +01:00
|
|
|
let exact_word_docids = env.create_database(Some(EXACT_WORD_DOCIDS))?;
|
2021-06-15 11:06:42 +02:00
|
|
|
let word_prefix_docids = env.create_database(Some(WORD_PREFIX_DOCIDS))?;
|
2022-03-25 10:49:34 +01:00
|
|
|
let exact_word_prefix_docids = env.create_database(Some(EXACT_WORD_PREFIX_DOCIDS))?;
|
2021-06-15 11:06:42 +02: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-06-16 18:33:33 +02:00
|
|
|
let word_prefix_pair_proximity_docids =
|
|
|
|
env.create_database(Some(WORD_PREFIX_PAIR_PROXIMITY_DOCIDS))?;
|
2021-10-05 11:18:42 +02:00
|
|
|
let word_position_docids = env.create_database(Some(WORD_POSITION_DOCIDS))?;
|
2021-06-15 11:06:42 +02:00
|
|
|
let field_id_word_count_docids = env.create_database(Some(FIELD_ID_WORD_COUNT_DOCIDS))?;
|
2021-10-05 11:18:42 +02:00
|
|
|
let word_prefix_position_docids = env.create_database(Some(WORD_PREFIX_POSITION_DOCIDS))?;
|
2021-06-15 11:06:42 +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))?;
|
2022-06-16 06:19:33 +02:00
|
|
|
let facet_id_exists_docids = env.create_database(Some(FACET_ID_EXISTS_DOCIDS))?;
|
2022-07-19 09:30:19 +02:00
|
|
|
|
2021-06-15 11:06:42 +02:00
|
|
|
let field_id_docid_facet_f64s = env.create_database(Some(FIELD_ID_DOCID_FACET_F64S))?;
|
2021-06-16 18:33:33 +02:00
|
|
|
let field_id_docid_facet_strings =
|
|
|
|
env.create_database(Some(FIELD_ID_DOCID_FACET_STRINGS))?;
|
2021-06-15 11:06:42 +02:00
|
|
|
let documents = env.create_database(Some(DOCUMENTS))?;
|
2020-10-30 10:56:35 +01:00
|
|
|
|
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,
|
2022-03-24 15:22:57 +01:00
|
|
|
exact_word_docids,
|
2021-02-03 10:30:33 +01:00
|
|
|
word_prefix_docids,
|
2022-03-25 10:49:34 +01:00
|
|
|
exact_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-10-05 11:18:42 +02:00
|
|
|
word_position_docids,
|
|
|
|
word_prefix_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,
|
2022-07-19 09:30:19 +02:00
|
|
|
facet_id_exists_docids,
|
2021-04-21 11:49:26 +02:00
|
|
|
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.
|
2022-02-15 11:41:55 +01:00
|
|
|
if main.get::<_, Str, SerdeJson<OffsetDateTime>>(&txn, main_key::CREATED_AT_KEY)?.is_none()
|
|
|
|
{
|
|
|
|
let now = OffsetDateTime::now_utc();
|
|
|
|
main.put::<_, Str, SerdeJson<OffsetDateTime>>(
|
|
|
|
&mut txn,
|
|
|
|
main_key::UPDATED_AT_KEY,
|
|
|
|
&now,
|
|
|
|
)?;
|
|
|
|
main.put::<_, Str, SerdeJson<OffsetDateTime>>(
|
|
|
|
&mut txn,
|
|
|
|
main_key::CREATED_AT_KEY,
|
|
|
|
&now,
|
|
|
|
)?;
|
2021-04-21 11:49:26 +02:00
|
|
|
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()
|
|
|
|
}
|
|
|
|
|
2022-06-22 16:23:11 +02:00
|
|
|
pub fn copy_to_path<P: AsRef<Path>>(&self, path: P, option: CompactionOption) -> Result<File> {
|
|
|
|
self.env.copy_to_path(path, option).map_err(Into::into)
|
|
|
|
}
|
|
|
|
|
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.
|
2021-06-16 18:33:33 +02:00
|
|
|
pub(crate) fn put_documents_ids(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
docids: &RoaringBitmap,
|
|
|
|
) -> heed::Result<()> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.put::<_, Str, RoaringBitmapCodec>(wtxn, main_key::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> {
|
2021-06-16 18:33:33 +02:00
|
|
|
Ok(self
|
|
|
|
.main
|
|
|
|
.get::<_, Str, RoaringBitmapCodec>(rtxn, main_key::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.
|
2021-06-14 16:46:19 +02:00
|
|
|
pub fn number_of_documents(&self, rtxn: &RoTxn) -> Result<u64> {
|
2021-06-16 18:33:33 +02:00
|
|
|
let count =
|
|
|
|
self.main.get::<_, Str, RoaringBitmapLenCodec>(rtxn, main_key::DOCUMENTS_IDS_KEY)?;
|
2021-03-09 10:24:27 +01:00
|
|
|
Ok(count.unwrap_or_default())
|
|
|
|
}
|
|
|
|
|
2022-06-13 17:59:34 +02:00
|
|
|
/* deleted documents ids */
|
|
|
|
|
|
|
|
/// Writes the soft deleted documents ids.
|
|
|
|
pub(crate) fn put_soft_deleted_documents_ids(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
docids: &RoaringBitmap,
|
|
|
|
) -> heed::Result<()> {
|
|
|
|
self.main.put::<_, Str, RoaringBitmapCodec>(
|
|
|
|
wtxn,
|
|
|
|
main_key::SOFT_DELETED_DOCUMENTS_IDS_KEY,
|
|
|
|
docids,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the soft deleted documents ids.
|
|
|
|
pub(crate) fn soft_deleted_documents_ids(&self, rtxn: &RoTxn) -> heed::Result<RoaringBitmap> {
|
|
|
|
Ok(self
|
|
|
|
.main
|
|
|
|
.get::<_, Str, RoaringBitmapCodec>(rtxn, main_key::SOFT_DELETED_DOCUMENTS_IDS_KEY)?
|
|
|
|
.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-06-15 13:45:20 +02:00
|
|
|
pub(crate) fn put_primary_key(&self, wtxn: &mut RwTxn, primary_key: &str) -> heed::Result<()> {
|
2022-02-15 11:41:55 +01:00
|
|
|
self.set_updated_at(wtxn, &OffsetDateTime::now_utc())?;
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.put::<_, Str, Str>(wtxn, main_key::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.
|
2021-06-30 10:07:31 +02:00
|
|
|
pub(crate) fn delete_primary_key(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.delete::<_, Str>(wtxn, main_key::PRIMARY_KEY_KEY)
|
2020-10-31 11:28:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// 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>> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.get::<_, Str, Str>(rtxn, main_key::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`).
|
2021-06-15 13:45:20 +02:00
|
|
|
pub(crate) fn put_external_documents_ids<'a>(
|
2020-11-22 17:28:41 +01:00
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
external_documents_ids: &ExternalDocumentsIds<'a>,
|
2021-06-16 18:33:33 +02:00
|
|
|
) -> heed::Result<()> {
|
2022-06-13 17:59:34 +02:00
|
|
|
let ExternalDocumentsIds { hard, soft, .. } = external_documents_ids;
|
2020-11-22 17:28:41 +01:00
|
|
|
let hard = hard.as_fst().as_bytes();
|
|
|
|
let soft = soft.as_fst().as_bytes();
|
2021-06-16 18:33:33 +02:00
|
|
|
self.main.put::<_, Str, ByteSlice>(
|
|
|
|
wtxn,
|
|
|
|
main_key::HARD_EXTERNAL_DOCUMENTS_IDS_KEY,
|
|
|
|
hard,
|
|
|
|
)?;
|
|
|
|
self.main.put::<_, Str, ByteSlice>(
|
|
|
|
wtxn,
|
|
|
|
main_key::SOFT_EXTERNAL_DOCUMENTS_IDS_KEY,
|
|
|
|
soft,
|
|
|
|
)?;
|
2020-11-22 17:28:41 +01:00
|
|
|
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`).
|
2021-06-14 16:46:19 +02:00
|
|
|
pub fn external_documents_ids<'t>(&self, rtxn: &'t RoTxn) -> Result<ExternalDocumentsIds<'t>> {
|
2021-06-16 18:33:33 +02:00
|
|
|
let hard =
|
|
|
|
self.main.get::<_, Str, ByteSlice>(rtxn, main_key::HARD_EXTERNAL_DOCUMENTS_IDS_KEY)?;
|
|
|
|
let soft =
|
|
|
|
self.main.get::<_, Str, ByteSlice>(rtxn, main_key::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)?,
|
|
|
|
};
|
2022-06-13 17:59:34 +02:00
|
|
|
let soft_deleted_docids = self.soft_deleted_documents_ids(rtxn)?;
|
|
|
|
Ok(ExternalDocumentsIds::new(hard, soft, soft_deleted_docids))
|
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.
|
2021-06-16 18:33:33 +02:00
|
|
|
pub(crate) fn put_fields_ids_map(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
map: &FieldsIdsMap,
|
|
|
|
) -> heed::Result<()> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.put::<_, Str, SerdeJson<FieldsIdsMap>>(wtxn, main_key::FIELDS_IDS_MAP_KEY, map)
|
2020-10-22 15:33:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// 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> {
|
2021-06-16 18:33:33 +02:00
|
|
|
Ok(self
|
|
|
|
.main
|
|
|
|
.get::<_, Str, SerdeJson<FieldsIdsMap>>(rtxn, main_key::FIELDS_IDS_MAP_KEY)?
|
|
|
|
.unwrap_or_default())
|
2020-10-22 15:33:09 +02:00
|
|
|
}
|
|
|
|
|
2021-08-23 16:32:11 +02:00
|
|
|
/* geo rtree */
|
|
|
|
|
2021-09-09 12:20:08 +02:00
|
|
|
/// Writes the provided `rtree` which associates coordinates to documents ids.
|
2021-08-23 18:41:48 +02:00
|
|
|
pub(crate) fn put_geo_rtree(
|
2021-08-23 16:32:11 +02:00
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
rtree: &RTree<GeoPoint>,
|
|
|
|
) -> heed::Result<()> {
|
|
|
|
self.main.put::<_, Str, SerdeBincode<RTree<GeoPoint>>>(wtxn, main_key::GEO_RTREE_KEY, rtree)
|
|
|
|
}
|
|
|
|
|
2021-09-09 12:20:08 +02:00
|
|
|
/// Delete the `rtree` which associates coordinates to documents ids.
|
2021-08-23 16:32:11 +02:00
|
|
|
pub(crate) fn delete_geo_rtree(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
|
|
|
self.main.delete::<_, Str>(wtxn, main_key::GEO_RTREE_KEY)
|
|
|
|
}
|
|
|
|
|
2021-09-09 12:20:08 +02:00
|
|
|
/// Returns the `rtree` which associates coordinates to documents ids.
|
2021-08-23 16:32:11 +02:00
|
|
|
pub fn geo_rtree<'t>(&self, rtxn: &'t RoTxn) -> Result<Option<RTree<GeoPoint>>> {
|
|
|
|
match self
|
|
|
|
.main
|
|
|
|
.get::<_, Str, SerdeBincode<RTree<GeoPoint>>>(rtxn, main_key::GEO_RTREE_KEY)?
|
|
|
|
{
|
|
|
|
Some(rtree) => Ok(Some(rtree)),
|
|
|
|
None => Ok(None),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-26 17:49:50 +02:00
|
|
|
/* geo faceted */
|
|
|
|
|
2021-09-09 12:20:08 +02:00
|
|
|
/// Writes the documents ids that are faceted with a _geo field.
|
2021-08-26 17:49:50 +02:00
|
|
|
pub(crate) fn put_geo_faceted_documents_ids(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
docids: &RoaringBitmap,
|
|
|
|
) -> heed::Result<()> {
|
|
|
|
self.main.put::<_, Str, RoaringBitmapCodec>(
|
|
|
|
wtxn,
|
|
|
|
main_key::GEO_FACETED_DOCUMENTS_IDS_KEY,
|
|
|
|
docids,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-09-09 12:20:08 +02:00
|
|
|
/// Delete the documents ids that are faceted with a _geo field.
|
|
|
|
pub(crate) fn delete_geo_faceted_documents_ids(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
|
|
|
self.main.delete::<_, Str>(wtxn, main_key::GEO_FACETED_DOCUMENTS_IDS_KEY)
|
2021-08-26 17:49:50 +02:00
|
|
|
}
|
|
|
|
|
2021-09-20 16:10:39 +02:00
|
|
|
/// Retrieve all the documents ids that are faceted with a _geo field.
|
2021-08-26 17:49:50 +02:00
|
|
|
pub fn geo_faceted_documents_ids(&self, rtxn: &RoTxn) -> heed::Result<RoaringBitmap> {
|
|
|
|
match self
|
|
|
|
.main
|
|
|
|
.get::<_, Str, RoaringBitmapCodec>(rtxn, main_key::GEO_FACETED_DOCUMENTS_IDS_KEY)?
|
|
|
|
{
|
|
|
|
Some(docids) => Ok(docids),
|
|
|
|
None => Ok(RoaringBitmap::new()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-17 15:16:20 +02:00
|
|
|
/* field distribution */
|
2021-03-31 17:14:23 +02:00
|
|
|
|
2021-06-17 15:16:20 +02:00
|
|
|
/// Writes the field distribution which associates every field name with
|
2021-04-01 09:07:16 +02:00
|
|
|
/// the number of times it occurs in the documents.
|
2021-06-17 15:16:20 +02:00
|
|
|
pub(crate) fn put_field_distribution(
|
2021-06-16 18:33:33 +02:00
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
2021-06-21 15:57:41 +02:00
|
|
|
distribution: &FieldDistribution,
|
2021-06-16 18:33:33 +02:00
|
|
|
) -> heed::Result<()> {
|
2021-06-21 15:57:41 +02:00
|
|
|
self.main.put::<_, Str, SerdeJson<FieldDistribution>>(
|
2021-06-16 18:33:33 +02:00
|
|
|
wtxn,
|
2021-06-17 15:16:20 +02:00
|
|
|
main_key::FIELD_DISTRIBUTION_KEY,
|
2021-06-16 18:33:33 +02:00
|
|
|
distribution,
|
|
|
|
)
|
2021-03-31 17:14:23 +02:00
|
|
|
}
|
2021-03-31 17:14:23 +02:00
|
|
|
|
2021-06-17 15:16:20 +02:00
|
|
|
/// Returns the field distribution which associates every field name with
|
2021-04-01 09:07:16 +02:00
|
|
|
/// the number of times it occurs in the documents.
|
2021-06-21 15:57:41 +02:00
|
|
|
pub fn field_distribution(&self, rtxn: &RoTxn) -> heed::Result<FieldDistribution> {
|
2021-06-16 18:33:33 +02:00
|
|
|
Ok(self
|
|
|
|
.main
|
2021-06-21 15:57:41 +02:00
|
|
|
.get::<_, Str, SerdeJson<FieldDistribution>>(rtxn, main_key::FIELD_DISTRIBUTION_KEY)?
|
2021-06-16 18:33:33 +02:00
|
|
|
.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-06-16 18:33:33 +02:00
|
|
|
pub(crate) fn put_displayed_fields(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
fields: &[&str],
|
|
|
|
) -> heed::Result<()> {
|
|
|
|
self.main.put::<_, Str, SerdeBincode<&[&str]>>(
|
|
|
|
wtxn,
|
|
|
|
main_key::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`.
|
2021-06-30 10:07:31 +02:00
|
|
|
pub(crate) fn delete_displayed_fields(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.delete::<_, Str>(wtxn, main_key::DISPLAYED_FIELDS_KEY)
|
2020-11-02 11:45:16 +01:00
|
|
|
}
|
|
|
|
|
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>>> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.get::<_, Str, SerdeBincode<Vec<&'t str>>>(rtxn, main_key::DISPLAYED_FIELDS_KEY)
|
2021-01-20 17:27:43 +01:00
|
|
|
}
|
|
|
|
|
2021-06-15 11:51:32 +02:00
|
|
|
/// Identical to `displayed_fields`, but returns the ids instead.
|
|
|
|
pub fn displayed_fields_ids(&self, rtxn: &RoTxn) -> Result<Option<Vec<FieldId>>> {
|
|
|
|
match self.displayed_fields(rtxn)? {
|
|
|
|
Some(fields) => {
|
|
|
|
let fields_ids_map = self.fields_ids_map(rtxn)?;
|
|
|
|
let mut fields_ids = Vec::new();
|
|
|
|
for name in fields.into_iter() {
|
2021-07-22 17:11:17 +02:00
|
|
|
if let Some(field_id) = fields_ids_map.id(name) {
|
|
|
|
fields_ids.push(field_id);
|
2021-06-15 11:51:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(Some(fields_ids))
|
2021-06-16 18:33:33 +02:00
|
|
|
}
|
2021-06-15 11:51:32 +02:00
|
|
|
None => Ok(None),
|
|
|
|
}
|
2020-11-02 11:45:16 +01:00
|
|
|
}
|
|
|
|
|
2020-11-01 17:52:04 +01:00
|
|
|
/* searchable fields */
|
|
|
|
|
2022-05-16 15:22:52 +02:00
|
|
|
/// Write the user defined searchable fields and generate the real searchable fields from the specified fields ids map.
|
|
|
|
pub(crate) fn put_all_searchable_fields_from_fields_ids_map(
|
2021-06-16 18:33:33 +02:00
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
2022-05-16 15:22:52 +02:00
|
|
|
user_fields: &[&str],
|
|
|
|
fields_ids_map: &FieldsIdsMap,
|
2021-06-16 18:33:33 +02:00
|
|
|
) -> heed::Result<()> {
|
2022-05-16 15:22:52 +02:00
|
|
|
// We can write the user defined searchable fields as-is.
|
|
|
|
self.put_user_defined_searchable_fields(wtxn, user_fields)?;
|
|
|
|
|
|
|
|
// Now we generate the real searchable fields:
|
|
|
|
// 1. Take the user defined searchable fields as-is to keep the priority defined by the attributes criterion.
|
|
|
|
// 2. Iterate over the user defined searchable fields.
|
|
|
|
// 3. If a user defined field is a subset of a field defined in the fields_ids_map
|
|
|
|
// (ie doggo.name is a subset of doggo) then we push it at the end of the fields.
|
|
|
|
let mut real_fields = user_fields.to_vec();
|
|
|
|
|
|
|
|
for field_from_map in fields_ids_map.names() {
|
|
|
|
for user_field in user_fields {
|
|
|
|
if crate::is_faceted_by(field_from_map, user_field)
|
|
|
|
&& !user_fields.contains(&field_from_map)
|
|
|
|
{
|
|
|
|
real_fields.push(field_from_map);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self.put_searchable_fields(wtxn, &real_fields)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn delete_all_searchable_fields(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
|
|
|
self.delete_searchable_fields(wtxn)?;
|
|
|
|
self.delete_user_defined_searchable_fields(wtxn)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Writes the searchable fields, when this list is specified, only these are indexed.
|
|
|
|
fn put_searchable_fields(&self, wtxn: &mut RwTxn, fields: &[&str]) -> heed::Result<()> {
|
2021-06-16 18:33:33 +02:00
|
|
|
self.main.put::<_, Str, SerdeBincode<&[&str]>>(
|
|
|
|
wtxn,
|
|
|
|
main_key::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.
|
2022-05-16 15:22:52 +02:00
|
|
|
fn delete_searchable_fields(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.delete::<_, Str>(wtxn, main_key::SEARCHABLE_FIELDS_KEY)
|
2020-11-01 17:52:04 +01:00
|
|
|
}
|
|
|
|
|
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>>> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.get::<_, Str, SerdeBincode<Vec<&'t str>>>(rtxn, main_key::SEARCHABLE_FIELDS_KEY)
|
2021-01-20 17:27:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Identical to `searchable_fields`, but returns the ids instead.
|
2021-06-15 11:51:32 +02:00
|
|
|
pub fn searchable_fields_ids(&self, rtxn: &RoTxn) -> Result<Option<Vec<FieldId>>> {
|
2021-01-20 17:27:43 +01:00
|
|
|
match self.searchable_fields(rtxn)? {
|
2021-06-15 11:51:32 +02:00
|
|
|
Some(fields) => {
|
|
|
|
let fields_ids_map = self.fields_ids_map(rtxn)?;
|
|
|
|
let mut fields_ids = Vec::new();
|
|
|
|
for name in fields {
|
2021-07-22 17:11:17 +02:00
|
|
|
if let Some(field_id) = fields_ids_map.id(name) {
|
|
|
|
fields_ids.push(field_id);
|
2021-06-15 11:51:32 +02:00
|
|
|
}
|
2021-01-20 17:27:43 +01:00
|
|
|
}
|
2021-06-15 11:51:32 +02:00
|
|
|
Ok(Some(fields_ids))
|
2021-06-16 18:33:33 +02:00
|
|
|
}
|
2021-01-20 17:27:43 +01:00
|
|
|
None => Ok(None),
|
|
|
|
}
|
2020-11-01 17:52:04 +01:00
|
|
|
}
|
|
|
|
|
2022-05-16 15:22:52 +02:00
|
|
|
/// Writes the searchable fields, when this list is specified, only these are indexed.
|
|
|
|
pub(crate) fn put_user_defined_searchable_fields(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
fields: &[&str],
|
|
|
|
) -> heed::Result<()> {
|
|
|
|
self.main.put::<_, Str, SerdeBincode<_>>(
|
|
|
|
wtxn,
|
|
|
|
main_key::USER_DEFINED_SEARCHABLE_FIELDS_KEY,
|
|
|
|
&fields,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Deletes the searchable fields, when no fields are specified, all fields are indexed.
|
|
|
|
pub(crate) fn delete_user_defined_searchable_fields(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
) -> heed::Result<bool> {
|
|
|
|
self.main.delete::<_, Str>(wtxn, main_key::USER_DEFINED_SEARCHABLE_FIELDS_KEY)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the user defined searchable fields.
|
|
|
|
pub fn user_defined_searchable_fields<'t>(
|
|
|
|
&self,
|
|
|
|
rtxn: &'t RoTxn,
|
|
|
|
) -> heed::Result<Option<Vec<&'t str>>> {
|
|
|
|
self.main
|
|
|
|
.get::<_, Str, SerdeBincode<Vec<_>>>(rtxn, main_key::USER_DEFINED_SEARCHABLE_FIELDS_KEY)
|
|
|
|
}
|
|
|
|
|
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.
|
2021-06-16 18:33:33 +02:00
|
|
|
pub(crate) fn put_filterable_fields(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
fields: &HashSet<String>,
|
|
|
|
) -> heed::Result<()> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.put::<_, Str, SerdeJson<_>>(wtxn, main_key::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.
|
2021-06-30 10:07:31 +02:00
|
|
|
pub(crate) fn delete_filterable_fields(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.delete::<_, Str>(wtxn, main_key::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>> {
|
2021-06-16 18:33:33 +02:00
|
|
|
Ok(self
|
|
|
|
.main
|
|
|
|
.get::<_, Str, SerdeJson<_>>(rtxn, main_key::FILTERABLE_FIELDS_KEY)?
|
|
|
|
.unwrap_or_default())
|
2021-06-01 12:19:55 +02:00
|
|
|
}
|
|
|
|
|
2021-06-15 11:51:32 +02:00
|
|
|
/// Identical to `filterable_fields`, but returns ids instead.
|
|
|
|
pub fn filterable_fields_ids(&self, rtxn: &RoTxn) -> Result<HashSet<FieldId>> {
|
|
|
|
let fields = self.filterable_fields(rtxn)?;
|
2021-06-01 12:19:55 +02:00
|
|
|
let fields_ids_map = self.fields_ids_map(rtxn)?;
|
|
|
|
|
2021-06-15 11:51:32 +02:00
|
|
|
let mut fields_ids = HashSet::new();
|
|
|
|
for name in fields {
|
2021-07-22 17:11:17 +02:00
|
|
|
if let Some(field_id) = fields_ids_map.id(&name) {
|
|
|
|
fields_ids.insert(field_id);
|
2021-06-15 11:51:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(fields_ids)
|
2021-06-01 12:19:55 +02:00
|
|
|
}
|
2021-06-01 12:20:29 +02:00
|
|
|
|
2021-08-23 11:37:18 +02:00
|
|
|
/* sortable fields */
|
|
|
|
|
|
|
|
/// Writes the sortable fields names in the database.
|
|
|
|
pub(crate) fn put_sortable_fields(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
fields: &HashSet<String>,
|
|
|
|
) -> heed::Result<()> {
|
|
|
|
self.main.put::<_, Str, SerdeJson<_>>(wtxn, main_key::SORTABLE_FIELDS_KEY, fields)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Deletes the sortable fields ids in the database.
|
|
|
|
pub(crate) fn delete_sortable_fields(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
|
|
|
self.main.delete::<_, Str>(wtxn, main_key::SORTABLE_FIELDS_KEY)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the sortable fields names.
|
|
|
|
pub fn sortable_fields(&self, rtxn: &RoTxn) -> heed::Result<HashSet<String>> {
|
|
|
|
Ok(self
|
|
|
|
.main
|
|
|
|
.get::<_, Str, SerdeJson<_>>(rtxn, main_key::SORTABLE_FIELDS_KEY)?
|
|
|
|
.unwrap_or_default())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Identical to `sortable_fields`, but returns ids instead.
|
|
|
|
pub fn sortable_fields_ids(&self, rtxn: &RoTxn) -> Result<HashSet<FieldId>> {
|
|
|
|
let fields = self.sortable_fields(rtxn)?;
|
|
|
|
let fields_ids_map = self.fields_ids_map(rtxn)?;
|
|
|
|
Ok(fields.into_iter().filter_map(|name| fields_ids_map.id(&name)).collect())
|
|
|
|
}
|
|
|
|
|
2022-03-23 17:28:41 +01:00
|
|
|
/* faceted fields */
|
|
|
|
|
|
|
|
/// Writes the faceted fields in the database.
|
|
|
|
pub(crate) fn put_faceted_fields(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
fields: &HashSet<String>,
|
|
|
|
) -> heed::Result<()> {
|
|
|
|
self.main.put::<_, Str, SerdeJson<_>>(wtxn, main_key::HIDDEN_FACETED_FIELDS_KEY, fields)
|
|
|
|
}
|
2021-06-01 12:20:29 +02:00
|
|
|
|
|
|
|
/// Returns the faceted fields names.
|
2022-03-23 17:28:41 +01:00
|
|
|
pub fn faceted_fields(&self, rtxn: &RoTxn) -> heed::Result<HashSet<String>> {
|
|
|
|
Ok(self
|
|
|
|
.main
|
|
|
|
.get::<_, Str, SerdeJson<_>>(rtxn, main_key::HIDDEN_FACETED_FIELDS_KEY)?
|
|
|
|
.unwrap_or_default())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Identical to `faceted_fields`, but returns ids instead.
|
|
|
|
pub fn faceted_fields_ids(&self, rtxn: &RoTxn) -> Result<HashSet<FieldId>> {
|
|
|
|
let fields = self.faceted_fields(rtxn)?;
|
|
|
|
let fields_ids_map = self.fields_ids_map(rtxn)?;
|
|
|
|
|
|
|
|
let mut fields_ids = HashSet::new();
|
|
|
|
for name in fields {
|
|
|
|
if let Some(field_id) = fields_ids_map.id(&name) {
|
|
|
|
fields_ids.insert(field_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(fields_ids)
|
|
|
|
}
|
|
|
|
|
|
|
|
/* faceted documents ids */
|
|
|
|
|
|
|
|
/// Returns the user defined faceted fields names.
|
2021-06-01 12:20:29 +02:00
|
|
|
///
|
2022-03-23 17:28:41 +01:00
|
|
|
/// The user faceted fields are the union of all the filterable, sortable, distinct, and Asc/Desc fields.
|
|
|
|
pub fn user_defined_faceted_fields(&self, rtxn: &RoTxn) -> Result<HashSet<String>> {
|
2021-06-01 12:20:29 +02:00
|
|
|
let filterable_fields = self.filterable_fields(rtxn)?;
|
2021-08-23 11:37:18 +02:00
|
|
|
let sortable_fields = self.sortable_fields(rtxn)?;
|
2021-06-01 16:29:14 +02:00
|
|
|
let distinct_field = self.distinct_field(rtxn)?;
|
2021-06-16 18:33:33 +02:00
|
|
|
let asc_desc_fields =
|
|
|
|
self.criteria(rtxn)?.into_iter().filter_map(|criterion| match criterion {
|
2021-06-01 12:20:29 +02:00
|
|
|
Criterion::Asc(field) | Criterion::Desc(field) => Some(field),
|
|
|
|
_otherwise => None,
|
|
|
|
});
|
|
|
|
|
|
|
|
let mut faceted_fields = filterable_fields;
|
2021-08-23 11:37:18 +02:00
|
|
|
faceted_fields.extend(sortable_fields);
|
2021-06-01 12:20:29 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-03-23 17:28:41 +01:00
|
|
|
/// Identical to `user_defined_faceted_fields`, but returns ids instead.
|
|
|
|
pub fn user_defined_faceted_fields_ids(&self, rtxn: &RoTxn) -> Result<HashSet<FieldId>> {
|
2021-06-15 11:51:32 +02:00
|
|
|
let fields = self.faceted_fields(rtxn)?;
|
2021-01-20 17:27:43 +01:00
|
|
|
let fields_ids_map = self.fields_ids_map(rtxn)?;
|
2021-04-28 17:58:16 +02:00
|
|
|
|
2021-06-15 11:51:32 +02:00
|
|
|
let mut fields_ids = HashSet::new();
|
|
|
|
for name in fields.into_iter() {
|
2021-07-22 17:11:17 +02:00
|
|
|
if let Some(field_id) = fields_ids_map.id(&name) {
|
|
|
|
fields_ids.insert(field_id);
|
2021-06-15 11:51:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(fields_ids)
|
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.
|
2021-06-15 13:45:20 +02:00
|
|
|
pub(crate) fn put_number_faceted_documents_ids(
|
2021-04-28 17:58:16 +02:00
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
field_id: FieldId,
|
|
|
|
docids: &RoaringBitmap,
|
2021-06-16 18:33:33 +02:00
|
|
|
) -> heed::Result<()> {
|
2021-07-29 15:49:23 +02:00
|
|
|
let mut buffer =
|
|
|
|
[0u8; main_key::NUMBER_FACETED_DOCUMENTS_IDS_PREFIX.len() + size_of::<FieldId>()];
|
2021-07-22 19:18:22 +02:00
|
|
|
buffer[..main_key::NUMBER_FACETED_DOCUMENTS_IDS_PREFIX.len()]
|
|
|
|
.copy_from_slice(main_key::NUMBER_FACETED_DOCUMENTS_IDS_PREFIX.as_bytes());
|
|
|
|
buffer[main_key::NUMBER_FACETED_DOCUMENTS_IDS_PREFIX.len()..]
|
2021-07-06 11:31:24 +02:00
|
|
|
.copy_from_slice(&field_id.to_be_bytes());
|
2021-04-28 17:58:16 +02:00
|
|
|
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,
|
2021-06-16 18:33:33 +02:00
|
|
|
) -> heed::Result<RoaringBitmap> {
|
2021-07-29 15:49:23 +02:00
|
|
|
let mut buffer =
|
|
|
|
[0u8; main_key::NUMBER_FACETED_DOCUMENTS_IDS_PREFIX.len() + size_of::<FieldId>()];
|
2021-07-22 19:18:22 +02:00
|
|
|
buffer[..main_key::NUMBER_FACETED_DOCUMENTS_IDS_PREFIX.len()]
|
|
|
|
.copy_from_slice(main_key::NUMBER_FACETED_DOCUMENTS_IDS_PREFIX.as_bytes());
|
|
|
|
buffer[main_key::NUMBER_FACETED_DOCUMENTS_IDS_PREFIX.len()..]
|
2021-07-06 11:31:24 +02:00
|
|
|
.copy_from_slice(&field_id.to_be_bytes());
|
2021-04-28 17:58:16 +02:00
|
|
|
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.
|
2021-06-15 13:45:20 +02:00
|
|
|
pub(crate) fn put_string_faceted_documents_ids(
|
2021-04-28 17:58:16 +02:00
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
field_id: FieldId,
|
|
|
|
docids: &RoaringBitmap,
|
2021-06-16 18:33:33 +02:00
|
|
|
) -> heed::Result<()> {
|
2021-07-29 15:49:23 +02:00
|
|
|
let mut buffer =
|
|
|
|
[0u8; main_key::STRING_FACETED_DOCUMENTS_IDS_PREFIX.len() + size_of::<FieldId>()];
|
2021-07-22 19:18:22 +02:00
|
|
|
buffer[..main_key::STRING_FACETED_DOCUMENTS_IDS_PREFIX.len()]
|
|
|
|
.copy_from_slice(main_key::STRING_FACETED_DOCUMENTS_IDS_PREFIX.as_bytes());
|
|
|
|
buffer[main_key::STRING_FACETED_DOCUMENTS_IDS_PREFIX.len()..]
|
2021-07-06 11:31:24 +02:00
|
|
|
.copy_from_slice(&field_id.to_be_bytes());
|
2020-11-23 13:08:57 +01:00
|
|
|
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,
|
2021-06-16 18:33:33 +02:00
|
|
|
) -> heed::Result<RoaringBitmap> {
|
2021-07-29 15:49:23 +02:00
|
|
|
let mut buffer =
|
|
|
|
[0u8; main_key::STRING_FACETED_DOCUMENTS_IDS_PREFIX.len() + size_of::<FieldId>()];
|
2021-07-22 19:18:22 +02:00
|
|
|
buffer[..main_key::STRING_FACETED_DOCUMENTS_IDS_PREFIX.len()]
|
|
|
|
.copy_from_slice(main_key::STRING_FACETED_DOCUMENTS_IDS_PREFIX.as_bytes());
|
|
|
|
buffer[main_key::STRING_FACETED_DOCUMENTS_IDS_PREFIX.len()..]
|
2021-07-06 11:31:24 +02:00
|
|
|
.copy_from_slice(&field_id.to_be_bytes());
|
2020-11-23 13:08:57 +01:00
|
|
|
match self.main.get::<_, ByteSlice, RoaringBitmapCodec>(rtxn, &buffer)? {
|
|
|
|
Some(docids) => Ok(docids),
|
|
|
|
None => Ok(RoaringBitmap::new()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-19 09:30:19 +02:00
|
|
|
/// Retrieve all the documents which contain this field id
|
|
|
|
pub fn exists_faceted_documents_ids(
|
|
|
|
&self,
|
|
|
|
rtxn: &RoTxn,
|
|
|
|
field_id: FieldId,
|
|
|
|
) -> heed::Result<RoaringBitmap> {
|
2022-07-04 08:41:54 +02:00
|
|
|
match self.facet_id_exists_docids.get(rtxn, &BEU16::new(field_id))? {
|
2022-07-19 09:30:19 +02:00
|
|
|
Some(docids) => Ok(docids),
|
|
|
|
None => Ok(RoaringBitmap::new()),
|
2020-11-23 13:08:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-01 16:29:14 +02:00
|
|
|
/* distinct field */
|
2021-04-14 12:00:45 +02:00
|
|
|
|
2021-06-16 18:33:33 +02:00
|
|
|
pub(crate) fn put_distinct_field(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
distinct_field: &str,
|
|
|
|
) -> heed::Result<()> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.put::<_, Str, Str>(wtxn, main_key::DISTINCT_FIELD_KEY, distinct_field)
|
2021-04-14 12:00:45 +02:00
|
|
|
}
|
|
|
|
|
2021-06-01 16:29:14 +02:00
|
|
|
pub fn distinct_field<'a>(&self, rtxn: &'a RoTxn) -> heed::Result<Option<&'a str>> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.get::<_, Str, Str>(rtxn, main_key::DISTINCT_FIELD_KEY)
|
2021-04-14 12:00:45 +02:00
|
|
|
}
|
|
|
|
|
2021-06-01 16:29:14 +02:00
|
|
|
pub(crate) fn delete_distinct_field(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.delete::<_, Str>(wtxn, main_key::DISTINCT_FIELD_KEY)
|
2021-04-14 12:00:45 +02:00
|
|
|
}
|
|
|
|
|
2020-11-27 12:14:56 +01:00
|
|
|
/* criteria */
|
|
|
|
|
2021-06-16 18:33:33 +02:00
|
|
|
pub(crate) fn put_criteria(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
criteria: &[Criterion],
|
|
|
|
) -> heed::Result<()> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.put::<_, Str, SerdeJson<&[Criterion]>>(wtxn, main_key::CRITERIA_KEY, &criteria)
|
2020-11-27 12:14:56 +01:00
|
|
|
}
|
|
|
|
|
2021-06-30 10:07:31 +02:00
|
|
|
pub(crate) fn delete_criteria(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.delete::<_, Str>(wtxn, main_key::CRITERIA_KEY)
|
2020-11-27 12:14:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn criteria(&self, rtxn: &RoTxn) -> heed::Result<Vec<Criterion>> {
|
2021-06-15 11:06:42 +02:00
|
|
|
match self.main.get::<_, Str, SerdeJson<Vec<Criterion>>>(rtxn, main_key::CRITERIA_KEY)? {
|
2020-11-27 12:14:56 +01:00
|
|
|
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.
|
2021-06-16 18:33:33 +02:00
|
|
|
pub(crate) fn put_words_fst<A: AsRef<[u8]>>(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
fst: &fst::Set<A>,
|
|
|
|
) -> heed::Result<()> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.put::<_, Str, ByteSlice>(wtxn, main_key::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.
|
2021-06-14 16:46:19 +02:00
|
|
|
pub fn words_fst<'t>(&self, rtxn: &'t RoTxn) -> Result<fst::Set<Cow<'t, [u8]>>> {
|
2021-06-15 11:06:42 +02:00
|
|
|
match self.main.get::<_, Str, ByteSlice>(rtxn, main_key::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 */
|
|
|
|
|
2021-06-16 18:33:33 +02:00
|
|
|
pub(crate) fn put_stop_words<A: AsRef<[u8]>>(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
fst: &fst::Set<A>,
|
|
|
|
) -> heed::Result<()> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.put::<_, Str, ByteSlice>(wtxn, main_key::STOP_WORDS_KEY, fst.as_fst().as_bytes())
|
2021-03-29 19:15:47 +02:00
|
|
|
}
|
|
|
|
|
2021-06-30 10:07:31 +02:00
|
|
|
pub(crate) fn delete_stop_words(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.delete::<_, Str>(wtxn, main_key::STOP_WORDS_KEY)
|
2021-03-29 19:15:47 +02:00
|
|
|
}
|
2021-04-07 10:53:57 +02:00
|
|
|
|
2021-06-14 16:46:19 +02:00
|
|
|
pub fn stop_words<'t>(&self, rtxn: &'t RoTxn) -> Result<Option<fst::Set<&'t [u8]>>> {
|
2021-06-15 11:06:42 +02:00
|
|
|
match self.main.get::<_, Str, ByteSlice>(rtxn, main_key::STOP_WORDS_KEY)? {
|
2021-03-29 19:15:47 +02:00
|
|
|
Some(bytes) => Ok(Some(fst::Set::new(bytes)?)),
|
|
|
|
None => Ok(None),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-07 10:53:57 +02:00
|
|
|
/* synonyms */
|
|
|
|
|
2021-06-15 13:45:20 +02:00
|
|
|
pub(crate) fn put_synonyms(
|
2021-06-15 11:06:42 +02:00
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
synonyms: &HashMap<Vec<String>, Vec<Vec<String>>>,
|
2021-06-16 18:33:33 +02:00
|
|
|
) -> heed::Result<()> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.put::<_, Str, SerdeBincode<_>>(wtxn, main_key::SYNONYMS_KEY, synonyms)
|
2021-04-07 10:53:57 +02:00
|
|
|
}
|
|
|
|
|
2021-06-30 10:07:31 +02:00
|
|
|
pub(crate) fn delete_synonyms(&self, wtxn: &mut RwTxn) -> heed::Result<bool> {
|
2021-06-15 11:06:42 +02:00
|
|
|
self.main.delete::<_, Str>(wtxn, main_key::SYNONYMS_KEY)
|
2021-04-07 10:53:57 +02:00
|
|
|
}
|
|
|
|
|
2021-04-09 21:56:20 +02:00
|
|
|
pub fn synonyms(&self, rtxn: &RoTxn) -> heed::Result<HashMap<Vec<String>, Vec<Vec<String>>>> {
|
2021-06-16 18:33:33 +02:00
|
|
|
Ok(self
|
|
|
|
.main
|
|
|
|
.get::<_, Str, SerdeBincode<_>>(rtxn, main_key::SYNONYMS_KEY)?
|
|
|
|
.unwrap_or_default())
|
2021-04-07 10:53:57 +02:00
|
|
|
}
|
|
|
|
|
2021-06-15 11:06:42 +02:00
|
|
|
pub fn words_synonyms<S: AsRef<str>>(
|
|
|
|
&self,
|
|
|
|
rtxn: &RoTxn,
|
|
|
|
words: &[S],
|
2021-06-16 18:33:33 +02:00
|
|
|
) -> heed::Result<Option<Vec<Vec<String>>>> {
|
2021-04-09 21:56:20 +02:00
|
|
|
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.
|
2021-06-16 18:33:33 +02:00
|
|
|
pub(crate) fn put_words_prefixes_fst<A: AsRef<[u8]>>(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
fst: &fst::Set<A>,
|
|
|
|
) -> heed::Result<()> {
|
|
|
|
self.main.put::<_, Str, ByteSlice>(
|
|
|
|
wtxn,
|
|
|
|
main_key::WORDS_PREFIXES_FST_KEY,
|
|
|
|
fst.as_fst().as_bytes(),
|
|
|
|
)
|
2021-02-03 10:30:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the FST which is the words prefixes dictionnary of the engine.
|
2021-06-14 16:46:19 +02:00
|
|
|
pub fn words_prefixes_fst<'t>(&self, rtxn: &'t RoTxn) -> Result<fst::Set<Cow<'t, [u8]>>> {
|
2021-06-15 11:06:42 +02:00
|
|
|
match self.main.get::<_, Str, ByteSlice>(rtxn, main_key::WORDS_PREFIXES_FST_KEY)? {
|
2021-02-03 10:30:33 +01:00
|
|
|
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,
|
2021-06-16 18:33:33 +02:00
|
|
|
ids: impl IntoIterator<Item = DocumentId>,
|
2021-07-06 11:31:24 +02:00
|
|
|
) -> Result<Vec<(DocumentId, obkv::KvReaderU16<'t>)>> {
|
2022-06-13 17:59:34 +02:00
|
|
|
let soft_deleted_documents = self.soft_deleted_documents_ids(rtxn)?;
|
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 {
|
2022-06-13 17:59:34 +02:00
|
|
|
if soft_deleted_documents.contains(id) {
|
2022-07-04 14:59:11 +02:00
|
|
|
return Err(UserError::AccessingSoftDeletedDocument { document_id: id })?;
|
2022-06-13 17:59:34 +02:00
|
|
|
}
|
2021-06-16 18:33:33 +02:00
|
|
|
let kv = self
|
|
|
|
.documents
|
|
|
|
.get(rtxn, &BEU32::new(id))?
|
2021-06-14 16:46:19 +02:00
|
|
|
.ok_or_else(|| UserError::UnknownInternalDocumentId { document_id: 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,
|
2021-07-06 11:31:24 +02:00
|
|
|
) -> Result<impl Iterator<Item = heed::Result<(DocumentId, obkv::KvReaderU16<'t>)>>> {
|
2022-06-13 17:59:34 +02:00
|
|
|
let soft_deleted_docids = self.soft_deleted_documents_ids(rtxn)?;
|
|
|
|
|
2021-05-04 11:23:51 +02:00
|
|
|
Ok(self
|
|
|
|
.documents
|
|
|
|
.iter(rtxn)?
|
|
|
|
// we cast the BEU32 to a DocumentId
|
2022-06-13 17:59:34 +02:00
|
|
|
.map(|document| document.map(|(id, obkv)| (id.get(), obkv)))
|
|
|
|
.filter(move |document| {
|
|
|
|
document.as_ref().map_or(true, |(id, _)| !soft_deleted_docids.contains(*id))
|
|
|
|
}))
|
2021-05-04 11:23:51 +02:00
|
|
|
}
|
|
|
|
|
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.
|
2022-02-15 11:41:55 +01:00
|
|
|
pub fn created_at(&self, rtxn: &RoTxn) -> Result<OffsetDateTime> {
|
2021-06-16 18:33:33 +02:00
|
|
|
Ok(self
|
|
|
|
.main
|
2022-02-15 11:41:55 +01:00
|
|
|
.get::<_, Str, SerdeJson<OffsetDateTime>>(rtxn, main_key::CREATED_AT_KEY)?
|
2021-06-15 11:51:32 +02:00
|
|
|
.ok_or(InternalError::DatabaseMissingEntry {
|
|
|
|
db_name: db_name::MAIN,
|
|
|
|
key: Some(main_key::CREATED_AT_KEY),
|
|
|
|
})?)
|
2021-03-11 18:32:04 +01:00
|
|
|
}
|
|
|
|
|
2021-03-11 18:42:21 +01:00
|
|
|
/// Returns the index last updated time.
|
2022-02-15 11:41:55 +01:00
|
|
|
pub fn updated_at(&self, rtxn: &RoTxn) -> Result<OffsetDateTime> {
|
2021-06-16 18:33:33 +02:00
|
|
|
Ok(self
|
|
|
|
.main
|
2022-02-15 11:41:55 +01:00
|
|
|
.get::<_, Str, SerdeJson<OffsetDateTime>>(rtxn, main_key::UPDATED_AT_KEY)?
|
2021-06-15 11:51:32 +02:00
|
|
|
.ok_or(InternalError::DatabaseMissingEntry {
|
|
|
|
db_name: db_name::MAIN,
|
|
|
|
key: Some(main_key::UPDATED_AT_KEY),
|
|
|
|
})?)
|
2021-03-11 18:32:04 +01:00
|
|
|
}
|
|
|
|
|
2021-06-16 18:33:33 +02:00
|
|
|
pub(crate) fn set_updated_at(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
2022-02-15 11:41:55 +01:00
|
|
|
time: &OffsetDateTime,
|
2021-06-16 18:33:33 +02:00
|
|
|
) -> heed::Result<()> {
|
2022-02-15 11:41:55 +01:00
|
|
|
self.main.put::<_, Str, SerdeJson<OffsetDateTime>>(wtxn, main_key::UPDATED_AT_KEY, &time)
|
2021-03-11 18:32:04 +01:00
|
|
|
}
|
2022-03-16 10:03:18 +01:00
|
|
|
|
|
|
|
pub fn authorize_typos(&self, txn: &RoTxn) -> heed::Result<bool> {
|
|
|
|
// It is not possible to put a bool in heed with OwnedType, so we put a u8 instead. We
|
|
|
|
// identify 0 as being false, and anything else as true. The absence of a value is true,
|
|
|
|
// because by default, we authorize typos.
|
|
|
|
match self.main.get::<_, Str, OwnedType<u8>>(txn, main_key::AUTHORIZE_TYPOS)? {
|
|
|
|
Some(0) => Ok(false),
|
|
|
|
_ => Ok(true),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn put_authorize_typos(&self, txn: &mut RwTxn, flag: bool) -> heed::Result<()> {
|
|
|
|
// It is not possible to put a bool in heed with OwnedType, so we put a u8 instead. We
|
|
|
|
// identify 0 as being false, and anything else as true. The absence of a value is true,
|
|
|
|
// because by default, we authorize typos.
|
|
|
|
self.main.put::<_, Str, OwnedType<u8>>(txn, main_key::AUTHORIZE_TYPOS, &(flag as u8))?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2022-03-21 13:03:06 +01:00
|
|
|
|
2022-03-31 18:23:12 +02:00
|
|
|
pub fn min_word_len_one_typo(&self, txn: &RoTxn) -> heed::Result<u8> {
|
2022-03-21 13:03:06 +01:00
|
|
|
// It is not possible to put a bool in heed with OwnedType, so we put a u8 instead. We
|
|
|
|
// identify 0 as being false, and anything else as true. The absence of a value is true,
|
|
|
|
// because by default, we authorize typos.
|
|
|
|
Ok(self
|
|
|
|
.main
|
|
|
|
.get::<_, Str, OwnedType<u8>>(txn, main_key::ONE_TYPO_WORD_LEN)?
|
2022-03-31 18:23:12 +02:00
|
|
|
.unwrap_or(DEFAULT_MIN_WORD_LEN_ONE_TYPO))
|
2022-03-21 13:03:06 +01:00
|
|
|
}
|
|
|
|
|
2022-03-31 18:23:12 +02:00
|
|
|
pub(crate) fn put_min_word_len_one_typo(&self, txn: &mut RwTxn, val: u8) -> heed::Result<()> {
|
2022-03-21 13:03:06 +01:00
|
|
|
// It is not possible to put a bool in heed with OwnedType, so we put a u8 instead. We
|
|
|
|
// identify 0 as being false, and anything else as true. The absence of a value is true,
|
|
|
|
// because by default, we authorize typos.
|
|
|
|
self.main.put::<_, Str, OwnedType<u8>>(txn, main_key::ONE_TYPO_WORD_LEN, &val)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-03-31 18:23:12 +02:00
|
|
|
pub fn min_word_len_two_typos(&self, txn: &RoTxn) -> heed::Result<u8> {
|
2022-03-21 13:03:06 +01:00
|
|
|
// It is not possible to put a bool in heed with OwnedType, so we put a u8 instead. We
|
|
|
|
// identify 0 as being false, and anything else as true. The absence of a value is true,
|
|
|
|
// because by default, we authorize typos.
|
|
|
|
Ok(self
|
|
|
|
.main
|
|
|
|
.get::<_, Str, OwnedType<u8>>(txn, main_key::TWO_TYPOS_WORD_LEN)?
|
2022-03-31 18:23:12 +02:00
|
|
|
.unwrap_or(DEFAULT_MIN_WORD_LEN_TWO_TYPOS))
|
2022-03-21 13:03:06 +01:00
|
|
|
}
|
|
|
|
|
2022-03-31 18:23:12 +02:00
|
|
|
pub(crate) fn put_min_word_len_two_typos(&self, txn: &mut RwTxn, val: u8) -> heed::Result<()> {
|
2022-03-21 13:03:06 +01:00
|
|
|
// It is not possible to put a bool in heed with OwnedType, so we put a u8 instead. We
|
|
|
|
// identify 0 as being false, and anything else as true. The absence of a value is true,
|
|
|
|
// because by default, we authorize typos.
|
|
|
|
self.main.put::<_, Str, OwnedType<u8>>(txn, main_key::TWO_TYPOS_WORD_LEN, &val)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
2022-03-21 14:03:31 +01:00
|
|
|
|
|
|
|
/// List the words on which typo are not allowed
|
2022-05-24 09:15:49 +02:00
|
|
|
pub fn exact_words<'t>(&self, txn: &'t RoTxn) -> Result<Option<fst::Set<Cow<'t, [u8]>>>> {
|
2022-03-21 14:03:31 +01:00
|
|
|
match self.main.get::<_, Str, ByteSlice>(txn, main_key::EXACT_WORDS)? {
|
2022-05-24 09:15:49 +02:00
|
|
|
Some(bytes) => Ok(Some(fst::Set::new(bytes)?.map_data(Cow::Borrowed)?)),
|
|
|
|
None => Ok(None),
|
2022-03-21 14:03:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn put_exact_words<A: AsRef<[u8]>>(
|
|
|
|
&self,
|
|
|
|
txn: &mut RwTxn,
|
|
|
|
words: &fst::Set<A>,
|
|
|
|
) -> Result<()> {
|
|
|
|
self.main.put::<_, Str, ByteSlice>(
|
|
|
|
txn,
|
|
|
|
main_key::EXACT_WORDS,
|
|
|
|
words.as_fst().as_bytes(),
|
|
|
|
)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
2022-03-22 19:07:59 +01:00
|
|
|
|
2022-04-05 14:10:22 +02:00
|
|
|
/// Returns the exact attributes: attributes for which typo is disallowed.
|
2022-03-22 19:07:59 +01:00
|
|
|
pub fn exact_attributes<'t>(&self, txn: &'t RoTxn) -> Result<Vec<&'t str>> {
|
|
|
|
Ok(self
|
|
|
|
.main
|
|
|
|
.get::<_, Str, SerdeBincode<Vec<&str>>>(txn, main_key::EXACT_ATTRIBUTES)?
|
|
|
|
.unwrap_or_default())
|
|
|
|
}
|
2022-03-30 16:07:59 +02:00
|
|
|
|
2022-04-05 14:10:22 +02:00
|
|
|
/// Returns the list of exact attributes field ids.
|
2022-03-24 17:00:29 +01:00
|
|
|
pub fn exact_attributes_ids(&self, txn: &RoTxn) -> Result<HashSet<FieldId>> {
|
|
|
|
let attrs = self.exact_attributes(txn)?;
|
|
|
|
let fid_map = self.fields_ids_map(txn)?;
|
|
|
|
Ok(attrs.iter().filter_map(|attr| fid_map.id(attr)).collect())
|
|
|
|
}
|
2022-03-22 19:07:59 +01:00
|
|
|
|
2022-04-05 14:10:22 +02:00
|
|
|
/// Writes the exact attributes to the database.
|
2022-03-22 19:07:59 +01:00
|
|
|
pub(crate) fn put_exact_attributes(&self, txn: &mut RwTxn, attrs: &[&str]) -> Result<()> {
|
|
|
|
self.main.put::<_, Str, SerdeBincode<&[&str]>>(txn, main_key::EXACT_ATTRIBUTES, &attrs)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-04-05 14:10:22 +02:00
|
|
|
/// Clears the exact attributes from the store.
|
2022-03-22 19:07:59 +01:00
|
|
|
pub(crate) fn delete_exact_attributes(&self, txn: &mut RwTxn) -> Result<()> {
|
|
|
|
self.main.delete::<_, Str>(txn, main_key::EXACT_ATTRIBUTES)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
2022-06-08 17:28:23 +02:00
|
|
|
|
|
|
|
pub fn max_values_per_facet(&self, txn: &RoTxn) -> heed::Result<Option<usize>> {
|
|
|
|
self.main.get::<_, Str, OwnedType<usize>>(txn, main_key::MAX_VALUES_PER_FACET)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn put_max_values_per_facet(&self, txn: &mut RwTxn, val: usize) -> heed::Result<()> {
|
|
|
|
self.main.put::<_, Str, OwnedType<usize>>(txn, main_key::MAX_VALUES_PER_FACET, &val)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn delete_max_values_per_facet(&self, txn: &mut RwTxn) -> heed::Result<bool> {
|
|
|
|
self.main.delete::<_, Str>(txn, main_key::MAX_VALUES_PER_FACET)
|
|
|
|
}
|
2022-06-08 17:31:21 +02:00
|
|
|
|
2022-06-22 12:00:45 +02:00
|
|
|
pub fn pagination_max_total_hits(&self, txn: &RoTxn) -> heed::Result<Option<usize>> {
|
|
|
|
self.main.get::<_, Str, OwnedType<usize>>(txn, main_key::PAGINATION_MAX_TOTAL_HITS)
|
2022-06-08 17:31:21 +02:00
|
|
|
}
|
|
|
|
|
2022-06-22 12:00:45 +02:00
|
|
|
pub(crate) fn put_pagination_max_total_hits(
|
2022-06-08 17:31:21 +02:00
|
|
|
&self,
|
|
|
|
txn: &mut RwTxn,
|
|
|
|
val: usize,
|
|
|
|
) -> heed::Result<()> {
|
2022-06-22 12:00:45 +02:00
|
|
|
self.main.put::<_, Str, OwnedType<usize>>(txn, main_key::PAGINATION_MAX_TOTAL_HITS, &val)
|
2022-06-08 17:31:21 +02:00
|
|
|
}
|
|
|
|
|
2022-06-22 12:00:45 +02:00
|
|
|
pub(crate) fn delete_pagination_max_total_hits(&self, txn: &mut RwTxn) -> heed::Result<bool> {
|
|
|
|
self.main.delete::<_, Str>(txn, main_key::PAGINATION_MAX_TOTAL_HITS)
|
2022-06-08 17:31:21 +02:00
|
|
|
}
|
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;
|
|
|
|
|
2022-05-16 15:22:52 +02:00
|
|
|
use big_s::S;
|
2022-08-02 15:13:06 +02:00
|
|
|
use heed::{EnvOpenOptions, RwTxn};
|
2021-04-15 15:29:37 +02:00
|
|
|
use tempfile::TempDir;
|
2021-03-31 17:14:23 +02:00
|
|
|
|
2022-08-02 15:13:06 +02:00
|
|
|
use crate::documents::DocumentsBatchReader;
|
2022-03-31 18:23:12 +02:00
|
|
|
use crate::index::{DEFAULT_MIN_WORD_LEN_ONE_TYPO, DEFAULT_MIN_WORD_LEN_TWO_TYPOS};
|
2022-08-02 15:13:06 +02:00
|
|
|
use crate::update::{self, IndexDocuments, IndexDocumentsConfig, IndexerConfig, Settings};
|
2022-08-03 16:24:28 +02:00
|
|
|
use crate::{db_snap, Index};
|
2021-03-31 17:14:23 +02:00
|
|
|
|
2021-04-15 15:29:37 +02:00
|
|
|
pub(crate) struct TempIndex {
|
2022-08-02 15:13:06 +02:00
|
|
|
pub inner: Index,
|
|
|
|
pub indexer_config: IndexerConfig,
|
|
|
|
pub index_documents_config: IndexDocumentsConfig,
|
2021-04-15 15:29:37 +02:00
|
|
|
_tempdir: TempDir,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Deref for TempIndex {
|
|
|
|
type Target = Index;
|
|
|
|
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
&self.inner
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TempIndex {
|
2022-08-02 15:13:06 +02:00
|
|
|
/// Creates a temporary index
|
|
|
|
pub fn new_with_map_size(size: usize) -> Self {
|
2021-04-15 15:29:37 +02:00
|
|
|
let mut options = EnvOpenOptions::new();
|
2022-08-02 15:13:06 +02:00
|
|
|
options.map_size(size);
|
2021-04-15 15:29:37 +02:00
|
|
|
let _tempdir = TempDir::new_in(".").unwrap();
|
|
|
|
let inner = Index::new(options, _tempdir.path()).unwrap();
|
2022-08-02 15:13:06 +02:00
|
|
|
let indexer_config = IndexerConfig::default();
|
|
|
|
let index_documents_config = IndexDocumentsConfig::default();
|
|
|
|
Self { inner, indexer_config, index_documents_config, _tempdir }
|
|
|
|
}
|
|
|
|
/// Creates a temporary index, with a default `4096 * 1000` size. This should be enough for
|
|
|
|
/// most tests.
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self::new_with_map_size(4096 * 1000)
|
|
|
|
}
|
|
|
|
pub fn add_documents_using_wtxn<'t, R>(
|
|
|
|
&'t self,
|
|
|
|
wtxn: &mut RwTxn<'t, '_>,
|
|
|
|
documents: DocumentsBatchReader<R>,
|
|
|
|
) -> Result<(), crate::error::Error>
|
|
|
|
where
|
|
|
|
R: std::io::Read + std::io::Seek,
|
|
|
|
{
|
|
|
|
let builder = IndexDocuments::new(
|
|
|
|
wtxn,
|
|
|
|
&self,
|
|
|
|
&self.indexer_config,
|
|
|
|
self.index_documents_config.clone(),
|
|
|
|
|_| (),
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
let (builder, user_error) = builder.add_documents(documents).unwrap();
|
|
|
|
user_error?;
|
|
|
|
builder.execute()?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
pub fn add_documents<R>(
|
|
|
|
&self,
|
|
|
|
documents: DocumentsBatchReader<R>,
|
|
|
|
) -> Result<(), crate::error::Error>
|
|
|
|
where
|
|
|
|
R: std::io::Read + std::io::Seek,
|
|
|
|
{
|
|
|
|
let mut wtxn = self.write_txn().unwrap();
|
|
|
|
self.add_documents_using_wtxn(&mut wtxn, documents)?;
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn update_settings(
|
|
|
|
&self,
|
|
|
|
update: impl Fn(&mut Settings),
|
|
|
|
) -> Result<(), crate::error::Error> {
|
|
|
|
let mut wtxn = self.write_txn().unwrap();
|
|
|
|
self.update_settings_using_wtxn(&mut wtxn, update)?;
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
pub fn update_settings_using_wtxn<'t>(
|
|
|
|
&'t self,
|
|
|
|
wtxn: &mut RwTxn<'t, '_>,
|
|
|
|
update: impl Fn(&mut Settings),
|
|
|
|
) -> Result<(), crate::error::Error> {
|
|
|
|
let mut builder = update::Settings::new(wtxn, &self.inner, &self.indexer_config);
|
|
|
|
update(&mut builder);
|
|
|
|
builder.execute(drop)?;
|
|
|
|
Ok(())
|
2021-04-15 15:29:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-01 09:07:16 +02:00
|
|
|
#[test]
|
2021-06-17 15:16:20 +02:00
|
|
|
fn initial_field_distribution() {
|
2022-08-02 15:13:06 +02:00
|
|
|
let index = TempIndex::new();
|
|
|
|
index
|
|
|
|
.add_documents(documents!([
|
|
|
|
{ "id": 1, "name": "kevin" },
|
|
|
|
{ "id": 2, "name": "bob", "age": 20 },
|
|
|
|
{ "id": 2, "name": "bob", "age": 20 },
|
|
|
|
]))
|
|
|
|
.unwrap();
|
2021-03-31 17:14:23 +02:00
|
|
|
|
2022-08-03 16:24:28 +02:00
|
|
|
db_snap!(index, field_distribution, 1);
|
|
|
|
|
|
|
|
db_snap!(index, word_docids,
|
|
|
|
@r###"
|
|
|
|
1 [0, ]
|
|
|
|
2 [1, ]
|
|
|
|
20 [1, ]
|
|
|
|
bob [1, ]
|
|
|
|
kevin [0, ]
|
|
|
|
"###
|
|
|
|
);
|
|
|
|
|
|
|
|
db_snap!(index, field_distribution);
|
|
|
|
|
|
|
|
db_snap!(index, field_distribution,
|
|
|
|
@"
|
|
|
|
age 1
|
|
|
|
id 2
|
|
|
|
name 2
|
|
|
|
"
|
2021-06-16 18:33:33 +02:00
|
|
|
);
|
2021-06-17 17:05:34 +02:00
|
|
|
|
2022-08-03 16:24:28 +02:00
|
|
|
// snapshot_index!(&index, "1", include: "^field_distribution$");
|
|
|
|
|
2021-06-17 17:05:34 +02:00
|
|
|
// we add all the documents a second time. we are supposed to get the same
|
|
|
|
// field_distribution in the end
|
2022-08-02 15:13:06 +02:00
|
|
|
index
|
|
|
|
.add_documents(documents!([
|
|
|
|
{ "id": 1, "name": "kevin" },
|
|
|
|
{ "id": 2, "name": "bob", "age": 20 },
|
|
|
|
{ "id": 2, "name": "bob", "age": 20 },
|
|
|
|
]))
|
|
|
|
.unwrap();
|
2021-06-17 17:05:34 +02:00
|
|
|
|
2022-08-03 16:24:28 +02:00
|
|
|
db_snap!(index, field_distribution,
|
|
|
|
@r###"
|
|
|
|
age 1
|
|
|
|
id 2
|
|
|
|
name 2
|
|
|
|
"###
|
2021-06-17 17:05:34 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
// then we update a document by removing one field and another by adding one field
|
2022-08-02 15:13:06 +02:00
|
|
|
index
|
|
|
|
.add_documents(documents!([
|
|
|
|
{ "id": 1, "name": "kevin", "has_dog": true },
|
|
|
|
{ "id": 2, "name": "bob" }
|
|
|
|
]))
|
|
|
|
.unwrap();
|
2021-06-17 17:05:34 +02:00
|
|
|
|
2022-08-03 16:24:28 +02:00
|
|
|
db_snap!(index, field_distribution,
|
|
|
|
@r###"
|
|
|
|
has_dog 1
|
|
|
|
id 2
|
|
|
|
name 2
|
|
|
|
"###
|
2021-06-17 17:05:34 +02:00
|
|
|
);
|
2021-03-31 17:14:23 +02:00
|
|
|
}
|
2022-03-31 09:54:49 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn put_and_retrieve_disable_typo() {
|
|
|
|
let index = TempIndex::new();
|
|
|
|
let mut txn = index.write_txn().unwrap();
|
|
|
|
// default value is true
|
|
|
|
assert!(index.authorize_typos(&txn).unwrap());
|
|
|
|
// set to false
|
|
|
|
index.put_authorize_typos(&mut txn, false).unwrap();
|
|
|
|
txn.commit().unwrap();
|
|
|
|
|
|
|
|
let txn = index.read_txn().unwrap();
|
|
|
|
assert!(!index.authorize_typos(&txn).unwrap());
|
|
|
|
}
|
2022-03-31 13:50:18 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn set_min_word_len_for_typos() {
|
|
|
|
let index = TempIndex::new();
|
|
|
|
let mut txn = index.write_txn().unwrap();
|
|
|
|
|
2022-03-31 18:23:12 +02:00
|
|
|
assert_eq!(index.min_word_len_one_typo(&txn).unwrap(), DEFAULT_MIN_WORD_LEN_ONE_TYPO);
|
|
|
|
assert_eq!(index.min_word_len_two_typos(&txn).unwrap(), DEFAULT_MIN_WORD_LEN_TWO_TYPOS);
|
2022-03-31 13:50:18 +02:00
|
|
|
|
2022-03-31 18:23:12 +02:00
|
|
|
index.put_min_word_len_one_typo(&mut txn, 3).unwrap();
|
|
|
|
index.put_min_word_len_two_typos(&mut txn, 15).unwrap();
|
2022-03-31 13:50:18 +02:00
|
|
|
|
|
|
|
txn.commit().unwrap();
|
|
|
|
|
|
|
|
let txn = index.read_txn().unwrap();
|
2022-03-31 18:23:12 +02:00
|
|
|
assert_eq!(index.min_word_len_one_typo(&txn).unwrap(), 3);
|
|
|
|
assert_eq!(index.min_word_len_two_typos(&txn).unwrap(), 15);
|
2022-03-31 13:50:18 +02:00
|
|
|
}
|
2022-05-16 15:22:52 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn add_documents_and_set_searchable_fields() {
|
2022-08-02 15:13:06 +02:00
|
|
|
let index = TempIndex::new();
|
|
|
|
index
|
|
|
|
.add_documents(documents!([
|
|
|
|
{ "id": 1, "doggo": "kevin" },
|
|
|
|
{ "id": 2, "doggo": { "name": "bob", "age": 20 } },
|
|
|
|
{ "id": 3, "name": "jean", "age": 25 },
|
|
|
|
]))
|
|
|
|
.unwrap();
|
|
|
|
index
|
|
|
|
.update_settings(|settings| {
|
|
|
|
settings.set_searchable_fields(vec![S("doggo"), S("name")]);
|
|
|
|
})
|
|
|
|
.unwrap();
|
2022-05-16 15:22:52 +02:00
|
|
|
|
|
|
|
// ensure we get the right real searchable fields + user defined searchable fields
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
|
|
|
let real = index.searchable_fields(&rtxn).unwrap().unwrap();
|
|
|
|
assert_eq!(real, &["doggo", "name", "doggo.name", "doggo.age"]);
|
|
|
|
|
|
|
|
let user_defined = index.user_defined_searchable_fields(&rtxn).unwrap().unwrap();
|
|
|
|
assert_eq!(user_defined, &["doggo", "name"]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn set_searchable_fields_and_add_documents() {
|
2022-08-02 15:13:06 +02:00
|
|
|
let index = TempIndex::new();
|
2022-05-16 15:22:52 +02:00
|
|
|
|
2022-08-02 15:13:06 +02:00
|
|
|
index
|
|
|
|
.update_settings(|settings| {
|
|
|
|
settings.set_searchable_fields(vec![S("doggo"), S("name")]);
|
|
|
|
})
|
|
|
|
.unwrap();
|
2022-05-16 15:22:52 +02:00
|
|
|
|
|
|
|
// ensure we get the right real searchable fields + user defined searchable fields
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
|
|
|
let real = index.searchable_fields(&rtxn).unwrap().unwrap();
|
|
|
|
assert_eq!(real, &["doggo", "name"]);
|
|
|
|
let user_defined = index.user_defined_searchable_fields(&rtxn).unwrap().unwrap();
|
|
|
|
assert_eq!(user_defined, &["doggo", "name"]);
|
|
|
|
|
2022-08-02 15:13:06 +02:00
|
|
|
index
|
|
|
|
.add_documents(documents!([
|
|
|
|
{ "id": 1, "doggo": "kevin" },
|
|
|
|
{ "id": 2, "doggo": { "name": "bob", "age": 20 } },
|
|
|
|
{ "id": 3, "name": "jean", "age": 25 },
|
|
|
|
]))
|
|
|
|
.unwrap();
|
2022-05-16 15:22:52 +02:00
|
|
|
|
|
|
|
// ensure we get the right real searchable fields + user defined searchable fields
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
|
|
|
let real = index.searchable_fields(&rtxn).unwrap().unwrap();
|
|
|
|
assert_eq!(real, &["doggo", "name", "doggo.name", "doggo.age"]);
|
|
|
|
|
|
|
|
let user_defined = index.user_defined_searchable_fields(&rtxn).unwrap().unwrap();
|
|
|
|
assert_eq!(user_defined, &["doggo", "name"]);
|
|
|
|
}
|
2021-03-31 17:14:23 +02:00
|
|
|
}
|