pub struct SessionIndex {
sessions: Mutex<HashMap<String, SessionMeta>>,
adapters: Vec<Box<dyn HistoryAdapter>>,
isolated_roots: Vec<PathBuf>,
}Expand description
In-memory index of discovered sessions.
Fields§
§sessions: Mutex<HashMap<String, SessionMeta>>session_id -> SessionMeta
adapters: Vec<Box<dyn HistoryAdapter>>Adapters for all registered providers
isolated_roots: Vec<PathBuf>Roots under which destructive ops (delete/clear) are allowed.
Implementations§
Source§impl SessionIndex
impl SessionIndex
pub fn new(adapters: Vec<Box<dyn HistoryAdapter>>) -> Self
Sourcepub fn with_isolated_roots(
adapters: Vec<Box<dyn HistoryAdapter>>,
isolated_roots: Vec<PathBuf>,
) -> Self
pub fn with_isolated_roots( adapters: Vec<Box<dyn HistoryAdapter>>, isolated_roots: Vec<PathBuf>, ) -> Self
Construct with explicit isolated roots (used by new() and tests).
Sourcefn is_isolated(&self, path: &Path) -> bool
fn is_isolated(&self, path: &Path) -> bool
True if path lives under an AgentMux-isolated provider home and is
therefore safe to delete. Personal global homes are never isolated.
Sourcepub fn refresh(&self) -> (u32, u32, u32)
pub fn refresh(&self) -> (u32, u32, u32)
Full scan: discover all files and extract metadata. Returns (discovered, updated, new) counts.
Sourcepub fn list(
&self,
provider: Option<&str>,
project: Option<&str>,
offset: usize,
limit: usize,
sort_by: &str,
sort_dir: &str,
) -> (Vec<SessionMeta>, u32, bool)
pub fn list( &self, provider: Option<&str>, project: Option<&str>, offset: usize, limit: usize, sort_by: &str, sort_dir: &str, ) -> (Vec<SessionMeta>, u32, bool)
List sessions with pagination and optional filters.
Sourcepub fn get_meta(&self, session_id: &str) -> Option<SessionMeta>
pub fn get_meta(&self, session_id: &str) -> Option<SessionMeta>
Get a session by ID — returns just the meta from index.
Sourcepub fn get_full(
&self,
session_id: &str,
) -> Result<Option<HistorySession>, HistoryError>
pub fn get_full( &self, session_id: &str, ) -> Result<Option<HistorySession>, HistoryError>
Full parse of a session by ID.
Auto Trait Implementations§
impl !Freeze for SessionIndex
impl !RefUnwindSafe for SessionIndex
impl Send for SessionIndex
impl Sync for SessionIndex
impl Unpin for SessionIndex
impl !UnwindSafe for SessionIndex
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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