1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
//! This crate provides an API identical to `std::thread`. However, `JoinHandle::join` is an `async //! fn`. //! ``` //! let handle = crate::spawn(|| 5usize); //! assert_eq!(handle.join().await.map_err(drop), Ok(5)); //! ``` use futures_channel::oneshot; use std::any::Any; use std::io; use std::panic::{catch_unwind, AssertUnwindSafe}; use std::thread as sync; #[derive(Debug)] pub struct JoinHandle<T> { imp: sync::JoinHandle<()>, chan: oneshot::Receiver<sync::Result<T>>, } impl<T> JoinHandle<T> { pub async fn join(self) -> sync::Result<T> { self.chan .await .map_err(|x| -> Box<dyn Any + Send + 'static> { Box::new(x) }) .and_then(|x| x) } pub fn thread(&self) -> &sync::Thread { self.imp.thread() } } /// Thread factory, which can be used in order to configure the properties of /// a new thread. /// /// Methods can be chained on it in order to configure it. /// /// The two configurations available are: /// /// - `name`: specifies an associated name for the thread /// - `stack_size`: specifies the desired stack size for the thread /// /// The `spawn` method will take ownership of the builder and create an /// `io::Result` to the thread handle with the given configuration. /// /// The `thread::spawn` free function uses a `Builder` with default /// configuration and `unwrap`s its return value. /// /// You may want to use `spawn` instead of `thread::spawn`, when you want /// to recover from a failure to launch a thread, indeed the free function will /// panic where the `Builder` method will return a `io::Result`. /// /// # Examples /// /// ``` /// use std::thread; /// /// let builder = thread::Builder::new(); /// /// let handler = builder.spawn(|| { /// // thread code /// }).unwrap(); /// /// handler.join().unwrap(); /// ``` #[derive(Debug)] pub struct Builder { imp: sync::Builder, } impl Builder { /// Generates the base configuration for spawning a thread, from which /// configuration methods can be chained. /// /// # Examples /// /// ``` /// let builder = async_thread::Builder::new() /// .name("foo".into()) /// .stack_size(32 * 1024); /// /// let handler = builder.spawn(|| { /// // thread code /// }).unwrap(); /// /// handler.join().await.unwrap(); /// ``` pub fn new() -> Self { Self { imp: sync::Builder::new(), } } /// Names the thread-to-be. Currently the name is used for identification /// only in panic messages. /// /// The name must not contain null bytes (`\0`). /// /// For more information about named threads, see /// the std::thread documentation. /// /// # Examples /// /// ``` /// let builder = async_thread::Builder::new() /// .name("foo".into()); /// /// let handler = builder.spawn(|| { /// assert_eq!(thread::current().name(), Some("foo")) /// }).unwrap(); /// /// handler.join().await.unwrap(); /// ``` pub fn name(self, name: String) -> Self { Self { imp: self.imp.name(name), } } /// Sets the size of the stack (in bytes) for the new thread. /// /// The actual stack size may be greater than this value if /// the platform specifies a minimal stack size. /// /// For more information about the stack size for threads, see /// the std::thread documentation. /// /// # Examples /// /// ``` /// let builder = async_thread::Builder::new().stack_size(32 * 1024); /// ``` pub fn stack_size(self, size: usize) -> Self { Self { imp: self.imp.stack_size(size), } } /// Spawns a new thread by taking ownership of the `Builder`, and returns an /// `io::Result` to its `JoinHandle`. /// /// The spawned thread may outlive the caller (unless the caller thread /// is the main thread; the whole process is terminated when the main /// thread finishes). The join handle can be used to block on /// termination of the child thread, including recovering its panics. /// /// For a more complete documentation see `async_thread::spawn`. /// /// # Errors /// /// Unlike the `spawn` free function, this method yields an /// `io::Result` to capture any failure to create the thread at /// the OS level. /// /// # Panics /// /// Panics if a thread name was set and it contained null bytes. /// /// # Examples /// /// ``` /// let builder = async_thread::Builder::new(); /// /// let handler = builder.spawn(|| { /// // thread code /// }).unwrap(); /// /// handler.join().await.unwrap(); /// ``` pub fn spawn<F, T>(self, f: F) -> io::Result<JoinHandle<T>> where F: FnOnce() -> T, F: Send + 'static, T: Send + 'static, { let (send, recv) = oneshot::channel(); let handle = self.imp.spawn(move || { let _ = send.send(catch_unwind(AssertUnwindSafe(f))); })?; Ok(JoinHandle { chan: recv, imp: handle, }) } } /// Spawns a new thread, returning a `JoinHandle` for it. /// /// The join handle will implicitly *detach* the child thread upon being /// dropped. In this case, the child thread may outlive the parent (unless /// the parent thread is the main thread; the whole process is terminated when /// the main thread finishes). Additionally, the join handle provides a `join` /// method that can be used to join the child thread. If the child thread /// panics, `join` will return an `Err` containing the argument given to /// `panic`. /// /// This will create a thread using default parameters of `Builder`, if you /// want to specify the stack size or the name of the thread, use this API /// instead. /// /// As you can see in the signature of `spawn` there are two constraints on /// both the closure given to `spawn` and its return value, let's explain them: /// /// - The `'static` constraint means that the closure and its return value /// must have a lifetime of the whole program execution. The reason for this /// is that threads can `detach` and outlive the lifetime they have been /// created in. /// Indeed if the thread, and by extension its return value, can outlive their /// caller, we need to make sure that they will be valid afterwards, and since /// we *can't* know when it will return we need to have them valid as long as /// possible, that is until the end of the program, hence the `'static` /// lifetime. /// - The `Send` constraint is because the closure will need to be passed /// *by value* from the thread where it is spawned to the new thread. Its /// return value will need to be passed from the new thread to the thread /// where it is `join`ed. /// As a reminder, the `Send` marker trait expresses that it is safe to be /// passed from thread to thread. `Sync` expresses that it is safe to have a /// reference be passed from thread to thread. /// /// # Panics /// /// Panics if the OS fails to create a thread; use `Builder::spawn` /// to recover from such errors. /// /// # Examples /// /// Creating a thread. /// /// ``` /// let handler = async_thread::spawn(|| { /// // thread code /// }); /// /// handler.join().await.unwrap(); /// ``` /// /// As mentioned in the std::thread documentation, threads are usually made to /// communicate using `channels`, here is how it usually looks. /// /// This example also shows how to use `move`, in order to give ownership /// of values to a thread. /// /// ``` /// use std::sync::mpsc::channel; /// /// let (tx, rx) = channel(); /// /// let sender = async_thread::spawn(move || { /// tx.send("Hello, thread".to_owned()) /// .expect("Unable to send on channel"); /// }); /// /// let receiver = async_thread::spawn(move || { /// let value = rx.recv().expect("Unable to receive from channel"); /// println!("{}", value); /// }); /// /// sender.join().await.expect("The sender thread has panicked"); /// receiver.join().await.expect("The receiver thread has panicked"); /// ``` /// /// A thread can also return a value through its `JoinHandle`, you can use /// this to make asynchronous computations. /// /// ``` /// let computation = async_thread::spawn(|| { /// // Some expensive computation. /// 42 /// }); /// /// let result = computation.join().await.unwrap(); /// println!("{}", result); /// ``` pub fn spawn<F, T>(f: F) -> JoinHandle<T> where F: FnOnce() -> T, F: Send + 'static, T: Send + 'static, { Builder::new().spawn(f).expect("failed to spawn thread") } #[cfg(test)] mod tests { #[async_std::test] async fn it_works() { let handle = crate::spawn(|| 5usize); assert_eq!(handle.join().await.map_err(drop), Ok(5)); } }