Skip to main content

MutterState

Struct MutterState 

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

Shared mutter-backend state consumed by waydriver-input-mutter and waydriver-capture-mutter.

Invariant: while any Arc<MutterState> exists, the underlying D-Bus connection and the mutter child process must remain alive. See the module docs for details.

Fields are private — all access goes through the accessor methods below. Sibling crates (waydriver-input-mutter, waydriver-capture-mutter) that previously read fields directly now call state.conn(), state.rd_session_path(), etc. The shape of the underlying storage (e.g. how active_stream_path is guarded) is therefore an implementation detail that can change without breaking those callers — the contract lives entirely in the method signatures.

Implementations§

Source§

impl MutterState

Source

pub fn conn(&self) -> &Connection

Persistent connection to mutter’s private D-Bus.

Both sibling backends (waydriver-input-mutter, waydriver-capture-mutter) issue all their RemoteDesktop and ScreenCast method calls through this connection.

Source

pub fn rd_session_path(&self) -> &str

RemoteDesktop session object path. Used by waydriver-input-mutter as the path argument on every pointer / keyboard Notify* D-Bus call.

Source

pub fn rd_session_id(&self) -> &str

RemoteDesktop session id, read from the SessionId property on the RD session. waydriver-capture-mutter passes this as the remote-desktop-session-id option to ScreenCast.CreateSession so mutter links the two; the link is required for NotifyPointerMotionAbsolute to be accepted.

Source

pub fn runtime_dir(&self) -> &Path

Per-session XDG_RUNTIME_DIR. waydriver-capture-mutter joins this with pipewire-0 to locate the PipeWire socket.

Source

pub fn rd_started_lock(&self) -> Result<MutexGuard<'_, bool>>

Lock the “RD-started” flag.

Acquires the underlying mutex and returns the guard so the caller can perform a check-and-set under one critical section (the capture backend defers RD.Session.Start until the first linked ScreenCast.CreateSession succeeds — that’s a load, some D-Bus work, and a store; splitting the read and write would race). Error::Process if the mutex is poisoned.

Source

pub fn active_stream_path_lock(&self) -> Result<MutexGuard<'_, Option<String>>>

Lock the active ScreenCast Stream object path.

Set by waydriver-capture-mutter in start_stream, cleared in stop_stream. waydriver-input-mutter reads it to route NotifyPointerMotionAbsolute at the correct monitor. None inside the guard means no stream is open — absolute pointer motion will error.

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> 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> 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.
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