Skip to main content

TrigramIndex

Struct TrigramIndex 

Source
pub struct TrigramIndex { /* private fields */ }
Expand description

Opened trigram index with memory-mapped posting lists.

A trigram index is an inverted index mapping every 3-byte sequence found in the corpus to the set of files that contain it. At query time, required literals are extracted from the regex pattern, decomposed into trigrams, and intersected against the posting lists to produce a narrow candidate set.

This is the first shipped index type in Sift’s composable index architecture. It sits alongside future index types (AST, dependency graph, vector) as a peer in the Index enum.

Implementations§

Source§

impl TrigramIndex

Source

pub fn build( config: &IndexConfig<'_>, output_dir: &Path, paths: &[PathBuf], ) -> Result<Self>

Build a trigram index from an explicit path list (or full walk when paths is empty).

§Errors

Returns an error if corpus walking, extraction, or encoding fails.

Source

pub fn open( index_dir: &Path, root: &Path, corpus_kind: CorpusKind, ) -> Result<Self>

Open a previously persisted trigram index from index_dir.

§Errors

Returns an error if persistence files are missing or malformed.

Source

pub fn update( &self, config: &IndexConfig<'_>, output_dir: &Path, paths: &[PathBuf], ) -> Result<Option<Self>>

Update the index from the current corpus, writing artifact files into output_dir.

Returns Ok(Some(index)) if a new index was written, or Ok(None) if no files changed.

§Errors

Returns an error if corpus walking, extraction, or encoding fails.

Source§

impl TrigramIndex

Source

pub fn candidates(&self, query: &QuerySpec<'_>) -> Option<Vec<Candidate>>

Produce narrowed candidate files for the query. Returns None if the query can’t be narrowed (full scan required).

Source

pub fn explain(&self, query: &QuerySpec<'_>) -> QueryPlanOutput

Returns an explanation of how a query would be handled.

Source§

impl TrigramIndex

Source

pub fn file_path(&self, id: FileId) -> Option<&Path>

Source

pub fn file_abs_path(&self, id: FileId) -> Option<PathBuf>

Source

pub fn root(&self) -> &Path

Source

pub const fn corpus_kind(&self) -> CorpusKind

Trait Implementations§

Source§

impl Debug for TrigramIndex

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.