aboutsummaryrefslogtreecommitdiffstats
path: root/src/wait/thread.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wait/thread.rs')
-rw-r--r--src/wait/thread.rs51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/wait/thread.rs b/src/wait/thread.rs
new file mode 100644
index 0000000..0eadc3c
--- /dev/null
+++ b/src/wait/thread.rs
@@ -0,0 +1,51 @@
+use std::{
+ sync::mpsc::{Receiver, channel},
+ thread::JoinHandle, time::Duration,
+};
+
+use crate::defer;
+
+pub struct ThreadWaiter<T> {
+ handle: JoinHandle<T>,
+ chan: Receiver<()>,
+ done: bool,
+}
+
+pub fn spawn<T, F>(fun: F) -> ThreadWaiter<T>
+where
+ T: Send + 'static,
+ F: Send + 'static,
+ F: FnOnce() -> T,
+{
+ let (tx, rx) = channel();
+
+ let handle = std::thread::spawn(move || {
+ defer! {
+ let _ = tx.send(());
+ };
+ fun()
+ });
+
+ ThreadWaiter {
+ handle,
+ chan: rx,
+ done: false,
+ }
+}
+
+impl<T> ThreadWaiter<T> {
+ pub fn try_join(&mut self, timeout_ms: u16) -> bool {
+ if self.done {
+ return true;
+ }
+
+ if let Ok(()) = self.chan.recv_timeout(Duration::from_millis(timeout_ms as _)) {
+ self.done = true;
+ }
+
+ self.done
+ }
+ pub fn into_inner(self) -> JoinHandle<T> {
+ self.handle
+ }
+}