use std::{fmt, io, time}; use futures::Poll; use tokio_io::{AsyncRead, AsyncWrite}; use super::pool::Acquired; /// HTTP client connection pub struct Connection { io: T, created: time::Instant, pool: Option>, } impl fmt::Debug for Connection where T: fmt::Debug, { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "Connection {:?}", self.io) } } impl Connection { pub(crate) fn new(io: T, created: time::Instant, pool: Acquired) -> Self { Connection { io, created, pool: Some(pool), } } /// Raw IO stream pub fn get_mut(&mut self) -> &mut T { &mut self.io } /// Close connection pub fn close(mut self) { if let Some(mut pool) = self.pool.take() { pool.close(self) } } /// Release this connection to the connection pool pub fn release(mut self) { if let Some(mut pool) = self.pool.take() { pool.release(self) } } pub(crate) fn into_inner(self) -> (T, time::Instant) { (self.io, self.created) } } impl io::Read for Connection { fn read(&mut self, buf: &mut [u8]) -> io::Result { self.io.read(buf) } } impl AsyncRead for Connection {} impl io::Write for Connection { fn write(&mut self, buf: &[u8]) -> io::Result { self.io.write(buf) } fn flush(&mut self) -> io::Result<()> { self.io.flush() } } impl AsyncWrite for Connection { fn shutdown(&mut self) -> Poll<(), io::Error> { self.io.shutdown() } }