rama-http 0.3.0-rc1

rama http layers, services and other utilities
#![allow(unused_imports)]

use crate::HeaderMap;
use crate::layer::util::compression::{
    AsyncReadBody, BodyIntoStream, CompressionLevel, DecorateAsyncRead, WrapBody,
    compressed_body_poll_frame, impl_decorate_async_read,
};
use rama_core::{
    bytes::{Buf, Bytes},
    error::BoxError,
};

use async_compression::tokio::bufread::{BrotliEncoder, GzipEncoder, ZlibEncoder, ZstdEncoder};
use pin_project_lite::pin_project;
use rama_core::futures::ready;
use rama_core::stream::io::StreamReader;
use rama_http_types::StreamingBody;
use rama_http_types::body::Frame;
use std::{
    io,
    marker::PhantomData,
    pin::Pin,
    task::{Context, Poll},
};

use super::pin_project_cfg::pin_project_cfg;

pin_project! {
    /// Response body of [`Compression`].
    ///
    /// [`Compression`]: super::Compression
    pub struct CompressionBody<B>
    where
        B: StreamingBody,
    {
        #[pin]
        pub(crate) inner: BodyInner<B>,
    }
}

impl<B> Default for CompressionBody<B>
where
    B: StreamingBody + Default,
{
    fn default() -> Self {
        Self {
            inner: BodyInner::Identity {
                inner: B::default(),
            },
        }
    }
}

impl<B> CompressionBody<B>
where
    B: StreamingBody,
{
    pub(crate) fn new(inner: BodyInner<B>) -> Self {
        Self { inner }
    }
}

type GzipBody<B> = WrapBody<GzipEncoder<B>>;

type DeflateBody<B> = WrapBody<ZlibEncoder<B>>;

type BrotliBody<B> = WrapBody<BrotliEncoder<B>>;

type ZstdBody<B> = WrapBody<ZstdEncoder<B>>;

pin_project_cfg! {
    #[project = BodyInnerProj]
    pub(crate) enum BodyInner<B>
    where
        B: StreamingBody,
    {
        Gzip {
            #[pin]
            inner: GzipBody<B>,
        },
        Deflate {
            #[pin]
            inner: DeflateBody<B>,
        },
        Brotli {
            #[pin]
            inner: BrotliBody<B>,
        },
        Zstd {
            #[pin]
            inner: ZstdBody<B>,
        },
        Identity {
            #[pin]
            inner: B,
        },
    }
}

impl<B: StreamingBody> BodyInner<B> {
    pub(crate) fn gzip(inner: WrapBody<GzipEncoder<B>>) -> Self {
        Self::Gzip { inner }
    }

    pub(crate) fn deflate(inner: WrapBody<ZlibEncoder<B>>) -> Self {
        Self::Deflate { inner }
    }

    pub(crate) fn brotli(inner: WrapBody<BrotliEncoder<B>>) -> Self {
        Self::Brotli { inner }
    }

    pub(crate) fn zstd(inner: WrapBody<ZstdEncoder<B>>) -> Self {
        Self::Zstd { inner }
    }

    pub(crate) fn identity(inner: B) -> Self {
        Self::Identity { inner }
    }
}

impl<B> StreamingBody for CompressionBody<B>
where
    B: StreamingBody<Error: Into<BoxError>>,
{
    type Data = Bytes;
    type Error = BoxError;

    fn poll_frame(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
    ) -> Poll<Option<Result<Frame<Self::Data>, Self::Error>>> {
        compressed_body_poll_frame!(self, cx)
    }

    fn size_hint(&self) -> rama_http_types::body::SizeHint {
        if let BodyInner::Identity { inner } = &self.inner {
            inner.size_hint()
        } else {
            rama_http_types::body::SizeHint::new()
        }
    }

    fn is_end_stream(&self) -> bool {
        if let BodyInner::Identity { inner } = &self.inner {
            inner.is_end_stream()
        } else {
            false
        }
    }
}

impl_decorate_async_read!(GzipEncoder: |input, quality| {
    GzipEncoder::with_quality(input, quality.into_async_compression())
});

impl_decorate_async_read!(ZlibEncoder: |input, quality| {
    ZlibEncoder::with_quality(input, quality.into_async_compression())
});

impl_decorate_async_read!(BrotliEncoder: |input, quality| {
    // The brotli crate used under the hood here has a default compression level of 11,
    // which is the max for brotli. This causes extremely slow compression times, so we
    // manually set a default of 4 here.
    //
    // This is the same default used by NGINX for on-the-fly brotli compression.
    let level = match quality {
        CompressionLevel::Default => async_compression::Level::Precise(4),
        other => other.into_async_compression(),
    };
    BrotliEncoder::with_quality(input, level)
});

impl_decorate_async_read!(ZstdEncoder: |input, quality| {
    // See https://issues.chromium.org/issues/41493659:
    //  "For memory usage reasons, Chromium limits the window size to 8MB"
    // See https://datatracker.ietf.org/doc/html/rfc8878#name-window-descriptor
    //  "For improved interoperability, it's recommended for decoders to support values
    //  of Window_Size up to 8 MB and for encoders not to generate frames requiring a
    //  Window_Size larger than 8 MB."
    // Level 17 in zstd (as of v1.5.6) is the first level with a window size of 8 MB (2^23):
    // https://github.com/facebook/zstd/blob/v1.5.6/lib/compress/clevels.h#L25-L51
    // Set the parameter for all levels >= 17. This will either have no effect (but reduce
    // the risk of future changes in zstd) or limit the window log to 8MB.
    let needs_window_limit = match quality {
        CompressionLevel::Best => true, // level 20
        CompressionLevel::Precise(level) => level >= 17,
        CompressionLevel::Default | CompressionLevel::Fastest => false,
    };
    // The parameter is not set for levels below 17 as it will increase the window size
    // for those levels.
    if needs_window_limit {
        let params = [async_compression::zstd::CParameter::window_log(23)];
        ZstdEncoder::with_quality_and_params(input, quality.into_async_compression(), &params)
    } else {
        ZstdEncoder::with_quality(input, quality.into_async_compression())
    }
});