Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add block_while! macro that blocks while another expression evaluates to true #18

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,3 +265,43 @@ macro_rules! block {
}
};
}

/// Turns the non-blocking expression `$e` into a blocking operation for as long
/// as the given expression evaluates to true.
///
/// This is accomplished by continuously calling the expression `$e` until it no
/// longer returns `Error::WouldBlock` and by calling expression `$c` to evaluate
/// whether to keep polling. If `$c` evaluates to false and `$e` evaluates to
/// `Error::WouldBlock`, `Err(nb::Error::WouldBlock)` is returned.
///
/// # Input
///
/// An expression `$c` that evaluates to `bool`
/// An expression `$e` that evaluates to `nb::Result<T, E>`
///
/// # Output
///
/// - `Ok(t)` if `$e` evaluates to `Ok(t)`
/// - `Err(nb::Error::Other(e))` if `$e` evaluates to `Err(nb::Error::Other(e))`
/// - `Err(Error::WouldBlock)` if `$e` evaluates to `Err(Error::WouldBlock)` and `$c` evaluates to false
#[macro_export]
macro_rules! block_while {
($c:expr, $e:expr) => {
loop {
#[allow(unreachable_patterns)]
match $e {
Err($crate::Error::Other(e)) =>
{
#[allow(unreachable_code)]
break Err($crate::Error::Other(e))
}
Err($crate::Error::WouldBlock) => {
if !$c {
break Err($crate::Error::WouldBlock);
}
}
Ok(x) => break Ok(x),
}
}
};
}