@ -183,7 +183,7 @@ pub struct IoHandle<T: Evented> {
entry : Arc < Entry > ,
entry : Arc < Entry > ,
/// The I/O event source.
/// The I/O event source.
source : T ,
source : Option < T > ,
}
}
impl < T : Evented > IoHandle < T > {
impl < T : Evented > IoHandle < T > {
@ -196,13 +196,13 @@ impl<T: Evented> IoHandle<T> {
entry : REACTOR
entry : REACTOR
. register ( & source )
. register ( & source )
. expect ( "cannot register an I/O event source" ) ,
. expect ( "cannot register an I/O event source" ) ,
source ,
source : Some ( source ) ,
}
}
}
}
/// Returns a reference to the inner I/O event source.
/// Returns a reference to the inner I/O event source.
pub fn get_ref ( & self ) -> & T {
pub fn get_ref ( & self ) -> & T {
& self . source
self . source . as_ref ( ) . unwrap ( )
}
}
/// Polls the I/O handle for reading.
/// Polls the I/O handle for reading.
@ -278,13 +278,26 @@ impl<T: Evented> IoHandle<T> {
Ok ( ( ) )
Ok ( ( ) )
}
}
/// Deregister and return the I/O source
///
/// This method is to support IntoRawFd in struct that uses IoHandle
pub fn into_inner ( mut self ) -> T {
let source = self . source . take ( ) . unwrap ( ) ;
REACTOR
. deregister ( & source , & self . entry )
. expect ( "cannot deregister I/O event source" ) ;
source
}
}
}
impl < T : Evented > Drop for IoHandle < T > {
impl < T : Evented > Drop for IoHandle < T > {
fn drop ( & mut self ) {
fn drop ( & mut self ) {
REACTOR
if let Some ( ref source ) = self . source {
. deregister ( & self . source , & self . entry )
REACTOR
. expect ( "cannot deregister I/O event source" ) ;
. deregister ( source , & self . entry )
. expect ( "cannot deregister I/O event source" ) ;
}
}
}
}
}
@ -305,7 +318,7 @@ impl<T: Evented + std::io::Read + Unpin> AsyncRead for IoHandle<T> {
) -> Poll < io ::Result < usize > > {
) -> Poll < io ::Result < usize > > {
futures_core ::ready ! ( Pin ::new ( & mut * self ) . poll_readable ( cx ) ? ) ;
futures_core ::ready ! ( Pin ::new ( & mut * self ) . poll_readable ( cx ) ? ) ;
match self . source . read( buf ) {
match self . source . as_mut( ) . unwrap ( ) . read( buf ) {
Err ( ref err ) if err . kind ( ) = = io ::ErrorKind ::WouldBlock = > {
Err ( ref err ) if err . kind ( ) = = io ::ErrorKind ::WouldBlock = > {
self . clear_readable ( cx ) ? ;
self . clear_readable ( cx ) ? ;
Poll ::Pending
Poll ::Pending
@ -326,7 +339,7 @@ where
) -> Poll < io ::Result < usize > > {
) -> Poll < io ::Result < usize > > {
futures_core ::ready ! ( Pin ::new ( & mut * self ) . poll_readable ( cx ) ? ) ;
futures_core ::ready ! ( Pin ::new ( & mut * self ) . poll_readable ( cx ) ? ) ;
match ( & self . source ) . read ( buf ) {
match self . source . as_ref ( ) . unwrap ( ) . read ( buf ) {
Err ( ref err ) if err . kind ( ) = = io ::ErrorKind ::WouldBlock = > {
Err ( ref err ) if err . kind ( ) = = io ::ErrorKind ::WouldBlock = > {
self . clear_readable ( cx ) ? ;
self . clear_readable ( cx ) ? ;
Poll ::Pending
Poll ::Pending
@ -344,7 +357,7 @@ impl<T: Evented + std::io::Write + Unpin> AsyncWrite for IoHandle<T> {
) -> Poll < io ::Result < usize > > {
) -> Poll < io ::Result < usize > > {
futures_core ::ready ! ( self . poll_writable ( cx ) ? ) ;
futures_core ::ready ! ( self . poll_writable ( cx ) ? ) ;
match self . source . write( buf ) {
match self . source . as_mut( ) . unwrap ( ) . write( buf ) {
Err ( ref err ) if err . kind ( ) = = io ::ErrorKind ::WouldBlock = > {
Err ( ref err ) if err . kind ( ) = = io ::ErrorKind ::WouldBlock = > {
self . clear_writable ( cx ) ? ;
self . clear_writable ( cx ) ? ;
Poll ::Pending
Poll ::Pending
@ -356,7 +369,7 @@ impl<T: Evented + std::io::Write + Unpin> AsyncWrite for IoHandle<T> {
fn poll_flush ( mut self : Pin < & mut Self > , cx : & mut Context < ' _ > ) -> Poll < io ::Result < ( ) > > {
fn poll_flush ( mut self : Pin < & mut Self > , cx : & mut Context < ' _ > ) -> Poll < io ::Result < ( ) > > {
futures_core ::ready ! ( self . poll_writable ( cx ) ? ) ;
futures_core ::ready ! ( self . poll_writable ( cx ) ? ) ;
match self . source . flush( ) {
match self . source . as_mut( ) . unwrap ( ) . flush( ) {
Err ( ref err ) if err . kind ( ) = = io ::ErrorKind ::WouldBlock = > {
Err ( ref err ) if err . kind ( ) = = io ::ErrorKind ::WouldBlock = > {
self . clear_writable ( cx ) ? ;
self . clear_writable ( cx ) ? ;
Poll ::Pending
Poll ::Pending
@ -381,7 +394,7 @@ where
) -> Poll < io ::Result < usize > > {
) -> Poll < io ::Result < usize > > {
futures_core ::ready ! ( self . poll_writable ( cx ) ? ) ;
futures_core ::ready ! ( self . poll_writable ( cx ) ? ) ;
match ( & self . source ) . write ( buf ) {
match self . get_ref ( ) . write ( buf ) {
Err ( ref err ) if err . kind ( ) = = io ::ErrorKind ::WouldBlock = > {
Err ( ref err ) if err . kind ( ) = = io ::ErrorKind ::WouldBlock = > {
self . clear_writable ( cx ) ? ;
self . clear_writable ( cx ) ? ;
Poll ::Pending
Poll ::Pending
@ -393,7 +406,7 @@ where
fn poll_flush ( self : Pin < & mut Self > , cx : & mut Context < ' _ > ) -> Poll < io ::Result < ( ) > > {
fn poll_flush ( self : Pin < & mut Self > , cx : & mut Context < ' _ > ) -> Poll < io ::Result < ( ) > > {
futures_core ::ready ! ( self . poll_writable ( cx ) ? ) ;
futures_core ::ready ! ( self . poll_writable ( cx ) ? ) ;
match ( & self . source ) . flush ( ) {
match self . get_ref ( ) . flush ( ) {
Err ( ref err ) if err . kind ( ) = = io ::ErrorKind ::WouldBlock = > {
Err ( ref err ) if err . kind ( ) = = io ::ErrorKind ::WouldBlock = > {
self . clear_writable ( cx ) ? ;
self . clear_writable ( cx ) ? ;
Poll ::Pending
Poll ::Pending