2005-03-21 17:34:02 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2005 Wim Taymans <wim@fluendo.com>
|
|
|
|
*
|
|
|
|
* gsttask.c: Streaming tasks
|
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2005-10-20 19:30:57 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gsttask
|
|
|
|
* @short_description: Abstraction of GStreamer streaming threads.
|
|
|
|
* @see_also: #GstElement, #GstPad
|
|
|
|
*
|
2005-11-09 16:32:49 +00:00
|
|
|
* #GstTask is used by #GstElement and #GstPad to provide the data passing
|
|
|
|
* threads in a #GstPipeline.
|
2005-10-20 19:30:57 +00:00
|
|
|
*
|
2005-11-09 16:32:49 +00:00
|
|
|
* A #GstPad will typically start a #GstTask to push or pull data to/from the
|
|
|
|
* peer pads. Most source elements start a #GstTask to push data. In some cases
|
|
|
|
* a demuxer element can start a #GstTask to pull data from a peer element. This
|
2005-10-20 19:30:57 +00:00
|
|
|
* is typically done when the demuxer can perform random access on the upstream
|
|
|
|
* peer element for improved performance.
|
|
|
|
*
|
2005-11-09 16:32:49 +00:00
|
|
|
* Although convenience functions exist on #GstPad to start/pause/stop tasks, it
|
|
|
|
* might sometimes be needed to create a #GstTask manually if it is not related to
|
|
|
|
* a #GstPad.
|
2005-10-20 19:30:57 +00:00
|
|
|
*
|
2005-11-09 16:32:49 +00:00
|
|
|
* Before the #GstTask can be run, it needs a #GStaticRecMutex that can be set with
|
2005-10-20 19:30:57 +00:00
|
|
|
* gst_task_set_lock().
|
|
|
|
*
|
|
|
|
* The task can be started, paused and stopped with gst_task_start(), gst_task_pause()
|
2009-04-21 15:53:07 +00:00
|
|
|
* and gst_task_stop() respectively or with the gst_task_set_state() function.
|
2005-10-20 19:30:57 +00:00
|
|
|
*
|
2008-05-26 10:07:09 +00:00
|
|
|
* A #GstTask will repeatedly call the #GstTaskFunction with the user data
|
2009-04-21 15:53:07 +00:00
|
|
|
* that was provided when creating the task with gst_task_create(). While calling
|
|
|
|
* the function it will acquire the provided lock. The provided lock is released
|
|
|
|
* when the task pauses or stops.
|
2005-10-20 19:30:57 +00:00
|
|
|
*
|
2008-05-26 10:07:09 +00:00
|
|
|
* Stopping a task with gst_task_stop() will not immediately make sure the task is
|
2005-11-09 16:32:49 +00:00
|
|
|
* not running anymore. Use gst_task_join() to make sure the task is completely
|
2005-10-20 19:30:57 +00:00
|
|
|
* stopped and the thread is stopped.
|
|
|
|
*
|
2005-11-09 16:32:49 +00:00
|
|
|
* After creating a #GstTask, use gst_object_unref() to free its resources. This can
|
2005-10-20 19:30:57 +00:00
|
|
|
* only be done it the task is not running anymore.
|
2005-11-09 16:32:49 +00:00
|
|
|
*
|
2006-02-13 17:03:23 +00:00
|
|
|
* Last reviewed on 2006-02-13 (0.10.4)
|
2005-10-20 19:30:57 +00:00
|
|
|
*/
|
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
#include "gst_private.h"
|
|
|
|
|
|
|
|
#include "gstinfo.h"
|
|
|
|
#include "gsttask.h"
|
|
|
|
|
2005-10-15 19:57:03 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (task_debug);
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
#define GST_CAT_DEFAULT (task_debug)
|
|
|
|
|
2009-05-11 21:19:53 +00:00
|
|
|
#define GST_TASK_GET_PRIVATE(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_TASK, GstTaskPrivate))
|
|
|
|
|
|
|
|
struct _GstTaskPrivate
|
|
|
|
{
|
|
|
|
/* callbacks for managing the thread of this task */
|
|
|
|
GstTaskThreadCallbacks thr_callbacks;
|
|
|
|
gpointer thr_user_data;
|
|
|
|
GDestroyNotify thr_notify;
|
2009-04-21 17:15:48 +00:00
|
|
|
|
|
|
|
gboolean prio_set;
|
|
|
|
GThreadPriority priority;
|
2009-05-11 22:25:11 +00:00
|
|
|
|
2009-04-23 15:05:21 +00:00
|
|
|
/* configured pool */
|
2009-05-11 22:25:11 +00:00
|
|
|
GstTaskPool *pool;
|
2009-04-23 15:05:21 +00:00
|
|
|
|
|
|
|
/* remember the pool and id that is currently running. */
|
2009-05-11 22:25:11 +00:00
|
|
|
gpointer id;
|
2009-04-23 15:05:21 +00:00
|
|
|
GstTaskPool *pool_id;
|
2009-05-11 21:19:53 +00:00
|
|
|
};
|
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
static void gst_task_class_init (GstTaskClass * klass);
|
|
|
|
static void gst_task_init (GstTask * task);
|
2005-07-18 12:49:53 +00:00
|
|
|
static void gst_task_finalize (GObject * object);
|
|
|
|
|
2009-04-24 10:35:08 +00:00
|
|
|
static void gst_task_func (GstTask * task);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
static GStaticMutex pool_lock = G_STATIC_MUTEX_INIT;
|
|
|
|
|
2009-04-04 08:20:36 +00:00
|
|
|
#define _do_init \
|
|
|
|
{ \
|
|
|
|
GST_DEBUG_CATEGORY_INIT (task_debug, "task", 0, "Processing tasks"); \
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
|
|
|
|
2009-04-04 08:20:36 +00:00
|
|
|
G_DEFINE_TYPE_WITH_CODE (GstTask, gst_task, GST_TYPE_OBJECT, _do_init);
|
|
|
|
|
2009-05-11 22:25:11 +00:00
|
|
|
static void
|
|
|
|
init_klass_pool (GstTaskClass * klass)
|
|
|
|
{
|
|
|
|
g_static_mutex_lock (&pool_lock);
|
|
|
|
if (klass->pool) {
|
|
|
|
gst_task_pool_cleanup (klass->pool);
|
|
|
|
gst_object_unref (klass->pool);
|
|
|
|
}
|
|
|
|
klass->pool = gst_task_pool_new ();
|
|
|
|
gst_task_pool_prepare (klass->pool, NULL);
|
|
|
|
g_static_mutex_unlock (&pool_lock);
|
|
|
|
}
|
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
static void
|
|
|
|
gst_task_class_init (GstTaskClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
|
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
|
2009-04-20 15:07:50 +00:00
|
|
|
g_type_class_add_private (klass, sizeof (GstTaskPrivate));
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2005-07-18 12:49:53 +00:00
|
|
|
gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_task_finalize);
|
|
|
|
|
2009-05-11 22:25:11 +00:00
|
|
|
init_klass_pool (klass);
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_task_init (GstTask * task)
|
|
|
|
{
|
2009-05-11 22:25:11 +00:00
|
|
|
GstTaskClass *klass;
|
|
|
|
|
|
|
|
klass = GST_TASK_GET_CLASS (task);
|
|
|
|
|
2009-05-11 21:19:53 +00:00
|
|
|
task->priv = GST_TASK_GET_PRIVATE (task);
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
task->running = FALSE;
|
2006-02-13 17:03:23 +00:00
|
|
|
task->abidata.ABI.thread = NULL;
|
gst/: Implement gst_pad_pause/start/stop_task(), take STREAM lock in task function.
Original commit message from CVS:
* gst/base/gstadapter.c: (gst_adapter_peek), (gst_adapter_flush):
* gst/base/gstbasesink.c: (gst_basesink_preroll_queue_push),
(gst_basesink_finish_preroll), (gst_basesink_chain),
(gst_basesink_loop), (gst_basesink_activate),
(gst_basesink_change_state):
* gst/base/gstbasesrc.c: (gst_basesrc_do_seek),
(gst_basesrc_get_range), (gst_basesrc_loop),
(gst_basesrc_activate):
* gst/elements/gsttee.c: (gst_tee_sink_activate):
* gst/gstpad.c: (gst_pad_dispose), (gst_real_pad_class_init),
(gst_real_pad_init), (gst_real_pad_set_property),
(gst_real_pad_get_property), (gst_pad_set_active),
(gst_pad_is_active), (gst_pad_get_query_types), (gst_pad_unlink),
(gst_pad_link_prepare), (gst_pad_link), (gst_pad_get_real_parent),
(gst_real_pad_get_caps_unlocked), (gst_pad_peer_get_caps),
(gst_pad_accept_caps), (gst_pad_get_peer), (gst_pad_realize),
(gst_pad_event_default_dispatch), (gst_pad_event_default),
(gst_pad_dispatcher), (gst_pad_query), (gst_real_pad_dispose),
(gst_pad_save_thyself), (handle_pad_block), (gst_pad_chain),
(gst_pad_push), (gst_pad_get_range), (gst_pad_pull_range),
(gst_pad_send_event), (gst_pad_start_task), (gst_pad_pause_task),
(gst_pad_stop_task):
* gst/gstpad.h:
* gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
(gst_queue_loop), (gst_queue_src_activate):
* gst/gsttask.c: (gst_task_init), (gst_task_set_lock),
(gst_task_get_state):
* gst/gsttask.h:
* gst/schedulers/threadscheduler.c:
(gst_thread_scheduler_task_start), (gst_thread_scheduler_func):
Implement gst_pad_pause/start/stop_task(), take STREAM lock
in task function.
Remove ACTIVE pad flag, use FLUSHING everywhere
Added _pad_chain(), _pad_get_range() to call chain/getrange
functions.
Add locks around IS_FLUSHING when reading.
Take STREAM lock in chain(), get_range() functions so plugins
don't need to take it anymore.
2005-05-25 11:50:11 +00:00
|
|
|
task->lock = NULL;
|
2005-03-21 17:34:02 +00:00
|
|
|
task->cond = g_cond_new ();
|
|
|
|
task->state = GST_TASK_STOPPED;
|
2009-04-21 17:15:48 +00:00
|
|
|
task->priv->prio_set = FALSE;
|
2009-05-11 22:25:11 +00:00
|
|
|
|
|
|
|
/* use the default klass pool for this task, users can
|
|
|
|
* override this later */
|
|
|
|
g_static_mutex_lock (&pool_lock);
|
|
|
|
task->priv->pool = gst_object_ref (klass->pool);
|
2009-04-23 14:53:14 +00:00
|
|
|
g_static_mutex_unlock (&pool_lock);
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-07-18 12:49:53 +00:00
|
|
|
gst_task_finalize (GObject * object)
|
2005-03-21 17:34:02 +00:00
|
|
|
{
|
|
|
|
GstTask *task = GST_TASK (object);
|
2009-04-20 15:19:21 +00:00
|
|
|
GstTaskPrivate *priv = task->priv;
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2005-07-18 12:49:53 +00:00
|
|
|
GST_DEBUG ("task %p finalize", task);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2009-04-20 15:19:21 +00:00
|
|
|
if (priv->thr_notify)
|
|
|
|
priv->thr_notify (priv->thr_user_data);
|
|
|
|
priv->thr_notify = NULL;
|
|
|
|
priv->thr_user_data = NULL;
|
|
|
|
|
2009-04-23 15:05:21 +00:00
|
|
|
gst_object_unref (priv->pool);
|
|
|
|
|
2005-10-21 11:36:32 +00:00
|
|
|
/* task thread cannot be running here since it holds a ref
|
|
|
|
* to the task so that the finalize could not have happened */
|
2005-03-21 17:34:02 +00:00
|
|
|
g_cond_free (task->cond);
|
2005-07-18 12:49:53 +00:00
|
|
|
task->cond = NULL;
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2009-04-20 15:07:50 +00:00
|
|
|
G_OBJECT_CLASS (gst_task_parent_class)->finalize (object);
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
|
|
|
|
2005-07-18 12:49:53 +00:00
|
|
|
static void
|
2009-04-24 10:35:08 +00:00
|
|
|
gst_task_func (GstTask * task)
|
2005-07-18 12:49:53 +00:00
|
|
|
{
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
GStaticRecMutex *lock;
|
2006-02-13 17:03:23 +00:00
|
|
|
GThread *tself;
|
2009-04-20 15:19:21 +00:00
|
|
|
GstTaskPrivate *priv;
|
|
|
|
|
|
|
|
priv = task->priv;
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
|
2006-02-13 17:03:23 +00:00
|
|
|
tself = g_thread_self ();
|
|
|
|
|
|
|
|
GST_DEBUG ("Entering task %p, thread %p", task, tself);
|
2005-07-18 12:49:53 +00:00
|
|
|
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
/* we have to grab the lock to get the mutex. We also
|
|
|
|
* mark our state running so that nobody can mess with
|
|
|
|
* the mutex. */
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (task);
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
if (task->state == GST_TASK_STOPPED)
|
|
|
|
goto exit;
|
|
|
|
lock = GST_TASK_GET_LOCK (task);
|
2006-02-13 17:03:23 +00:00
|
|
|
if (G_UNLIKELY (lock == NULL))
|
|
|
|
goto no_lock;
|
|
|
|
task->abidata.ABI.thread = tself;
|
2009-04-21 17:15:48 +00:00
|
|
|
/* only update the priority when it was changed */
|
|
|
|
if (priv->prio_set)
|
|
|
|
g_thread_set_priority (tself, priv->priority);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (task);
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
|
2009-04-20 15:19:21 +00:00
|
|
|
/* fire the enter_thread callback when we need to */
|
|
|
|
if (priv->thr_callbacks.enter_thread)
|
|
|
|
priv->thr_callbacks.enter_thread (task, tself, priv->thr_user_data);
|
|
|
|
|
2005-07-18 12:49:53 +00:00
|
|
|
/* locking order is TASK_LOCK, LOCK */
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
g_static_rec_mutex_lock (lock);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (task);
|
2005-07-18 12:49:53 +00:00
|
|
|
while (G_LIKELY (task->state != GST_TASK_STOPPED)) {
|
|
|
|
while (G_UNLIKELY (task->state == GST_TASK_PAUSED)) {
|
|
|
|
gint t;
|
|
|
|
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
t = g_static_rec_mutex_unlock_full (lock);
|
2005-07-18 12:49:53 +00:00
|
|
|
if (t <= 0) {
|
|
|
|
g_warning ("wrong STREAM_LOCK count %d", t);
|
|
|
|
}
|
|
|
|
GST_TASK_SIGNAL (task);
|
|
|
|
GST_TASK_WAIT (task);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (task);
|
2005-07-18 12:49:53 +00:00
|
|
|
/* locking order.. */
|
|
|
|
if (t > 0)
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
g_static_rec_mutex_lock_full (lock, t);
|
2005-07-18 12:49:53 +00:00
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (task);
|
2005-10-21 11:36:32 +00:00
|
|
|
if (G_UNLIKELY (task->state == GST_TASK_STOPPED))
|
2005-07-18 12:49:53 +00:00
|
|
|
goto done;
|
|
|
|
}
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (task);
|
2005-07-18 12:49:53 +00:00
|
|
|
|
|
|
|
task->func (task->data);
|
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (task);
|
2005-07-18 12:49:53 +00:00
|
|
|
}
|
|
|
|
done:
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (task);
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
g_static_rec_mutex_unlock (lock);
|
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (task);
|
2006-02-13 17:03:23 +00:00
|
|
|
task->abidata.ABI.thread = NULL;
|
2006-08-23 16:51:19 +00:00
|
|
|
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
exit:
|
2009-04-21 12:42:05 +00:00
|
|
|
if (priv->thr_callbacks.leave_thread) {
|
|
|
|
/* fire the leave_thread callback when we need to. We need to do this before
|
|
|
|
* we signal the task and with the task lock released. */
|
|
|
|
GST_OBJECT_UNLOCK (task);
|
|
|
|
priv->thr_callbacks.leave_thread (task, tself, priv->thr_user_data);
|
|
|
|
GST_OBJECT_LOCK (task);
|
2009-04-21 17:15:48 +00:00
|
|
|
} else {
|
|
|
|
/* restore normal priority when releasing back into the pool, we will not
|
|
|
|
* touch the priority when a custom callback has been installed. */
|
|
|
|
g_thread_set_priority (tself, G_THREAD_PRIORITY_NORMAL);
|
2009-04-21 12:42:05 +00:00
|
|
|
}
|
2009-05-25 09:56:47 +00:00
|
|
|
/* now we allow messing with the lock again by setting the running flag to
|
|
|
|
* FALSE. Together with the SIGNAL this is the sign for the _join() to
|
|
|
|
* complete.
|
|
|
|
* Note that we still have not dropped the final ref on the task. We could
|
|
|
|
* check here if there is a pending join() going on and drop the last ref
|
|
|
|
* before releasing the lock as we can be sure that a ref is held by the
|
|
|
|
* caller of the join(). */
|
|
|
|
task->running = FALSE;
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
GST_TASK_SIGNAL (task);
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (task);
|
2005-07-18 12:49:53 +00:00
|
|
|
|
|
|
|
GST_DEBUG ("Exit task %p, thread %p", task, g_thread_self ());
|
|
|
|
|
|
|
|
gst_object_unref (task);
|
2006-02-13 17:03:23 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
no_lock:
|
|
|
|
{
|
|
|
|
g_warning ("starting task without a lock");
|
|
|
|
goto exit;
|
|
|
|
}
|
2005-07-18 12:49:53 +00:00
|
|
|
}
|
|
|
|
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
/**
|
|
|
|
* gst_task_cleanup_all:
|
|
|
|
*
|
|
|
|
* Wait for all tasks to be stopped. This is mainly used internally
|
2008-05-26 10:07:09 +00:00
|
|
|
* to ensure proper cleanup of internal data structures in test suites.
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_task_cleanup_all (void)
|
|
|
|
{
|
|
|
|
GstTaskClass *klass;
|
|
|
|
|
|
|
|
if ((klass = g_type_class_peek (GST_TYPE_TASK))) {
|
2009-05-11 22:25:11 +00:00
|
|
|
init_klass_pool (klass);
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
/**
|
|
|
|
* gst_task_create:
|
|
|
|
* @func: The #GstTaskFunction to use
|
|
|
|
* @data: User data to pass to @func
|
|
|
|
*
|
2008-05-26 10:07:09 +00:00
|
|
|
* Create a new Task that will repeatedly call the provided @func
|
2005-03-21 17:34:02 +00:00
|
|
|
* with @data as a parameter. Typically the task will run in
|
|
|
|
* a new thread.
|
|
|
|
*
|
2006-08-23 16:51:19 +00:00
|
|
|
* The function cannot be changed after the task has been created. You
|
2008-05-26 10:07:09 +00:00
|
|
|
* must create a new #GstTask to change the function.
|
2006-08-23 16:51:19 +00:00
|
|
|
*
|
2009-05-11 21:19:53 +00:00
|
|
|
* This function will not yet create and start a thread. Use gst_task_start() or
|
|
|
|
* gst_task_pause() to create and start the GThread.
|
|
|
|
*
|
|
|
|
* Before the task can be used, a #GStaticRecMutex must be configured using the
|
|
|
|
* gst_task_set_lock() function. This lock will always be acquired while
|
|
|
|
* @func is called.
|
|
|
|
*
|
2005-03-21 17:34:02 +00:00
|
|
|
* Returns: A new #GstTask.
|
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
GstTask *
|
|
|
|
gst_task_create (GstTaskFunction func, gpointer data)
|
|
|
|
{
|
2005-07-18 12:49:53 +00:00
|
|
|
GstTask *task;
|
|
|
|
|
|
|
|
task = g_object_new (GST_TYPE_TASK, NULL);
|
|
|
|
task->func = func;
|
|
|
|
task->data = data;
|
|
|
|
|
|
|
|
GST_DEBUG ("Created task %p", task);
|
|
|
|
|
|
|
|
return task;
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
|
|
|
|
gst/: Implement gst_pad_pause/start/stop_task(), take STREAM lock in task function.
Original commit message from CVS:
* gst/base/gstadapter.c: (gst_adapter_peek), (gst_adapter_flush):
* gst/base/gstbasesink.c: (gst_basesink_preroll_queue_push),
(gst_basesink_finish_preroll), (gst_basesink_chain),
(gst_basesink_loop), (gst_basesink_activate),
(gst_basesink_change_state):
* gst/base/gstbasesrc.c: (gst_basesrc_do_seek),
(gst_basesrc_get_range), (gst_basesrc_loop),
(gst_basesrc_activate):
* gst/elements/gsttee.c: (gst_tee_sink_activate):
* gst/gstpad.c: (gst_pad_dispose), (gst_real_pad_class_init),
(gst_real_pad_init), (gst_real_pad_set_property),
(gst_real_pad_get_property), (gst_pad_set_active),
(gst_pad_is_active), (gst_pad_get_query_types), (gst_pad_unlink),
(gst_pad_link_prepare), (gst_pad_link), (gst_pad_get_real_parent),
(gst_real_pad_get_caps_unlocked), (gst_pad_peer_get_caps),
(gst_pad_accept_caps), (gst_pad_get_peer), (gst_pad_realize),
(gst_pad_event_default_dispatch), (gst_pad_event_default),
(gst_pad_dispatcher), (gst_pad_query), (gst_real_pad_dispose),
(gst_pad_save_thyself), (handle_pad_block), (gst_pad_chain),
(gst_pad_push), (gst_pad_get_range), (gst_pad_pull_range),
(gst_pad_send_event), (gst_pad_start_task), (gst_pad_pause_task),
(gst_pad_stop_task):
* gst/gstpad.h:
* gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
(gst_queue_loop), (gst_queue_src_activate):
* gst/gsttask.c: (gst_task_init), (gst_task_set_lock),
(gst_task_get_state):
* gst/gsttask.h:
* gst/schedulers/threadscheduler.c:
(gst_thread_scheduler_task_start), (gst_thread_scheduler_func):
Implement gst_pad_pause/start/stop_task(), take STREAM lock
in task function.
Remove ACTIVE pad flag, use FLUSHING everywhere
Added _pad_chain(), _pad_get_range() to call chain/getrange
functions.
Add locks around IS_FLUSHING when reading.
Take STREAM lock in chain(), get_range() functions so plugins
don't need to take it anymore.
2005-05-25 11:50:11 +00:00
|
|
|
/**
|
|
|
|
* gst_task_set_lock:
|
|
|
|
* @task: The #GstTask to use
|
2008-05-26 10:07:09 +00:00
|
|
|
* @mutex: The #GMutex to use
|
gst/: Implement gst_pad_pause/start/stop_task(), take STREAM lock in task function.
Original commit message from CVS:
* gst/base/gstadapter.c: (gst_adapter_peek), (gst_adapter_flush):
* gst/base/gstbasesink.c: (gst_basesink_preroll_queue_push),
(gst_basesink_finish_preroll), (gst_basesink_chain),
(gst_basesink_loop), (gst_basesink_activate),
(gst_basesink_change_state):
* gst/base/gstbasesrc.c: (gst_basesrc_do_seek),
(gst_basesrc_get_range), (gst_basesrc_loop),
(gst_basesrc_activate):
* gst/elements/gsttee.c: (gst_tee_sink_activate):
* gst/gstpad.c: (gst_pad_dispose), (gst_real_pad_class_init),
(gst_real_pad_init), (gst_real_pad_set_property),
(gst_real_pad_get_property), (gst_pad_set_active),
(gst_pad_is_active), (gst_pad_get_query_types), (gst_pad_unlink),
(gst_pad_link_prepare), (gst_pad_link), (gst_pad_get_real_parent),
(gst_real_pad_get_caps_unlocked), (gst_pad_peer_get_caps),
(gst_pad_accept_caps), (gst_pad_get_peer), (gst_pad_realize),
(gst_pad_event_default_dispatch), (gst_pad_event_default),
(gst_pad_dispatcher), (gst_pad_query), (gst_real_pad_dispose),
(gst_pad_save_thyself), (handle_pad_block), (gst_pad_chain),
(gst_pad_push), (gst_pad_get_range), (gst_pad_pull_range),
(gst_pad_send_event), (gst_pad_start_task), (gst_pad_pause_task),
(gst_pad_stop_task):
* gst/gstpad.h:
* gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
(gst_queue_loop), (gst_queue_src_activate):
* gst/gsttask.c: (gst_task_init), (gst_task_set_lock),
(gst_task_get_state):
* gst/gsttask.h:
* gst/schedulers/threadscheduler.c:
(gst_thread_scheduler_task_start), (gst_thread_scheduler_func):
Implement gst_pad_pause/start/stop_task(), take STREAM lock
in task function.
Remove ACTIVE pad flag, use FLUSHING everywhere
Added _pad_chain(), _pad_get_range() to call chain/getrange
functions.
Add locks around IS_FLUSHING when reading.
Take STREAM lock in chain(), get_range() functions so plugins
don't need to take it anymore.
2005-05-25 11:50:11 +00:00
|
|
|
*
|
2005-10-21 11:36:32 +00:00
|
|
|
* Set the mutex used by the task. The mutex will be acquired before
|
|
|
|
* calling the #GstTaskFunction.
|
gst/: Implement gst_pad_pause/start/stop_task(), take STREAM lock in task function.
Original commit message from CVS:
* gst/base/gstadapter.c: (gst_adapter_peek), (gst_adapter_flush):
* gst/base/gstbasesink.c: (gst_basesink_preroll_queue_push),
(gst_basesink_finish_preroll), (gst_basesink_chain),
(gst_basesink_loop), (gst_basesink_activate),
(gst_basesink_change_state):
* gst/base/gstbasesrc.c: (gst_basesrc_do_seek),
(gst_basesrc_get_range), (gst_basesrc_loop),
(gst_basesrc_activate):
* gst/elements/gsttee.c: (gst_tee_sink_activate):
* gst/gstpad.c: (gst_pad_dispose), (gst_real_pad_class_init),
(gst_real_pad_init), (gst_real_pad_set_property),
(gst_real_pad_get_property), (gst_pad_set_active),
(gst_pad_is_active), (gst_pad_get_query_types), (gst_pad_unlink),
(gst_pad_link_prepare), (gst_pad_link), (gst_pad_get_real_parent),
(gst_real_pad_get_caps_unlocked), (gst_pad_peer_get_caps),
(gst_pad_accept_caps), (gst_pad_get_peer), (gst_pad_realize),
(gst_pad_event_default_dispatch), (gst_pad_event_default),
(gst_pad_dispatcher), (gst_pad_query), (gst_real_pad_dispose),
(gst_pad_save_thyself), (handle_pad_block), (gst_pad_chain),
(gst_pad_push), (gst_pad_get_range), (gst_pad_pull_range),
(gst_pad_send_event), (gst_pad_start_task), (gst_pad_pause_task),
(gst_pad_stop_task):
* gst/gstpad.h:
* gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
(gst_queue_loop), (gst_queue_src_activate):
* gst/gsttask.c: (gst_task_init), (gst_task_set_lock),
(gst_task_get_state):
* gst/gsttask.h:
* gst/schedulers/threadscheduler.c:
(gst_thread_scheduler_task_start), (gst_thread_scheduler_func):
Implement gst_pad_pause/start/stop_task(), take STREAM lock
in task function.
Remove ACTIVE pad flag, use FLUSHING everywhere
Added _pad_chain(), _pad_get_range() to call chain/getrange
functions.
Add locks around IS_FLUSHING when reading.
Take STREAM lock in chain(), get_range() functions so plugins
don't need to take it anymore.
2005-05-25 11:50:11 +00:00
|
|
|
*
|
2006-02-13 17:03:23 +00:00
|
|
|
* This function has to be called before calling gst_task_pause() or
|
|
|
|
* gst_task_start().
|
|
|
|
*
|
gst/: Implement gst_pad_pause/start/stop_task(), take STREAM lock in task function.
Original commit message from CVS:
* gst/base/gstadapter.c: (gst_adapter_peek), (gst_adapter_flush):
* gst/base/gstbasesink.c: (gst_basesink_preroll_queue_push),
(gst_basesink_finish_preroll), (gst_basesink_chain),
(gst_basesink_loop), (gst_basesink_activate),
(gst_basesink_change_state):
* gst/base/gstbasesrc.c: (gst_basesrc_do_seek),
(gst_basesrc_get_range), (gst_basesrc_loop),
(gst_basesrc_activate):
* gst/elements/gsttee.c: (gst_tee_sink_activate):
* gst/gstpad.c: (gst_pad_dispose), (gst_real_pad_class_init),
(gst_real_pad_init), (gst_real_pad_set_property),
(gst_real_pad_get_property), (gst_pad_set_active),
(gst_pad_is_active), (gst_pad_get_query_types), (gst_pad_unlink),
(gst_pad_link_prepare), (gst_pad_link), (gst_pad_get_real_parent),
(gst_real_pad_get_caps_unlocked), (gst_pad_peer_get_caps),
(gst_pad_accept_caps), (gst_pad_get_peer), (gst_pad_realize),
(gst_pad_event_default_dispatch), (gst_pad_event_default),
(gst_pad_dispatcher), (gst_pad_query), (gst_real_pad_dispose),
(gst_pad_save_thyself), (handle_pad_block), (gst_pad_chain),
(gst_pad_push), (gst_pad_get_range), (gst_pad_pull_range),
(gst_pad_send_event), (gst_pad_start_task), (gst_pad_pause_task),
(gst_pad_stop_task):
* gst/gstpad.h:
* gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
(gst_queue_loop), (gst_queue_src_activate):
* gst/gsttask.c: (gst_task_init), (gst_task_set_lock),
(gst_task_get_state):
* gst/gsttask.h:
* gst/schedulers/threadscheduler.c:
(gst_thread_scheduler_task_start), (gst_thread_scheduler_func):
Implement gst_pad_pause/start/stop_task(), take STREAM lock
in task function.
Remove ACTIVE pad flag, use FLUSHING everywhere
Added _pad_chain(), _pad_get_range() to call chain/getrange
functions.
Add locks around IS_FLUSHING when reading.
Take STREAM lock in chain(), get_range() functions so plugins
don't need to take it anymore.
2005-05-25 11:50:11 +00:00
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_task_set_lock (GstTask * task, GStaticRecMutex * mutex)
|
|
|
|
{
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (task);
|
2006-08-23 16:51:19 +00:00
|
|
|
if (G_UNLIKELY (task->running))
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
goto is_running;
|
|
|
|
GST_TASK_GET_LOCK (task) = mutex;
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (task);
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
is_running:
|
|
|
|
{
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (task);
|
2006-02-13 17:03:23 +00:00
|
|
|
g_warning ("cannot call set_lock on a running task");
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
}
|
gst/: Implement gst_pad_pause/start/stop_task(), take STREAM lock in task function.
Original commit message from CVS:
* gst/base/gstadapter.c: (gst_adapter_peek), (gst_adapter_flush):
* gst/base/gstbasesink.c: (gst_basesink_preroll_queue_push),
(gst_basesink_finish_preroll), (gst_basesink_chain),
(gst_basesink_loop), (gst_basesink_activate),
(gst_basesink_change_state):
* gst/base/gstbasesrc.c: (gst_basesrc_do_seek),
(gst_basesrc_get_range), (gst_basesrc_loop),
(gst_basesrc_activate):
* gst/elements/gsttee.c: (gst_tee_sink_activate):
* gst/gstpad.c: (gst_pad_dispose), (gst_real_pad_class_init),
(gst_real_pad_init), (gst_real_pad_set_property),
(gst_real_pad_get_property), (gst_pad_set_active),
(gst_pad_is_active), (gst_pad_get_query_types), (gst_pad_unlink),
(gst_pad_link_prepare), (gst_pad_link), (gst_pad_get_real_parent),
(gst_real_pad_get_caps_unlocked), (gst_pad_peer_get_caps),
(gst_pad_accept_caps), (gst_pad_get_peer), (gst_pad_realize),
(gst_pad_event_default_dispatch), (gst_pad_event_default),
(gst_pad_dispatcher), (gst_pad_query), (gst_real_pad_dispose),
(gst_pad_save_thyself), (handle_pad_block), (gst_pad_chain),
(gst_pad_push), (gst_pad_get_range), (gst_pad_pull_range),
(gst_pad_send_event), (gst_pad_start_task), (gst_pad_pause_task),
(gst_pad_stop_task):
* gst/gstpad.h:
* gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
(gst_queue_loop), (gst_queue_src_activate):
* gst/gsttask.c: (gst_task_init), (gst_task_set_lock),
(gst_task_get_state):
* gst/gsttask.h:
* gst/schedulers/threadscheduler.c:
(gst_thread_scheduler_task_start), (gst_thread_scheduler_func):
Implement gst_pad_pause/start/stop_task(), take STREAM lock
in task function.
Remove ACTIVE pad flag, use FLUSHING everywhere
Added _pad_chain(), _pad_get_range() to call chain/getrange
functions.
Add locks around IS_FLUSHING when reading.
Take STREAM lock in chain(), get_range() functions so plugins
don't need to take it anymore.
2005-05-25 11:50:11 +00:00
|
|
|
}
|
|
|
|
|
2009-04-21 17:15:48 +00:00
|
|
|
/**
|
|
|
|
* gst_task_set_priority:
|
|
|
|
* @task: a #GstTask
|
|
|
|
* @priority: a new priority for @task
|
|
|
|
*
|
|
|
|
* Changes the priority of @task to @priority.
|
|
|
|
*
|
|
|
|
* Note: try not to depend on task priorities.
|
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Since: 0.10.24
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_task_set_priority (GstTask * task, GThreadPriority priority)
|
|
|
|
{
|
|
|
|
GstTaskPrivate *priv;
|
|
|
|
GThread *thread;
|
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_TASK (task));
|
|
|
|
|
|
|
|
priv = task->priv;
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (task);
|
|
|
|
priv->prio_set = TRUE;
|
|
|
|
priv->priority = priority;
|
|
|
|
thread = task->abidata.ABI.thread;
|
|
|
|
if (thread != NULL) {
|
|
|
|
/* if this task already has a thread, we can configure the priority right
|
|
|
|
* away, else we do that when we assign a thread to the task. */
|
|
|
|
g_thread_set_priority (thread, priority);
|
|
|
|
}
|
|
|
|
GST_OBJECT_UNLOCK (task);
|
|
|
|
}
|
|
|
|
|
2009-04-23 15:19:11 +00:00
|
|
|
/**
|
|
|
|
* gst_task_get_pool:
|
|
|
|
* @task: a #GstTask
|
|
|
|
*
|
|
|
|
* Get the #GstTaskPool that this task will use for its streaming
|
|
|
|
* threads.
|
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Returns: the #GstTaskPool used by @task. gst_object_unref()
|
|
|
|
* after usage.
|
|
|
|
*
|
|
|
|
* Since: 0.10.24
|
|
|
|
*/
|
|
|
|
GstTaskPool *
|
|
|
|
gst_task_get_pool (GstTask * task)
|
|
|
|
{
|
|
|
|
GstTaskPool *result;
|
|
|
|
GstTaskPrivate *priv;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_TASK (task), NULL);
|
|
|
|
|
|
|
|
priv = task->priv;
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (task);
|
|
|
|
result = gst_object_ref (priv->pool);
|
|
|
|
GST_OBJECT_UNLOCK (task);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_task_set_pool:
|
|
|
|
* @task: a #GstTask
|
|
|
|
* @pool: a #GstTaskPool
|
|
|
|
*
|
|
|
|
* Set @pool as the new GstTaskPool for @task. Any new streaming threads that
|
|
|
|
* will be created by @task will now use @pool.
|
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Since: 0.10.24
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_task_set_pool (GstTask * task, GstTaskPool * pool)
|
|
|
|
{
|
|
|
|
GstTaskPool *old;
|
|
|
|
GstTaskPrivate *priv;
|
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_TASK (task));
|
|
|
|
g_return_if_fail (GST_IS_TASK_POOL (pool));
|
|
|
|
|
|
|
|
priv = task->priv;
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (task);
|
|
|
|
if (priv->pool != pool) {
|
|
|
|
old = priv->pool;
|
|
|
|
priv->pool = gst_object_ref (pool);
|
|
|
|
} else
|
|
|
|
old = NULL;
|
|
|
|
GST_OBJECT_UNLOCK (task);
|
|
|
|
|
|
|
|
if (old)
|
|
|
|
gst_object_unref (old);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-11 21:19:53 +00:00
|
|
|
/**
|
2009-05-11 22:05:12 +00:00
|
|
|
* gst_task_set_thread_callbacks:
|
2009-05-11 21:19:53 +00:00
|
|
|
* @task: The #GstTask to use
|
|
|
|
* @callbacks: a #GstTaskThreadCallbacks pointer
|
|
|
|
* @user_data: user data passed to the callbacks
|
|
|
|
* @notify: called when @user_data is no longer referenced
|
|
|
|
*
|
|
|
|
* Set callbacks which will be executed when a new thread is needed, the thread
|
|
|
|
* function is entered and left and when the thread is joined.
|
|
|
|
*
|
|
|
|
* By default a thread for @task will be created from a default thread pool.
|
2009-05-11 22:05:12 +00:00
|
|
|
*
|
|
|
|
* Objects can use custom GThreads or can perform additional configuration of
|
|
|
|
* the threads (such as changing the thread priority) by installing callbacks.
|
2009-05-11 21:19:53 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
2009-05-22 08:33:02 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.24
|
2009-05-11 21:19:53 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_task_set_thread_callbacks (GstTask * task,
|
|
|
|
GstTaskThreadCallbacks * callbacks, gpointer user_data,
|
|
|
|
GDestroyNotify notify)
|
|
|
|
{
|
|
|
|
GDestroyNotify old_notify;
|
|
|
|
|
|
|
|
g_return_if_fail (task != NULL);
|
|
|
|
g_return_if_fail (GST_IS_TASK (task));
|
|
|
|
g_return_if_fail (callbacks != NULL);
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (task);
|
|
|
|
old_notify = task->priv->thr_notify;
|
|
|
|
|
|
|
|
if (old_notify) {
|
|
|
|
gpointer old_data;
|
|
|
|
|
|
|
|
old_data = task->priv->thr_user_data;
|
|
|
|
|
|
|
|
task->priv->thr_user_data = NULL;
|
|
|
|
task->priv->thr_notify = NULL;
|
|
|
|
GST_OBJECT_UNLOCK (task);
|
|
|
|
|
|
|
|
old_notify (old_data);
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (task);
|
|
|
|
}
|
|
|
|
task->priv->thr_callbacks = *callbacks;
|
|
|
|
task->priv->thr_user_data = user_data;
|
|
|
|
task->priv->thr_notify = notify;
|
|
|
|
GST_OBJECT_UNLOCK (task);
|
|
|
|
}
|
gst/: Implement gst_pad_pause/start/stop_task(), take STREAM lock in task function.
Original commit message from CVS:
* gst/base/gstadapter.c: (gst_adapter_peek), (gst_adapter_flush):
* gst/base/gstbasesink.c: (gst_basesink_preroll_queue_push),
(gst_basesink_finish_preroll), (gst_basesink_chain),
(gst_basesink_loop), (gst_basesink_activate),
(gst_basesink_change_state):
* gst/base/gstbasesrc.c: (gst_basesrc_do_seek),
(gst_basesrc_get_range), (gst_basesrc_loop),
(gst_basesrc_activate):
* gst/elements/gsttee.c: (gst_tee_sink_activate):
* gst/gstpad.c: (gst_pad_dispose), (gst_real_pad_class_init),
(gst_real_pad_init), (gst_real_pad_set_property),
(gst_real_pad_get_property), (gst_pad_set_active),
(gst_pad_is_active), (gst_pad_get_query_types), (gst_pad_unlink),
(gst_pad_link_prepare), (gst_pad_link), (gst_pad_get_real_parent),
(gst_real_pad_get_caps_unlocked), (gst_pad_peer_get_caps),
(gst_pad_accept_caps), (gst_pad_get_peer), (gst_pad_realize),
(gst_pad_event_default_dispatch), (gst_pad_event_default),
(gst_pad_dispatcher), (gst_pad_query), (gst_real_pad_dispose),
(gst_pad_save_thyself), (handle_pad_block), (gst_pad_chain),
(gst_pad_push), (gst_pad_get_range), (gst_pad_pull_range),
(gst_pad_send_event), (gst_pad_start_task), (gst_pad_pause_task),
(gst_pad_stop_task):
* gst/gstpad.h:
* gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
(gst_queue_loop), (gst_queue_src_activate):
* gst/gsttask.c: (gst_task_init), (gst_task_set_lock),
(gst_task_get_state):
* gst/gsttask.h:
* gst/schedulers/threadscheduler.c:
(gst_thread_scheduler_task_start), (gst_thread_scheduler_func):
Implement gst_pad_pause/start/stop_task(), take STREAM lock
in task function.
Remove ACTIVE pad flag, use FLUSHING everywhere
Added _pad_chain(), _pad_get_range() to call chain/getrange
functions.
Add locks around IS_FLUSHING when reading.
Take STREAM lock in chain(), get_range() functions so plugins
don't need to take it anymore.
2005-05-25 11:50:11 +00:00
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
/**
|
|
|
|
* gst_task_get_state:
|
|
|
|
* @task: The #GstTask to query
|
|
|
|
*
|
|
|
|
* Get the current state of the task.
|
|
|
|
*
|
|
|
|
* Returns: The #GstTaskState of the task
|
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
GstTaskState
|
|
|
|
gst_task_get_state (GstTask * task)
|
|
|
|
{
|
|
|
|
GstTaskState result;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_TASK (task), GST_TASK_STOPPED);
|
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (task);
|
2005-03-21 17:34:02 +00:00
|
|
|
result = task->state;
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (task);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-05-11 20:59:35 +00:00
|
|
|
/* make sure the task is running and start a thread if it's not.
|
|
|
|
* This function must be called with the task LOCK. */
|
|
|
|
static gboolean
|
|
|
|
start_task (GstTask * task)
|
|
|
|
{
|
|
|
|
gboolean res = TRUE;
|
|
|
|
GError *error = NULL;
|
2009-05-11 22:34:44 +00:00
|
|
|
GstTaskPrivate *priv;
|
|
|
|
|
|
|
|
priv = task->priv;
|
2009-05-11 20:59:35 +00:00
|
|
|
|
|
|
|
/* new task, We ref before so that it remains alive while
|
|
|
|
* the thread is running. */
|
|
|
|
gst_object_ref (task);
|
|
|
|
/* mark task as running so that a join will wait until we schedule
|
|
|
|
* and exit the task function. */
|
|
|
|
task->running = TRUE;
|
|
|
|
|
2009-04-23 15:05:21 +00:00
|
|
|
/* push on the thread pool, we remember the original pool because the user
|
|
|
|
* could change it later on and then we join to the wrong pool. */
|
|
|
|
priv->pool_id = gst_object_ref (priv->pool);
|
2009-04-24 10:35:08 +00:00
|
|
|
priv->id =
|
|
|
|
gst_task_pool_push (priv->pool_id, (GstTaskPoolFunction) gst_task_func,
|
|
|
|
task, &error);
|
2009-05-11 20:59:35 +00:00
|
|
|
|
|
|
|
if (error != NULL) {
|
|
|
|
g_warning ("failed to create thread: %s", error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
res = FALSE;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
/**
|
2009-05-11 20:59:35 +00:00
|
|
|
* gst_task_set_state:
|
|
|
|
* @task: a #GstTask
|
|
|
|
* @state: the new task state
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
2009-05-11 20:59:35 +00:00
|
|
|
* Sets the state of @task to @state.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
2009-05-11 20:59:35 +00:00
|
|
|
* The @task must have a lock associated with it using
|
|
|
|
* gst_task_set_lock() when going to GST_TASK_STARTED or GST_TASK_PAUSED or
|
|
|
|
* this function will return %FALSE.
|
|
|
|
*
|
2005-03-21 17:34:02 +00:00
|
|
|
* MT safe.
|
2009-05-22 08:33:02 +00:00
|
|
|
*
|
2009-05-22 09:24:22 +00:00
|
|
|
* Returns: %TRUE if the state could be changed.
|
|
|
|
*
|
2009-05-22 08:33:02 +00:00
|
|
|
* Since: 0.10.24
|
2005-03-21 17:34:02 +00:00
|
|
|
*/
|
|
|
|
gboolean
|
2009-05-11 20:59:35 +00:00
|
|
|
gst_task_set_state (GstTask * task, GstTaskState state)
|
2005-03-21 17:34:02 +00:00
|
|
|
{
|
2005-07-18 12:49:53 +00:00
|
|
|
GstTaskState old;
|
2009-05-11 20:59:35 +00:00
|
|
|
gboolean res = TRUE;
|
2005-03-21 17:34:02 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_TASK (task), FALSE);
|
|
|
|
|
2009-05-11 20:59:35 +00:00
|
|
|
GST_DEBUG_OBJECT (task, "Changing task %p to state %d", task, state);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (task);
|
2009-05-11 20:59:35 +00:00
|
|
|
if (state != GST_TASK_STOPPED)
|
|
|
|
if (G_UNLIKELY (GST_TASK_GET_LOCK (task) == NULL))
|
|
|
|
goto no_lock;
|
2005-07-18 12:49:53 +00:00
|
|
|
|
2009-05-11 20:59:35 +00:00
|
|
|
/* if the state changed, do our thing */
|
2005-07-18 12:49:53 +00:00
|
|
|
old = task->state;
|
2009-05-11 20:59:35 +00:00
|
|
|
if (old != state) {
|
|
|
|
task->state = state;
|
|
|
|
switch (old) {
|
|
|
|
case GST_TASK_STOPPED:
|
|
|
|
/* If the task already has a thread scheduled we don't have to do
|
|
|
|
* anything. */
|
|
|
|
if (G_UNLIKELY (!task->running))
|
|
|
|
res = start_task (task);
|
|
|
|
break;
|
|
|
|
case GST_TASK_PAUSED:
|
|
|
|
/* when we are paused, signal to go to the new state */
|
|
|
|
GST_TASK_SIGNAL (task);
|
|
|
|
break;
|
|
|
|
case GST_TASK_STARTED:
|
|
|
|
/* if we were started, we'll go to the new state after the next
|
|
|
|
* iteration. */
|
2006-08-23 16:51:19 +00:00
|
|
|
break;
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
}
|
2005-07-18 12:49:53 +00:00
|
|
|
}
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (task);
|
2005-07-18 12:49:53 +00:00
|
|
|
|
2009-05-11 20:59:35 +00:00
|
|
|
return res;
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
no_lock:
|
|
|
|
{
|
2009-05-11 20:59:35 +00:00
|
|
|
GST_WARNING_OBJECT (task, "state %d set on task without a lock", state);
|
2006-02-13 17:03:23 +00:00
|
|
|
GST_OBJECT_UNLOCK (task);
|
2009-05-11 20:59:35 +00:00
|
|
|
g_warning ("task without a lock can't be set to state %d", state);
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
|
|
|
|
2009-05-11 20:59:35 +00:00
|
|
|
/**
|
|
|
|
* gst_task_start:
|
|
|
|
* @task: The #GstTask to start
|
|
|
|
*
|
|
|
|
* Starts @task. The @task must have a lock associated with it using
|
|
|
|
* gst_task_set_lock() or this function will return %FALSE.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the task could be started.
|
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_task_start (GstTask * task)
|
|
|
|
{
|
|
|
|
return gst_task_set_state (task, GST_TASK_STARTED);
|
|
|
|
}
|
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
/**
|
|
|
|
* gst_task_stop:
|
|
|
|
* @task: The #GstTask to stop
|
|
|
|
*
|
2005-10-21 11:36:32 +00:00
|
|
|
* Stops @task. This method merely schedules the task to stop and
|
|
|
|
* will not wait for the task to have completely stopped. Use
|
2005-11-09 16:32:49 +00:00
|
|
|
* gst_task_join() to stop and wait for completion.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
2008-05-26 10:07:09 +00:00
|
|
|
* Returns: %TRUE if the task could be stopped.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_task_stop (GstTask * task)
|
|
|
|
{
|
2009-05-11 20:59:35 +00:00
|
|
|
return gst_task_set_state (task, GST_TASK_STOPPED);
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_task_pause:
|
|
|
|
* @task: The #GstTask to pause
|
|
|
|
*
|
2005-10-21 11:36:32 +00:00
|
|
|
* Pauses @task. This method can also be called on a task in the
|
|
|
|
* stopped state, in which case a thread will be started and will remain
|
|
|
|
* in the paused state. This function does not wait for the task to complete
|
|
|
|
* the paused state.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
2008-05-26 10:07:09 +00:00
|
|
|
* Returns: %TRUE if the task could be paused.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_task_pause (GstTask * task)
|
|
|
|
{
|
2009-05-11 20:59:35 +00:00
|
|
|
return gst_task_set_state (task, GST_TASK_PAUSED);
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_task_join:
|
|
|
|
* @task: The #GstTask to join
|
|
|
|
*
|
|
|
|
* Joins @task. After this call, it is safe to unref the task
|
2005-11-09 16:32:49 +00:00
|
|
|
* and clean up the lock set with gst_task_set_lock().
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
*
|
|
|
|
* The task will automatically be stopped with this call.
|
|
|
|
*
|
2005-10-21 11:36:32 +00:00
|
|
|
* This function cannot be called from within a task function as this
|
2006-08-23 16:51:19 +00:00
|
|
|
* would cause a deadlock. The function will detect this and print a
|
|
|
|
* g_warning.
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
*
|
2008-05-26 10:07:09 +00:00
|
|
|
* Returns: %TRUE if the task could be joined.
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_task_join (GstTask * task)
|
|
|
|
{
|
2009-05-11 22:34:44 +00:00
|
|
|
GThread *tself;
|
2009-05-11 22:25:11 +00:00
|
|
|
GstTaskPrivate *priv;
|
|
|
|
gpointer id;
|
|
|
|
GstTaskPool *pool = NULL;
|
|
|
|
|
|
|
|
priv = task->priv;
|
2006-02-13 17:03:23 +00:00
|
|
|
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
g_return_val_if_fail (GST_IS_TASK (task), FALSE);
|
|
|
|
|
2006-02-13 17:03:23 +00:00
|
|
|
tself = g_thread_self ();
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (task, "Joining task %p, thread %p", task, tself);
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
|
2006-08-14 07:35:09 +00:00
|
|
|
/* we don't use a real thread join here because we are using
|
2008-05-26 10:07:09 +00:00
|
|
|
* thread pools */
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_LOCK (task);
|
2006-08-23 16:51:19 +00:00
|
|
|
if (G_UNLIKELY (tself == task->abidata.ABI.thread))
|
2006-02-13 17:03:23 +00:00
|
|
|
goto joining_self;
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
task->state = GST_TASK_STOPPED;
|
2006-08-23 16:51:19 +00:00
|
|
|
/* signal the state change for when it was blocked in PAUSED. */
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
GST_TASK_SIGNAL (task);
|
2008-05-26 10:07:09 +00:00
|
|
|
/* we set the running flag when pushing the task on the thread pool.
|
2006-08-23 16:51:19 +00:00
|
|
|
* This means that the task function might not be called when we try
|
|
|
|
* to join it here. */
|
|
|
|
while (G_LIKELY (task->running))
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
GST_TASK_WAIT (task);
|
2009-05-11 22:25:11 +00:00
|
|
|
/* clean the thread */
|
|
|
|
task->abidata.ABI.thread = NULL;
|
|
|
|
/* get the id and pool to join */
|
2009-07-20 13:44:36 +00:00
|
|
|
pool = priv->pool_id;
|
|
|
|
id = priv->id;
|
|
|
|
priv->pool_id = NULL;
|
|
|
|
priv->id = NULL;
|
2005-11-21 16:34:26 +00:00
|
|
|
GST_OBJECT_UNLOCK (task);
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
|
2009-05-11 22:25:11 +00:00
|
|
|
if (pool) {
|
2009-07-20 13:44:36 +00:00
|
|
|
if (id)
|
|
|
|
gst_task_pool_join (pool, id);
|
2009-05-11 22:25:11 +00:00
|
|
|
gst_object_unref (pool);
|
|
|
|
}
|
|
|
|
|
2005-11-12 10:03:08 +00:00
|
|
|
GST_DEBUG_OBJECT (task, "Joined task %p", task);
|
|
|
|
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
return TRUE;
|
2006-02-13 17:03:23 +00:00
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
joining_self:
|
|
|
|
{
|
|
|
|
GST_WARNING_OBJECT (task, "trying to join task from its thread");
|
|
|
|
GST_OBJECT_UNLOCK (task);
|
2006-08-23 16:51:19 +00:00
|
|
|
g_warning ("\nTrying to join task %p from its thread would deadlock.\n"
|
|
|
|
"You cannot change the state of an element from its streaming\n"
|
|
|
|
"thread. Use g_idle_add() or post a GstMessage on the bus to\n"
|
|
|
|
"schedule the state change from the main thread.\n", task);
|
2006-02-13 17:03:23 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
check/generic/states.c: Make sure all tasks are stopped.
Original commit message from CVS:
* check/generic/states.c: (GST_START_TEST):
Make sure all tasks are stopped.
* check/gst/gstbin.c: (GST_START_TEST):
Unref after usage for proper valgrinding.
* gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
Really wait for the task to stop before destroying the
mutex.
* gst/gstqueue.c: (gst_queue_sink_activate_push),
(gst_queue_src_activate_push):
Small cleanups. Don't stop the task when we did not start
it.
* gst/gsttask.c: (gst_task_get_type), (gst_task_init),
(gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
(gst_task_get_state), (gst_task_start), (gst_task_pause),
(gst_task_join):
* gst/gsttask.h:
Protect the stream lock with the object lock.
Disallow setting the stream lock when running.
Add cleanup_all to wait for the threadpool to finish.
Remove code to autoallocate a mutex if none was provided.
Add _join() to wait for a task to stop.
Protect the thread pool with a global lock.
2005-08-24 20:49:53 +00:00
|
|
|
}
|