2021-04-19 22:22:41 +08:00
|
|
|
use std::borrow::Cow;
|
2021-06-17 22:59:01 +08:00
|
|
|
use std::collections::{BTreeMap, BTreeSet, HashSet};
|
2021-03-16 01:11:10 +08:00
|
|
|
use std::time::Instant;
|
2021-03-04 18:56:32 +08:00
|
|
|
|
2021-03-16 01:11:10 +08:00
|
|
|
use either::Either;
|
2021-03-04 18:56:32 +08:00
|
|
|
use heed::RoTxn;
|
2021-04-21 03:19:37 +08:00
|
|
|
use indexmap::IndexMap;
|
2021-05-11 23:27:31 +08:00
|
|
|
use meilisearch_tokenizer::{Analyzer, AnalyzerConfig, Token};
|
2021-06-04 01:36:25 +08:00
|
|
|
use milli::{FilterCondition, FieldId, FieldsIdsMap, MatchingWords};
|
2021-03-16 01:11:10 +08:00
|
|
|
use serde::{Deserialize, Serialize};
|
2021-04-21 03:19:37 +08:00
|
|
|
use serde_json::Value;
|
2021-03-04 18:56:32 +08:00
|
|
|
|
2021-06-15 03:26:35 +08:00
|
|
|
use crate::index::error::FacetError;
|
|
|
|
|
2021-06-17 20:36:32 +08:00
|
|
|
use super::error::Result;
|
2021-03-04 18:56:32 +08:00
|
|
|
use super::Index;
|
|
|
|
|
2021-04-21 03:19:37 +08:00
|
|
|
pub type Document = IndexMap<String, Value>;
|
2021-04-19 22:22:41 +08:00
|
|
|
|
2021-03-04 18:56:32 +08:00
|
|
|
pub const DEFAULT_SEARCH_LIMIT: usize = 20;
|
|
|
|
const fn default_search_limit() -> usize {
|
|
|
|
DEFAULT_SEARCH_LIMIT
|
|
|
|
}
|
|
|
|
|
2021-06-08 23:33:20 +08:00
|
|
|
pub const DEFAULT_CROP_LENGTH: usize = 200;
|
2021-06-13 18:37:38 +08:00
|
|
|
const fn default_crop_length() -> usize {
|
|
|
|
DEFAULT_CROP_LENGTH
|
2021-06-08 23:33:20 +08:00
|
|
|
}
|
|
|
|
|
2021-03-04 18:56:32 +08: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-06-16 22:18:55 +08:00
|
|
|
pub attributes_to_retrieve: Option<BTreeSet<String>>,
|
2021-06-08 23:33:20 +08:00
|
|
|
pub attributes_to_crop: Option<Vec<String>>,
|
|
|
|
#[serde(default = "default_crop_length")]
|
2021-06-13 18:37:38 +08:00
|
|
|
pub crop_length: usize,
|
2021-03-04 18:56:32 +08:00
|
|
|
pub attributes_to_highlight: Option<HashSet<String>>,
|
|
|
|
pub matches: Option<bool>,
|
2021-05-05 00:20:56 +08:00
|
|
|
pub filter: Option<Value>,
|
2021-03-04 18:56:32 +08:00
|
|
|
pub facet_distributions: Option<Vec<String>>,
|
|
|
|
}
|
|
|
|
|
2021-04-19 16:13:13 +08:00
|
|
|
#[derive(Debug, Clone, Serialize)]
|
|
|
|
pub struct SearchHit {
|
|
|
|
#[serde(flatten)]
|
2021-04-19 22:22:41 +08:00
|
|
|
pub document: Document,
|
2021-04-20 19:10:50 +08:00
|
|
|
#[serde(rename = "_formatted", skip_serializing_if = "Document::is_empty")]
|
2021-04-19 22:22:41 +08:00
|
|
|
pub formatted: Document,
|
2021-04-19 16:13:13 +08:00
|
|
|
}
|
|
|
|
|
2021-03-04 18:56:32 +08:00
|
|
|
#[derive(Serialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct SearchResult {
|
2021-04-19 16:13:13 +08:00
|
|
|
pub hits: Vec<SearchHit>,
|
2021-03-04 18:56:32 +08:00
|
|
|
pub nb_hits: u64,
|
2021-03-24 02:13:22 +08:00
|
|
|
pub exhaustive_nb_hits: bool,
|
2021-03-04 18:56:32 +08:00
|
|
|
pub query: String,
|
|
|
|
pub limit: usize,
|
|
|
|
pub offset: usize,
|
|
|
|
pub processing_time_ms: u128,
|
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2021-06-04 01:36:25 +08:00
|
|
|
pub facet_distributions: Option<BTreeMap<String, BTreeMap<String, u64>>>,
|
2021-03-04 18:56:32 +08:00
|
|
|
}
|
|
|
|
|
2021-06-14 05:51:33 +08:00
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
struct FormatOptions {
|
|
|
|
highlight: bool,
|
|
|
|
crop: Option<usize>,
|
|
|
|
}
|
|
|
|
|
2021-03-04 18:56:32 +08:00
|
|
|
impl Index {
|
2021-06-15 03:26:35 +08:00
|
|
|
pub fn perform_search(&self, query: SearchQuery) -> Result<SearchResult> {
|
2021-03-04 18:56:32 +08:00
|
|
|
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());
|
|
|
|
|
2021-05-05 00:20:56 +08:00
|
|
|
if let Some(ref filter) = query.filter {
|
2021-06-15 22:25:16 +08:00
|
|
|
if let Some(facets) = parse_filter(filter, self, &rtxn)? {
|
2021-06-04 01:36:25 +08:00
|
|
|
search.filter(facets);
|
2021-03-04 18:56:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let milli::SearchResult {
|
|
|
|
documents_ids,
|
2021-03-12 02:40:18 +08:00
|
|
|
matching_words,
|
2021-03-04 18:56:32 +08:00
|
|
|
candidates,
|
|
|
|
..
|
2021-06-17 20:36:32 +08:00
|
|
|
} = search.execute()?;
|
|
|
|
|
2021-03-04 18:56:32 +08:00
|
|
|
let fields_ids_map = self.fields_ids_map(&rtxn).unwrap();
|
|
|
|
|
2021-05-31 22:03:39 +08:00
|
|
|
let displayed_ids = self
|
|
|
|
.displayed_fields_ids(&rtxn)?
|
2021-06-15 03:26:35 +08:00
|
|
|
.map_err(|e| IndexError::Internal(Box::new(e)))?
|
2021-06-16 22:18:55 +08:00
|
|
|
.map(|fields| fields.into_iter().collect::<BTreeSet<_>>())
|
2021-04-20 22:21:30 +08:00
|
|
|
.unwrap_or_else(|| fields_ids_map.iter().map(|(id, _)| id).collect());
|
2021-04-20 19:10:50 +08:00
|
|
|
|
2021-06-16 22:18:55 +08:00
|
|
|
let fids = |attrs: &BTreeSet<String>| {
|
|
|
|
let mut ids = BTreeSet::new();
|
2021-04-20 19:10:50 +08:00
|
|
|
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 22:22:41 +08:00
|
|
|
};
|
|
|
|
|
2021-06-15 22:21:41 +08:00
|
|
|
// The attributes to retrieve are the ones explicitly marked as to retrieve (all by default),
|
2021-06-17 01:30:06 +08:00
|
|
|
// but these attributes must be also be present
|
|
|
|
// - in the fields_ids_map
|
|
|
|
// - in the the displayed attributes
|
2021-06-16 22:18:55 +08:00
|
|
|
let to_retrieve_ids: BTreeSet<_> = query
|
2021-04-19 22:22:41 +08:00
|
|
|
.attributes_to_retrieve
|
|
|
|
.as_ref()
|
|
|
|
.map(fids)
|
2021-06-15 22:21:41 +08:00
|
|
|
.unwrap_or_else(|| displayed_ids.clone())
|
2021-06-14 05:51:33 +08:00
|
|
|
.intersection(&displayed_ids)
|
|
|
|
.cloned()
|
2021-06-15 22:21:41 +08:00
|
|
|
.collect();
|
2021-04-19 22:22:41 +08:00
|
|
|
|
2021-06-15 22:21:41 +08:00
|
|
|
let attr_to_highlight = query
|
2021-04-19 22:22:41 +08:00
|
|
|
.attributes_to_highlight
|
|
|
|
.unwrap_or_default();
|
|
|
|
|
2021-06-15 22:21:41 +08:00
|
|
|
let attr_to_crop = query
|
2021-04-19 22:22:41 +08:00
|
|
|
.attributes_to_crop
|
|
|
|
.unwrap_or_default();
|
|
|
|
|
2021-06-17 01:30:06 +08:00
|
|
|
// Attributes in `formatted_options` correspond to the attributes that will be in `_formatted`
|
|
|
|
// These attributes are:
|
|
|
|
// - the attributes asked to be highlighted or cropped (with `attributesToCrop` or `attributesToHighlight`)
|
|
|
|
// - the attributes asked to be retrieved: these attributes will not be highlighted/cropped
|
2021-06-17 19:50:49 +08:00
|
|
|
// But these attributes must be also present in displayed attributes
|
2021-06-16 20:23:08 +08:00
|
|
|
let formatted_options = compute_formatted_options(
|
2021-06-15 23:16:07 +08:00
|
|
|
&attr_to_highlight,
|
|
|
|
&attr_to_crop,
|
|
|
|
query.crop_length,
|
2021-06-17 01:30:06 +08:00
|
|
|
&to_retrieve_ids,
|
2021-06-15 23:16:07 +08:00
|
|
|
&fields_ids_map,
|
|
|
|
&displayed_ids,
|
|
|
|
);
|
2021-03-04 18:56:32 +08:00
|
|
|
|
|
|
|
let stop_words = fst::Set::default();
|
2021-06-13 18:29:24 +08:00
|
|
|
let formatter =
|
2021-05-12 00:30:55 +08:00
|
|
|
Formatter::new(&stop_words, (String::from("<em>"), String::from("</em>")));
|
2021-03-04 18:56:32 +08:00
|
|
|
|
2021-06-15 03:26:35 +08:00
|
|
|
let mut documents = Vec::new();
|
|
|
|
|
2021-06-17 20:36:32 +08:00
|
|
|
let documents_iter = self.documents(&rtxn, documents_ids)?;
|
|
|
|
|
2021-03-04 18:56:32 +08:00
|
|
|
for (_id, obkv) in self.documents(&rtxn, documents_ids)? {
|
2021-06-16 22:18:55 +08:00
|
|
|
let document = make_document(&to_retrieve_ids, &fields_ids_map, obkv)?;
|
2021-06-16 20:23:08 +08:00
|
|
|
let formatted = format_fields(
|
2021-04-19 22:22:41 +08:00
|
|
|
&fields_ids_map,
|
|
|
|
obkv,
|
2021-06-13 18:29:24 +08:00
|
|
|
&formatter,
|
2021-04-19 22:22:41 +08:00
|
|
|
&matching_words,
|
2021-06-14 05:51:33 +08:00
|
|
|
&formatted_options,
|
2021-04-19 22:22:41 +08:00
|
|
|
)?;
|
2021-06-15 03:26:35 +08:00
|
|
|
|
2021-04-19 16:13:13 +08:00
|
|
|
let hit = SearchHit {
|
2021-04-19 22:22:41 +08:00
|
|
|
document,
|
|
|
|
formatted,
|
2021-04-19 16:13:13 +08:00
|
|
|
};
|
|
|
|
documents.push(hit);
|
2021-03-04 18:56:32 +08: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);
|
|
|
|
}
|
2021-06-17 20:38:52 +08:00
|
|
|
let distribution = facet_distribution.candidates(candidates).execute()?;
|
2021-06-15 03:26:35 +08:00
|
|
|
|
|
|
|
Some(distribution)
|
2021-03-04 18:56:32 +08:00
|
|
|
}
|
|
|
|
None => None,
|
|
|
|
};
|
|
|
|
|
|
|
|
let result = SearchResult {
|
2021-03-23 17:47:19 +08:00
|
|
|
exhaustive_nb_hits: false, // not implemented yet
|
2021-03-04 18:56:32 +08: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-06-16 20:23:08 +08:00
|
|
|
fn compute_formatted_options(
|
2021-06-15 23:16:07 +08:00
|
|
|
attr_to_highlight: &HashSet<String>,
|
|
|
|
attr_to_crop: &[String],
|
|
|
|
query_crop_length: usize,
|
2021-06-17 01:30:06 +08:00
|
|
|
to_retrieve_ids: &BTreeSet<u8>,
|
2021-06-15 23:16:07 +08:00
|
|
|
fields_ids_map: &FieldsIdsMap,
|
2021-06-16 22:18:55 +08:00
|
|
|
displayed_ids: &BTreeSet<u8>,
|
2021-06-17 01:30:06 +08:00
|
|
|
) -> BTreeMap<FieldId, FormatOptions> {
|
2021-06-15 23:16:07 +08:00
|
|
|
|
2021-06-17 01:30:06 +08:00
|
|
|
let mut formatted_options = BTreeMap::new();
|
2021-06-15 23:16:07 +08:00
|
|
|
|
2021-06-17 19:50:49 +08:00
|
|
|
add_highlight_to_formatted_options(
|
|
|
|
&mut formatted_options,
|
2021-06-16 23:13:21 +08:00
|
|
|
attr_to_highlight,
|
|
|
|
fields_ids_map,
|
|
|
|
displayed_ids,
|
|
|
|
);
|
|
|
|
|
2021-06-17 19:50:49 +08:00
|
|
|
add_crop_to_formatted_options(
|
|
|
|
&mut formatted_options,
|
2021-06-16 23:13:21 +08:00
|
|
|
attr_to_crop,
|
|
|
|
query_crop_length,
|
|
|
|
fields_ids_map,
|
|
|
|
displayed_ids,
|
|
|
|
);
|
|
|
|
|
2021-06-17 01:30:06 +08:00
|
|
|
// Should not return `_formatted` if no valid attributes to highlight/crop
|
|
|
|
if !formatted_options.is_empty() {
|
2021-06-17 19:50:49 +08:00
|
|
|
add_non_formatted_ids_to_formatted_options(
|
|
|
|
&mut formatted_options,
|
2021-06-17 01:30:06 +08:00
|
|
|
to_retrieve_ids,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-06-16 23:13:21 +08:00
|
|
|
formatted_options
|
|
|
|
}
|
|
|
|
|
|
|
|
fn add_highlight_to_formatted_options(
|
2021-06-17 19:50:49 +08:00
|
|
|
formatted_options: &mut BTreeMap<FieldId, FormatOptions>,
|
2021-06-16 23:13:21 +08:00
|
|
|
attr_to_highlight: &HashSet<String>,
|
|
|
|
fields_ids_map: &FieldsIdsMap,
|
|
|
|
displayed_ids: &BTreeSet<u8>,
|
2021-06-17 19:50:49 +08:00
|
|
|
) {
|
2021-06-15 23:16:07 +08:00
|
|
|
for attr in attr_to_highlight {
|
|
|
|
let new_format = FormatOptions {
|
|
|
|
highlight: true,
|
|
|
|
crop: None,
|
|
|
|
};
|
|
|
|
|
|
|
|
if attr == "*" {
|
2021-06-16 00:44:56 +08:00
|
|
|
for id in displayed_ids {
|
|
|
|
formatted_options.insert(*id, new_format);
|
2021-06-15 23:16:07 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(id) = fields_ids_map.id(&attr) {
|
2021-06-17 01:30:06 +08:00
|
|
|
if displayed_ids.contains(&id) {
|
|
|
|
formatted_options.insert(id, new_format);
|
|
|
|
}
|
2021-06-15 23:16:07 +08:00
|
|
|
}
|
2021-06-16 00:44:56 +08:00
|
|
|
}
|
2021-06-16 23:13:21 +08:00
|
|
|
}
|
2021-06-15 23:16:07 +08:00
|
|
|
|
2021-06-16 23:13:21 +08:00
|
|
|
fn add_crop_to_formatted_options(
|
2021-06-17 19:50:49 +08:00
|
|
|
formatted_options: &mut BTreeMap<FieldId, FormatOptions>,
|
2021-06-16 23:13:21 +08:00
|
|
|
attr_to_crop: &[String],
|
|
|
|
crop_length: usize,
|
|
|
|
fields_ids_map: &FieldsIdsMap,
|
|
|
|
displayed_ids: &BTreeSet<u8>,
|
2021-06-17 19:50:49 +08:00
|
|
|
) {
|
2021-06-15 23:16:07 +08:00
|
|
|
for attr in attr_to_crop {
|
2021-06-17 22:59:01 +08:00
|
|
|
let mut split = attr.rsplitn(2, ':');
|
|
|
|
let (attr_name, attr_len) = match split.next().zip(split.next()) {
|
2021-06-16 00:44:56 +08:00
|
|
|
Some((len, name)) => {
|
2021-06-17 22:59:01 +08:00
|
|
|
let crop_len = len.parse::<usize>().unwrap_or(crop_length);
|
|
|
|
(name, crop_len)
|
2021-06-16 00:44:56 +08:00
|
|
|
},
|
2021-06-17 22:59:01 +08:00
|
|
|
None => (attr.as_str(), crop_length),
|
2021-06-16 00:44:56 +08:00
|
|
|
};
|
2021-06-15 23:16:07 +08:00
|
|
|
|
|
|
|
if attr_name == "*" {
|
2021-06-16 00:44:56 +08:00
|
|
|
for id in displayed_ids {
|
|
|
|
formatted_options
|
|
|
|
.entry(*id)
|
|
|
|
.and_modify(|f| f.crop = Some(attr_len))
|
|
|
|
.or_insert(FormatOptions {
|
|
|
|
highlight: false,
|
|
|
|
crop: Some(attr_len),
|
|
|
|
});
|
2021-06-15 23:16:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(id) = fields_ids_map.id(&attr_name) {
|
2021-06-17 01:30:06 +08:00
|
|
|
if displayed_ids.contains(&id) {
|
|
|
|
formatted_options
|
|
|
|
.entry(id)
|
|
|
|
.and_modify(|f| f.crop = Some(attr_len))
|
|
|
|
.or_insert(FormatOptions {
|
|
|
|
highlight: false,
|
|
|
|
crop: Some(attr_len),
|
|
|
|
});
|
|
|
|
}
|
2021-06-15 23:16:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-17 01:30:06 +08:00
|
|
|
fn add_non_formatted_ids_to_formatted_options(
|
2021-06-17 19:50:49 +08:00
|
|
|
formatted_options: &mut BTreeMap<FieldId, FormatOptions>,
|
2021-06-17 01:30:06 +08:00
|
|
|
to_retrieve_ids: &BTreeSet<u8>
|
2021-06-17 19:50:49 +08:00
|
|
|
) {
|
2021-06-17 01:30:06 +08:00
|
|
|
for id in to_retrieve_ids {
|
|
|
|
formatted_options
|
|
|
|
.entry(*id)
|
|
|
|
.or_insert(FormatOptions {
|
|
|
|
highlight: false,
|
|
|
|
crop: None,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-21 03:19:37 +08:00
|
|
|
fn make_document(
|
2021-06-16 22:18:55 +08:00
|
|
|
attributes_to_retrieve: &BTreeSet<FieldId>,
|
2021-04-21 03:19:37 +08:00
|
|
|
field_ids_map: &FieldsIdsMap,
|
|
|
|
obkv: obkv::KvReader,
|
2021-06-15 03:26:35 +08:00
|
|
|
) -> Result<Document> {
|
2021-04-21 03:19:37 +08:00
|
|
|
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-06-16 20:23:08 +08:00
|
|
|
fn format_fields<A: AsRef<[u8]>>(
|
2021-04-19 22:22:41 +08:00
|
|
|
field_ids_map: &FieldsIdsMap,
|
|
|
|
obkv: obkv::KvReader,
|
2021-06-13 18:29:24 +08:00
|
|
|
formatter: &Formatter<A>,
|
2021-04-20 01:03:53 +08:00
|
|
|
matching_words: &impl Matcher,
|
2021-06-17 01:30:06 +08:00
|
|
|
formatted_options: &BTreeMap<FieldId, FormatOptions>,
|
2021-06-15 03:26:35 +08:00
|
|
|
) -> Result<Document> {
|
2021-04-19 22:22:41 +08:00
|
|
|
let mut document = Document::new();
|
|
|
|
|
2021-06-17 01:30:06 +08:00
|
|
|
for (id, format) in formatted_options {
|
|
|
|
if let Some(value) = obkv.get(*id) {
|
2021-04-19 22:22:41 +08:00
|
|
|
let mut value: Value = serde_json::from_slice(value)?;
|
|
|
|
|
2021-06-17 01:30:06 +08:00
|
|
|
value = formatter.format_value(
|
|
|
|
value,
|
|
|
|
matching_words,
|
|
|
|
*format,
|
|
|
|
);
|
2021-04-19 22:22:41 +08:00
|
|
|
|
|
|
|
// This unwrap must be safe since we got the ids from the fields_ids_map just
|
|
|
|
// before.
|
|
|
|
let key = field_ids_map
|
2021-06-17 01:30:06 +08:00
|
|
|
.name(*id)
|
2021-04-19 22:22:41 +08:00
|
|
|
.expect("Missing field name")
|
|
|
|
.to_string();
|
|
|
|
|
|
|
|
document.insert(key, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(document)
|
|
|
|
}
|
|
|
|
|
2021-06-16 20:23:08 +08:00
|
|
|
/// trait to allow unit testing of `format_fields`
|
2021-04-20 01:03:53 +08:00
|
|
|
trait Matcher {
|
2021-06-15 00:26:47 +08:00
|
|
|
fn matches(&self, w: &str) -> Option<usize>;
|
2021-04-20 01:03:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
2021-06-17 01:30:06 +08:00
|
|
|
impl Matcher for BTreeMap<&str, Option<usize>> {
|
2021-06-15 00:26:47 +08:00
|
|
|
fn matches(&self, w: &str) -> Option<usize> {
|
|
|
|
self.get(w).cloned().flatten()
|
2021-04-20 01:03:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Matcher for MatchingWords {
|
2021-06-15 00:26:47 +08:00
|
|
|
fn matches(&self, w: &str) -> Option<usize> {
|
|
|
|
self.matching_bytes(w)
|
2021-04-20 01:03:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-12 00:30:55 +08:00
|
|
|
struct Formatter<'a, A> {
|
2021-03-04 18:56:32 +08:00
|
|
|
analyzer: Analyzer<'a, A>,
|
2021-04-19 22:22:41 +08:00
|
|
|
marks: (String, String),
|
2021-03-04 18:56:32 +08:00
|
|
|
}
|
|
|
|
|
2021-05-12 00:30:55 +08:00
|
|
|
impl<'a, A: AsRef<[u8]>> Formatter<'a, A> {
|
2021-04-19 22:22:41 +08:00
|
|
|
pub fn new(stop_words: &'a fst::Set<A>, marks: (String, String)) -> Self {
|
2021-04-01 22:49:11 +08:00
|
|
|
let mut config = AnalyzerConfig::default();
|
|
|
|
config.stop_words(stop_words);
|
|
|
|
|
|
|
|
let analyzer = Analyzer::new(config);
|
2021-03-04 18:56:32 +08:00
|
|
|
|
2021-04-19 22:22:41 +08:00
|
|
|
Self { analyzer, marks }
|
2021-03-04 18:56:32 +08:00
|
|
|
}
|
|
|
|
|
2021-05-05 23:31:40 +08:00
|
|
|
fn format_value(
|
|
|
|
&self,
|
|
|
|
value: Value,
|
|
|
|
matcher: &impl Matcher,
|
2021-06-16 22:18:55 +08:00
|
|
|
format_options: FormatOptions,
|
2021-05-12 00:30:55 +08:00
|
|
|
) -> Value {
|
2021-03-04 18:56:32 +08:00
|
|
|
match value {
|
|
|
|
Value::String(old_string) => {
|
2021-05-12 00:30:55 +08:00
|
|
|
let value =
|
2021-06-16 22:18:55 +08:00
|
|
|
self.format_string(old_string, matcher, format_options);
|
2021-05-05 23:31:40 +08:00
|
|
|
Value::String(value)
|
2021-03-04 18:56:32 +08:00
|
|
|
}
|
|
|
|
Value::Array(values) => Value::Array(
|
|
|
|
values
|
2021-03-16 01:11:10 +08:00
|
|
|
.into_iter()
|
2021-06-16 22:18:55 +08:00
|
|
|
.map(|v| self.format_value(v, matcher, FormatOptions { highlight: format_options.highlight, crop: None }))
|
2021-03-16 01:11:10 +08:00
|
|
|
.collect(),
|
2021-03-04 18:56:32 +08:00
|
|
|
),
|
|
|
|
Value::Object(object) => Value::Object(
|
|
|
|
object
|
2021-03-16 01:11:10 +08:00
|
|
|
.into_iter()
|
2021-06-16 22:18:55 +08:00
|
|
|
.map(|(k, v)| (k, self.format_value(v, matcher, FormatOptions { highlight: format_options.highlight, crop: None })))
|
2021-03-16 01:11:10 +08:00
|
|
|
.collect(),
|
2021-03-04 18:56:32 +08:00
|
|
|
),
|
2021-05-05 23:31:40 +08:00
|
|
|
value => value,
|
2021-03-04 18:56:32 +08:00
|
|
|
}
|
|
|
|
}
|
2021-06-13 17:53:29 +08:00
|
|
|
|
2021-05-12 00:30:55 +08:00
|
|
|
fn format_string(
|
|
|
|
&self,
|
|
|
|
s: String,
|
|
|
|
matcher: &impl Matcher,
|
2021-06-16 22:18:55 +08:00
|
|
|
format_options: FormatOptions,
|
2021-05-12 00:30:55 +08:00
|
|
|
) -> String {
|
2021-05-07 00:31:41 +08:00
|
|
|
let analyzed = self.analyzer.analyze(&s);
|
2021-05-11 23:27:31 +08:00
|
|
|
|
2021-06-16 22:18:55 +08:00
|
|
|
let tokens: Box<dyn Iterator<Item = (&str, Token)>> = match format_options.crop {
|
2021-05-11 23:27:31 +08:00
|
|
|
Some(crop_len) => {
|
2021-06-17 22:59:01 +08:00
|
|
|
let mut buffer = Vec::new();
|
2021-05-12 00:30:55 +08:00
|
|
|
let mut tokens = analyzed.reconstruct().peekable();
|
2021-06-17 22:59:01 +08:00
|
|
|
|
2021-06-15 23:31:32 +08:00
|
|
|
while let Some((word, token)) = tokens.next_if(|(_, token)| matcher.matches(token.text()).is_none()) {
|
2021-06-17 22:59:01 +08:00
|
|
|
buffer.push((word, token));
|
2021-05-12 00:30:55 +08:00
|
|
|
}
|
|
|
|
|
2021-06-17 22:59:01 +08:00
|
|
|
match tokens.next() {
|
|
|
|
Some(token) => {
|
|
|
|
let mut total_len: usize = buffer.iter().map(|(word, _)| word.len()).sum();
|
|
|
|
let before_iter = buffer.into_iter().skip_while(move |(word, _)| {
|
|
|
|
total_len -= word.len();
|
2021-06-17 23:03:43 +08:00
|
|
|
total_len >= crop_len
|
2021-06-17 22:59:01 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
let mut taken_after = 0;
|
|
|
|
let after_iter = tokens
|
|
|
|
.take_while(move |(word, _)| {
|
|
|
|
let take = taken_after < crop_len;
|
|
|
|
taken_after += word.chars().count();
|
|
|
|
take
|
|
|
|
});
|
|
|
|
|
|
|
|
let iter = before_iter
|
|
|
|
.chain(Some(token))
|
|
|
|
.chain(after_iter);
|
|
|
|
|
|
|
|
Box::new(iter)
|
|
|
|
},
|
|
|
|
// If no word matches in the attribute
|
|
|
|
None => {
|
|
|
|
let mut count = 0;
|
|
|
|
let iter = buffer.into_iter().take_while(move |(word, _)| {
|
|
|
|
let take = count < crop_len;
|
|
|
|
count += word.len();
|
|
|
|
take
|
|
|
|
});
|
|
|
|
|
|
|
|
Box::new(iter)
|
|
|
|
}
|
2021-05-12 00:30:55 +08:00
|
|
|
}
|
|
|
|
}
|
2021-05-11 23:27:31 +08:00
|
|
|
None => Box::new(analyzed.reconstruct()),
|
2021-05-05 23:31:40 +08:00
|
|
|
};
|
|
|
|
|
2021-05-12 00:30:55 +08:00
|
|
|
tokens
|
|
|
|
.map(|(word, token)| {
|
2021-06-16 22:18:55 +08:00
|
|
|
if format_options.highlight && token.is_word() && matcher.matches(token.text()).is_some() {
|
2021-05-12 00:30:55 +08:00
|
|
|
let mut new_word = String::new();
|
|
|
|
new_word.push_str(&self.marks.0);
|
2021-06-15 00:26:47 +08:00
|
|
|
if let Some(match_len) = matcher.matches(token.text()) {
|
|
|
|
new_word.push_str(&word[..match_len]);
|
|
|
|
new_word.push_str(&self.marks.1);
|
|
|
|
new_word.push_str(&word[match_len..]);
|
|
|
|
}
|
2021-06-16 23:25:02 +08:00
|
|
|
Cow::Owned(new_word)
|
2021-05-12 00:30:55 +08:00
|
|
|
} else {
|
2021-06-16 23:25:02 +08:00
|
|
|
Cow::Borrowed(word)
|
2021-05-12 00:30:55 +08:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect::<String>()
|
2021-05-05 23:31:40 +08:00
|
|
|
}
|
2021-03-04 18:56:32 +08:00
|
|
|
}
|
|
|
|
|
2021-06-15 03:26:35 +08:00
|
|
|
fn parse_filter(facets: &Value, index: &Index, txn: &RoTxn) -> Result<Option<FilterCondition>> {
|
2021-03-04 18:56:32 +08:00
|
|
|
match facets {
|
2021-06-15 03:26:35 +08:00
|
|
|
Value::String(expr) => {
|
2021-06-17 20:36:32 +08:00
|
|
|
let condition = FilterCondition::from_str(txn, index, expr)?;
|
2021-06-15 03:26:35 +08:00
|
|
|
Ok(Some(condition))
|
|
|
|
}
|
2021-06-15 22:25:16 +08:00
|
|
|
Value::Array(arr) => parse_filter_array(txn, index, arr),
|
2021-06-17 20:38:52 +08:00
|
|
|
v => Err(FacetError::InvalidExpression(&["Array"], v.clone()).into()),
|
2021-03-04 18:56:32 +08:00
|
|
|
}
|
|
|
|
}
|
2021-04-20 01:03:53 +08:00
|
|
|
|
2021-06-15 22:25:16 +08:00
|
|
|
fn parse_filter_array(
|
2021-05-05 00:22:48 +08:00
|
|
|
txn: &RoTxn,
|
|
|
|
index: &Index,
|
|
|
|
arr: &[Value],
|
2021-06-15 03:26:35 +08:00
|
|
|
) -> Result<Option<FilterCondition>> {
|
2021-05-05 00:22:48 +08: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()),
|
2021-06-15 03:26:35 +08:00
|
|
|
v => {
|
|
|
|
return Err(FacetError::InvalidExpression(&["String"], v.clone()).into())
|
|
|
|
}
|
2021-05-05 00:22:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ands.push(Either::Left(ors));
|
|
|
|
}
|
2021-06-15 03:26:35 +08:00
|
|
|
v => {
|
|
|
|
return Err(
|
|
|
|
FacetError::InvalidExpression(&["String", "[String]"], v.clone()).into(),
|
|
|
|
)
|
|
|
|
}
|
2021-05-05 00:22:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-17 20:36:32 +08:00
|
|
|
Ok(FilterCondition::from_array(txn, &index.0, ands)?)
|
2021-05-05 00:22:48 +08:00
|
|
|
}
|
|
|
|
|
2021-04-20 01:03:53 +08:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
2021-06-14 05:51:33 +08:00
|
|
|
fn no_ids_no_formatted() {
|
2021-04-20 01:03:53 +08:00
|
|
|
let stop_words = fst::Set::default();
|
2021-06-13 18:29:24 +08:00
|
|
|
let formatter =
|
2021-05-12 00:30:55 +08:00
|
|
|
Formatter::new(&stop_words, (String::from("<em>"), String::from("</em>")));
|
2021-04-20 01:03:53 +08: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 22:03:39 +08:00
|
|
|
obkv.insert(id, Value::String("hello".into()).to_string().as_bytes())
|
|
|
|
.unwrap();
|
2021-04-20 01:03:53 +08:00
|
|
|
obkv.finish().unwrap();
|
|
|
|
|
|
|
|
let obkv = obkv::KvReader::new(&buf);
|
|
|
|
|
2021-06-17 01:30:06 +08:00
|
|
|
let formatted_options = BTreeMap::new();
|
2021-04-20 01:03:53 +08:00
|
|
|
|
|
|
|
let matching_words = MatchingWords::default();
|
|
|
|
|
2021-06-16 20:23:08 +08:00
|
|
|
let value = format_fields(
|
2021-04-20 01:03:53 +08:00
|
|
|
&fields,
|
|
|
|
obkv,
|
2021-06-13 18:29:24 +08:00
|
|
|
&formatter,
|
2021-04-20 01:03:53 +08:00
|
|
|
&matching_words,
|
2021-06-14 05:51:33 +08:00
|
|
|
&formatted_options,
|
2021-05-31 22:03:39 +08:00
|
|
|
)
|
|
|
|
.unwrap();
|
2021-04-20 01:03:53 +08:00
|
|
|
|
|
|
|
assert!(value.is_empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-06-15 00:26:47 +08:00
|
|
|
fn formatted_with_highlight_in_word() {
|
2021-04-20 01:03:53 +08:00
|
|
|
let stop_words = fst::Set::default();
|
2021-06-15 00:26:47 +08:00
|
|
|
let formatter =
|
|
|
|
Formatter::new(&stop_words, (String::from("<em>"), String::from("</em>")));
|
2021-04-20 01:03:53 +08:00
|
|
|
|
|
|
|
let mut fields = FieldsIdsMap::new();
|
2021-06-15 00:26:47 +08:00
|
|
|
let title = fields.insert("title").unwrap();
|
|
|
|
let author = fields.insert("author").unwrap();
|
2021-04-20 01:03:53 +08:00
|
|
|
|
|
|
|
let mut buf = Vec::new();
|
|
|
|
let mut obkv = obkv::KvWriter::new(&mut buf);
|
2021-06-15 00:26:47 +08:00
|
|
|
obkv.insert(title, Value::String("The Hobbit".into()).to_string().as_bytes())
|
|
|
|
.unwrap();
|
|
|
|
obkv.finish().unwrap();
|
|
|
|
obkv = obkv::KvWriter::new(&mut buf);
|
|
|
|
obkv.insert(author, Value::String("J. R. R. Tolkien".into()).to_string().as_bytes())
|
2021-05-31 22:03:39 +08:00
|
|
|
.unwrap();
|
2021-04-20 01:03:53 +08:00
|
|
|
obkv.finish().unwrap();
|
|
|
|
|
|
|
|
let obkv = obkv::KvReader::new(&buf);
|
|
|
|
|
2021-06-17 01:30:06 +08:00
|
|
|
let mut formatted_options = BTreeMap::new();
|
2021-06-15 00:26:47 +08:00
|
|
|
formatted_options.insert(title, FormatOptions { highlight: true, crop: None });
|
2021-06-17 01:30:06 +08:00
|
|
|
formatted_options.insert(author, FormatOptions { highlight: false, crop: None });
|
2021-04-20 01:03:53 +08:00
|
|
|
|
2021-06-17 01:30:06 +08:00
|
|
|
let mut matching_words = BTreeMap::new();
|
2021-06-15 00:26:47 +08:00
|
|
|
matching_words.insert("hobbit", Some(3));
|
2021-04-20 01:03:53 +08:00
|
|
|
|
2021-06-16 20:23:08 +08:00
|
|
|
let value = format_fields(
|
2021-04-20 01:03:53 +08:00
|
|
|
&fields,
|
|
|
|
obkv,
|
2021-06-15 00:26:47 +08:00
|
|
|
&formatter,
|
2021-04-20 01:03:53 +08:00
|
|
|
&matching_words,
|
2021-06-15 00:26:47 +08:00
|
|
|
&formatted_options,
|
2021-05-31 22:03:39 +08:00
|
|
|
)
|
|
|
|
.unwrap();
|
2021-04-20 01:03:53 +08:00
|
|
|
|
2021-06-15 00:26:47 +08:00
|
|
|
assert_eq!(value["title"], "The <em>Hob</em>bit");
|
|
|
|
assert_eq!(value["author"], "J. R. R. Tolkien");
|
2021-04-20 01:03:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-06-14 05:51:33 +08:00
|
|
|
fn formatted_with_crop_2() {
|
2021-04-20 01:03:53 +08:00
|
|
|
let stop_words = fst::Set::default();
|
2021-06-14 05:51:33 +08:00
|
|
|
let formatter =
|
|
|
|
Formatter::new(&stop_words, (String::from("<em>"), String::from("</em>")));
|
2021-04-20 01:03:53 +08:00
|
|
|
|
|
|
|
let mut fields = FieldsIdsMap::new();
|
2021-06-14 05:51:33 +08:00
|
|
|
let title = fields.insert("title").unwrap();
|
|
|
|
let author = fields.insert("author").unwrap();
|
2021-04-20 01:03:53 +08:00
|
|
|
|
|
|
|
let mut buf = Vec::new();
|
|
|
|
let mut obkv = obkv::KvWriter::new(&mut buf);
|
2021-06-14 05:51:33 +08:00
|
|
|
obkv.insert(title, Value::String("Harry Potter and the Half-Blood Prince".into()).to_string().as_bytes())
|
|
|
|
.unwrap();
|
|
|
|
obkv.finish().unwrap();
|
|
|
|
obkv = obkv::KvWriter::new(&mut buf);
|
|
|
|
obkv.insert(author, Value::String("J. K. Rowling".into()).to_string().as_bytes())
|
|
|
|
.unwrap();
|
|
|
|
obkv.finish().unwrap();
|
|
|
|
|
|
|
|
let obkv = obkv::KvReader::new(&buf);
|
|
|
|
|
2021-06-17 01:30:06 +08:00
|
|
|
let mut formatted_options = BTreeMap::new();
|
2021-06-14 05:51:33 +08:00
|
|
|
formatted_options.insert(title, FormatOptions { highlight: false, crop: Some(2) });
|
2021-06-17 01:30:06 +08:00
|
|
|
formatted_options.insert(author, FormatOptions { highlight: false, crop: None });
|
2021-06-14 05:51:33 +08:00
|
|
|
|
2021-06-17 01:30:06 +08:00
|
|
|
let mut matching_words = BTreeMap::new();
|
2021-06-15 00:26:47 +08:00
|
|
|
matching_words.insert("potter", Some(6));
|
2021-06-14 05:51:33 +08:00
|
|
|
|
2021-06-16 20:23:08 +08:00
|
|
|
let value = format_fields(
|
2021-06-14 05:51:33 +08:00
|
|
|
&fields,
|
|
|
|
obkv,
|
|
|
|
&formatter,
|
|
|
|
&matching_words,
|
|
|
|
&formatted_options,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
assert_eq!(value["title"], "Harry Potter and");
|
|
|
|
assert_eq!(value["author"], "J. K. Rowling");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn formatted_with_crop_10() {
|
|
|
|
let stop_words = fst::Set::default();
|
|
|
|
let formatter =
|
|
|
|
Formatter::new(&stop_words, (String::from("<em>"), String::from("</em>")));
|
|
|
|
|
|
|
|
let mut fields = FieldsIdsMap::new();
|
|
|
|
let title = fields.insert("title").unwrap();
|
|
|
|
let author = fields.insert("author").unwrap();
|
|
|
|
|
|
|
|
let mut buf = Vec::new();
|
|
|
|
let mut obkv = obkv::KvWriter::new(&mut buf);
|
|
|
|
obkv.insert(title, Value::String("Harry Potter and the Half-Blood Prince".into()).to_string().as_bytes())
|
|
|
|
.unwrap();
|
|
|
|
obkv.finish().unwrap();
|
|
|
|
obkv = obkv::KvWriter::new(&mut buf);
|
|
|
|
obkv.insert(author, Value::String("J. K. Rowling".into()).to_string().as_bytes())
|
|
|
|
.unwrap();
|
|
|
|
obkv.finish().unwrap();
|
|
|
|
|
|
|
|
let obkv = obkv::KvReader::new(&buf);
|
|
|
|
|
2021-06-17 01:30:06 +08:00
|
|
|
let mut formatted_options = BTreeMap::new();
|
2021-06-14 05:51:33 +08:00
|
|
|
formatted_options.insert(title, FormatOptions { highlight: false, crop: Some(10) });
|
2021-06-17 01:30:06 +08:00
|
|
|
formatted_options.insert(author, FormatOptions { highlight: false, crop: None });
|
2021-06-14 05:51:33 +08:00
|
|
|
|
2021-06-17 01:30:06 +08:00
|
|
|
let mut matching_words = BTreeMap::new();
|
2021-06-15 00:26:47 +08:00
|
|
|
matching_words.insert("potter", Some(6));
|
2021-06-14 05:51:33 +08:00
|
|
|
|
2021-06-16 20:23:08 +08:00
|
|
|
let value = format_fields(
|
2021-06-14 05:51:33 +08:00
|
|
|
&fields,
|
|
|
|
obkv,
|
|
|
|
&formatter,
|
|
|
|
&matching_words,
|
|
|
|
&formatted_options,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
assert_eq!(value["title"], "Harry Potter and the Half");
|
|
|
|
assert_eq!(value["author"], "J. K. Rowling");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn formatted_with_crop_0() {
|
|
|
|
let stop_words = fst::Set::default();
|
|
|
|
let formatter =
|
|
|
|
Formatter::new(&stop_words, (String::from("<em>"), String::from("</em>")));
|
|
|
|
|
|
|
|
let mut fields = FieldsIdsMap::new();
|
|
|
|
let title = fields.insert("title").unwrap();
|
|
|
|
let author = fields.insert("author").unwrap();
|
|
|
|
|
|
|
|
let mut buf = Vec::new();
|
|
|
|
let mut obkv = obkv::KvWriter::new(&mut buf);
|
|
|
|
obkv.insert(title, Value::String("Harry Potter and the Half-Blood Prince".into()).to_string().as_bytes())
|
|
|
|
.unwrap();
|
|
|
|
obkv.finish().unwrap();
|
|
|
|
obkv = obkv::KvWriter::new(&mut buf);
|
|
|
|
obkv.insert(author, Value::String("J. K. Rowling".into()).to_string().as_bytes())
|
|
|
|
.unwrap();
|
|
|
|
obkv.finish().unwrap();
|
|
|
|
|
|
|
|
let obkv = obkv::KvReader::new(&buf);
|
|
|
|
|
2021-06-17 01:30:06 +08:00
|
|
|
let mut formatted_options = BTreeMap::new();
|
2021-06-14 05:51:33 +08:00
|
|
|
formatted_options.insert(title, FormatOptions { highlight: false, crop: Some(0) });
|
2021-06-17 01:30:06 +08:00
|
|
|
formatted_options.insert(author, FormatOptions { highlight: false, crop: None });
|
2021-06-14 05:51:33 +08:00
|
|
|
|
2021-06-17 01:30:06 +08:00
|
|
|
let mut matching_words = BTreeMap::new();
|
2021-06-15 00:26:47 +08:00
|
|
|
matching_words.insert("potter", Some(6));
|
2021-06-14 05:51:33 +08:00
|
|
|
|
2021-06-16 20:23:08 +08:00
|
|
|
let value = format_fields(
|
2021-06-14 05:51:33 +08:00
|
|
|
&fields,
|
|
|
|
obkv,
|
|
|
|
&formatter,
|
|
|
|
&matching_words,
|
|
|
|
&formatted_options,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
assert_eq!(value["title"], "Potter");
|
|
|
|
assert_eq!(value["author"], "J. K. Rowling");
|
2021-06-17 22:59:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn formatted_with_crop_and_no_match() {
|
|
|
|
let stop_words = fst::Set::default();
|
|
|
|
let formatter =
|
|
|
|
Formatter::new(&stop_words, (String::from("<em>"), String::from("</em>")));
|
|
|
|
|
|
|
|
let mut fields = FieldsIdsMap::new();
|
|
|
|
let title = fields.insert("title").unwrap();
|
|
|
|
let author = fields.insert("author").unwrap();
|
|
|
|
|
|
|
|
let mut buf = Vec::new();
|
|
|
|
let mut obkv = obkv::KvWriter::new(&mut buf);
|
|
|
|
obkv.insert(title, Value::String("Harry Potter and the Half-Blood Prince".into()).to_string().as_bytes())
|
|
|
|
.unwrap();
|
|
|
|
obkv.finish().unwrap();
|
|
|
|
obkv = obkv::KvWriter::new(&mut buf);
|
|
|
|
obkv.insert(author, Value::String("J. K. Rowling".into()).to_string().as_bytes())
|
|
|
|
.unwrap();
|
|
|
|
obkv.finish().unwrap();
|
|
|
|
|
|
|
|
let obkv = obkv::KvReader::new(&buf);
|
|
|
|
|
|
|
|
let mut formatted_options = BTreeMap::new();
|
|
|
|
formatted_options.insert(title, FormatOptions { highlight: false, crop: Some(6) });
|
|
|
|
formatted_options.insert(author, FormatOptions { highlight: false, crop: Some(20) });
|
|
|
|
|
|
|
|
let mut matching_words = BTreeMap::new();
|
|
|
|
matching_words.insert("rowling", Some(3));
|
|
|
|
|
|
|
|
let value = format_fields(
|
|
|
|
&fields,
|
|
|
|
obkv,
|
|
|
|
&formatter,
|
|
|
|
&matching_words,
|
|
|
|
&formatted_options,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
assert_eq!(value["title"], "Harry ");
|
|
|
|
assert_eq!(value["author"], "J. K. Rowling");
|
2021-06-14 05:51:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn formatted_with_crop_and_highlight() {
|
|
|
|
let stop_words = fst::Set::default();
|
|
|
|
let formatter =
|
|
|
|
Formatter::new(&stop_words, (String::from("<em>"), String::from("</em>")));
|
|
|
|
|
|
|
|
let mut fields = FieldsIdsMap::new();
|
|
|
|
let title = fields.insert("title").unwrap();
|
|
|
|
let author = fields.insert("author").unwrap();
|
|
|
|
|
|
|
|
let mut buf = Vec::new();
|
|
|
|
let mut obkv = obkv::KvWriter::new(&mut buf);
|
|
|
|
obkv.insert(title, Value::String("Harry Potter and the Half-Blood Prince".into()).to_string().as_bytes())
|
|
|
|
.unwrap();
|
|
|
|
obkv.finish().unwrap();
|
|
|
|
obkv = obkv::KvWriter::new(&mut buf);
|
|
|
|
obkv.insert(author, Value::String("J. K. Rowling".into()).to_string().as_bytes())
|
2021-05-31 22:03:39 +08:00
|
|
|
.unwrap();
|
2021-04-20 01:03:53 +08:00
|
|
|
obkv.finish().unwrap();
|
|
|
|
|
|
|
|
let obkv = obkv::KvReader::new(&buf);
|
|
|
|
|
2021-06-17 01:30:06 +08:00
|
|
|
let mut formatted_options = BTreeMap::new();
|
2021-06-14 05:51:33 +08:00
|
|
|
formatted_options.insert(title, FormatOptions { highlight: true, crop: Some(1) });
|
2021-06-17 01:30:06 +08:00
|
|
|
formatted_options.insert(author, FormatOptions { highlight: false, crop: None });
|
2021-04-20 01:03:53 +08:00
|
|
|
|
2021-06-17 01:30:06 +08:00
|
|
|
let mut matching_words = BTreeMap::new();
|
2021-06-15 00:26:47 +08:00
|
|
|
matching_words.insert("and", Some(3));
|
2021-04-20 01:03:53 +08:00
|
|
|
|
2021-06-16 20:23:08 +08:00
|
|
|
let value = format_fields(
|
2021-04-20 01:03:53 +08:00
|
|
|
&fields,
|
|
|
|
obkv,
|
2021-06-13 18:29:24 +08:00
|
|
|
&formatter,
|
2021-04-20 01:03:53 +08:00
|
|
|
&matching_words,
|
2021-06-14 05:51:33 +08:00
|
|
|
&formatted_options,
|
2021-05-12 00:30:55 +08:00
|
|
|
)
|
|
|
|
.unwrap();
|
2021-04-20 01:03:53 +08:00
|
|
|
|
2021-06-14 05:51:33 +08:00
|
|
|
assert_eq!(value["title"], " <em>and</em> ");
|
|
|
|
assert_eq!(value["author"], "J. K. Rowling");
|
2021-04-20 01:03:53 +08:00
|
|
|
}
|
2021-06-15 00:26:47 +08:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn formatted_with_crop_and_highlight_in_word() {
|
|
|
|
let stop_words = fst::Set::default();
|
|
|
|
let formatter =
|
|
|
|
Formatter::new(&stop_words, (String::from("<em>"), String::from("</em>")));
|
|
|
|
|
|
|
|
let mut fields = FieldsIdsMap::new();
|
|
|
|
let title = fields.insert("title").unwrap();
|
|
|
|
let author = fields.insert("author").unwrap();
|
|
|
|
|
|
|
|
let mut buf = Vec::new();
|
|
|
|
let mut obkv = obkv::KvWriter::new(&mut buf);
|
|
|
|
obkv.insert(title, Value::String("Harry Potter and the Half-Blood Prince".into()).to_string().as_bytes())
|
|
|
|
.unwrap();
|
|
|
|
obkv.finish().unwrap();
|
|
|
|
obkv = obkv::KvWriter::new(&mut buf);
|
|
|
|
obkv.insert(author, Value::String("J. K. Rowling".into()).to_string().as_bytes())
|
2021-05-31 22:03:39 +08:00
|
|
|
.unwrap();
|
2021-04-20 01:03:53 +08:00
|
|
|
obkv.finish().unwrap();
|
|
|
|
|
|
|
|
let obkv = obkv::KvReader::new(&buf);
|
|
|
|
|
2021-06-17 01:30:06 +08:00
|
|
|
let mut formatted_options = BTreeMap::new();
|
2021-06-15 00:26:47 +08:00
|
|
|
formatted_options.insert(title, FormatOptions { highlight: true, crop: Some(9) });
|
2021-06-17 01:30:06 +08:00
|
|
|
formatted_options.insert(author, FormatOptions { highlight: false, crop: None });
|
2021-04-20 01:03:53 +08:00
|
|
|
|
2021-06-17 01:30:06 +08:00
|
|
|
let mut matching_words = BTreeMap::new();
|
2021-06-15 00:26:47 +08:00
|
|
|
matching_words.insert("blood", Some(3));
|
2021-04-20 01:03:53 +08:00
|
|
|
|
2021-06-16 20:23:08 +08:00
|
|
|
let value = format_fields(
|
2021-04-20 01:03:53 +08:00
|
|
|
&fields,
|
|
|
|
obkv,
|
2021-06-15 00:26:47 +08:00
|
|
|
&formatter,
|
2021-04-20 01:03:53 +08:00
|
|
|
&matching_words,
|
2021-06-15 00:26:47 +08:00
|
|
|
&formatted_options,
|
2021-05-31 22:03:39 +08:00
|
|
|
)
|
|
|
|
.unwrap();
|
2021-04-20 01:03:53 +08:00
|
|
|
|
2021-06-15 00:26:47 +08:00
|
|
|
assert_eq!(value["title"], "the Half-<em>Blo</em>od Prince");
|
|
|
|
assert_eq!(value["author"], "J. K. Rowling");
|
2021-04-20 01:03:53 +08:00
|
|
|
}
|
|
|
|
}
|