watermelon_mini/proto/connection/
compression.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
use std::{
    io,
    pin::Pin,
    task::{Context, Poll},
};

use tokio::io::{AsyncRead, AsyncWrite, ReadBuf};

#[cfg(feature = "non-standard-zstd")]
use crate::non_standard_zstd::ZstdStream;

#[derive(Debug)]
pub enum ConnectionCompression<S> {
    Plain(S),
    #[cfg(feature = "non-standard-zstd")]
    Zstd(ZstdStream<S>),
}

impl<S> ConnectionCompression<S>
where
    S: AsyncRead + AsyncWrite + Unpin,
{
    #[cfg(feature = "non-standard-zstd")]
    pub(crate) fn upgrade_zstd(self) -> Self {
        let Self::Plain(socket) = self else {
            unreachable!()
        };

        Self::Zstd(ZstdStream::new(socket))
    }

    #[cfg(feature = "non-standard-zstd")]
    pub fn is_zstd_compressed(&self) -> bool {
        matches!(self, Self::Zstd(_))
    }
}

impl<S> AsyncRead for ConnectionCompression<S>
where
    S: AsyncRead + AsyncWrite + Unpin,
{
    fn poll_read(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        buf: &mut ReadBuf<'_>,
    ) -> Poll<io::Result<()>> {
        match self.get_mut() {
            Self::Plain(conn) => Pin::new(conn).poll_read(cx, buf),
            #[cfg(feature = "non-standard-zstd")]
            Self::Zstd(conn) => Pin::new(conn).poll_read(cx, buf),
        }
    }
}

impl<S> AsyncWrite for ConnectionCompression<S>
where
    S: AsyncRead + AsyncWrite + Unpin,
{
    fn poll_write(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        buf: &[u8],
    ) -> Poll<io::Result<usize>> {
        match self.get_mut() {
            Self::Plain(conn) => Pin::new(conn).poll_write(cx, buf),
            #[cfg(feature = "non-standard-zstd")]
            Self::Zstd(conn) => Pin::new(conn).poll_write(cx, buf),
        }
    }

    fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
        match self.get_mut() {
            Self::Plain(conn) => Pin::new(conn).poll_flush(cx),
            #[cfg(feature = "non-standard-zstd")]
            Self::Zstd(conn) => Pin::new(conn).poll_flush(cx),
        }
    }

    fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
        match self.get_mut() {
            Self::Plain(conn) => Pin::new(conn).poll_shutdown(cx),
            #[cfg(feature = "non-standard-zstd")]
            Self::Zstd(conn) => Pin::new(conn).poll_shutdown(cx),
        }
    }

    fn poll_write_vectored(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        bufs: &[io::IoSlice<'_>],
    ) -> Poll<io::Result<usize>> {
        match self.get_mut() {
            Self::Plain(conn) => Pin::new(conn).poll_write_vectored(cx, bufs),
            #[cfg(feature = "non-standard-zstd")]
            Self::Zstd(conn) => Pin::new(conn).poll_write_vectored(cx, bufs),
        }
    }

    fn is_write_vectored(&self) -> bool {
        match self {
            Self::Plain(conn) => conn.is_write_vectored(),
            #[cfg(feature = "non-standard-zstd")]
            Self::Zstd(conn) => conn.is_write_vectored(),
        }
    }
}