httpbis 0.9.1

Rust implementation of HTTP/2 protocol
Documentation
use std::marker;
use std::sync::Arc;
use std::sync::Mutex;

use futures::future;

use std::future::Future;

use crate::misc::any_to_string;
use crate::{error, result};
use futures::FutureExt;
use std::panic::AssertUnwindSafe;

pub(crate) trait DiedType: Default + Clone + Send {
    fn what() -> &'static str;
}

#[derive(Copy, Clone, Default)]
pub(crate) struct ClientDiedType;
#[derive(Copy, Clone, Default)]
pub(crate) struct ConnDiedType;

impl DiedType for ClientDiedType {
    fn what() -> &'static str {
        "client"
    }
}

impl DiedType for ConnDiedType {
    fn what() -> &'static str {
        "connection"
    }
}

#[derive(Default, Clone)]
pub(crate) struct SomethingDiedErrorHolder<D: DiedType> {
    error: Arc<Mutex<Option<Arc<error::Error>>>>,
    _marker: marker::PhantomData<D>,
}

impl<D: DiedType> SomethingDiedErrorHolder<D> {
    pub fn new() -> Self {
        Default::default()
    }

    pub fn client_died_error(&self) -> Option<Arc<error::Error>> {
        let lock = self.error.lock().unwrap();
        (*lock).clone()
    }

    pub fn error(&self) -> error::Error {
        error::Error::ClientDied(self.client_died_error())
    }

    fn set_once(&self, error: error::Error) {
        let mut lock = self.error.lock().unwrap();
        if (*lock).is_none() {
            *lock = Some(Arc::new(error));
        }
    }

    pub fn wrap_future<F>(&self, future: F) -> impl Future<Output = ()> + Send
    where
        F: Future<Output = result::Result<()>> + Send,
    {
        let holder = self.clone();
        let future = future.then(move |r| {
            match r {
                Ok(()) => {
                    info!("{} completed without errors", D::what());
                    holder.set_once(error::Error::ClientCompletedWithoutError);
                }
                Err(e) => {
                    warn!("{} completed with error: {:?}", D::what(), e);
                    holder.set_once(e);
                }
            }
            future::ok::<(), ()>(())
        });

        let holder = self.clone();
        let future = AssertUnwindSafe(future).catch_unwind().then(move |r| {
            if let Err(e) = r {
                let message = any_to_string(e);
                warn!("{} panicked: {}", D::what(), message);
                holder.set_once(error::Error::ClientPanicked(message));
            }
            future::ready(())
        });

        future
    }
}