You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.1 KiB
49 lines
1.1 KiB
8 years ago
|
use std::io::{Error as IoError, ErrorKind as IoErrorKind};
|
||
|
use std::result::Result as StdResult;
|
||
|
|
||
|
use error::Error;
|
||
|
|
||
|
/// Non-blocking IO handling.
|
||
|
pub trait NonBlockingError: Sized {
|
||
|
fn into_non_blocking(self) -> Option<Self>;
|
||
|
}
|
||
|
|
||
|
impl NonBlockingError for IoError {
|
||
|
fn into_non_blocking(self) -> Option<Self> {
|
||
|
match self.kind() {
|
||
|
IoErrorKind::WouldBlock => None,
|
||
|
_ => Some(self),
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl NonBlockingError for Error {
|
||
|
fn into_non_blocking(self) -> Option<Self> {
|
||
|
match self {
|
||
|
Error::Io(e) => e.into_non_blocking().map(|e| e.into()),
|
||
|
x => Some(x),
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// Non-blocking IO wrapper.
|
||
|
pub trait NonBlockingResult {
|
||
|
type Result;
|
||
|
fn no_block(self) -> Self::Result;
|
||
|
}
|
||
|
|
||
|
impl<T, E> NonBlockingResult for StdResult<T, E>
|
||
|
where E : NonBlockingError
|
||
|
{
|
||
|
type Result = StdResult<Option<T>, E>;
|
||
|
fn no_block(self) -> Self::Result {
|
||
|
match self {
|
||
|
Ok(x) => Ok(Some(x)),
|
||
|
Err(e) => match e.into_non_blocking() {
|
||
|
Some(e) => Err(e),
|
||
|
None => Ok(None),
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|