2017-04-03 12:20:51 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2017 Matthew Waters <matthew@centricular.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_PROMISE_H__
|
|
|
|
#define __GST_PROMISE_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2018-03-12 23:03:26 +00:00
|
|
|
GST_API
|
2017-04-03 12:20:51 +00:00
|
|
|
GType gst_promise_get_type(void);
|
|
|
|
#define GST_TYPE_PROMISE (gst_promise_get_type())
|
|
|
|
#define GST_PROMISE(obj) ((GstPromise *) obj)
|
|
|
|
|
|
|
|
typedef struct _GstPromise GstPromise;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstPromiseResult:
|
|
|
|
* @GST_PROMISE_RESULT_PENDING: Initial state. Waiting for transition to any
|
|
|
|
* other state.
|
|
|
|
* @GST_PROMISE_RESULT_INTERRUPTED: Interrupted by the consumer as it doesn't
|
|
|
|
* want the value anymore.
|
|
|
|
* @GST_PROMISE_RESULT_REPLIED: A producer marked a reply
|
|
|
|
* @GST_PROMISE_RESULT_EXPIRED: The promise expired (the carrying object
|
|
|
|
* lost all refs) and the promise will never be fulfilled.
|
|
|
|
*
|
|
|
|
* The result of a #GstPromise
|
2018-02-01 13:24:20 +00:00
|
|
|
*
|
|
|
|
* Since: 1.14
|
2017-04-03 12:20:51 +00:00
|
|
|
*/
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GST_PROMISE_RESULT_PENDING,
|
|
|
|
GST_PROMISE_RESULT_INTERRUPTED,
|
|
|
|
GST_PROMISE_RESULT_REPLIED,
|
|
|
|
GST_PROMISE_RESULT_EXPIRED,
|
|
|
|
} GstPromiseResult;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstPromiseChangeFunc:
|
|
|
|
* @promise: a #GstPromise
|
|
|
|
* @user_data: (closure): user data
|
2018-02-01 13:24:20 +00:00
|
|
|
*
|
|
|
|
* Since: 1.14
|
2017-04-03 12:20:51 +00:00
|
|
|
*/
|
|
|
|
typedef void (*GstPromiseChangeFunc) (GstPromise * promise, gpointer user_data);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstPromise:
|
|
|
|
* @parent: parent #GstMiniObject
|
2018-02-01 13:24:20 +00:00
|
|
|
*
|
|
|
|
* Since: 1.14
|
2017-04-03 12:20:51 +00:00
|
|
|
*/
|
|
|
|
struct _GstPromise
|
|
|
|
{
|
|
|
|
GstMiniObject parent;
|
|
|
|
};
|
|
|
|
|
2018-03-12 23:03:26 +00:00
|
|
|
GST_API
|
2017-04-03 12:20:51 +00:00
|
|
|
GstPromise * gst_promise_new (void);
|
2018-03-12 23:03:26 +00:00
|
|
|
GST_API
|
2017-04-03 12:20:51 +00:00
|
|
|
GstPromise * gst_promise_new_with_change_func (GstPromiseChangeFunc func,
|
|
|
|
gpointer user_data,
|
|
|
|
GDestroyNotify notify);
|
|
|
|
|
2018-03-12 23:03:26 +00:00
|
|
|
GST_API
|
2017-04-03 12:20:51 +00:00
|
|
|
GstPromiseResult gst_promise_wait (GstPromise * promise);
|
2018-03-12 23:03:26 +00:00
|
|
|
GST_API
|
2017-04-03 12:20:51 +00:00
|
|
|
void gst_promise_reply (GstPromise * promise,
|
|
|
|
GstStructure * s);
|
2018-03-12 23:03:26 +00:00
|
|
|
GST_API
|
2017-04-03 12:20:51 +00:00
|
|
|
void gst_promise_interrupt (GstPromise * promise);
|
2018-03-12 23:03:26 +00:00
|
|
|
GST_API
|
2017-04-03 12:20:51 +00:00
|
|
|
void gst_promise_expire (GstPromise * promise);
|
|
|
|
|
2018-03-12 23:03:26 +00:00
|
|
|
GST_API
|
2017-04-03 12:20:51 +00:00
|
|
|
const GstStructure * gst_promise_get_reply (GstPromise * promise);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_promise_ref:
|
|
|
|
* @promise: a #GstPromise.
|
|
|
|
*
|
|
|
|
* Increases the refcount of the given @promise by one.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): @promise
|
2018-02-01 13:24:20 +00:00
|
|
|
*
|
|
|
|
* Since: 1.14
|
2017-04-03 12:20:51 +00:00
|
|
|
*/
|
|
|
|
static inline GstPromise *
|
|
|
|
gst_promise_ref (GstPromise * promise)
|
|
|
|
{
|
|
|
|
return (GstPromise *) gst_mini_object_ref (GST_MINI_OBJECT_CAST (promise));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_promise_unref:
|
|
|
|
* @promise: (transfer full): a #GstPromise.
|
|
|
|
*
|
|
|
|
* Decreases the refcount of the promise. If the refcount reaches 0, the
|
|
|
|
* promise will be freed.
|
2018-02-01 13:24:20 +00:00
|
|
|
*
|
|
|
|
* Since: 1.14
|
2017-04-03 12:20:51 +00:00
|
|
|
*/
|
|
|
|
static inline void
|
|
|
|
gst_promise_unref (GstPromise * promise)
|
|
|
|
{
|
|
|
|
gst_mini_object_unref (GST_MINI_OBJECT_CAST (promise));
|
|
|
|
}
|
|
|
|
|
2019-05-08 10:11:50 +00:00
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstPromise, gst_promise_unref)
|
|
|
|
|
2017-04-03 12:20:51 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_PROMISE_H__ */
|