2 * Copyright (C) 2009 Wim Taymans <wim.taymans@gmail.com>
4 * gsttaskpool.c: Pool for streaming threads
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19 * Boston, MA 02110-1301, USA.
25 * @short_description: Pool of GStreamer streaming threads
26 * @see_also: #GstTask, #GstPad
28 * This object provides an abstraction for creating threads. The default
29 * implementation uses a regular GThreadPool to start tasks.
31 * Subclasses can be made to create custom threads.
34 #include "gst_private.h"
37 #include "gsttaskpool.h"
39 GST_DEBUG_CATEGORY_STATIC (taskpool_debug);
40 #define GST_CAT_DEFAULT (taskpool_debug)
42 #ifndef GST_DISABLE_GST_DEBUG
43 static void gst_task_pool_finalize (GObject * object);
48 GST_DEBUG_CATEGORY_INIT (taskpool_debug, "taskpool", 0, "Thread pool"); \
51 G_DEFINE_TYPE_WITH_CODE (GstTaskPool, gst_task_pool, GST_TYPE_OBJECT, _do_init);
55 GstTaskPoolFunction func;
60 default_func (TaskData * tdata, GstTaskPool * pool)
62 GstTaskPoolFunction func;
66 user_data = tdata->user_data;
67 g_slice_free (TaskData, tdata);
73 default_prepare (GstTaskPool * pool, GError ** error)
75 GST_OBJECT_LOCK (pool);
76 pool->pool = g_thread_pool_new ((GFunc) default_func, pool, -1, FALSE, NULL);
77 GST_OBJECT_UNLOCK (pool);
81 default_cleanup (GstTaskPool * pool)
83 GST_OBJECT_LOCK (pool);
85 /* Shut down all the threads, we still process the ones scheduled
86 * because the unref happens in the thread function.
87 * Also wait for currently running ones to finish. */
88 g_thread_pool_free (pool->pool, FALSE, TRUE);
91 GST_OBJECT_UNLOCK (pool);
95 default_push (GstTaskPool * pool, GstTaskPoolFunction func,
96 gpointer user_data, GError ** error)
100 tdata = g_slice_new (TaskData);
102 tdata->user_data = user_data;
104 GST_OBJECT_LOCK (pool);
106 g_thread_pool_push (pool->pool, tdata, error);
108 g_slice_free (TaskData, tdata);
110 GST_OBJECT_UNLOCK (pool);
116 default_join (GstTaskPool * pool, gpointer id)
118 /* we do nothing here, we can't join from the pools */
122 gst_task_pool_class_init (GstTaskPoolClass * klass)
124 GObjectClass *gobject_class;
125 GstTaskPoolClass *gsttaskpool_class;
127 gobject_class = (GObjectClass *) klass;
128 gsttaskpool_class = (GstTaskPoolClass *) klass;
130 #ifndef GST_DISABLE_GST_DEBUG
131 gobject_class->finalize = gst_task_pool_finalize;
134 gsttaskpool_class->prepare = default_prepare;
135 gsttaskpool_class->cleanup = default_cleanup;
136 gsttaskpool_class->push = default_push;
137 gsttaskpool_class->join = default_join;
141 gst_task_pool_init (GstTaskPool * pool)
145 #ifndef GST_DISABLE_GST_DEBUG
147 gst_task_pool_finalize (GObject * object)
149 GST_DEBUG ("taskpool %p finalize", object);
151 G_OBJECT_CLASS (gst_task_pool_parent_class)->finalize (object);
157 * Create a new default task pool. The default task pool will use a regular
158 * GThreadPool for threads.
160 * Returns: (transfer full): a new #GstTaskPool. gst_object_unref() after usage.
163 gst_task_pool_new (void)
167 pool = g_object_new (GST_TYPE_TASK_POOL, NULL);
169 /* clear floating flag */
170 gst_object_ref_sink (pool);
176 * gst_task_pool_prepare:
177 * @pool: a #GstTaskPool
178 * @error: an error return location
180 * Prepare the taskpool for accepting gst_task_pool_push() operations.
185 gst_task_pool_prepare (GstTaskPool * pool, GError ** error)
187 GstTaskPoolClass *klass;
189 g_return_if_fail (GST_IS_TASK_POOL (pool));
191 klass = GST_TASK_POOL_GET_CLASS (pool);
194 klass->prepare (pool, error);
198 * gst_task_pool_cleanup:
199 * @pool: a #GstTaskPool
201 * Wait for all tasks to be stopped. This is mainly used internally
202 * to ensure proper cleanup of internal data structures in test suites.
207 gst_task_pool_cleanup (GstTaskPool * pool)
209 GstTaskPoolClass *klass;
211 g_return_if_fail (GST_IS_TASK_POOL (pool));
213 klass = GST_TASK_POOL_GET_CLASS (pool);
216 klass->cleanup (pool);
220 * gst_task_pool_push:
221 * @pool: a #GstTaskPool
222 * @func: (scope async): the function to call
223 * @user_data: (closure): data to pass to @func
224 * @error: return location for an error
226 * Start the execution of a new thread from @pool.
228 * Returns: (transfer none) (nullable): a pointer that should be used
229 * for the gst_task_pool_join function. This pointer can be %NULL, you
230 * must check @error to detect errors.
233 gst_task_pool_push (GstTaskPool * pool, GstTaskPoolFunction func,
234 gpointer user_data, GError ** error)
236 GstTaskPoolClass *klass;
238 g_return_val_if_fail (GST_IS_TASK_POOL (pool), NULL);
240 klass = GST_TASK_POOL_GET_CLASS (pool);
242 if (klass->push == NULL)
245 return klass->push (pool, func, user_data, error);
250 g_warning ("pushing tasks on pool %p is not supported", pool);
256 * gst_task_pool_join:
257 * @pool: a #GstTaskPool
260 * Join a task and/or return it to the pool. @id is the id obtained from
261 * gst_task_pool_push().
264 gst_task_pool_join (GstTaskPool * pool, gpointer id)
266 GstTaskPoolClass *klass;
268 g_return_if_fail (GST_IS_TASK_POOL (pool));
270 klass = GST_TASK_POOL_GET_CLASS (pool);
273 klass->join (pool, id);