Crate handle[][src]

Expand description

A handle trait for asynchronous context pipeline.

Maintain context in multiple handlers.

Examples

use handle::Handle;
use futures::executor::block_on;
use std::{future::Future, pin::Pin, sync::Arc};

type Result = anyhow::Result<()>;
type BoxFuture<'a, T = Result> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;

struct Context {
    index: usize,
    middleware: Vec<Box<dyn for<'a> Handle<'a, Context, Output = Result>>>,
}

impl Context {
    async fn next(&mut self) -> Result {
        if let Some(m) = self.middleware.pop() {
            m.call(self).await
        } else {
            Ok(())
        }
    }
}

async fn a(cx: &mut Context) -> Result {
    let size = cx.middleware.len();
    let repeat = "-".repeat(2 * size);

    println!("exec Fn a --{}>> {:>2}", repeat, cx.index);

    cx.index += 1;
    let fut = cx.next().await;
    cx.index += 1;

    println!("exec Fn a --{}<< {:>2}", repeat, cx.index);

    fut
}

#[derive(Clone)]
struct A {
    index: usize,
}

impl<'a> Handle<'a, Context> for A {
    type Output = Result;

    fn call(
        &'a self,
        cx: &'a mut Context
    ) -> Pin<Box<dyn Future<Output = Result> + Send + 'a>> {
        Box::pin(async move {
            let size = cx.middleware.len();
            let repeat = "-".repeat(2 * size);

            println!("exec St A --{}>> {:>2}", repeat, cx.index);

            cx.index += self.index;
            let fut = cx.next().await;
            cx.index -= self.index;

            println!("exec St A --{}<< {:>2}", repeat, cx.index);

            fut
        })
    }
}

#[async_std::main]
async fn main() -> Result {
    let mut cx = Context {
        index: 0,
        middleware: vec![Box::new(a), Box::new(A { index: 2 })],
    };

    let result = cx.next().await;
    assert!(result.is_ok());
    assert_eq!(result.unwrap(), ());

    Ok(())
}

Traits

A handle trait for asynchronous context pipeline.