MeiliSearch/meilisearch-http/src/index/search.rs

591 lines
18 KiB
Rust
Raw Normal View History

2021-06-13 12:00:38 +02:00
use std::borrow::Cow;
use std::collections::{BTreeMap, HashMap, HashSet, VecDeque};
2021-03-15 18:11:10 +01:00
use std::time::Instant;
2021-03-04 11:56:32 +01:00
use anyhow::bail;
2021-03-15 18:11:10 +01:00
use either::Either;
2021-03-04 11:56:32 +01:00
use heed::RoTxn;
2021-04-20 21:19:37 +02:00
use indexmap::IndexMap;
use itertools::Itertools;
2021-05-11 17:27:31 +02:00
use meilisearch_tokenizer::{Analyzer, AnalyzerConfig, Token};
2021-06-03 19:36:25 +02:00
use milli::{FilterCondition, FieldId, FieldsIdsMap, MatchingWords};
2021-03-15 18:11:10 +01:00
use serde::{Deserialize, Serialize};
2021-04-20 21:19:37 +02:00
use serde_json::Value;
2021-03-04 11:56:32 +01:00
use super::Index;
2021-04-20 21:19:37 +02:00
pub type Document = IndexMap<String, Value>;
2021-04-19 16:22:41 +02:00
2021-06-04 02:25:38 +02:00
pub const DEFAULT_SEARCH_LIMIT: usize = 20;
2021-03-04 11:56:32 +01:00
const fn default_search_limit() -> usize {
DEFAULT_SEARCH_LIMIT
}
pub const DEFAULT_CROP_LENGTH: usize = 200;
const fn default_crop_length() -> Option<usize> {
Some(DEFAULT_CROP_LENGTH)
}
2021-03-04 11:56:32 +01:00
#[derive(Deserialize)]
#[serde(rename_all = "camelCase", deny_unknown_fields)]
pub struct SearchQuery {
pub q: Option<String>,
pub offset: Option<usize>,
#[serde(default = "default_search_limit")]
pub limit: usize,
2021-04-19 16:22:41 +02:00
pub attributes_to_retrieve: Option<HashSet<String>>,
pub attributes_to_crop: Option<Vec<String>>,
#[serde(default = "default_crop_length")]
2021-03-04 11:56:32 +01:00
pub crop_length: Option<usize>,
pub attributes_to_highlight: Option<HashSet<String>>,
pub matches: Option<bool>,
pub filter: Option<Value>,
2021-03-04 11:56:32 +01:00
pub facet_distributions: Option<Vec<String>>,
}
2021-04-19 10:13:13 +02:00
#[derive(Debug, Clone, Serialize)]
pub struct SearchHit {
#[serde(flatten)]
2021-04-19 16:22:41 +02:00
pub document: Document,
2021-04-20 13:10:50 +02:00
#[serde(rename = "_formatted", skip_serializing_if = "Document::is_empty")]
2021-04-19 16:22:41 +02:00
pub formatted: Document,
2021-04-19 10:13:13 +02:00
}
2021-03-04 11:56:32 +01:00
#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub struct SearchResult {
2021-04-19 10:13:13 +02:00
pub hits: Vec<SearchHit>,
2021-03-04 11:56:32 +01:00
pub nb_hits: u64,
pub exhaustive_nb_hits: bool,
2021-03-04 11:56:32 +01:00
pub query: String,
pub limit: usize,
pub offset: usize,
pub processing_time_ms: u128,
#[serde(skip_serializing_if = "Option::is_none")]
2021-06-03 19:36:25 +02:00
pub facet_distributions: Option<BTreeMap<String, BTreeMap<String, u64>>>,
2021-03-04 11:56:32 +01:00
}
impl Index {
pub fn perform_search(&self, query: SearchQuery) -> anyhow::Result<SearchResult> {
let before_search = Instant::now();
let rtxn = self.read_txn()?;
let mut search = self.search(&rtxn);
if let Some(ref query) = query.q {
search.query(query);
}
search.limit(query.limit);
search.offset(query.offset.unwrap_or_default());
if let Some(ref filter) = query.filter {
if let Some(facets) = parse_facets(filter, self, &rtxn)? {
2021-06-03 19:36:25 +02:00
search.filter(facets);
2021-03-04 11:56:32 +01:00
}
}
let milli::SearchResult {
documents_ids,
2021-03-11 19:40:18 +01:00
matching_words,
2021-03-04 11:56:32 +01:00
candidates,
..
} = search.execute()?;
let mut documents = Vec::new();
let fields_ids_map = self.fields_ids_map(&rtxn).unwrap();
2021-05-31 16:03:39 +02:00
let displayed_ids = self
.displayed_fields_ids(&rtxn)?
2021-04-20 16:21:30 +02:00
.map(|fields| fields.into_iter().collect::<HashSet<_>>())
.unwrap_or_else(|| fields_ids_map.iter().map(|(id, _)| id).collect());
2021-04-20 13:10:50 +02:00
2021-04-19 16:22:41 +02:00
let fids = |attrs: &HashSet<String>| {
2021-04-20 13:10:50 +02:00
let mut ids = HashSet::new();
for attr in attrs {
if attr == "*" {
ids = displayed_ids.clone();
break;
}
if let Some(id) = fields_ids_map.id(attr) {
ids.insert(id);
}
}
ids
2021-04-19 16:22:41 +02:00
};
let to_retrieve_ids = query
.attributes_to_retrieve
.as_ref()
.map(fids)
.unwrap_or_else(|| displayed_ids.clone());
let to_highlight_ids = query
.attributes_to_highlight
.as_ref()
.map(fids)
.unwrap_or_default();
let to_crop_ids_length = query
2021-04-19 16:22:41 +02:00
.attributes_to_crop
.as_ref()
.map(|attributes: &Vec<String>| {
let mut ids_length_crop = HashMap::new();
for attribute in attributes {
let mut attr_name = attribute.clone();
let mut attr_len = query.crop_length;
2021-06-08 18:02:04 +02:00
if attr_name.contains(':') {
let mut split = attr_name.rsplit(':');
2021-06-08 18:02:04 +02:00
attr_len = match split.next() {
Some(s) => s.parse::<usize>().ok(),
None => None,
};
attr_name = split.flat_map(|s| s.chars()).collect();
}
if attr_name == "*" {
let ids = displayed_ids.clone();
for id in ids {
ids_length_crop.insert(id, attr_len);
}
}
if let Some(id) = fields_ids_map.id(&attr_name) {
ids_length_crop.insert(id, attr_len);
}
}
ids_length_crop
})
2021-04-19 16:22:41 +02:00
.unwrap_or_default();
let to_crop_ids = to_crop_ids_length
.clone()
.into_iter()
.map(|(k, _)| k)
.collect::<HashSet<_>>();
2021-04-19 16:22:41 +02:00
// The attributes to retrieve are:
// - the ones explicitly marked as to retrieve that are also in the displayed attributes
let all_attributes: Vec<_> = to_retrieve_ids
.intersection(&displayed_ids)
.cloned()
2021-04-20 21:19:37 +02:00
.sorted()
2021-04-19 16:22:41 +02:00
.collect();
// The formatted attributes are:
// - The one in either highlighted attributes or cropped attributes if there are attributes
// to retrieve
// - All the attributes to retrieve if there are either highlighted or cropped attributes
// the request specified that all attributes are to retrieve (i.e attributes to retrieve is
// empty in the query)
let all_formatted = if query.attributes_to_retrieve.is_none() {
if query.attributes_to_highlight.is_some() || query.attributes_to_crop.is_some() {
Cow::Borrowed(&all_attributes)
} else {
Cow::Owned(Vec::new())
}
} else {
let attrs = (&to_crop_ids | &to_highlight_ids)
.intersection(&displayed_ids)
.cloned()
.collect::<Vec<_>>();
Cow::Owned(attrs)
};
2021-03-04 11:56:32 +01:00
let stop_words = fst::Set::default();
2021-05-31 16:03:39 +02:00
let highlighter =
2021-05-11 18:30:55 +02:00
Formatter::new(&stop_words, (String::from("<em>"), String::from("</em>")));
2021-03-04 11:56:32 +01:00
for (_id, obkv) in self.documents(&rtxn, documents_ids)? {
let document = make_document(&all_attributes, &fields_ids_map, obkv)?;
2021-04-19 16:22:41 +02:00
let formatted = compute_formatted(
&fields_ids_map,
obkv,
&highlighter,
&matching_words,
all_formatted.as_ref().as_slice(),
&to_highlight_ids,
&to_crop_ids_length,
2021-04-19 16:22:41 +02:00
)?;
2021-04-19 10:13:13 +02:00
let hit = SearchHit {
2021-04-19 16:22:41 +02:00
document,
formatted,
2021-04-19 10:13:13 +02:00
};
documents.push(hit);
2021-03-04 11:56:32 +01:00
}
let nb_hits = candidates.len();
let facet_distributions = match query.facet_distributions {
Some(ref fields) => {
let mut facet_distribution = self.facets_distribution(&rtxn);
if fields.iter().all(|f| f != "*") {
facet_distribution.facets(fields);
}
Some(facet_distribution.candidates(candidates).execute()?)
}
None => None,
};
let result = SearchResult {
exhaustive_nb_hits: false, // not implemented yet
2021-03-04 11:56:32 +01:00
hits: documents,
nb_hits,
query: query.q.clone().unwrap_or_default(),
limit: query.limit,
offset: query.offset.unwrap_or_default(),
processing_time_ms: before_search.elapsed().as_millis(),
facet_distributions,
};
Ok(result)
}
}
2021-04-20 21:19:37 +02:00
fn make_document(
attributes_to_retrieve: &[FieldId],
field_ids_map: &FieldsIdsMap,
obkv: obkv::KvReader,
) -> anyhow::Result<Document> {
let mut document = Document::new();
for attr in attributes_to_retrieve {
if let Some(value) = obkv.get(*attr) {
let value = serde_json::from_slice(value)?;
// This unwrap must be safe since we got the ids from the fields_ids_map just
// before.
let key = field_ids_map
.name(*attr)
.expect("Missing field name")
.to_string();
document.insert(key, value);
}
}
Ok(document)
}
2021-04-19 16:22:41 +02:00
fn compute_formatted<A: AsRef<[u8]>>(
field_ids_map: &FieldsIdsMap,
obkv: obkv::KvReader,
2021-05-11 18:30:55 +02:00
highlighter: &Formatter<A>,
2021-04-19 19:03:53 +02:00
matching_words: &impl Matcher,
2021-04-19 16:22:41 +02:00
all_formatted: &[FieldId],
2021-05-05 17:31:40 +02:00
to_highlight_fields: &HashSet<FieldId>,
2021-05-11 18:30:55 +02:00
to_crop_fields: &HashMap<FieldId, Option<usize>>,
2021-04-19 16:22:41 +02:00
) -> anyhow::Result<Document> {
let mut document = Document::new();
for field in all_formatted {
if let Some(value) = obkv.get(*field) {
let mut value: Value = serde_json::from_slice(value)?;
2021-05-11 18:30:55 +02:00
value = highlighter.format_value(
value,
matching_words,
to_crop_fields.get(field).copied().flatten(),
to_highlight_fields.contains(field),
);
2021-04-19 16:22:41 +02:00
// This unwrap must be safe since we got the ids from the fields_ids_map just
// before.
let key = field_ids_map
.name(*field)
.expect("Missing field name")
.to_string();
document.insert(key, value);
}
}
Ok(document)
}
2021-04-19 19:03:53 +02:00
/// trait to allow unit testing of `compute_formated`
trait Matcher {
fn matches(&self, w: &str) -> bool;
}
#[cfg(test)]
impl Matcher for HashSet<String> {
fn matches(&self, w: &str) -> bool {
self.contains(w)
}
}
impl Matcher for MatchingWords {
fn matches(&self, w: &str) -> bool {
2021-06-03 19:36:25 +02:00
self.matching_bytes(w).is_some()
2021-04-19 19:03:53 +02:00
}
}
2021-05-11 18:30:55 +02:00
struct Formatter<'a, A> {
2021-03-04 11:56:32 +01:00
analyzer: Analyzer<'a, A>,
2021-04-19 16:22:41 +02:00
marks: (String, String),
2021-03-04 11:56:32 +01:00
}
2021-05-11 18:30:55 +02:00
impl<'a, A: AsRef<[u8]>> Formatter<'a, A> {
2021-04-19 16:22:41 +02:00
pub fn new(stop_words: &'a fst::Set<A>, marks: (String, String)) -> Self {
let mut config = AnalyzerConfig::default();
config.stop_words(stop_words);
let analyzer = Analyzer::new(config);
2021-03-04 11:56:32 +01:00
2021-04-19 16:22:41 +02:00
Self { analyzer, marks }
2021-03-04 11:56:32 +01:00
}
2021-05-05 17:31:40 +02:00
fn format_value(
&self,
value: Value,
matcher: &impl Matcher,
2021-05-11 17:27:31 +02:00
need_to_crop: Option<usize>,
2021-05-05 17:31:40 +02:00
need_to_highlight: bool,
2021-05-11 18:30:55 +02:00
) -> Value {
2021-03-04 11:56:32 +01:00
match value {
Value::String(old_string) => {
2021-05-11 18:30:55 +02:00
let value =
self.format_string(old_string, matcher, need_to_crop, need_to_highlight);
2021-05-05 17:31:40 +02:00
Value::String(value)
2021-03-04 11:56:32 +01:00
}
Value::Array(values) => Value::Array(
values
2021-03-15 18:11:10 +01:00
.into_iter()
2021-05-05 17:31:40 +02:00
.map(|v| self.format_value(v, matcher, None, need_to_highlight))
2021-03-15 18:11:10 +01:00
.collect(),
2021-03-04 11:56:32 +01:00
),
Value::Object(object) => Value::Object(
object
2021-03-15 18:11:10 +01:00
.into_iter()
2021-05-06 16:32:11 +02:00
.map(|(k, v)| (k, self.format_value(v, matcher, None, need_to_highlight)))
2021-03-15 18:11:10 +01:00
.collect(),
2021-03-04 11:56:32 +01:00
),
2021-05-05 17:31:40 +02:00
value => value,
2021-03-04 11:56:32 +01:00
}
}
2021-06-13 11:53:29 +02:00
2021-05-11 18:30:55 +02:00
fn format_string(
&self,
s: String,
matcher: &impl Matcher,
need_to_crop: Option<usize>,
need_to_highlight: bool,
) -> String {
let analyzed = self.analyzer.analyze(&s);
2021-05-11 17:27:31 +02:00
2021-05-11 18:30:55 +02:00
let tokens: Box<dyn Iterator<Item = (&str, Token)>> = match need_to_crop {
2021-05-11 17:27:31 +02:00
Some(crop_len) => {
2021-05-11 18:30:55 +02:00
let mut buffer = VecDeque::new();
let mut tokens = analyzed.reconstruct().peekable();
let mut taken_before = 0;
while let Some((word, token)) = tokens.next_if(|(_, token)| !matcher.matches(token.text())) {
buffer.push_back((word, token));
taken_before += word.chars().count();
while taken_before > crop_len {
2021-06-04 02:25:38 +02:00
// Around to the previous word
if let Some((word, _)) = buffer.front() {
if taken_before - word.chars().count() < crop_len {
break;
}
}
2021-05-11 18:30:55 +02:00
if let Some((word, _)) = buffer.pop_front() {
taken_before -= word.chars().count();
}
}
}
if let Some(token) = tokens.next() {
buffer.push_back(token);
}
let mut taken_after = 0;
let after_iter = tokens
2021-05-11 17:27:31 +02:00
.take_while(move |(word, _)| {
2021-06-04 02:25:38 +02:00
let take = taken_after < crop_len;
2021-05-11 18:30:55 +02:00
taken_after += word.chars().count();
2021-05-11 17:27:31 +02:00
take
});
2021-06-04 02:25:38 +02:00
2021-05-11 18:30:55 +02:00
let iter = buffer
.into_iter()
.chain(after_iter);
2021-05-11 17:27:31 +02:00
Box::new(iter)
2021-05-11 18:30:55 +02:00
}
2021-05-11 17:27:31 +02:00
None => Box::new(analyzed.reconstruct()),
2021-05-05 17:31:40 +02:00
};
2021-05-11 18:30:55 +02:00
tokens
.map(|(word, token)| {
if need_to_highlight && token.is_word() && matcher.matches(token.text()) {
let mut new_word = String::new();
new_word.push_str(&self.marks.0);
new_word.push_str(&word);
new_word.push_str(&self.marks.1);
new_word
} else {
word.to_string()
}
})
.collect::<String>()
2021-05-05 17:31:40 +02:00
}
2021-03-04 11:56:32 +01:00
}
fn parse_facets(
facets: &Value,
index: &Index,
txn: &RoTxn,
2021-06-03 19:36:25 +02:00
) -> anyhow::Result<Option<FilterCondition>> {
2021-03-04 11:56:32 +01:00
match facets {
2021-06-14 13:27:18 +02:00
Value::String(expr) => Ok(Some(FilterCondition::from_str(txn, index, expr)?)),
2021-03-04 11:56:32 +01:00
Value::Array(arr) => parse_facets_array(txn, index, arr),
2021-03-15 18:11:10 +01:00
v => bail!("Invalid facet expression, expected Array, found: {:?}", v),
2021-03-04 11:56:32 +01:00
}
}
2021-04-19 19:03:53 +02:00
2021-05-04 18:22:48 +02:00
fn parse_facets_array(
txn: &RoTxn,
index: &Index,
arr: &[Value],
2021-06-14 13:27:18 +02:00
) -> anyhow::Result<Option<FilterCondition>> {
2021-05-04 18:22:48 +02:00
let mut ands = Vec::new();
for value in arr {
match value {
Value::String(s) => ands.push(Either::Right(s.clone())),
Value::Array(arr) => {
let mut ors = Vec::new();
for value in arr {
match value {
Value::String(s) => ors.push(s.clone()),
v => bail!("Invalid facet expression, expected String, found: {:?}", v),
}
}
ands.push(Either::Left(ors));
}
v => bail!(
"Invalid facet expression, expected String or [String], found: {:?}",
v
),
}
}
2021-06-14 13:27:18 +02:00
FilterCondition::from_array(txn, &index.0, ands)
2021-05-04 18:22:48 +02:00
}
2021-04-19 19:03:53 +02:00
#[cfg(test)]
mod test {
use std::iter::FromIterator;
use super::*;
#[test]
fn no_formatted() {
let stop_words = fst::Set::default();
2021-05-31 16:03:39 +02:00
let highlighter =
2021-05-11 18:30:55 +02:00
Formatter::new(&stop_words, (String::from("<em>"), String::from("</em>")));
2021-04-19 19:03:53 +02:00
let mut fields = FieldsIdsMap::new();
let id = fields.insert("test").unwrap();
let mut buf = Vec::new();
let mut obkv = obkv::KvWriter::new(&mut buf);
2021-05-31 16:03:39 +02:00
obkv.insert(id, Value::String("hello".into()).to_string().as_bytes())
.unwrap();
2021-04-19 19:03:53 +02:00
obkv.finish().unwrap();
let obkv = obkv::KvReader::new(&buf);
let all_formatted = Vec::new();
let to_highlight_ids = HashSet::new();
2021-06-03 17:54:53 +02:00
let to_crop_ids = HashMap::new();
2021-04-19 19:03:53 +02:00
let matching_words = MatchingWords::default();
let value = compute_formatted(
&fields,
obkv,
&highlighter,
&matching_words,
&all_formatted,
2021-05-31 16:03:39 +02:00
&to_highlight_ids,
2021-05-06 18:41:04 +02:00
&to_crop_ids,
2021-05-11 18:30:55 +02:00
)
.unwrap();
2021-04-19 19:03:53 +02:00
assert!(value.is_empty());
}
#[test]
fn formatted_no_highlight() {
let stop_words = fst::Set::default();
2021-05-31 16:03:39 +02:00
let highlighter =
2021-05-11 18:30:55 +02:00
Formatter::new(&stop_words, (String::from("<em>"), String::from("</em>")));
2021-04-19 19:03:53 +02:00
let mut fields = FieldsIdsMap::new();
let id = fields.insert("test").unwrap();
let mut buf = Vec::new();
let mut obkv = obkv::KvWriter::new(&mut buf);
2021-05-31 16:03:39 +02:00
obkv.insert(id, Value::String("hello".into()).to_string().as_bytes())
.unwrap();
2021-04-19 19:03:53 +02:00
obkv.finish().unwrap();
let obkv = obkv::KvReader::new(&buf);
let all_formatted = vec![id];
let to_highlight_ids = HashSet::new();
2021-06-03 17:54:53 +02:00
let to_crop_ids = HashMap::new();
2021-04-19 19:03:53 +02:00
let matching_words = MatchingWords::default();
let value = compute_formatted(
&fields,
obkv,
&highlighter,
&matching_words,
&all_formatted,
2021-05-31 16:03:39 +02:00
&to_highlight_ids,
2021-05-06 18:41:04 +02:00
&to_crop_ids,
2021-05-11 18:30:55 +02:00
)
.unwrap();
2021-04-19 19:03:53 +02:00
2021-04-20 21:19:37 +02:00
assert_eq!(value["test"], "hello");
2021-04-19 19:03:53 +02:00
}
#[test]
fn formatted_with_highlight() {
let stop_words = fst::Set::default();
2021-05-31 16:03:39 +02:00
let highlighter =
2021-05-11 18:30:55 +02:00
Formatter::new(&stop_words, (String::from("<em>"), String::from("</em>")));
2021-04-19 19:03:53 +02:00
let mut fields = FieldsIdsMap::new();
let id = fields.insert("test").unwrap();
let mut buf = Vec::new();
let mut obkv = obkv::KvWriter::new(&mut buf);
2021-05-31 16:03:39 +02:00
obkv.insert(id, Value::String("hello".into()).to_string().as_bytes())
.unwrap();
2021-04-19 19:03:53 +02:00
obkv.finish().unwrap();
let obkv = obkv::KvReader::new(&buf);
let all_formatted = vec![id];
let to_highlight_ids = HashSet::from_iter(Some(id));
2021-06-03 17:54:53 +02:00
let to_crop_ids = HashMap::new();
2021-04-19 19:03:53 +02:00
let matching_words = HashSet::from_iter(Some(String::from("hello")));
let value = compute_formatted(
&fields,
obkv,
&highlighter,
&matching_words,
&all_formatted,
2021-05-31 16:03:39 +02:00
&to_highlight_ids,
2021-05-06 18:41:04 +02:00
&to_crop_ids,
2021-05-11 18:30:55 +02:00
)
.unwrap();
2021-04-19 19:03:53 +02:00
assert_eq!(value["test"], "<em>hello</em>");
2021-04-19 19:03:53 +02:00
}
}