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
// Copyright (C) 2018 Sebastian Dröge <sebastian@centricular.com>
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

use glib::translate::*;
use glib_sys;
use gst_sys;
use PromiseResult;
use Structure;
use StructureRef;

use std::pin::Pin;
use std::task::{Context, Poll};

glib_wrapper! {
    /// The `Promise` object implements the container for values that may
    /// be available later. i.e. a Future or a Promise in
    /// <ulink url="https://en.wikipedia.org/wiki/Futures_and_promises">https://en.wikipedia.org/wiki/Futures_and_promises`</ulink>`
    /// As with all Future/Promise-like functionality, there is the concept of the
    /// producer of the value and the consumer of the value.
    ///
    /// A `Promise` is created with `Promise::new` by the consumer and passed
    /// to the producer to avoid thread safety issues with the change callback.
    /// A `Promise` can be replied to with a value (or an error) by the producer
    /// with `Promise::reply`. `Promise::interrupt` is for the consumer to
    /// indicate to the producer that the value is not needed anymore and producing
    /// that value can stop. The `PromiseResult::Expired` state set by a call
    /// to `Promise::expire` indicates to the consumer that a value will never
    /// be produced and is intended to be called by a third party that implements
    /// some notion of message handling such as `Bus`.
    /// A callback can also be installed at `Promise` creation for
    /// result changes with `Promise::new_with_change_func`.
    /// The change callback can be used to chain `GstPromises`'s together as in the
    /// following example.
    ///
    /// ```C
    /// const GstStructure *reply;
    /// GstPromise *p;
    /// if (gst_promise_wait (promise) != GST_PROMISE_RESULT_REPLIED)
    ///   return; // interrupted or expired value
    /// reply = gst_promise_get_reply (promise);
    /// if (error in reply)
    ///   return; // propagate error
    /// p = gst_promise_new_with_change_func (another_promise_change_func, user_data, notify);
    /// pass p to promise-using API
    /// ```
    ///
    /// Each `Promise` starts out with a `PromiseResult` of
    /// `PromiseResult::Pending` and only ever transitions once
    /// into one of the other `PromiseResult`'s.
    ///
    /// In order to support multi-threaded code, `Promise::reply`,
    /// `Promise::interrupt` and `Promise::expire` may all be from
    /// different threads with some restrictions and the final result of the promise
    /// is whichever call is made first. There are two restrictions on ordering:
    ///
    /// 1. That `Promise::reply` and `Promise::interrupt` cannot be called
    /// after `Promise::expire`
    /// 2. That `Promise::reply` and `Promise::interrupt`
    /// cannot be called twice.
    ///
    /// The change function set with `Promise::new_with_change_func` is
    /// called directly from either the `Promise::reply`,
    /// `Promise::interrupt` or `Promise::expire` and can be called
    /// from an arbitrary thread. `Promise` using APIs can restrict this to
    /// a single thread or a subset of threads but that is entirely up to the API
    /// that uses `Promise`.
    ///
    /// Feature: `v1_14`
    #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
    pub struct Promise(Shared<gst_sys::GstPromise>);

    match fn {
        ref => |ptr| gst_sys::gst_mini_object_ref(ptr as *mut _),
        unref => |ptr| gst_sys::gst_mini_object_unref(ptr as *mut _),
        get_type => || gst_sys::gst_promise_get_type(),
    }
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub enum PromiseError {
    Interrupted,
    Expired,
    Other(PromiseResult),
}

impl Promise {
    ///
    /// Feature: `v1_14`
    ///
    ///
    /// # Returns
    ///
    /// a new `Promise`
    pub fn new() -> Promise {
        assert_initialized_main_thread!();
        unsafe { from_glib_full(gst_sys::gst_promise_new()) }
    }

    /// `func` will be called exactly once when transitioning out of
    /// `PromiseResult::Pending` into any of the other `PromiseResult`
    /// states.
    ///
    /// Feature: `v1_14`
    ///
    /// ## `func`
    /// a `GstPromiseChangeFunc` to call
    /// ## `user_data`
    /// argument to call `func` with
    /// ## `notify`
    /// notification function that `user_data` is no longer needed
    ///
    /// # Returns
    ///
    /// a new `Promise`
    pub fn new_with_change_func<F>(func: F) -> Promise
    where
        F: FnOnce(Result<&StructureRef, PromiseError>) + Send + 'static,
    {
        let user_data: Box<Option<F>> = Box::new(Some(func));

        unsafe extern "C" fn trampoline<
            F: FnOnce(Result<&StructureRef, PromiseError>) + Send + 'static,
        >(
            promise: *mut gst_sys::GstPromise,
            user_data: glib_sys::gpointer,
        ) {
            let user_data: &mut Option<F> = &mut *(user_data as *mut _);
            let callback = user_data.take().unwrap();

            let promise: Promise = from_glib_borrow(promise);

            let res = match promise.wait() {
                PromiseResult::Replied => {
                    Ok(promise.get_reply().expect("Promise resolved but no reply"))
                }
                PromiseResult::Interrupted => Err(PromiseError::Interrupted),
                PromiseResult::Expired => Err(PromiseError::Expired),
                PromiseResult::Pending => {
                    panic!("Promise resolved but returned Pending");
                }
                err => Err(PromiseError::Other(err)),
            };

            callback(res);
        }

        unsafe extern "C" fn free_user_data<
            F: FnOnce(Result<&StructureRef, PromiseError>) + Send + 'static,
        >(
            user_data: glib_sys::gpointer,
        ) {
            let _: Box<Option<F>> = Box::from_raw(user_data as *mut _);
        }

        unsafe {
            from_glib_full(gst_sys::gst_promise_new_with_change_func(
                Some(trampoline::<F>),
                Box::into_raw(user_data) as *mut _,
                Some(free_user_data::<F>),
            ))
        }
    }

    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))
    }

    /// Expire a `self`. This will wake up any waiters with
    /// `PromiseResult::Expired`. Called by a message loop when the parent
    /// message is handled and/or destroyed (possibly unanswered).
    ///
    /// Feature: `v1_14`
    ///
    pub fn expire(&self) {
        unsafe {
            gst_sys::gst_promise_expire(self.to_glib_none().0);
        }
    }

    /// Retrieve the reply set on `self`. `self` must be in
    /// `PromiseResult::Replied` and the returned structure is owned by `self`
    ///
    /// Feature: `v1_14`
    ///
    ///
    /// # Returns
    ///
    /// The reply set on `self`
    pub fn get_reply(&self) -> Option<&StructureRef> {
        unsafe {
            let s = gst_sys::gst_promise_get_reply(self.to_glib_none().0);
            if s.is_null() {
                None
            } else {
                Some(StructureRef::from_glib_borrow(s))
            }
        }
    }

    /// Interrupt waiting for a `self`. This will wake up any waiters with
    /// `PromiseResult::Interrupted`. Called when the consumer does not want
    /// the value produced anymore.
    ///
    /// Feature: `v1_14`
    ///
    pub fn interrupt(&self) {
        unsafe {
            gst_sys::gst_promise_interrupt(self.to_glib_none().0);
        }
    }

    /// Set a reply on `self`. This will wake up any waiters with
    /// `PromiseResult::Replied`. Called by the producer of the value to
    /// indicate success (or failure).
    ///
    /// If `self` has already been interrupted by the consumer, then this reply
    /// is not visible to the consumer.
    ///
    /// Feature: `v1_14`
    ///
    /// ## `s`
    /// a `Structure` with the the reply contents
    pub fn reply(&self, s: Structure) {
        unsafe {
            gst_sys::gst_promise_reply(self.to_glib_none().0, s.into_ptr());
        }
    }

    /// Wait for `self` to move out of the `PromiseResult::Pending` state.
    /// If `self` is not in `PromiseResult::Pending` then it will return
    /// immediately with the current result.
    ///
    /// Feature: `v1_14`
    ///
    ///
    /// # Returns
    ///
    /// the result of the promise
    pub fn wait(&self) -> PromiseResult {
        unsafe { from_glib(gst_sys::gst_promise_wait(self.to_glib_none().0)) }
    }
}

impl Default for Promise {
    fn default() -> Self {
        Self::new()
    }
}

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::*;
    use std::sync::mpsc::channel;
    use std::thread;

    #[test]
    fn test_change_func() {
        ::init().unwrap();

        let (sender, receiver) = channel();
        let promise = Promise::new_with_change_func(move |res| {
            sender.send(res.map(|s| s.to_owned())).unwrap();
        });

        thread::spawn(move || {
            promise.reply(crate::Structure::new("foo/bar", &[]));
        });

        let res = receiver.recv().unwrap();
        let res = res.expect("promise failed");
        assert_eq!(res.get_name(), "foo/bar");
    }
}