2020-12-04 12:02:22 +01:00
|
|
|
use crate::{FieldsIdsMap, FieldId};
|
2020-11-27 12:14:56 +01:00
|
|
|
|
2020-12-04 12:02:22 +01:00
|
|
|
use anyhow::{Context, bail};
|
|
|
|
use regex::Regex;
|
2020-11-27 12:14:56 +01:00
|
|
|
use serde::{Serialize, Deserialize};
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize, Copy, Clone, PartialEq, Eq)]
|
2020-08-12 10:43:02 +02:00
|
|
|
pub enum Criterion {
|
|
|
|
/// Sorted by increasing number of typos.
|
|
|
|
Typo,
|
|
|
|
/// Sorted by decreasing number of matched query terms.
|
|
|
|
Words,
|
|
|
|
/// Sorted by increasing distance between matched query terms.
|
|
|
|
Proximity,
|
|
|
|
/// Documents with quey words contained in more important
|
|
|
|
/// attributes are considred better.
|
|
|
|
Attribute,
|
|
|
|
/// Documents with query words at the front of an attribute is
|
|
|
|
/// considered better than if it was at the back.
|
|
|
|
WordsPosition,
|
|
|
|
/// Sorted by the similarity of the matched words with the query words.
|
|
|
|
Exactness,
|
|
|
|
/// Sorted by the increasing value of the field specified.
|
2020-11-27 12:14:56 +01:00
|
|
|
Asc(FieldId),
|
2020-08-12 10:43:02 +02:00
|
|
|
/// Sorted by the decreasing value of the field specified.
|
2020-11-27 12:14:56 +01:00
|
|
|
Desc(FieldId),
|
2020-08-12 10:43:02 +02:00
|
|
|
}
|
|
|
|
|
2020-12-04 12:02:22 +01:00
|
|
|
impl Criterion {
|
|
|
|
pub fn from_str(fields_ids_map: &mut FieldsIdsMap, txt: &str) -> anyhow::Result<Criterion> {
|
|
|
|
match txt {
|
|
|
|
"typo" => Ok(Criterion::Typo),
|
|
|
|
"words" => Ok(Criterion::Words),
|
|
|
|
"proximity" => Ok(Criterion::Proximity),
|
|
|
|
"attribute" => Ok(Criterion::Attribute),
|
|
|
|
"wordsposition" => Ok(Criterion::WordsPosition),
|
|
|
|
"exactness" => Ok(Criterion::Exactness),
|
|
|
|
text => {
|
|
|
|
let re = Regex::new(r#"(asc|desc)\(([\w_-]+)\)"#)?;
|
|
|
|
let caps = re.captures(text).with_context(|| format!("unknown criterion name: {}", text))?;
|
|
|
|
let order = caps.get(1).unwrap().as_str();
|
|
|
|
let field_name = caps.get(2).unwrap().as_str();
|
|
|
|
let field_id = fields_ids_map.insert(field_name).context("field id limit reached")?;
|
|
|
|
match order {
|
|
|
|
"asc" => Ok(Criterion::Asc(field_id)),
|
|
|
|
"desc" => Ok(Criterion::Desc(field_id)),
|
|
|
|
otherwise => bail!("unknown criterion name: {}", otherwise),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn field_id(&self) -> Option<FieldId> {
|
|
|
|
match *self {
|
|
|
|
Criterion::Asc(fid) | Criterion::Desc(fid) => Some(fid),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-12 10:43:02 +02:00
|
|
|
pub fn default_criteria() -> Vec<Criterion> {
|
|
|
|
vec![
|
|
|
|
Criterion::Typo,
|
|
|
|
Criterion::Words,
|
|
|
|
Criterion::Proximity,
|
|
|
|
Criterion::Attribute,
|
|
|
|
Criterion::WordsPosition,
|
|
|
|
Criterion::Exactness,
|
|
|
|
]
|
|
|
|
}
|