2018-10-10 16:57:21 +02:00
|
|
|
mod sum_of_typos;
|
|
|
|
mod number_of_words;
|
|
|
|
mod words_proximity;
|
|
|
|
mod sum_of_words_attribute;
|
|
|
|
mod sum_of_words_position;
|
|
|
|
mod exact;
|
|
|
|
|
|
|
|
use std::vec;
|
|
|
|
use std::cmp::Ordering;
|
2018-10-11 14:04:41 +02:00
|
|
|
use std::ops::Deref;
|
2018-10-10 16:57:21 +02:00
|
|
|
use crate::rank::Document;
|
|
|
|
|
|
|
|
pub use self::{
|
2018-10-11 14:04:41 +02:00
|
|
|
sum_of_typos::SumOfTypos,
|
|
|
|
number_of_words::NumberOfWords,
|
|
|
|
words_proximity::WordsProximity,
|
|
|
|
sum_of_words_attribute::SumOfWordsAttribute,
|
|
|
|
sum_of_words_position::SumOfWordsPosition,
|
|
|
|
exact::Exact,
|
2018-10-10 16:57:21 +02:00
|
|
|
};
|
|
|
|
|
2018-10-11 14:04:41 +02:00
|
|
|
pub trait Criterion {
|
|
|
|
#[inline]
|
|
|
|
fn evaluate(&self, lhs: &Document, rhs: &Document) -> Ordering;
|
2018-10-10 16:57:21 +02:00
|
|
|
|
2018-10-11 14:04:41 +02:00
|
|
|
#[inline]
|
|
|
|
fn eq(&self, lhs: &Document, rhs: &Document) -> bool {
|
|
|
|
self.evaluate(lhs, rhs) == Ordering::Equal
|
|
|
|
}
|
|
|
|
}
|
2018-10-10 16:57:21 +02:00
|
|
|
|
2018-10-11 14:04:41 +02:00
|
|
|
impl<'a, T: Criterion + ?Sized> Criterion for &'a T {
|
|
|
|
fn evaluate(&self, lhs: &Document, rhs: &Document) -> Ordering {
|
|
|
|
self.deref().evaluate(lhs, rhs)
|
2018-10-10 16:57:21 +02:00
|
|
|
}
|
|
|
|
|
2018-10-11 14:04:41 +02:00
|
|
|
fn eq(&self, lhs: &Document, rhs: &Document) -> bool {
|
|
|
|
self.deref().eq(lhs, rhs)
|
2018-10-10 16:57:21 +02:00
|
|
|
}
|
2018-10-11 14:04:41 +02:00
|
|
|
}
|
2018-10-10 16:57:21 +02:00
|
|
|
|
2018-10-11 14:04:41 +02:00
|
|
|
impl<T: Criterion + ?Sized> Criterion for Box<T> {
|
|
|
|
fn evaluate(&self, lhs: &Document, rhs: &Document) -> Ordering {
|
|
|
|
self.deref().evaluate(lhs, rhs)
|
2018-10-10 16:57:21 +02:00
|
|
|
}
|
|
|
|
|
2018-10-11 14:04:41 +02:00
|
|
|
fn eq(&self, lhs: &Document, rhs: &Document) -> bool {
|
|
|
|
self.deref().eq(lhs, rhs)
|
2018-10-10 16:57:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-11 14:04:41 +02:00
|
|
|
#[derive(Debug, Clone, Copy)]
|
|
|
|
pub struct DocumentId;
|
2018-10-10 16:57:21 +02:00
|
|
|
|
2018-10-11 14:04:41 +02:00
|
|
|
impl Criterion for DocumentId {
|
|
|
|
fn evaluate(&self, lhs: &Document, rhs: &Document) -> Ordering {
|
|
|
|
lhs.id.cmp(&rhs.id)
|
2018-10-10 16:57:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-11 14:04:41 +02:00
|
|
|
pub fn default() -> Vec<Box<dyn Criterion>> {
|
|
|
|
vec![
|
|
|
|
Box::new(SumOfTypos),
|
|
|
|
Box::new(NumberOfWords),
|
|
|
|
Box::new(WordsProximity),
|
|
|
|
Box::new(SumOfWordsAttribute),
|
|
|
|
Box::new(SumOfWordsPosition),
|
|
|
|
Box::new(Exact),
|
|
|
|
]
|
2018-10-10 16:57:21 +02:00
|
|
|
}
|