2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wtay@chello.be>
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.
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.
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., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
23 /* #define DEBUG_ENABLED */
24 /* #define STATUS_ENABLED */
26 #define STATUS(A) GST_DEBUG(GST_CAT_DATAFLOW, A, GST_ELEMENT_NAME(queue))
34 #include "gst_private.h"
37 #include "gstscheduler.h"
40 GstElementDetails gst_queue_details = {
45 "Erik Walthinsen <omega@cse.ogi.edu>",
50 /* Queue signals and args */
72 static void gst_queue_class_init (GstQueueClass *klass);
73 static void gst_queue_init (GstQueue *queue);
74 static void gst_queue_dispose (GObject *object);
76 static void gst_queue_set_property (GObject *object, guint prop_id,
77 const GValue *value, GParamSpec *pspec);
78 static void gst_queue_get_property (GObject *object, guint prop_id,
79 GValue *value, GParamSpec *pspec);
81 static GstPadNegotiateReturn gst_queue_handle_negotiate_src (GstPad *pad, GstCaps **caps, gpointer *data);
82 static GstPadNegotiateReturn gst_queue_handle_negotiate_sink (GstPad *pad, GstCaps **caps, gpointer *data);
83 static void gst_queue_chain (GstPad *pad, GstBuffer *buf);
84 static GstBuffer * gst_queue_get (GstPad *pad);
85 static GstBufferPool* gst_queue_get_bufferpool (GstPad *pad);
87 static void gst_queue_locked_flush (GstQueue *queue);
88 static void gst_queue_flush (GstQueue *queue);
90 static GstElementStateReturn gst_queue_change_state (GstElement *element);
93 #define GST_TYPE_QUEUE_LEAKY (queue_leaky_get_type())
95 queue_leaky_get_type(void) {
96 static GType queue_leaky_type = 0;
97 static GEnumValue queue_leaky[] = {
98 { GST_QUEUE_NO_LEAK, "0", "Not Leaky" },
99 { GST_QUEUE_LEAK_UPSTREAM, "1", "Leaky on Upstream" },
100 { GST_QUEUE_LEAK_DOWNSTREAM, "2", "Leaky on Downstream" },
103 if (!queue_leaky_type) {
104 queue_leaky_type = g_enum_register_static("GstQueueLeaky", queue_leaky);
106 return queue_leaky_type;
109 static GstElementClass *parent_class = NULL;
110 /* static guint gst_queue_signals[LAST_SIGNAL] = { 0 }; */
113 gst_queue_get_type(void)
115 static GType queue_type = 0;
118 static const GTypeInfo queue_info = {
119 sizeof(GstQueueClass),
122 (GClassInitFunc)gst_queue_class_init,
127 (GInstanceInitFunc)gst_queue_init,
130 queue_type = g_type_register_static (GST_TYPE_ELEMENT, "GstQueue", &queue_info, 0);
136 gst_queue_class_init (GstQueueClass *klass)
138 GObjectClass *gobject_class;
139 GstElementClass *gstelement_class;
141 gobject_class = (GObjectClass*)klass;
142 gstelement_class = (GstElementClass*)klass;
144 parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
146 g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_LEAKY,
147 g_param_spec_enum ("leaky", "Leaky", "Where the queue leaks, if at all.",
148 GST_TYPE_QUEUE_LEAKY, GST_QUEUE_NO_LEAK, G_PARAM_READWRITE));
149 g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_LEVEL,
150 g_param_spec_int ("level", "Level", "How many buffers are in the queue.",
151 0, G_MAXINT, 0, G_PARAM_READABLE));
152 g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_MAX_LEVEL,
153 g_param_spec_int ("max_level", "Maximum Level", "How many buffers the queue holds.",
154 0, G_MAXINT, 100, G_PARAM_READWRITE));
155 g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_MAY_DEADLOCK,
156 g_param_spec_boolean ("may_deadlock", "May Deadlock", "The queue may deadlock if it's full and not PLAYING",
157 TRUE, G_PARAM_READWRITE));
159 gobject_class->dispose = GST_DEBUG_FUNCPTR (gst_queue_dispose);
160 gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_queue_set_property);
161 gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_queue_get_property);
163 gstelement_class->change_state = GST_DEBUG_FUNCPTR(gst_queue_change_state);
167 gst_queue_init (GstQueue *queue)
169 /* scheduling on this kind of element is, well, interesting */
170 GST_FLAG_SET (queue, GST_ELEMENT_DECOUPLED);
171 GST_FLAG_SET (queue, GST_ELEMENT_EVENT_AWARE);
173 queue->sinkpad = gst_pad_new ("sink", GST_PAD_SINK);
174 gst_pad_set_chain_function (queue->sinkpad, GST_DEBUG_FUNCPTR(gst_queue_chain));
175 gst_element_add_pad (GST_ELEMENT (queue), queue->sinkpad);
176 gst_pad_set_negotiate_function (queue->sinkpad, GST_DEBUG_FUNCPTR(gst_queue_handle_negotiate_sink));
177 gst_pad_set_bufferpool_function (queue->sinkpad, GST_DEBUG_FUNCPTR(gst_queue_get_bufferpool));
179 queue->srcpad = gst_pad_new ("src", GST_PAD_SRC);
180 gst_pad_set_get_function (queue->srcpad, GST_DEBUG_FUNCPTR(gst_queue_get));
181 gst_element_add_pad (GST_ELEMENT (queue), queue->srcpad);
182 gst_pad_set_negotiate_function (queue->srcpad, GST_DEBUG_FUNCPTR(gst_queue_handle_negotiate_src));
185 queue->level_buffers = 0;
186 queue->level_bytes = 0;
187 queue->level_time = 0LL;
188 queue->size_buffers = 100; /* 100 buffers */
189 queue->size_bytes = 100 * 1024; /* 100KB */
190 queue->size_time = 1000000000LL; /* 1sec */
191 queue->may_deadlock = TRUE;
193 queue->qlock = g_mutex_new ();
194 queue->reader = FALSE;
195 queue->writer = FALSE;
196 queue->not_empty = g_cond_new ();
197 queue->not_full = g_cond_new ();
198 GST_DEBUG_ELEMENT (GST_CAT_THREAD, queue, "initialized queue's not_empty & not_full conditions\n");
202 gst_queue_dispose (GObject *object)
204 GstQueue *queue = GST_QUEUE (object);
206 g_mutex_free (queue->qlock);
207 g_cond_free (queue->not_empty);
208 g_cond_free (queue->not_full);
210 G_OBJECT_CLASS (parent_class)->dispose (object);
213 static GstBufferPool*
214 gst_queue_get_bufferpool (GstPad *pad)
218 queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
220 return gst_pad_get_bufferpool (queue->srcpad);
223 static GstPadNegotiateReturn
224 gst_queue_handle_negotiate_src (GstPad *pad, GstCaps **caps, gpointer *data)
228 queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
230 return gst_pad_negotiate_proxy (pad, queue->sinkpad, caps);
233 static GstPadNegotiateReturn
234 gst_queue_handle_negotiate_sink (GstPad *pad, GstCaps **caps, gpointer *data)
238 queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
240 return gst_pad_negotiate_proxy (pad, queue->srcpad, caps);
244 gst_queue_cleanup_buffers (gpointer data, const gpointer user_data)
246 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, user_data, "cleaning buffer %p\n", data);
248 if (GST_IS_BUFFER (data)) {
249 gst_buffer_unref (GST_BUFFER (data));
254 gst_queue_locked_flush (GstQueue *queue)
256 g_slist_foreach (queue->queue, gst_queue_cleanup_buffers,
258 g_slist_free (queue->queue);
261 queue->level_buffers = 0;
262 queue->timeval = NULL;
266 gst_queue_flush (GstQueue *queue)
268 g_mutex_lock (queue->qlock);
269 gst_queue_locked_flush (queue);
270 g_mutex_unlock (queue->qlock);
275 gst_queue_chain (GstPad *pad, GstBuffer *buf)
280 g_return_if_fail (pad != NULL);
281 g_return_if_fail (GST_IS_PAD (pad));
282 g_return_if_fail (buf != NULL);
284 queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
288 /* we have to lock the queue since we span threads */
289 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "locking t:%ld\n", pthread_self ());
290 g_mutex_lock (queue->qlock);
291 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "locked t:%ld\n", pthread_self ());
293 if (GST_IS_EVENT (buf)) {
294 switch (GST_EVENT_TYPE (buf)) {
295 case GST_EVENT_FLUSH:
296 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "FLUSH event, flushing queue\n");
297 gst_queue_locked_flush (queue);
300 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "eos in on %s %d\n",
301 GST_ELEMENT_NAME (queue), queue->level_buffers);
304 gst_pad_event_default (pad, GST_EVENT (buf));
309 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "adding buffer %p of size %d\n",buf,GST_BUFFER_SIZE(buf));
311 if (queue->level_buffers == queue->size_buffers) {
312 /* if this is a leaky queue... */
314 /* FIXME don't want to leak events! */
315 /* if we leak on the upstream side, drop the current buffer */
316 if (queue->leaky == GST_QUEUE_LEAK_UPSTREAM) {
317 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "queue is full, leaking buffer on upstream end\n");
318 if (GST_IS_EVENT (buf))
319 fprintf(stderr, "Error: queue [%s] leaked an event, type:%d\n",
320 GST_ELEMENT_NAME(GST_ELEMENT(queue)),
321 GST_EVENT_TYPE(GST_EVENT(buf)));
322 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "queue is full, leaking buffer on upstream end\n");
323 gst_buffer_unref(buf);
324 /* now we have to clean up and exit right away */
325 g_mutex_unlock (queue->qlock);
328 /* otherwise we have to push a buffer off the other end */
332 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "queue is full, leaking buffer on downstream end\n");
333 front = queue->queue;
334 leakbuf = (GstBuffer *)(front->data);
335 if (GST_IS_EVENT (leakbuf))
336 fprintf(stderr, "Error: queue [%s] leaked an event, type:%d\n",
337 GST_ELEMENT_NAME(GST_ELEMENT(queue)),
338 GST_EVENT_TYPE(GST_EVENT(leakbuf)));
339 queue->level_buffers--;
340 queue->level_bytes -= GST_BUFFER_SIZE(leakbuf);
341 gst_buffer_unref(leakbuf);
342 queue->queue = g_slist_remove_link (queue->queue, front);
343 g_slist_free (front);
347 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "pre full wait, level:%d/%d\n",
348 queue->level_buffers, queue->size_buffers);
349 while (queue->level_buffers == queue->size_buffers) {
350 /* if there's a pending state change for this queue or its manager, switch */
351 /* back to iterator so bottom half of state change executes */
352 while (GST_STATE_PENDING (queue) != GST_STATE_VOID_PENDING) {
353 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "interrupted!!\n");
354 g_mutex_unlock (queue->qlock);
355 if (gst_element_interrupt (GST_ELEMENT (queue)))
359 if (GST_STATE (queue) != GST_STATE_PLAYING) {
360 /* this means the other end is shut down */
361 /* try to signal to resolve the error */
362 if (!queue->may_deadlock) {
363 if (GST_IS_BUFFER (buf)) gst_buffer_unref (buf);
364 else gst_event_free (GST_EVENT (buf));
365 g_mutex_unlock (queue->qlock);
366 gst_element_error (GST_ELEMENT (queue), "deadlock found, source pad elements are shut down");
370 gst_element_info (GST_ELEMENT (queue), "waiting for the app to restart source pad elements");
374 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "waiting for not_full, level:%d/%d\n", queue->level_buffers, queue->size_buffers);
376 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "WARNING: multiple writers on queue!\n");
377 queue->writer = TRUE;
378 g_cond_wait (queue->not_full, queue->qlock);
379 queue->writer = FALSE;
380 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "got not_full signal\n");
382 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "post full wait, level:%d/%d\n",
383 queue->level_buffers, queue->size_buffers);
386 /* put the buffer on the tail of the list */
387 queue->queue = g_slist_append (queue->queue, buf);
388 queue->level_buffers++;
389 queue->level_bytes += GST_BUFFER_SIZE(buf);
390 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "(%s:%s)+ level:%d/%d\n",
391 GST_DEBUG_PAD_NAME(pad),
392 queue->level_buffers, queue->size_buffers);
394 /* reader waiting on an empty queue */
395 reader = queue->reader;
397 g_mutex_unlock (queue->qlock);
401 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "signalling not_empty\n");
402 g_cond_signal (queue->not_empty);
407 gst_queue_get (GstPad *pad)
410 GstBuffer *buf = NULL;
414 g_assert(pad != NULL);
415 g_assert(GST_IS_PAD(pad));
416 g_return_val_if_fail (pad != NULL, NULL);
417 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
419 queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
423 /* have to lock for thread-safety */
424 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "locking t:%ld\n", pthread_self ());
425 g_mutex_lock (queue->qlock);
426 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "locked t:%ld %p\n", pthread_self (), queue->not_empty);
428 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "pre empty wait, level:%d/%d\n", queue->level_buffers, queue->size_buffers);
429 while (queue->level_buffers == 0) {
430 /* if there's a pending state change for this queue or its manager, switch
431 * back to iterator so bottom half of state change executes
433 while (GST_STATE_PENDING (queue) != GST_STATE_VOID_PENDING) {
434 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "interrupted!!\n");
435 g_mutex_unlock (queue->qlock);
436 if (gst_element_interrupt (GST_ELEMENT (queue)))
440 if (GST_STATE (queue) != GST_STATE_PLAYING) {
441 /* this means the other end is shut down */
442 if (!queue->may_deadlock) {
443 g_mutex_unlock (queue->qlock);
444 gst_element_error (GST_ELEMENT (queue), "deadlock found, sink pad elements are shut down");
448 gst_element_info (GST_ELEMENT (queue), "waiting for the app to restart sink pad elements");
452 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "waiting for not_empty, level:%d/%d\n", queue->level_buffers, queue->size_buffers);
454 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "WARNING: multiple readers on queue!\n");
455 queue->reader = TRUE;
456 g_cond_wait (queue->not_empty, queue->qlock);
457 queue->reader = FALSE;
458 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "got not_empty signal\n");
460 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "post empty wait, level:%d/%d\n", queue->level_buffers, queue->size_buffers);
462 front = queue->queue;
463 buf = (GstBuffer *)(front->data);
464 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "retrieved buffer %p from queue\n", buf);
465 queue->queue = g_slist_remove_link (queue->queue, front);
466 g_slist_free (front);
468 queue->level_buffers--;
469 queue->level_bytes -= GST_BUFFER_SIZE(buf);
470 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "(%s:%s)- level:%d/%d\n",
471 GST_DEBUG_PAD_NAME(pad),
472 queue->level_buffers, queue->size_buffers);
474 /* writer waiting on a full queue */
475 writer = queue->writer;
477 g_mutex_unlock (queue->qlock);
481 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "signalling not_full\n");
482 g_cond_signal (queue->not_full);
485 /* FIXME where should this be? locked? */
486 if (GST_IS_EVENT(buf)) {
487 GstEvent *event = GST_EVENT(buf);
488 switch (GST_EVENT_TYPE(event)) {
490 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "queue \"%s\" eos\n", GST_ELEMENT_NAME (queue));
491 gst_element_set_eos (GST_ELEMENT (queue));
501 static GstElementStateReturn
502 gst_queue_change_state (GstElement *element)
505 GstElementStateReturn ret;
506 GstElementState new_state;
507 g_return_val_if_fail (GST_IS_QUEUE (element), GST_STATE_FAILURE);
509 queue = GST_QUEUE (element);
511 GST_DEBUG_ENTER("('%s')", GST_ELEMENT_NAME (element));
513 /* lock the queue so another thread (not in sync with this thread's state)
514 * can't call this queue's _get (or whatever)
516 g_mutex_lock (queue->qlock);
518 new_state = GST_STATE_PENDING (element);
520 if (new_state == GST_STATE_PAUSED) {
521 g_cond_signal (queue->not_full);
522 g_cond_signal (queue->not_empty);
524 else if (new_state == GST_STATE_READY) {
525 gst_queue_locked_flush (queue);
527 else if (new_state == GST_STATE_PLAYING) {
528 if (!GST_PAD_CONNECTED (queue->sinkpad)) {
529 /* FIXME can this be? */
531 g_cond_signal (queue->not_empty);
532 g_mutex_unlock (queue->qlock);
534 return GST_STATE_FAILURE;
538 ret = GST_ELEMENT_CLASS (parent_class)->change_state (element);
539 g_mutex_unlock (queue->qlock);
541 GST_DEBUG_LEAVE("('%s')", GST_ELEMENT_NAME (element));
547 gst_queue_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
551 /* it's not null if we got it, but it might not be ours */
552 g_return_if_fail (GST_IS_QUEUE (object));
554 queue = GST_QUEUE (object);
558 queue->leaky = g_value_get_int (value);
561 queue->size_buffers = g_value_get_int (value);
563 case ARG_MAY_DEADLOCK:
564 queue->may_deadlock = g_value_get_boolean (value);
567 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
573 gst_queue_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
577 /* it's not null if we got it, but it might not be ours */
578 g_return_if_fail (GST_IS_QUEUE (object));
580 queue = GST_QUEUE (object);
584 g_value_set_int (value, queue->leaky);
587 g_value_set_int (value, queue->level_buffers);
590 g_value_set_int (value, queue->size_buffers);
592 case ARG_MAY_DEADLOCK:
593 g_value_set_boolean (value, queue->may_deadlock);
596 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);