nix_compat::nix_daemon::handler

Struct 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, NixDaemon::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>( writer: &Arc<Mutex<NixWriter<WriteHalf<RW>>>>, 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

Source§

type Output = T

Should always be Self
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
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T