forked from mirrors/gstreamer-rs
gstreamer/promise: Add Future constructor for Promise
This returns a tuple that basically works like a oneshot channel: the Promise acts as the "sender" and once the promise resolves the "receiver" contains the result.
This commit is contained in:
parent
605d4fbf24
commit
9b593f626b
2 changed files with 32 additions and 2 deletions
|
@ -148,9 +148,9 @@ mod static_pad_template;
|
|||
pub use static_pad_template::*;
|
||||
|
||||
#[cfg(any(feature = "v1_14", feature = "dox"))]
|
||||
mod promise;
|
||||
pub mod promise;
|
||||
#[cfg(any(feature = "v1_14", feature = "dox"))]
|
||||
pub use promise::*;
|
||||
pub use promise::{Promise, PromiseError};
|
||||
|
||||
mod bus;
|
||||
mod element;
|
||||
|
|
|
@ -13,6 +13,9 @@ use PromiseResult;
|
|||
use Structure;
|
||||
use StructureRef;
|
||||
|
||||
use std::pin::Pin;
|
||||
use std::task::{Context, Poll};
|
||||
|
||||
glib_wrapper! {
|
||||
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
pub struct Promise(Shared<gst_sys::GstPromise>);
|
||||
|
@ -86,6 +89,18 @@ impl Promise {
|
|||
}
|
||||
}
|
||||
|
||||
pub fn new_future() -> (Self, PromiseFuture) {
|
||||
use futures_channel::oneshot;
|
||||
|
||||
let (sender, receiver) = oneshot::channel();
|
||||
|
||||
let promise = Self::new_with_change_func(move |res| {
|
||||
let _ = sender.send(res.map(|s| s.to_owned()));
|
||||
});
|
||||
|
||||
(promise, PromiseFuture(receiver))
|
||||
}
|
||||
|
||||
pub fn expire(&self) {
|
||||
unsafe {
|
||||
gst_sys::gst_promise_expire(self.to_glib_none().0);
|
||||
|
@ -129,6 +144,21 @@ impl Default for Promise {
|
|||
unsafe impl Send for Promise {}
|
||||
unsafe impl Sync for Promise {}
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct PromiseFuture(futures_channel::oneshot::Receiver<Result<Structure, PromiseError>>);
|
||||
|
||||
impl std::future::Future for PromiseFuture {
|
||||
type Output = Result<Structure, PromiseError>;
|
||||
|
||||
fn poll(mut self: Pin<&mut Self>, context: &mut Context) -> Poll<Self::Output> {
|
||||
match Pin::new(&mut self.0).poll(context) {
|
||||
Poll::Ready(Err(_)) => panic!("Sender dropped before callback was called"),
|
||||
Poll::Ready(Ok(res)) => Poll::Ready(res),
|
||||
Poll::Pending => Poll::Pending,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
|
Loading…
Reference in a new issue