use std::sync::Arc;
use raw::RawSemaphore;
pub struct ShutdownHandle<T> {
raw: Arc<RawSemaphore>,
resource: Option<Arc<T>>
}
pub fn new<T>(raw: &Arc<RawSemaphore>, resource: Option<Arc<T>>) -> ShutdownHandle<T> {
ShutdownHandle {
raw: raw.clone(),
resource: resource
}
}
impl<T> ShutdownHandle<T> {
pub fn wait(self) -> Option<T> {
self.raw.wait_until_inactive();
self.resource.map(|mut arc| {
loop {
match Arc::try_unwrap(arc) {
Ok(resource) => {
return resource;
},
Err(returned_arc) => {
arc = returned_arc;
}
}
}
})
}
#[doc(hidden)]
pub fn is_complete(&self) -> bool {
!self.raw.is_active()
}
}