actix-interop

CI

Documentation

Allows using async/await syntax to implement actix actors, and provides a convenient way to control access to an actor's state.

```toml

Cargo.toml

[dependencies] actix-interop = "0.2" ```

Example

This example shows how you could implement a generic "pipeline adapter" which allows turning any Sink/Stream pair (forming a request/response pipeline) into an actix Actor.

Responses are matched up with their requests according to the order in which they were sent (so the first response corresponds to the first request sent to the Sink, etc). This requires that our "send" operations are strictly ordered, and this is difficult to achieve in actix because async operations are normally allowed to interleave.

Furthermore, although the sends must be atomic, we also want to be able to have a large number of requests in-flight at any given time, so the receiving part of the message handler must not require exclusive access to the actor while it is waiting. As a result, abstractions like the AtomicResponse type are too simplistic to help.

To solve this problem, we use the critical_section function to allow specific parts of our message handler to be atomic.

```rust use std::collections::VecDeque; use std::pin::Pin;

use futures::{Sink, SinkExt, Stream, channel::oneshot}; use actix::prelude::*;

use actixinterop::{FutureInterop, withctx, critical_section};

// Define our actor pub struct PipelineAdapter { sink: Option>>>, inflightreqs: VecDeque>>, }

// Implement a constructor impl PipelineAdapter where Req: 'static, Res: 'static, Err: 'static, { pub fn new(sink: Si, stream: St) -> Addr where Si: Sink + 'static, St: Stream + 'static, { // Convert to a boxed trait object let sink: Box> = Box::new(sink);

    Self::create(|ctx| {
        ctx.add_stream(stream);
        Self {
            sink: Some(sink.into()),
            in_flight_reqs: VecDeque::new(),
        }
    })
}

}

// Tell actix this is an actor using the default Context type impl Actor for PipelineAdapter where Req: 'static, Res: 'static, Err: 'static, { type Context = Context; }

// Transform actix messages into the pipelines request/response protocol impl Handler for PipelineAdapter where Req: Message> + 'static, Res: 'static, Err: 'static, { type Result = ResponseActFuture>; // <- Message response type

fn handle(&mut self, msg: Req, _ctx: &mut Context<Self>) -> Self::Result {
    async move {
        let (tx, rx) = oneshot::channel();

        // Perform sends in a critical section so they are strictly ordered
        critical_section::<Self, _>(async {
            // Take the sink from the actor state
            let mut sink = with_ctx(|actor: &mut Self, _| actor.sink.take())
                .expect("Sink to be present");

            // Send the request
            let res = sink.send(msg).await;

            // Put the sink back, and if the send was successful,
            // record the in-flight request.
            with_ctx(|actor: &mut Self, _| {
                actor.sink = Some(sink);
                match res {
                    Ok(()) => actor.in_flight_reqs.push_back(tx),
                    Err(e) => {
                        // Don't care if the receiver has gone away
                        let _ = tx.send(Err(e));
                    }
                }
            });
        })
        .await;

        // Wait for the result concurrently, so many requests can
        // be pipelined at the same time.
        rx.await.expect("Sender should not be dropped")
    }
    .interop_actor_boxed(self)
}

}

// Process responses impl StreamHandler for PipelineAdapter where Req: 'static, Res: 'static, Err: 'static, { fn handle(&mut self, msg: Res, ctx: &mut Context) { // When we receive a response, just pull the first in-flight // request and forward on the result. let _ = self.inflightreqs .popfront() .expect("There to be an in-flight request") .send(Ok(msg)); } } ```

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in actix-interop by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.