mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-11 07:28:56 +01:00
209 lines
6.4 KiB
Rust
209 lines
6.4 KiB
Rust
|
use std::collections::{BTreeMap, HashMap};
|
|||
|
use std::convert::TryFrom;
|
|||
|
|
|||
|
use deunicode::deunicode_with_tofu;
|
|||
|
use crate::{DocumentId, DocIndex};
|
|||
|
use meilidb_schema::SchemaAttr;
|
|||
|
use meilidb_tokenizer::{is_cjk, Tokenizer, SeqTokenizer, Token};
|
|||
|
use sdset::SetBuf;
|
|||
|
|
|||
|
type Word = Vec<u8>; // TODO make it be a SmallVec
|
|||
|
|
|||
|
pub struct RawIndexer {
|
|||
|
word_limit: usize, // the maximum number of indexed words
|
|||
|
words_doc_indexes: BTreeMap<Word, Vec<DocIndex>>,
|
|||
|
docs_words: HashMap<DocumentId, Vec<Word>>,
|
|||
|
}
|
|||
|
|
|||
|
pub struct Indexed {
|
|||
|
pub words_doc_indexes: BTreeMap<Word, SetBuf<DocIndex>>,
|
|||
|
pub docs_words: HashMap<DocumentId, fst::Set>,
|
|||
|
}
|
|||
|
|
|||
|
impl RawIndexer {
|
|||
|
pub fn new() -> RawIndexer {
|
|||
|
RawIndexer::with_word_limit(1000)
|
|||
|
}
|
|||
|
|
|||
|
pub fn with_word_limit(limit: usize) -> RawIndexer {
|
|||
|
RawIndexer {
|
|||
|
word_limit: limit,
|
|||
|
words_doc_indexes: BTreeMap::new(),
|
|||
|
docs_words: HashMap::new(),
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
pub fn index_text(&mut self, id: DocumentId, attr: SchemaAttr, text: &str) {
|
|||
|
let lowercase_text = text.to_lowercase();
|
|||
|
let deunicoded = deunicode_with_tofu(&lowercase_text, "");
|
|||
|
|
|||
|
// TODO compute the deunicoded version after the cjk check
|
|||
|
let next = if !lowercase_text.contains(is_cjk) && lowercase_text != deunicoded {
|
|||
|
Some(deunicoded)
|
|||
|
} else {
|
|||
|
None
|
|||
|
};
|
|||
|
let iter = Some(lowercase_text).into_iter().chain(next);
|
|||
|
|
|||
|
for text in iter {
|
|||
|
for token in Tokenizer::new(&text) {
|
|||
|
let must_continue = index_token(
|
|||
|
token,
|
|||
|
id,
|
|||
|
attr,
|
|||
|
self.word_limit,
|
|||
|
&mut self.words_doc_indexes,
|
|||
|
&mut self.docs_words,
|
|||
|
);
|
|||
|
|
|||
|
if !must_continue { break }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
pub fn index_text_seq<'a, I, IT>(&mut self, id: DocumentId, attr: SchemaAttr, iter: I)
|
|||
|
where I: IntoIterator<Item=&'a str, IntoIter=IT>,
|
|||
|
IT: Iterator<Item = &'a str> + Clone,
|
|||
|
{
|
|||
|
// TODO serialize this to one call to the SeqTokenizer loop
|
|||
|
|
|||
|
let lowercased: Vec<_> = iter.into_iter().map(str::to_lowercase).collect();
|
|||
|
let iter = lowercased.iter().map(|t| t.as_str());
|
|||
|
|
|||
|
for token in SeqTokenizer::new(iter) {
|
|||
|
let must_continue = index_token(
|
|||
|
token,
|
|||
|
id,
|
|||
|
attr,
|
|||
|
self.word_limit,
|
|||
|
&mut self.words_doc_indexes,
|
|||
|
&mut self.docs_words,
|
|||
|
);
|
|||
|
|
|||
|
if !must_continue { break }
|
|||
|
}
|
|||
|
|
|||
|
let deunicoded: Vec<_> = lowercased.into_iter().map(|lowercase_text| {
|
|||
|
if lowercase_text.contains(is_cjk) { return lowercase_text }
|
|||
|
let deunicoded = deunicode_with_tofu(&lowercase_text, "");
|
|||
|
if lowercase_text != deunicoded { deunicoded } else { lowercase_text }
|
|||
|
}).collect();
|
|||
|
let iter = deunicoded.iter().map(|t| t.as_str());
|
|||
|
|
|||
|
for token in SeqTokenizer::new(iter) {
|
|||
|
let must_continue = index_token(
|
|||
|
token,
|
|||
|
id,
|
|||
|
attr,
|
|||
|
self.word_limit,
|
|||
|
&mut self.words_doc_indexes,
|
|||
|
&mut self.docs_words,
|
|||
|
);
|
|||
|
|
|||
|
if !must_continue { break }
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
pub fn build(self) -> Indexed {
|
|||
|
let words_doc_indexes = self.words_doc_indexes
|
|||
|
.into_iter()
|
|||
|
.map(|(word, indexes)| (word, SetBuf::from_dirty(indexes)))
|
|||
|
.collect();
|
|||
|
|
|||
|
let docs_words = self.docs_words
|
|||
|
.into_iter()
|
|||
|
.map(|(id, mut words)| {
|
|||
|
words.sort_unstable();
|
|||
|
words.dedup();
|
|||
|
(id, fst::Set::from_iter(words).unwrap())
|
|||
|
})
|
|||
|
.collect();
|
|||
|
|
|||
|
Indexed { words_doc_indexes, docs_words }
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
fn index_token(
|
|||
|
token: Token,
|
|||
|
id: DocumentId,
|
|||
|
attr: SchemaAttr,
|
|||
|
word_limit: usize,
|
|||
|
words_doc_indexes: &mut BTreeMap<Word, Vec<DocIndex>>,
|
|||
|
docs_words: &mut HashMap<DocumentId, Vec<Word>>,
|
|||
|
) -> bool
|
|||
|
{
|
|||
|
if token.word_index >= word_limit { return false }
|
|||
|
|
|||
|
match token_to_docindex(id, attr, token) {
|
|||
|
Some(docindex) => {
|
|||
|
let word = Vec::from(token.word);
|
|||
|
words_doc_indexes.entry(word.clone()).or_insert_with(Vec::new).push(docindex);
|
|||
|
docs_words.entry(id).or_insert_with(Vec::new).push(word);
|
|||
|
},
|
|||
|
None => return false,
|
|||
|
}
|
|||
|
|
|||
|
true
|
|||
|
}
|
|||
|
|
|||
|
fn token_to_docindex(id: DocumentId, attr: SchemaAttr, token: Token) -> Option<DocIndex> {
|
|||
|
let word_index = u16::try_from(token.word_index).ok()?;
|
|||
|
let char_index = u16::try_from(token.char_index).ok()?;
|
|||
|
let char_length = u16::try_from(token.word.chars().count()).ok()?;
|
|||
|
|
|||
|
let docindex = DocIndex {
|
|||
|
document_id: id,
|
|||
|
attribute: attr.0,
|
|||
|
word_index,
|
|||
|
char_index,
|
|||
|
char_length,
|
|||
|
};
|
|||
|
|
|||
|
Some(docindex)
|
|||
|
}
|
|||
|
|
|||
|
#[cfg(test)]
|
|||
|
mod tests {
|
|||
|
use super::*;
|
|||
|
|
|||
|
#[test]
|
|||
|
fn strange_apostrophe() {
|
|||
|
let mut indexer = RawIndexer::new();
|
|||
|
|
|||
|
let docid = DocumentId(0);
|
|||
|
let attr = SchemaAttr(0);
|
|||
|
let text = "Zut, l’aspirateur, j’ai oublié de l’éteindre !";
|
|||
|
indexer.index_text(docid, attr, text);
|
|||
|
|
|||
|
let Indexed { words_doc_indexes, .. } = indexer.build();
|
|||
|
|
|||
|
assert!(words_doc_indexes.get(&b"l"[..]).is_some());
|
|||
|
assert!(words_doc_indexes.get(&b"aspirateur"[..]).is_some());
|
|||
|
assert!(words_doc_indexes.get(&b"ai"[..]).is_some());
|
|||
|
assert!(words_doc_indexes.get(&b"eteindre"[..]).is_some());
|
|||
|
|
|||
|
// with the ugly apostrophe...
|
|||
|
assert!(words_doc_indexes.get(&"l’éteindre".to_owned().into_bytes()).is_some());
|
|||
|
}
|
|||
|
|
|||
|
#[test]
|
|||
|
fn strange_apostrophe_in_sequence() {
|
|||
|
let mut indexer = RawIndexer::new();
|
|||
|
|
|||
|
let docid = DocumentId(0);
|
|||
|
let attr = SchemaAttr(0);
|
|||
|
let text = vec!["Zut, l’aspirateur, j’ai oublié de l’éteindre !"];
|
|||
|
indexer.index_text_seq(docid, attr, text);
|
|||
|
|
|||
|
let Indexed { words_doc_indexes, .. } = indexer.build();
|
|||
|
|
|||
|
assert!(words_doc_indexes.get(&b"l"[..]).is_some());
|
|||
|
assert!(words_doc_indexes.get(&b"aspirateur"[..]).is_some());
|
|||
|
assert!(words_doc_indexes.get(&b"ai"[..]).is_some());
|
|||
|
assert!(words_doc_indexes.get(&b"eteindre"[..]).is_some());
|
|||
|
|
|||
|
// with the ugly apostrophe...
|
|||
|
assert!(words_doc_indexes.get(&"l’éteindre".to_owned().into_bytes()).is_some());
|
|||
|
}
|
|||
|
}
|