Struct nix_compat::nix_daemon::handler::NixDaemon

source ·
pub struct NixDaemon<IO, R, W> {
    io: Arc<IO>,
    protocol_version: ProtocolVersion,
    client_settings: ClientSettings,
    reader: NixReader<R>,
    writer: Arc<Mutex<NixWriter<W>>>,
}
Expand description

Handles a single connection with a nix client.

As part of its initialization it performs the handshake with the client and determines the ProtocolVersion and ClientSettings to use for the remainder of the session.

Once initialized, [handle_client] needs to be called to handle the rest of the session, it delegates all operation handling to an instance of NixDaemonIO.

Fields§

§io: Arc<IO>§protocol_version: ProtocolVersion§client_settings: ClientSettings§reader: NixReader<R>§writer: Arc<Mutex<NixWriter<W>>>

Implementations§

source§

impl<IO, R, W> NixDaemon<IO, R, W>
where IO: NixDaemonIO + Sync + Send,

source

pub fn new( io: Arc<IO>, protocol_version: ProtocolVersion, client_settings: ClientSettings, reader: NixReader<R>, writer: NixWriter<W>, ) -> Self

source§

impl<IO, RW> NixDaemon<IO, ReadHalf<RW>, WriteHalf<RW>>
where RW: AsyncReadExt + AsyncWriteExt + Send + Unpin + 'static, IO: NixDaemonIO + Sync + Send,

source

pub async fn initialize(io: Arc<IO>, connection: RW) -> Result<Self, Error>

Async constructor for NixDaemon.

Performs the initial handshake with the client and retrieves the client’s preferred settings.

The resulting daemon can handle the client session by calling NixDaemon::handle_client.

source

pub async fn handle_client(&mut self) -> Result<(), Error>

Main client connection loop, reads client’s requests and responds to them accordingly.

source

async fn handle<T>( &mut self, future: impl Future<Output = Result<T>>, ) -> Result<(), Error>
where T: NixSerialize + Send,

Handles the operation and sends the response or error to the client.

As per nix daemon protocol, after sending the request, the client expects zero or more log lines/activities followed by either

  • STDERR_LAST and the response bytes
  • STDERR_ERROR and the error

This is a helper method, awaiting on the passed in future and then handling log lines/activities as described above.

Auto Trait Implementations§

§

impl<IO, R, W> Freeze for NixDaemon<IO, R, W>
where R: Freeze,

§

impl<IO, R, W> !RefUnwindSafe for NixDaemon<IO, R, W>

§

impl<IO, R, W> Send for NixDaemon<IO, R, W>
where IO: Sync + Send, R: Send, W: Send,

§

impl<IO, R, W> Sync for NixDaemon<IO, R, W>
where IO: Sync + Send, R: Sync, W: Send,

§

impl<IO, R, W> Unpin for NixDaemon<IO, R, W>
where R: Unpin,

§

impl<IO, R, W> !UnwindSafe for NixDaemon<IO, R, W>

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

§

type Output = T

Should always be Self
source§

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

§

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

§

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