Skip to main content

LdsState

Struct LdsState 

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

Top-level mutable state for the MCP server.

Holds a ledger of all live Sessions, indexed by session_id (opaque hash) and alias (human-readable label). One session is designated the default session, returned by Self::session for backward-compatible tool calls that pre-date per-call session_id addressing.

The MCP handler wraps this in Arc<RwLock<LdsState>> for concurrent tool access. Mutations (create / close / alias) take the write lock; reads (resolve / list / describe / doctor) take the read lock.

Implementations§

Source§

impl LdsState

Source

pub fn new() -> LdsState

Source

pub fn create_session( &mut self, config: SessionConfig, make_default: bool, ) -> Result<Arc<Session>, CoreError>

Create a new session and register it in the ledger.

If make_default is true (or no default exists yet), the new session becomes the implicit default.

Returns CoreError::AliasConflict if config.alias is already taken by another session.

Source

pub fn start_session( &mut self, config: SessionConfig, ) -> Result<Arc<Session>, CoreError>

Backward-compatible entry point used by the legacy session_start MCP tool. Always replaces the default session.

Source

pub fn resolve(&self, key: &str) -> Result<Arc<Session>, CoreError>

Look up a session by id or alias.

key is tried as an alias first, then as a session_id. Returns CoreError::SessionNotFound if neither matches.

Source

pub fn session(&self) -> Result<Arc<Session>, CoreError>

Return the default session for backward-compatible tool calls.

Source

pub fn default_session_id(&self) -> Option<&str>

Source

pub fn list_sessions(&self) -> Vec<SessionEntry>

Snapshot every session in the ledger.

Source

pub fn describe(&self, key: &str) -> Result<SessionEntry, CoreError>

Describe a single session by id or alias.

Source

pub fn set_alias(&mut self, key: &str, alias: String) -> Result<(), CoreError>

Assign or change an alias on an existing session.

Returns CoreError::AliasConflict if the new alias is already held by another session.

Source

pub fn unset_alias(&mut self, alias: &str) -> Result<(), CoreError>

Remove an alias from the ledger. The session itself remains.

Source

pub fn close(&mut self, key: &str) -> Result<(), CoreError>

Close (drop) a session by id or alias.

If the closed session was the default, the default is cleared and must be re-set by a subsequent session_start / session_create with make_default=true.

Source§

impl LdsState

Source

pub fn doctor(&self, key: &str) -> Result<DoctorReport, CoreError>

Run health checks on a single session (by id / alias).

Trait Implementations§

Source§

impl Clone for LdsState

Source§

fn clone(&self) -> LdsState

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for LdsState

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Default for LdsState

Source§

fn default() -> LdsState

Returns the “default value” for a type. 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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. 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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more