task: guard against NULL task function
[platform/upstream/gstreamer.git] / gst / gsttask.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2005 Wim Taymans <wim@fluendo.com>
4  *
5  * gsttask.c: Streaming tasks
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 /**
24  * SECTION:gsttask
25  * @short_description: Abstraction of GStreamer streaming threads.
26  * @see_also: #GstElement, #GstPad
27  *
28  * #GstTask is used by #GstElement and #GstPad to provide the data passing
29  * threads in a #GstPipeline.
30  *
31  * A #GstPad will typically start a #GstTask to push or pull data to/from the
32  * peer pads. Most source elements start a #GstTask to push data. In some cases
33  * a demuxer element can start a #GstTask to pull data from a peer element. This
34  * is typically done when the demuxer can perform random access on the upstream
35  * peer element for improved performance.
36  *
37  * Although convenience functions exist on #GstPad to start/pause/stop tasks, it
38  * might sometimes be needed to create a #GstTask manually if it is not related to
39  * a #GstPad.
40  *
41  * Before the #GstTask can be run, it needs a #GRecMutex that can be set with
42  * gst_task_set_lock().
43  *
44  * The task can be started, paused and stopped with gst_task_start(), gst_task_pause()
45  * and gst_task_stop() respectively or with the gst_task_set_state() function.
46  *
47  * A #GstTask will repeatedly call the #GstTaskFunction with the user data
48  * that was provided when creating the task with gst_task_new(). While calling
49  * the function it will acquire the provided lock. The provided lock is released
50  * when the task pauses or stops.
51  *
52  * Stopping a task with gst_task_stop() will not immediately make sure the task is
53  * not running anymore. Use gst_task_join() to make sure the task is completely
54  * stopped and the thread is stopped.
55  *
56  * After creating a #GstTask, use gst_object_unref() to free its resources. This can
57  * only be done when the task is not running anymore.
58  *
59  * Task functions can send a #GstMessage to send out-of-band data to the
60  * application. The application can receive messages from the #GstBus in its
61  * mainloop.
62  *
63  * For debugging purposes, the task will configure its object name as the thread
64  * name on Linux. Please note that the object name should be configured before the
65  * task is started; changing the object name after the task has been started, has
66  * no effect on the thread name.
67  */
68
69 #include "gst_private.h"
70
71 #include "gstinfo.h"
72 #include "gsttask.h"
73 #include "glib-compat-private.h"
74
75 #include <stdio.h>
76
77 #ifdef HAVE_SYS_PRCTL_H
78 #include <sys/prctl.h>
79 #endif
80
81 #ifdef HAVE_PTHREAD_SETNAME_NP_WITHOUT_TID
82 #include <pthread.h>
83 #endif
84
85 GST_DEBUG_CATEGORY_STATIC (task_debug);
86 #define GST_CAT_DEFAULT (task_debug)
87
88 #define SET_TASK_STATE(t,s) (g_atomic_int_set (&GST_TASK_STATE(t), (s)))
89 #define GET_TASK_STATE(t)   ((GstTaskState) g_atomic_int_get (&GST_TASK_STATE(t)))
90
91 #define GST_TASK_GET_PRIVATE(obj)  \
92    (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_TASK, GstTaskPrivate))
93
94 struct _GstTaskPrivate
95 {
96   /* callbacks for managing the thread of this task */
97   GstTaskThreadFunc enter_func;
98   gpointer enter_user_data;
99   GDestroyNotify enter_notify;
100
101   GstTaskThreadFunc leave_func;
102   gpointer leave_user_data;
103   GDestroyNotify leave_notify;
104
105   /* configured pool */
106   GstTaskPool *pool;
107
108   /* remember the pool and id that is currently running. */
109   gpointer id;
110   GstTaskPool *pool_id;
111 };
112
113 #ifdef _MSC_VER
114 #include <windows.h>
115
116 struct _THREADNAME_INFO
117 {
118   DWORD dwType;                 // must be 0x1000
119   LPCSTR szName;                // pointer to name (in user addr space)
120   DWORD dwThreadID;             // thread ID (-1=caller thread)
121   DWORD dwFlags;                // reserved for future use, must be zero
122 };
123 typedef struct _THREADNAME_INFO THREADNAME_INFO;
124
125 void
126 SetThreadName (DWORD dwThreadID, LPCSTR szThreadName)
127 {
128   THREADNAME_INFO info;
129   info.dwType = 0x1000;
130   info.szName = szThreadName;
131   info.dwThreadID = dwThreadID;
132   info.dwFlags = 0;
133
134   __try {
135     RaiseException (0x406D1388, 0, sizeof (info) / sizeof (DWORD),
136         (DWORD *) & info);
137   }
138   __except (EXCEPTION_CONTINUE_EXECUTION) {
139   }
140 }
141 #endif
142
143 static void gst_task_finalize (GObject * object);
144
145 static void gst_task_func (GstTask * task);
146
147 static GMutex pool_lock;
148
149 #define _do_init \
150 { \
151   GST_DEBUG_CATEGORY_INIT (task_debug, "task", 0, "Processing tasks"); \
152 }
153
154 G_DEFINE_TYPE_WITH_CODE (GstTask, gst_task, GST_TYPE_OBJECT, _do_init);
155
156 static void
157 init_klass_pool (GstTaskClass * klass)
158 {
159   g_mutex_lock (&pool_lock);
160   if (klass->pool) {
161     gst_task_pool_cleanup (klass->pool);
162     gst_object_unref (klass->pool);
163   }
164   klass->pool = gst_task_pool_new ();
165   gst_task_pool_prepare (klass->pool, NULL);
166   g_mutex_unlock (&pool_lock);
167 }
168
169 static void
170 gst_task_class_init (GstTaskClass * klass)
171 {
172   GObjectClass *gobject_class;
173
174   gobject_class = (GObjectClass *) klass;
175
176   g_type_class_add_private (klass, sizeof (GstTaskPrivate));
177
178   gobject_class->finalize = gst_task_finalize;
179
180   init_klass_pool (klass);
181 }
182
183 static void
184 gst_task_init (GstTask * task)
185 {
186   GstTaskClass *klass;
187
188   klass = GST_TASK_GET_CLASS (task);
189
190   task->priv = GST_TASK_GET_PRIVATE (task);
191   task->running = FALSE;
192   task->thread = NULL;
193   task->lock = NULL;
194   g_cond_init (&task->cond);
195   SET_TASK_STATE (task, GST_TASK_STOPPED);
196
197   /* use the default klass pool for this task, users can
198    * override this later */
199   g_mutex_lock (&pool_lock);
200   task->priv->pool = gst_object_ref (klass->pool);
201   g_mutex_unlock (&pool_lock);
202
203   /* clear floating flag */
204   gst_object_ref_sink (task);
205 }
206
207 static void
208 gst_task_finalize (GObject * object)
209 {
210   GstTask *task = GST_TASK (object);
211   GstTaskPrivate *priv = task->priv;
212
213   GST_DEBUG ("task %p finalize", task);
214
215   if (priv->enter_notify)
216     priv->enter_notify (priv->enter_user_data);
217
218   if (priv->leave_notify)
219     priv->leave_notify (priv->leave_user_data);
220
221   if (task->notify)
222     task->notify (task->user_data);
223
224   gst_object_unref (priv->pool);
225
226   /* task thread cannot be running here since it holds a ref
227    * to the task so that the finalize could not have happened */
228   g_cond_clear (&task->cond);
229
230   G_OBJECT_CLASS (gst_task_parent_class)->finalize (object);
231 }
232
233 /* should be called with the object LOCK */
234 static void
235 gst_task_configure_name (GstTask * task)
236 {
237 #if defined(HAVE_SYS_PRCTL_H) && defined(PR_SET_NAME)
238   const gchar *name;
239   gchar thread_name[17] = { 0, };
240
241   GST_OBJECT_LOCK (task);
242   name = GST_OBJECT_NAME (task);
243
244   /* set the thread name to something easily identifiable */
245   if (!snprintf (thread_name, 17, "%s", GST_STR_NULL (name))) {
246     GST_DEBUG_OBJECT (task, "Could not create thread name for '%s'", name);
247   } else {
248     GST_DEBUG_OBJECT (task, "Setting thread name to '%s'", thread_name);
249     if (prctl (PR_SET_NAME, (unsigned long int) thread_name, 0, 0, 0))
250       GST_DEBUG_OBJECT (task, "Failed to set thread name");
251   }
252   GST_OBJECT_UNLOCK (task);
253 #elif defined(HAVE_PTHREAD_SETNAME_NP_WITHOUT_TID)
254   const gchar *name;
255
256   GST_OBJECT_LOCK (task);
257   name = GST_OBJECT_NAME (task);
258
259   /* set the thread name to something easily identifiable */
260   GST_DEBUG_OBJECT (task, "Setting thread name to '%s'", name);
261   if (pthread_setname_np (name))
262     GST_DEBUG_OBJECT (task, "Failed to set thread name");
263
264   GST_OBJECT_UNLOCK (task);
265 #elif defined (_MSC_VER)
266   const gchar *name;
267   name = GST_OBJECT_NAME (task);
268
269   /* set the thread name to something easily identifiable */
270   GST_DEBUG_OBJECT (task, "Setting thread name to '%s'", name);
271   SetThreadName (-1, name);
272 #endif
273 }
274
275 static void
276 gst_task_func (GstTask * task)
277 {
278   GRecMutex *lock;
279   GThread *tself;
280   GstTaskPrivate *priv;
281
282   priv = task->priv;
283
284   tself = g_thread_self ();
285
286   GST_DEBUG ("Entering task %p, thread %p", task, tself);
287
288   /* we have to grab the lock to get the mutex. We also
289    * mark our state running so that nobody can mess with
290    * the mutex. */
291   GST_OBJECT_LOCK (task);
292   if (GET_TASK_STATE (task) == GST_TASK_STOPPED)
293     goto exit;
294   lock = GST_TASK_GET_LOCK (task);
295   if (G_UNLIKELY (lock == NULL))
296     goto no_lock;
297   task->thread = tself;
298   GST_OBJECT_UNLOCK (task);
299
300   /* fire the enter_func callback when we need to */
301   if (priv->enter_func)
302     priv->enter_func (task, tself, priv->enter_user_data);
303
304   /* locking order is TASK_LOCK, LOCK */
305   g_rec_mutex_lock (lock);
306   /* configure the thread name now */
307   gst_task_configure_name (task);
308
309   while (G_LIKELY (GET_TASK_STATE (task) != GST_TASK_STOPPED)) {
310     GST_OBJECT_LOCK (task);
311     while (G_UNLIKELY (GST_TASK_STATE (task) == GST_TASK_PAUSED)) {
312       g_rec_mutex_unlock (lock);
313
314       GST_TASK_SIGNAL (task);
315       GST_INFO_OBJECT (task, "Task going to paused");
316       GST_TASK_WAIT (task);
317       GST_INFO_OBJECT (task, "Task resume from paused");
318       GST_OBJECT_UNLOCK (task);
319       /* locking order.. */
320       g_rec_mutex_lock (lock);
321       GST_OBJECT_LOCK (task);
322     }
323
324     if (G_UNLIKELY (GET_TASK_STATE (task) == GST_TASK_STOPPED)) {
325       GST_OBJECT_UNLOCK (task);
326       break;
327     } else {
328       GST_OBJECT_UNLOCK (task);
329     }
330
331     task->func (task->user_data);
332   }
333
334   g_rec_mutex_unlock (lock);
335
336   GST_OBJECT_LOCK (task);
337   task->thread = NULL;
338
339 exit:
340   if (priv->leave_func) {
341     /* fire the leave_func callback when we need to. We need to do this before
342      * we signal the task and with the task lock released. */
343     GST_OBJECT_UNLOCK (task);
344     priv->leave_func (task, tself, priv->leave_user_data);
345     GST_OBJECT_LOCK (task);
346   }
347   /* now we allow messing with the lock again by setting the running flag to
348    * %FALSE. Together with the SIGNAL this is the sign for the _join() to
349    * complete.
350    * Note that we still have not dropped the final ref on the task. We could
351    * check here if there is a pending join() going on and drop the last ref
352    * before releasing the lock as we can be sure that a ref is held by the
353    * caller of the join(). */
354   task->running = FALSE;
355   GST_TASK_SIGNAL (task);
356   GST_OBJECT_UNLOCK (task);
357
358   GST_DEBUG ("Exit task %p, thread %p", task, g_thread_self ());
359
360   gst_object_unref (task);
361   return;
362
363 no_lock:
364   {
365     g_warning ("starting task without a lock");
366     goto exit;
367   }
368 }
369
370 /**
371  * gst_task_cleanup_all:
372  *
373  * Wait for all tasks to be stopped. This is mainly used internally
374  * to ensure proper cleanup of internal data structures in test suites.
375  *
376  * MT safe.
377  */
378 void
379 gst_task_cleanup_all (void)
380 {
381   GstTaskClass *klass;
382
383   if ((klass = g_type_class_peek (GST_TYPE_TASK))) {
384     init_klass_pool (klass);
385   }
386 }
387
388 /**
389  * gst_task_new:
390  * @func: The #GstTaskFunction to use
391  * @user_data: User data to pass to @func
392  * @notify: the function to call when @user_data is no longer needed.
393  *
394  * Create a new Task that will repeatedly call the provided @func
395  * with @user_data as a parameter. Typically the task will run in
396  * a new thread.
397  *
398  * The function cannot be changed after the task has been created. You
399  * must create a new #GstTask to change the function.
400  *
401  * This function will not yet create and start a thread. Use gst_task_start() or
402  * gst_task_pause() to create and start the GThread.
403  *
404  * Before the task can be used, a #GRecMutex must be configured using the
405  * gst_task_set_lock() function. This lock will always be acquired while
406  * @func is called.
407  *
408  * Returns: (transfer full): A new #GstTask.
409  *
410  * MT safe.
411  */
412 GstTask *
413 gst_task_new (GstTaskFunction func, gpointer user_data, GDestroyNotify notify)
414 {
415   GstTask *task;
416
417   g_return_val_if_fail (func != NULL, NULL);
418
419   task = g_object_newv (GST_TYPE_TASK, 0, NULL);
420   task->func = func;
421   task->user_data = user_data;
422   task->notify = notify;
423
424   GST_DEBUG ("Created task %p", task);
425
426   return task;
427 }
428
429 /**
430  * gst_task_set_lock:
431  * @task: The #GstTask to use
432  * @mutex: The #GRecMutex to use
433  *
434  * Set the mutex used by the task. The mutex will be acquired before
435  * calling the #GstTaskFunction.
436  *
437  * This function has to be called before calling gst_task_pause() or
438  * gst_task_start().
439  *
440  * MT safe.
441  */
442 void
443 gst_task_set_lock (GstTask * task, GRecMutex * mutex)
444 {
445   GST_OBJECT_LOCK (task);
446   if (G_UNLIKELY (task->running))
447     goto is_running;
448   GST_INFO ("setting stream lock %p on task %p", mutex, task);
449   GST_TASK_GET_LOCK (task) = mutex;
450   GST_OBJECT_UNLOCK (task);
451
452   return;
453
454   /* ERRORS */
455 is_running:
456   {
457     GST_OBJECT_UNLOCK (task);
458     g_warning ("cannot call set_lock on a running task");
459   }
460 }
461
462 /**
463  * gst_task_get_pool:
464  * @task: a #GstTask
465  *
466  * Get the #GstTaskPool that this task will use for its streaming
467  * threads.
468  *
469  * MT safe.
470  *
471  * Returns: (transfer full): the #GstTaskPool used by @task. gst_object_unref()
472  * after usage.
473  */
474 GstTaskPool *
475 gst_task_get_pool (GstTask * task)
476 {
477   GstTaskPool *result;
478   GstTaskPrivate *priv;
479
480   g_return_val_if_fail (GST_IS_TASK (task), NULL);
481
482   priv = task->priv;
483
484   GST_OBJECT_LOCK (task);
485   result = gst_object_ref (priv->pool);
486   GST_OBJECT_UNLOCK (task);
487
488   return result;
489 }
490
491 /**
492  * gst_task_set_pool:
493  * @task: a #GstTask
494  * @pool: (transfer none): a #GstTaskPool
495  *
496  * Set @pool as the new GstTaskPool for @task. Any new streaming threads that
497  * will be created by @task will now use @pool.
498  *
499  * MT safe.
500  */
501 void
502 gst_task_set_pool (GstTask * task, GstTaskPool * pool)
503 {
504   GstTaskPool *old;
505   GstTaskPrivate *priv;
506
507   g_return_if_fail (GST_IS_TASK (task));
508   g_return_if_fail (GST_IS_TASK_POOL (pool));
509
510   priv = task->priv;
511
512   GST_OBJECT_LOCK (task);
513   if (priv->pool != pool) {
514     old = priv->pool;
515     priv->pool = gst_object_ref (pool);
516   } else
517     old = NULL;
518   GST_OBJECT_UNLOCK (task);
519
520   if (old)
521     gst_object_unref (old);
522 }
523
524 /**
525  * gst_task_set_enter_callback:
526  * @task: The #GstTask to use
527  * @enter_func: (in): a #GstTaskThreadFunc
528  * @user_data: user data passed to @enter_func
529  * @notify: called when @user_data is no longer referenced
530  *
531  * Call @enter_func when the task function of @task is entered. @user_data will
532  * be passed to @enter_func and @notify will be called when @user_data is no
533  * longer referenced.
534  */
535 void
536 gst_task_set_enter_callback (GstTask * task, GstTaskThreadFunc enter_func,
537     gpointer user_data, GDestroyNotify notify)
538 {
539   GDestroyNotify old_notify;
540
541   g_return_if_fail (task != NULL);
542   g_return_if_fail (GST_IS_TASK (task));
543
544   GST_OBJECT_LOCK (task);
545   if ((old_notify = task->priv->enter_notify)) {
546     gpointer old_data = task->priv->enter_user_data;
547
548     task->priv->enter_user_data = NULL;
549     task->priv->enter_notify = NULL;
550     GST_OBJECT_UNLOCK (task);
551
552     old_notify (old_data);
553
554     GST_OBJECT_LOCK (task);
555   }
556   task->priv->enter_func = enter_func;
557   task->priv->enter_user_data = user_data;
558   task->priv->enter_notify = notify;
559   GST_OBJECT_UNLOCK (task);
560 }
561
562 /**
563  * gst_task_set_leave_callback:
564  * @task: The #GstTask to use
565  * @leave_func: (in): a #GstTaskThreadFunc
566  * @user_data: user data passed to @leave_func
567  * @notify: called when @user_data is no longer referenced
568  *
569  * Call @leave_func when the task function of @task is left. @user_data will
570  * be passed to @leave_func and @notify will be called when @user_data is no
571  * longer referenced.
572  */
573 void
574 gst_task_set_leave_callback (GstTask * task, GstTaskThreadFunc leave_func,
575     gpointer user_data, GDestroyNotify notify)
576 {
577   GDestroyNotify old_notify;
578
579   g_return_if_fail (task != NULL);
580   g_return_if_fail (GST_IS_TASK (task));
581
582   GST_OBJECT_LOCK (task);
583   if ((old_notify = task->priv->leave_notify)) {
584     gpointer old_data = task->priv->leave_user_data;
585
586     task->priv->leave_user_data = NULL;
587     task->priv->leave_notify = NULL;
588     GST_OBJECT_UNLOCK (task);
589
590     old_notify (old_data);
591
592     GST_OBJECT_LOCK (task);
593   }
594   task->priv->leave_func = leave_func;
595   task->priv->leave_user_data = user_data;
596   task->priv->leave_notify = notify;
597   GST_OBJECT_UNLOCK (task);
598 }
599
600 /**
601  * gst_task_get_state:
602  * @task: The #GstTask to query
603  *
604  * Get the current state of the task.
605  *
606  * Returns: The #GstTaskState of the task
607  *
608  * MT safe.
609  */
610 GstTaskState
611 gst_task_get_state (GstTask * task)
612 {
613   GstTaskState result;
614
615   g_return_val_if_fail (GST_IS_TASK (task), GST_TASK_STOPPED);
616
617   result = GET_TASK_STATE (task);
618
619   return result;
620 }
621
622 /* make sure the task is running and start a thread if it's not.
623  * This function must be called with the task LOCK. */
624 static gboolean
625 start_task (GstTask * task)
626 {
627   gboolean res = TRUE;
628   GError *error = NULL;
629   GstTaskPrivate *priv;
630
631   priv = task->priv;
632
633   /* new task, We ref before so that it remains alive while
634    * the thread is running. */
635   gst_object_ref (task);
636   /* mark task as running so that a join will wait until we schedule
637    * and exit the task function. */
638   task->running = TRUE;
639
640   /* push on the thread pool, we remember the original pool because the user
641    * could change it later on and then we join to the wrong pool. */
642   priv->pool_id = gst_object_ref (priv->pool);
643   priv->id =
644       gst_task_pool_push (priv->pool_id, (GstTaskPoolFunction) gst_task_func,
645       task, &error);
646
647   if (error != NULL) {
648     g_warning ("failed to create thread: %s", error->message);
649     g_error_free (error);
650     res = FALSE;
651   }
652   return res;
653 }
654
655
656 /**
657  * gst_task_set_state:
658  * @task: a #GstTask
659  * @state: the new task state
660  *
661  * Sets the state of @task to @state.
662  *
663  * The @task must have a lock associated with it using
664  * gst_task_set_lock() when going to GST_TASK_STARTED or GST_TASK_PAUSED or
665  * this function will return %FALSE.
666  *
667  * MT safe.
668  *
669  * Returns: %TRUE if the state could be changed.
670  */
671 gboolean
672 gst_task_set_state (GstTask * task, GstTaskState state)
673 {
674   GstTaskState old;
675   gboolean res = TRUE;
676
677   g_return_val_if_fail (GST_IS_TASK (task), FALSE);
678
679   GST_DEBUG_OBJECT (task, "Changing task %p to state %d", task, state);
680
681   GST_OBJECT_LOCK (task);
682   if (state != GST_TASK_STOPPED)
683     if (G_UNLIKELY (GST_TASK_GET_LOCK (task) == NULL))
684       goto no_lock;
685
686   /* if the state changed, do our thing */
687   old = GET_TASK_STATE (task);
688   if (old != state) {
689     SET_TASK_STATE (task, state);
690     switch (old) {
691       case GST_TASK_STOPPED:
692         /* If the task already has a thread scheduled we don't have to do
693          * anything. */
694         if (G_UNLIKELY (!task->running))
695           res = start_task (task);
696         break;
697       case GST_TASK_PAUSED:
698         /* when we are paused, signal to go to the new state */
699         GST_TASK_SIGNAL (task);
700         break;
701       case GST_TASK_STARTED:
702         /* if we were started, we'll go to the new state after the next
703          * iteration. */
704         break;
705     }
706   }
707   GST_OBJECT_UNLOCK (task);
708
709   return res;
710
711   /* ERRORS */
712 no_lock:
713   {
714     GST_WARNING_OBJECT (task, "state %d set on task without a lock", state);
715     GST_OBJECT_UNLOCK (task);
716     g_warning ("task without a lock can't be set to state %d", state);
717     return FALSE;
718   }
719 }
720
721 /**
722  * gst_task_start:
723  * @task: The #GstTask to start
724  *
725  * Starts @task. The @task must have a lock associated with it using
726  * gst_task_set_lock() or this function will return %FALSE.
727  *
728  * Returns: %TRUE if the task could be started.
729  *
730  * MT safe.
731  */
732 gboolean
733 gst_task_start (GstTask * task)
734 {
735   return gst_task_set_state (task, GST_TASK_STARTED);
736 }
737
738 /**
739  * gst_task_stop:
740  * @task: The #GstTask to stop
741  *
742  * Stops @task. This method merely schedules the task to stop and
743  * will not wait for the task to have completely stopped. Use
744  * gst_task_join() to stop and wait for completion.
745  *
746  * Returns: %TRUE if the task could be stopped.
747  *
748  * MT safe.
749  */
750 gboolean
751 gst_task_stop (GstTask * task)
752 {
753   return gst_task_set_state (task, GST_TASK_STOPPED);
754 }
755
756 /**
757  * gst_task_pause:
758  * @task: The #GstTask to pause
759  *
760  * Pauses @task. This method can also be called on a task in the
761  * stopped state, in which case a thread will be started and will remain
762  * in the paused state. This function does not wait for the task to complete
763  * the paused state.
764  *
765  * Returns: %TRUE if the task could be paused.
766  *
767  * MT safe.
768  */
769 gboolean
770 gst_task_pause (GstTask * task)
771 {
772   return gst_task_set_state (task, GST_TASK_PAUSED);
773 }
774
775 /**
776  * gst_task_join:
777  * @task: The #GstTask to join
778  *
779  * Joins @task. After this call, it is safe to unref the task
780  * and clean up the lock set with gst_task_set_lock().
781  *
782  * The task will automatically be stopped with this call.
783  *
784  * This function cannot be called from within a task function as this
785  * would cause a deadlock. The function will detect this and print a
786  * g_warning.
787  *
788  * Returns: %TRUE if the task could be joined.
789  *
790  * MT safe.
791  */
792 gboolean
793 gst_task_join (GstTask * task)
794 {
795   GThread *tself;
796   GstTaskPrivate *priv;
797   gpointer id;
798   GstTaskPool *pool = NULL;
799
800   priv = task->priv;
801
802   g_return_val_if_fail (GST_IS_TASK (task), FALSE);
803
804   tself = g_thread_self ();
805
806   GST_DEBUG_OBJECT (task, "Joining task %p, thread %p", task, tself);
807
808   /* we don't use a real thread join here because we are using
809    * thread pools */
810   GST_OBJECT_LOCK (task);
811   if (G_UNLIKELY (tself == task->thread))
812     goto joining_self;
813   SET_TASK_STATE (task, GST_TASK_STOPPED);
814   /* signal the state change for when it was blocked in PAUSED. */
815   GST_TASK_SIGNAL (task);
816   /* we set the running flag when pushing the task on the thread pool.
817    * This means that the task function might not be called when we try
818    * to join it here. */
819   while (G_LIKELY (task->running))
820     GST_TASK_WAIT (task);
821   /* clean the thread */
822   task->thread = NULL;
823   /* get the id and pool to join */
824   pool = priv->pool_id;
825   id = priv->id;
826   priv->pool_id = NULL;
827   priv->id = NULL;
828   GST_OBJECT_UNLOCK (task);
829
830   if (pool) {
831     if (id)
832       gst_task_pool_join (pool, id);
833     gst_object_unref (pool);
834   }
835
836   GST_DEBUG_OBJECT (task, "Joined task %p", task);
837
838   return TRUE;
839
840   /* ERRORS */
841 joining_self:
842   {
843     GST_WARNING_OBJECT (task, "trying to join task from its thread");
844     GST_OBJECT_UNLOCK (task);
845     g_warning ("\nTrying to join task %p from its thread would deadlock.\n"
846         "You cannot change the state of an element from its streaming\n"
847         "thread. Use g_idle_add() or post a GstMessage on the bus to\n"
848         "schedule the state change from the main thread.\n", task);
849     return FALSE;
850   }
851 }