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
use std::cell::UnsafeCell;
use std::fmt;
use std::io;
use std::rc::Rc;

use io::{AsyncRead, AsyncWrite};
use nio;

#[derive(Debug, Clone)]
pub struct ReadHalf<R> {
    inner: Rc<UnsafeCell<R>>,
}

#[derive(Debug, Clone)]
pub struct WriteHalf<W> {
    inner: Rc<UnsafeCell<W>>,
}

#[inline]
pub fn split<T>(t: T) -> (ReadHalf<T>, WriteHalf<T>)
where
    T: AsyncRead + AsyncWrite,
{
    let io = Rc::new(UnsafeCell::new(t));
    (ReadHalf { inner: io.clone() }, WriteHalf { inner: io })
}

impl<R> ReadHalf<R> {
    #[inline]
    pub fn get_ref(&self) -> &R {
        unsafe { &*(&self.inner).get() }
    }

    #[inline]
    pub fn get_mut(&self) -> &mut R {
        unsafe { &mut *(&self.inner).get() }
    }
}

impl<W> WriteHalf<W> {
    #[inline]
    pub fn get_ref(&self) -> &W {
        unsafe { &*(&self.inner).get() }
    }

    #[inline]
    pub fn get_mut(&self) -> &mut W {
        unsafe { &mut *(&self.inner).get() }
    }
}

impl<R: fmt::Display> fmt::Display for ReadHalf<R> {
    #[inline]
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        fmt::Display::fmt(self.get_ref(), f)
    }
}

impl<W: fmt::Display> fmt::Display for WriteHalf<W> {
    #[inline]
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        fmt::Display::fmt(self.get_ref(), f)
    }
}

impl<R: AsyncRead> io::Read for ReadHalf<R> {
    #[inline]
    fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
        self.get_mut().read(buf)
    }
}

impl<R: AsyncRead> nio::ReadV for ReadHalf<R> {
    #[inline]
    fn readv(&mut self, iovs: &[nio::IoVec]) -> io::Result<usize> {
        self.get_mut().readv(iovs)
    }
}

impl<R: AsyncRead> AsyncRead for ReadHalf<R> {
    #[inline]
    fn need_read(&mut self) -> io::Result<()> {
        self.get_mut().need_read()
    }

    #[inline]
    fn no_need_read(&mut self) -> io::Result<()> {
        self.get_mut().no_need_read()
    }

    #[inline]
    fn is_readable(&self) -> bool {
        self.get_mut().is_readable()
    }
}

impl<W: AsyncWrite> io::Write for WriteHalf<W> {
    #[inline]
    fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
        self.get_mut().write(buf)
    }

    #[inline]
    fn flush(&mut self) -> io::Result<()> {
        self.get_mut().flush()
    }
}

impl<W: AsyncWrite> nio::WriteV for WriteHalf<W> {
    #[inline]
    fn writev(&mut self, iovs: &[nio::IoVec]) -> io::Result<usize> {
        self.get_mut().writev(iovs)
    }
}

impl<W: AsyncWrite> AsyncWrite for WriteHalf<W> {
    #[inline]
    fn need_write(&mut self) -> io::Result<()> {
        self.get_mut().need_write()
    }

    #[inline]
    fn no_need_write(&mut self) -> io::Result<()> {
        self.get_mut().no_need_write()
    }

    #[inline]
    fn is_writable(&self) -> bool {
        self.get_mut().is_writable()
    }
}