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 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
//! Request objects for non-blocking operations //! //! Non-blocking operations such as `immediate_send()` return request objects that borrow any //! buffers involved in the operation so as to ensure proper access restrictions. In order to //! release the borrowed buffers from the request objects, a completion operation such as //! [`wait()`](struct.Request.html#method.wait) or [`test()`](struct.Request.html#method.test) must //! be used on the request object. //! //! **Note:** If the `Request` is dropped (as opposed to calling `wait` or `test` explicitly), the //! program will panic. //! //! To enforce this rule, every request object must be registered to some pre-existing //! [`Scope`](trait.Scope.html). At the end of a `Scope`, all its remaining requests will be waited //! for until completion. Scopes can be created using either [`scope`](fn.scope.html) or //! [`StaticScope`](struct.StaticScope.html). //! //! To handle request completion in an RAII style, a request can be wrapped in either //! [`WaitGuard`](struct.WaitGuard.html) or [`CancelGuard`](struct.CancelGuard.html), which will //! follow the respective policy for completing the operation. When the guard is dropped, the //! request will be automatically unregistered from its `Scope`. //! //! # Unfinished features //! //! - **3.7**: Nonblocking mode: //! - Completion, `MPI_Waitany()`, `MPI_Waitall()`, `MPI_Waitsome()`, //! `MPI_Testany()`, `MPI_Testall()`, `MPI_Testsome()`, `MPI_Request_get_status()` //! - **3.8**: //! - Cancellation, `MPI_Test_cancelled()` use std::cell::Cell; use std::mem; use std::marker::PhantomData; use std::os::raw::c_int; use ffi; use ffi::{MPI_Request, MPI_Status}; use point_to_point::Status; use raw::traits::*; /// Check if the request is `MPI_REQUEST_NULL`. fn is_null(request: MPI_Request) -> bool { request == unsafe_extern_static!(ffi::RSMPI_REQUEST_NULL) } /// A request object for a non-blocking operation registered with a `Scope` of lifetime `'a` /// /// The `Scope` is needed to ensure that all buffers associated request will outlive the request /// itself, even if the destructor of the request fails to run. /// /// # Panics /// /// Panics if the request object is dropped. To prevent this, call `wait`, `wait_without_status`, /// or `test`. Alternatively, wrap the request inside a `WaitGuard` or `CancelGuard`. /// /// # Examples /// /// See `examples/immediate.rs` /// /// # Standard section(s) /// /// 3.7.1 #[must_use] #[derive(Debug)] pub struct Request<'a, S: Scope<'a>> { request: MPI_Request, scope: S, phantom: PhantomData<Cell<&'a ()>>, } unsafe impl<'a, S: Scope<'a>> AsRaw for Request<'a, S> { type Raw = MPI_Request; fn as_raw(&self) -> Self::Raw { self.request } } impl<'a, S: Scope<'a>> Drop for Request<'a, S> { fn drop(&mut self) { panic!("request was dropped without being completed"); } } impl<'a, S: Scope<'a>> Request<'a, S> { /// Construct a request object from the raw MPI type. /// /// # Requirements /// /// - The request is a valid, active request. It must not be `MPI_REQUEST_NULL`. /// - The request must not be persistent. /// - All buffers associated with the request must outlive `'a`. /// - The request must not be registered with the given scope. /// pub unsafe fn from_raw(request: MPI_Request, scope: S) -> Self { debug_assert!(!is_null(request)); scope.register(); Self { request, scope, phantom: Default::default(), } } /// Unregister the request object from its scope and deconstruct it into its raw parts. /// /// This is unsafe because the request may outlive its associated buffers. pub unsafe fn into_raw(mut self) -> (MPI_Request, S) { let request = mem::replace(&mut self.request, mem::uninitialized()); let scope = mem::replace(&mut self.scope, mem::uninitialized()); let _ = mem::replace(&mut self.phantom, mem::uninitialized()); mem::forget(self); scope.unregister(); (request, scope) } /// Wait for the request to finish and unregister the request object from its scope. /// If provided, the status is written to the referent of the given reference. /// The referent `MPI_Status` object is never read. fn wait_with(self, status: Option<&mut MPI_Status>) { unsafe { let (mut request, _) = self.into_raw(); let status = match status { Some(r) => r, None => ffi::RSMPI_STATUS_IGNORE, }; ffi::MPI_Wait(&mut request, status); assert!(is_null(request)); // persistent requests are not supported } } /// Wait for an operation to finish. /// /// Will block execution of the calling thread until the associated operation has finished. /// /// # Examples /// /// See `examples/immediate.rs` /// /// # Standard section(s) /// /// 3.7.3 pub fn wait(self) -> Status { let mut status: MPI_Status = unsafe { mem::uninitialized() }; self.wait_with(Some(&mut status)); Status::from_raw(status) } /// Wait for an operation to finish, but don’t bother retrieving the `Status` information. /// /// Will block execution of the calling thread until the associated operation has finished. /// /// # Standard section(s) /// /// 3.7.3 pub fn wait_without_status(self) { self.wait_with(None); } /// Test whether an operation has finished. /// /// If the operation has finished, `Status` is returned. Otherwise returns the unfinished /// `Request`. /// /// # Examples /// /// See `examples/immediate.rs` /// /// # Standard section(s) /// /// 3.7.3 pub fn test(self) -> Result<Status, Self> { unsafe { let mut status: MPI_Status = mem::uninitialized(); let mut flag: c_int = mem::uninitialized(); let mut request = self.as_raw(); ffi::MPI_Test(&mut request, &mut flag, &mut status); if flag != 0 { assert!(is_null(request)); // persistent requests are not supported self.into_raw(); Ok(Status::from_raw(status)) } else { Err(self) } } } /// Initiate cancellation of the request. /// /// The MPI implementation is not guaranteed to fulfill this operation. It may not even be /// valid for certain types of requests. In the future, the MPI forum may [deprecate /// cancellation of sends][mpi26] entirely. /// /// [mpi26]: https://github.com/mpi-forum/mpi-issues/issues/26 /// /// # Examples /// /// See `examples/immediate.rs` /// /// # Standard section(s) /// /// 3.8.4 pub fn cancel(&self) { let mut request = self.as_raw(); unsafe { ffi::MPI_Cancel(&mut request); } } /// Reduce the scope of a request. pub fn shrink_scope_to<'b, S2>(self, scope: S2) -> Request<'b, S2> where 'a: 'b, S2: Scope<'b>, { unsafe { let (request, _) = self.into_raw(); Request::from_raw(request, scope) } } } /// Guard object that waits for the completion of an operation when it is dropped /// /// The guard can be constructed or deconstructed using the `From` and `Into` traits. /// /// # Examples /// /// See `examples/immediate.rs` #[derive(Debug)] pub struct WaitGuard<'a, S: Scope<'a>>(Option<Request<'a, S>>); impl<'a, S: Scope<'a>> Drop for WaitGuard<'a, S> { fn drop(&mut self) { self.0.take().expect("invalid WaitGuard").wait(); } } unsafe impl<'a, S: Scope<'a>> AsRaw for WaitGuard<'a, S> { type Raw = MPI_Request; fn as_raw(&self) -> Self::Raw { self.0.as_ref().expect("invalid WaitGuard").as_raw() } } impl<'a, S: Scope<'a>> From<WaitGuard<'a, S>> for Request<'a, S> { fn from(mut guard: WaitGuard<'a, S>) -> Self { guard.0.take().expect("invalid WaitGuard") } } impl<'a, S: Scope<'a>> From<Request<'a, S>> for WaitGuard<'a, S> { fn from(req: Request<'a, S>) -> Self { WaitGuard(Some(req)) } } impl<'a, S: Scope<'a>> WaitGuard<'a, S> { fn cancel(&self) { if let Some(ref req) = self.0 { req.cancel(); } } } /// Guard object that tries to cancel and waits for the completion of an operation when it is /// dropped /// /// The guard can be constructed or deconstructed using the `From` and `Into` traits. /// /// # Examples /// /// See `examples/immediate.rs` #[derive(Debug)] pub struct CancelGuard<'a, S: Scope<'a>>(WaitGuard<'a, S>); impl<'a, S: Scope<'a>> Drop for CancelGuard<'a, S> { fn drop(&mut self) { self.0.cancel(); } } impl<'a, S: Scope<'a>> From<CancelGuard<'a, S>> for WaitGuard<'a, S> { fn from(mut guard: CancelGuard<'a, S>) -> Self { unsafe { let inner = mem::replace(&mut guard.0, mem::uninitialized()); mem::forget(guard); inner } } } impl<'a, S: Scope<'a>> From<WaitGuard<'a, S>> for CancelGuard<'a, S> { fn from(guard: WaitGuard<'a, S>) -> Self { CancelGuard(guard) } } impl<'a, S: Scope<'a>> From<Request<'a, S>> for CancelGuard<'a, S> { fn from(req: Request<'a, S>) -> Self { CancelGuard(WaitGuard::from(req)) } } /// A common interface for [`LocalScope`](struct.LocalScope.html) and /// [`StaticScope`](struct.StaticScope.html) used internally by the `request` module. /// /// This trait is an implementation detail. You shouldn’t have to use or implement this trait. pub unsafe trait Scope<'a> { /// Registers a request with the scope. fn register(&self); /// Unregisters a request from the scope. unsafe fn unregister(&self); } /// The scope that lasts as long as the entire execution of the program /// /// Unlike `LocalScope<'a>`, `StaticScope` does not require any bookkeeping on the requests as every /// request associated with a `StaticScope` can live as long as they please. /// /// A `StaticScope` can be created simply by calling the `StaticScope` constructor. /// /// # Invariant /// /// For any `Request` registered with a `StaticScope`, its associated buffers must be `'static`. #[derive(Debug, Clone, Copy, Default, PartialEq, Eq, Hash)] pub struct StaticScope; unsafe impl Scope<'static> for StaticScope { fn register(&self) {} unsafe fn unregister(&self) {} } /// A temporary scope that lasts no more than the lifetime `'a` /// /// Use `LocalScope` for to perform requests with temporary buffers. /// /// To obtain a `LocalScope`, use the [`scope`](fn.scope.html) function. /// /// # Invariant /// /// For any `Request` registered with a `LocalScope<'a>`, its associated buffers must outlive `'a`. /// /// # Panics /// /// When `LocalScope` is dropped, it will panic if there are any lingering `Requests` that have not /// yet been completed. #[derive(Debug)] pub struct LocalScope<'a> { num_requests: Cell<usize>, phantom: PhantomData<Cell<&'a ()>>, // Cell needed to ensure 'a is invariant } impl<'a> Drop for LocalScope<'a> { fn drop(&mut self) { if self.num_requests.get() != 0 { panic!("at least one request was dropped without being completed"); } } } unsafe impl<'a, 'b> Scope<'a> for &'b LocalScope<'a> { fn register(&self) { self.num_requests.set(self.num_requests.get() + 1) } unsafe fn unregister(&self) { self.num_requests.set( self.num_requests .get() .checked_sub(1) .expect("unregister has been called more times than register"), ) } } /// Used to create a [`LocalScope`](struct.LocalScope.html) /// /// The function creates a `LocalScope` and then passes it into the given /// closure as an argument. /// /// For safety reasons, all variables and buffers associated with a request /// must exist *outside* the scope with which the request is registered. /// /// It is typically used like this: /// /// ``` /// /* declare variables and buffers here ... */ /// mpi::request::scope(|scope| { /// /* perform sends and/or receives using 'scope' */ /// }); /// /* at end of scope, panic if there are requests that have not yet completed */ /// ``` /// /// # Examples /// /// See `examples/immediate.rs` pub fn scope<'a, F, R>(f: F) -> R where F: FnOnce(&LocalScope<'a>) -> R, { f(&LocalScope { num_requests: Default::default(), phantom: Default::default(), }) }