2023-12-20 09:40:50 +00:00
|
|
|
use crate::{make_term, Schema};
|
|
|
|
use pyo3::{exceptions, prelude::*, types::PyAny};
|
2019-06-04 09:09:58 +00:00
|
|
|
use tantivy as tv;
|
|
|
|
|
|
|
|
/// Tantivy's Query
|
2024-01-21 20:16:34 +00:00
|
|
|
#[pyclass(frozen, module = "tantivy.tantivy")]
|
2019-06-04 09:09:58 +00:00
|
|
|
pub(crate) struct Query {
|
2020-09-19 13:17:07 +00:00
|
|
|
pub(crate) inner: Box<dyn tv::query::Query>,
|
2020-09-19 09:36:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Query {
|
2020-09-19 13:17:07 +00:00
|
|
|
pub(crate) fn get(&self) -> &dyn tv::query::Query {
|
|
|
|
&self.inner
|
2020-09-19 09:36:31 +00:00
|
|
|
}
|
2019-06-04 09:09:58 +00:00
|
|
|
}
|
|
|
|
|
2022-04-15 03:50:37 +00:00
|
|
|
#[pymethods]
|
|
|
|
impl Query {
|
2019-08-02 11:23:10 +00:00
|
|
|
fn __repr__(&self) -> PyResult<String> {
|
2020-09-19 09:36:31 +00:00
|
|
|
Ok(format!("Query({:?})", self.get()))
|
2019-06-04 09:09:58 +00:00
|
|
|
}
|
2023-12-20 09:40:50 +00:00
|
|
|
|
|
|
|
/// Construct a Tantivy's TermQuery
|
|
|
|
#[staticmethod]
|
|
|
|
#[pyo3(signature = (schema, field_name, field_value, index_option = "position"))]
|
|
|
|
pub(crate) fn term_query(
|
|
|
|
schema: &Schema,
|
|
|
|
field_name: &str,
|
|
|
|
field_value: &PyAny,
|
|
|
|
index_option: &str,
|
|
|
|
) -> PyResult<Query> {
|
|
|
|
let term = make_term(&schema.inner, field_name, field_value)?;
|
|
|
|
let index_option = match index_option {
|
|
|
|
"position" => tv::schema::IndexRecordOption::WithFreqsAndPositions,
|
|
|
|
"freq" => tv::schema::IndexRecordOption::WithFreqs,
|
|
|
|
"basic" => tv::schema::IndexRecordOption::Basic,
|
|
|
|
_ => return Err(exceptions::PyValueError::new_err(
|
|
|
|
"Invalid index option, valid choices are: 'basic', 'freq' and 'position'"
|
|
|
|
))
|
|
|
|
};
|
|
|
|
let inner = tv::query::TermQuery::new(term, index_option);
|
|
|
|
Ok(Query {
|
|
|
|
inner: Box::new(inner),
|
|
|
|
})
|
|
|
|
}
|
2019-06-04 09:09:58 +00:00
|
|
|
}
|