volo-grpc 0.12.2

gRPC framework implementation of volo.
Documentation
use std::marker::PhantomData;

use motore::{
    layer::{Identity, Layer, Stack},
    service::Service,
};

use super::NamedService;
use crate::{
    Request, Response, Status,
    body::{Body, BoxBody, boxed},
    codec::{
        compression::{CompressionEncoding, ENCODING_HEADER},
        decode::Kind,
    },
    context::{Config, ServerContext},
    message::{RecvEntryMessage, SendEntryMessage},
    metadata::MetadataValue,
};

#[derive(Clone)]
pub struct ServiceBuilder<S, L> {
    service: S,
    layer: L,
    rpc_config: Config,
}

impl<S> ServiceBuilder<S, Identity> {
    pub fn new(service: S) -> Self {
        Self {
            service,
            layer: Identity::new(),
            rpc_config: Config::default(),
        }
    }
}

impl<S, L> ServiceBuilder<S, L> {
    /// Sets the send compression encodings for the request, and will self-adaptive with config of
    /// the client.
    ///
    /// Default is disable the send compression.
    pub fn send_compressions(mut self, config: Vec<CompressionEncoding>) -> Self {
        self.rpc_config.send_compressions = Some(config);
        self
    }

    /// Sets the accept compression encodings for the request, and will self-adaptive with config of
    /// the server.
    ///
    /// Default is disable the accept decompression.
    pub fn accept_compressions(mut self, config: Vec<CompressionEncoding>) -> Self {
        self.rpc_config.accept_compressions = Some(config);
        self
    }

    pub fn layer<O>(self, layer: O) -> ServiceBuilder<S, Stack<O, L>> {
        ServiceBuilder {
            layer: Stack::new(layer, self.layer),
            service: self.service,
            rpc_config: self.rpc_config,
        }
    }

    pub fn layer_front<Front>(self, layer: Front) -> ServiceBuilder<S, Stack<L, Front>> {
        ServiceBuilder {
            layer: Stack::new(self.layer, layer),
            service: self.service,
            rpc_config: self.rpc_config,
        }
    }

    pub fn build<T, U>(self) -> CodecService<<L as volo::Layer<S>>::Service, T, U>
    where
        L: Layer<S>,
    {
        let service = motore::builder::ServiceBuilder::new()
            .layer(self.layer)
            .service(self.service);

        CodecService::new(service, self.rpc_config)
    }
}

pub struct CodecService<S, T, U> {
    inner: S,
    rpc_config: Config,
    _marker: PhantomData<fn(T, U)>,
}

impl<S, T, U> Clone for CodecService<S, T, U>
where
    S: Clone,
{
    fn clone(&self) -> Self {
        Self {
            inner: self.inner.clone(),
            rpc_config: self.rpc_config.clone(),
            _marker: PhantomData,
        }
    }
}

impl<S, T, U> CodecService<S, T, U> {
    pub fn new(inner: S, rpc_config: Config) -> Self {
        Self {
            inner,
            rpc_config,
            _marker: PhantomData,
        }
    }
}

impl<S, T, U> Service<ServerContext, Request<BoxBody>> for CodecService<S, T, U>
where
    S: Service<ServerContext, Request<T>, Response = Response<U>> + Sync,
    S::Error: Into<Status>,
    T: RecvEntryMessage,
    U: SendEntryMessage,
{
    type Response = Response<BoxBody>;
    type Error = Status;

    async fn call(
        &self,
        cx: &mut ServerContext,
        req: Request<BoxBody>,
    ) -> Result<Self::Response, Self::Error> {
        let (metadata, extensions, body) = req.into_parts();
        #[cfg(not(feature = "compress"))]
        let send_compression = None;
        #[cfg(feature = "compress")]
        let send_compression = CompressionEncoding::from_accept_encoding_header(
            metadata.headers(),
            &self.rpc_config.send_compressions,
        );

        #[cfg(not(feature = "compress"))]
        let recv_compression = None;
        #[cfg(feature = "compress")]
        let recv_compression = CompressionEncoding::from_encoding_header(
            metadata.headers(),
            &self.rpc_config.accept_compressions,
        )?;

        let message = T::from_body(
            Some(cx.rpc_info.method().as_str()),
            body,
            Kind::Request,
            recv_compression,
        )?;

        let volo_req = Request::from_parts(metadata, extensions, message);

        cx.stats.record_process_start_at();

        let volo_resp = self.inner.call(cx, volo_req).await.map_err(Into::into)?;

        cx.stats.record_process_end_at();

        let mut resp =
            volo_resp.map(|message| boxed(Body::new(message.into_body(send_compression))));

        if let Some(encoding) = send_compression {
            resp.metadata_mut().insert(
                ENCODING_HEADER,
                MetadataValue::unchecked_from_header_value(encoding.into_header_value()),
            );
        };

        Ok(resp)
    }
}

impl<S: NamedService, T, U> NamedService for CodecService<S, T, U> {
    const NAME: &'static str = S::NAME;
}