Skip to main content

Store

Struct Store 

Source
pub struct Store {
    pub keys: Vec<(String, i64)>,
    pub files: Vec<PathBuf>,
    pub had_error: bool,
}
Expand description

One supported agent tool. An adapter knows where the tool keeps its session files on disk and how to parse one file into a Session.

Adding support for a new tool means implementing this trait in a new module and registering it in all(). PRs for new adapters are the main way this project grows. A store that holds many sessions in one place (e.g. a SQLite database) rather than one file per session. Returned by Adapter::store when the file-per-session model does not fit; the indexer then enumerates sessions from keys (re-parsing only changed ones) instead of discover/parse.

Fields§

§keys: Vec<(String, i64)>

(stable key, change-token) for every session, cheap to compute without a full parse. The change-token (e.g. the session’s updated-time in ms) drives incremental re-indexing; the key identifies the session for Adapter::parse_key. The key doubles as the session’s stored path.

§files: Vec<PathBuf>

The backing files (the database), for scan size accounting.

§had_error: bool

True if a backing store existed but could not be read this run (locked, half-written, permissions). The indexer then skips deletion reconciliation, so a transient read failure cannot archive the whole corpus off an incomplete key set.

Auto Trait Implementations§

§

impl Freeze for Store

§

impl RefUnwindSafe for Store

§

impl Send for Store

§

impl Sync for Store

§

impl Unpin for Store

§

impl UnsafeUnpin for Store

§

impl UnwindSafe for Store

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> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

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.