Files
tantivy/src/schema/date_time_options.rs
2023-05-23 17:09:11 +02:00

241 lines
6.3 KiB
Rust

use std::ops::BitOr;
#[allow(deprecated)]
pub use common::DatePrecision;
pub use common::DateTimePrecision;
use serde::{Deserialize, Serialize};
use crate::schema::flags::{FastFlag, IndexedFlag, SchemaFlagList, StoredFlag};
/// The precision of the indexed date/time values in the inverted index.
pub const DATE_TIME_PRECISION_INDEXED: DateTimePrecision = DateTimePrecision::Second;
/// Defines how DateTime field should be handled by tantivy.
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize, Default)]
pub struct DateOptions {
indexed: bool,
// This boolean has no effect if the field is not marked as indexed true.
fieldnorms: bool,
#[serde(default)]
fast: bool,
stored: bool,
// Internal storage precision, used to optimize storage
// compression on fast fields.
#[serde(default)]
precision: DateTimePrecision,
}
impl DateOptions {
/// Returns true iff the value is stored.
pub fn is_stored(&self) -> bool {
self.stored
}
/// Returns true iff the value is indexed and therefore searchable.
pub fn is_indexed(&self) -> bool {
self.indexed
}
/// Returns true iff the field has fieldnorm.
pub fn fieldnorms(&self) -> bool {
self.fieldnorms && self.indexed
}
/// Returns true iff the value is a fast field.
pub fn is_fast(&self) -> bool {
self.fast
}
/// Set the field as stored.
///
/// Only the fields that are set as *stored* are
/// persisted into the Tantivy's store.
#[must_use]
pub fn set_stored(mut self) -> DateOptions {
self.stored = true;
self
}
/// Set the field as indexed.
///
/// Setting an integer as indexed will generate
/// a posting list for each value taken by the integer.
///
/// This is required for the field to be searchable.
#[must_use]
pub fn set_indexed(mut self) -> DateOptions {
self.indexed = true;
self
}
/// Set the field with fieldnorm.
///
/// Setting an integer as fieldnorm will generate
/// the fieldnorm data for it.
#[must_use]
pub fn set_fieldnorm(mut self) -> DateOptions {
self.fieldnorms = true;
self
}
/// Set the field as a single-valued fast field.
///
/// Fast fields are designed for random access.
/// Access time are similar to a random lookup in an array.
/// If more than one value is associated with a fast field, only the last one is
/// kept.
#[must_use]
pub fn set_fast(mut self) -> DateOptions {
self.fast = true;
self
}
/// Sets the precision for this DateTime field on the fast field.
/// Indexed precision is always [`DATE_TIME_PRECISION_INDEXED`].
///
/// Internal storage precision, used to optimize storage
/// compression on fast fields.
pub fn set_precision(mut self, precision: DateTimePrecision) -> DateOptions {
self.precision = precision;
self
}
/// Returns the storage precision for this DateTime field.
///
/// Internal storage precision, used to optimize storage
/// compression on fast fields.
pub fn get_precision(&self) -> DateTimePrecision {
self.precision
}
}
impl From<()> for DateOptions {
fn from(_: ()) -> DateOptions {
DateOptions::default()
}
}
impl From<FastFlag> for DateOptions {
fn from(_: FastFlag) -> Self {
DateOptions {
fast: true,
..Default::default()
}
}
}
impl From<StoredFlag> for DateOptions {
fn from(_: StoredFlag) -> Self {
DateOptions {
stored: true,
..Default::default()
}
}
}
impl From<IndexedFlag> for DateOptions {
fn from(_: IndexedFlag) -> Self {
DateOptions {
indexed: true,
fieldnorms: true,
..Default::default()
}
}
}
impl<T: Into<DateOptions>> BitOr<T> for DateOptions {
type Output = DateOptions;
fn bitor(self, other: T) -> DateOptions {
let other = other.into();
DateOptions {
indexed: self.indexed | other.indexed,
fieldnorms: self.fieldnorms | other.fieldnorms,
stored: self.stored | other.stored,
fast: self.fast | other.fast,
precision: self.precision,
}
}
}
impl<Head, Tail> From<SchemaFlagList<Head, Tail>> for DateOptions
where
Head: Clone,
Tail: Clone,
Self: BitOr<Output = Self> + From<Head> + From<Tail>,
{
fn from(head_tail: SchemaFlagList<Head, Tail>) -> Self {
Self::from(head_tail.head) | Self::from(head_tail.tail)
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_date_options_consistent_with_default() {
let date_time_options: DateOptions = serde_json::from_str(
r#"{
"indexed": false,
"fieldnorms": false,
"stored": false
}"#,
)
.unwrap();
assert_eq!(date_time_options, DateOptions::default());
}
#[test]
fn test_serialize_date_option() {
let date_options = serde_json::from_str::<DateOptions>(
r#"
{
"indexed": true,
"fieldnorms": false,
"stored": false,
"precision": "milliseconds"
}"#,
)
.unwrap();
let date_options_json = serde_json::to_value(date_options).unwrap();
assert_eq!(
date_options_json,
serde_json::json!({
"precision": "milliseconds",
"indexed": true,
"fast": false,
"fieldnorms": false,
"stored": false
})
);
}
#[test]
fn test_deserialize_date_options_with_wrong_options() {
assert!(serde_json::from_str::<DateOptions>(
r#"{
"indexed": true,
"fieldnorms": false,
"stored": "wrong_value"
}"#
)
.unwrap_err()
.to_string()
.contains("expected a boolean"));
assert!(serde_json::from_str::<DateOptions>(
r#"{
"indexed": true,
"fieldnorms": false,
"stored": false,
"precision": "hours"
}"#
)
.unwrap_err()
.to_string()
.contains("unknown variant `hours`"));
}
}