pub struct SessionIndex {
sessions: Mutex<HashMap<String, SessionMeta>>,
adapters: Vec<Box<dyn HistoryAdapter>>,
}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
Implementations§
Source§impl SessionIndex
impl SessionIndex
pub fn new(adapters: Vec<Box<dyn HistoryAdapter>>) -> Self
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.