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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#![forbid(unsafe_code)]

use std::{
    io,
    pin::{
        Pin,
    },
    task::{
        Poll,
        Context,
    },
};

use tokio::{
    net::{
        TcpStream,
    },
};

pub use hyper_util::{
    rt::{
        TokioIo,
        TokioExecutor,
    },
};

pub mod builder;

mod resolver;

pub struct Io {
    pub protocols: Protocols,
    pub uri_host: String,
    pub stream: IoStream,
}

pub struct Protocols {
    http1_support: bool,
    http2_support: bool,
}

impl Io {
    pub fn resolver_setup() -> builder::ResolverBuilder {
        builder::ResolverBuilder::new()
    }
}

impl Protocols {
    pub fn http1_support_announced(&self) -> bool {
        self.http1_support
    }

    pub fn http2_support_announced(&self) -> bool {
        self.http2_support
    }
}

pub struct IoStream {
    kind: IoKind,
}

enum IoKind {
    Tcp(IoTcp),
    TcpTls(IoTcpTls),
}

struct IoTcp {
    stream: TokioIo<TcpStream>,
}

struct IoTcpTls {
    stream: TokioIo<tokio_rustls::client::TlsStream<TcpStream>>,
}

impl hyper::rt::Read for IoStream {
    fn poll_read(mut self: Pin<&mut Self>, cx: &mut Context<'_>, buf: hyper::rt::ReadBufCursor<'_>) -> Poll<Result<(), io::Error>> {
        match &mut self.kind {
            IoKind::Tcp(io) =>
                Pin::new(&mut io.stream).poll_read(cx, buf),
            IoKind::TcpTls(io) =>
                Pin::new(&mut io.stream).poll_read(cx, buf),
        }
    }
}

impl hyper::rt::Write for IoStream {
    fn poll_write(mut self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &[u8]) -> Poll<Result<usize, io::Error>> {
        match &mut self.kind {
            IoKind::Tcp(io) =>
                Pin::new(&mut io.stream).poll_write(cx, buf),
            IoKind::TcpTls(io) =>
                Pin::new(&mut io.stream).poll_write(cx, buf),
        }
    }

    fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), io::Error>> {
        match &mut self.kind {
            IoKind::Tcp(io) =>
                Pin::new(&mut io.stream).poll_flush(cx),
            IoKind::TcpTls(io) =>
                Pin::new(&mut io.stream).poll_flush(cx),
        }
    }

    fn poll_shutdown(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), io::Error>> {
        match &mut self.kind {
            IoKind::Tcp(io) =>
                Pin::new(&mut io.stream).poll_shutdown(cx),
            IoKind::TcpTls(io) =>
                Pin::new(&mut io.stream).poll_shutdown(cx),
        }
    }

    fn is_write_vectored(&self) -> bool {
        match &self.kind {
            IoKind::Tcp(io) =>
                io.stream.is_write_vectored(),
            IoKind::TcpTls(io) =>
                io.stream.is_write_vectored(),
        }
    }

    fn poll_write_vectored(mut self: Pin<&mut Self>, cx: &mut Context<'_>, bufs: &[std::io::IoSlice<'_>]) -> Poll<Result<usize, io::Error>> {
        match &mut self.kind {
            IoKind::Tcp(io) =>
                Pin::new(&mut io.stream).poll_write_vectored(cx, bufs),
            IoKind::TcpTls(io) =>
                Pin::new(&mut io.stream).poll_write_vectored(cx, bufs),
        }
    }
}