mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-01-04 08:12:54 +00:00
103 lines
2.9 KiB
Rust
103 lines
2.9 KiB
Rust
use std::ops::BitOr;
|
|
|
|
use crate::schema::{DateOptions, NumericOptions, TextOptions};
|
|
|
|
#[derive(Clone)]
|
|
pub struct StoredFlag;
|
|
/// Flag to mark the field as stored.
|
|
/// This flag can apply to any kind of field.
|
|
///
|
|
/// A stored fields of a document can be retrieved given its `DocId`.
|
|
/// Stored field are stored together and compressed.
|
|
/// Reading the stored fields of a document is relatively slow.
|
|
/// (~ 100 microsecs)
|
|
///
|
|
/// It should not be used during scoring or collection.
|
|
pub const STORED: SchemaFlagList<StoredFlag, ()> = SchemaFlagList {
|
|
head: StoredFlag,
|
|
tail: (),
|
|
};
|
|
|
|
#[derive(Clone)]
|
|
pub struct IndexedFlag;
|
|
/// Flag to mark the field as indexed. An indexed field is searchable and has a fieldnorm.
|
|
///
|
|
/// The `INDEXED` flag can only be used when building `NumericOptions` (`u64`, `i64`, `f64` and
|
|
/// `bool` fields) Of course, text fields can also be indexed... But this is expressed by using
|
|
/// either the `STRING` (untokenized) or `TEXT` (tokenized with the english tokenizer) flags.
|
|
pub const INDEXED: SchemaFlagList<IndexedFlag, ()> = SchemaFlagList {
|
|
head: IndexedFlag,
|
|
tail: (),
|
|
};
|
|
|
|
#[derive(Clone)]
|
|
pub struct CoerceFlag;
|
|
/// Flag to mark the field as coerced.
|
|
///
|
|
/// `COERCE` will try to convert values into its value type if they don't match.
|
|
///
|
|
/// See [fast fields](`crate::fastfield`).
|
|
pub const COERCE: SchemaFlagList<CoerceFlag, ()> = SchemaFlagList {
|
|
head: CoerceFlag,
|
|
tail: (),
|
|
};
|
|
|
|
#[derive(Clone)]
|
|
pub struct FastFlag;
|
|
/// Flag to mark the field as a fast field (similar to Lucene's DocValues)
|
|
///
|
|
/// Fast fields can be random-accessed rapidly. Fields useful for scoring, filtering
|
|
/// or collection should be mark as fast fields.
|
|
///
|
|
/// See [fast fields](`crate::fastfield`).
|
|
pub const FAST: SchemaFlagList<FastFlag, ()> = SchemaFlagList {
|
|
head: FastFlag,
|
|
tail: (),
|
|
};
|
|
|
|
impl<Head, OldHead, OldTail> BitOr<SchemaFlagList<Head, ()>> for SchemaFlagList<OldHead, OldTail>
|
|
where
|
|
Head: Clone,
|
|
OldHead: Clone,
|
|
OldTail: Clone,
|
|
{
|
|
type Output = SchemaFlagList<Head, SchemaFlagList<OldHead, OldTail>>;
|
|
|
|
fn bitor(self, head: SchemaFlagList<Head, ()>) -> Self::Output {
|
|
SchemaFlagList {
|
|
head: head.head,
|
|
tail: self,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<T: Clone + Into<NumericOptions>> BitOr<NumericOptions> for SchemaFlagList<T, ()> {
|
|
type Output = NumericOptions;
|
|
|
|
fn bitor(self, rhs: NumericOptions) -> Self::Output {
|
|
self.head.into() | rhs
|
|
}
|
|
}
|
|
|
|
impl<T: Clone + Into<DateOptions>> BitOr<DateOptions> for SchemaFlagList<T, ()> {
|
|
type Output = DateOptions;
|
|
|
|
fn bitor(self, rhs: DateOptions) -> Self::Output {
|
|
self.head.into() | rhs
|
|
}
|
|
}
|
|
|
|
impl<T: Clone + Into<TextOptions>> BitOr<TextOptions> for SchemaFlagList<T, ()> {
|
|
type Output = TextOptions;
|
|
|
|
fn bitor(self, rhs: TextOptions) -> Self::Output {
|
|
self.head.into() | rhs
|
|
}
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
pub struct SchemaFlagList<Head: Clone, Tail: Clone> {
|
|
pub head: Head,
|
|
pub tail: Tail,
|
|
}
|