This is a megapatch with the following changes:
[platform/upstream/gstreamer.git] / gst / gstqueue.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gstqueue.c:
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., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 //#define DEBUG_ENABLED
24 //#define STATUS_ENABLED
25 #ifdef STATUS_ENABLED
26 #define STATUS(A) GST_DEBUG(0,A, gst_element_get_name(GST_ELEMENT(queue)))
27 #else
28 #define STATUS(A)
29 #endif
30
31 #include <pthread.h>
32
33 #include "config.h"
34 #include "gst_private.h"
35
36 #include "gstqueue.h"
37
38 GstElementDetails gst_queue_details = {
39   "Queue",
40   "Connection",
41   "Simple data queue",
42   VERSION,
43   "Erik Walthinsen <omega@cse.ogi.edu>",
44   "(C) 1999",
45 };
46
47
48 /* Queue signals and args */
49 enum {
50   /* FILL ME */
51   LAST_SIGNAL
52 };
53
54 enum {
55   ARG_0,
56   ARG_LEVEL,
57   ARG_MAX_LEVEL,
58   ARG_BLOCK,
59 };
60
61
62 static void                     gst_queue_class_init    (GstQueueClass *klass);
63 static void                     gst_queue_init          (GstQueue *queue);
64
65 static void                     gst_queue_set_arg       (GtkObject *object, GtkArg *arg, guint id);
66 static void                     gst_queue_get_arg       (GtkObject *object, GtkArg *arg, guint id);
67
68 static gboolean                 gst_queue_handle_eos    (GstPad *pad);
69 static void                     gst_queue_chain         (GstPad *pad, GstBuffer *buf);
70 static GstBuffer *              gst_queue_get           (GstPad *pad);
71
72 static void                     gst_queue_flush         (GstQueue *queue);
73
74 static GstElementStateReturn    gst_queue_change_state  (GstElement *element);
75
76
77 static GstElementClass *parent_class = NULL;
78 //static guint gst_queue_signals[LAST_SIGNAL] = { 0 };
79
80 GtkType
81 gst_queue_get_type(void) {
82   static GtkType queue_type = 0;
83
84   if (!queue_type) {
85     static const GtkTypeInfo queue_info = {
86       "GstQueue",
87       sizeof(GstQueue),
88       sizeof(GstQueueClass),
89       (GtkClassInitFunc)gst_queue_class_init,
90       (GtkObjectInitFunc)gst_queue_init,
91       (GtkArgSetFunc)gst_queue_set_arg,
92       (GtkArgGetFunc)gst_queue_get_arg,
93       (GtkClassInitFunc)NULL,
94     };
95     queue_type = gtk_type_unique (GST_TYPE_ELEMENT, &queue_info);
96   }
97   return queue_type;
98 }
99
100 static void
101 gst_queue_class_init (GstQueueClass *klass)
102 {
103   GtkObjectClass *gtkobject_class;
104   GstElementClass *gstelement_class;
105
106   gtkobject_class = (GtkObjectClass*)klass;
107   gstelement_class = (GstElementClass*)klass;
108
109   parent_class = gtk_type_class (GST_TYPE_ELEMENT);
110
111   gtk_object_add_arg_type ("GstQueue::level", GTK_TYPE_INT,
112                            GTK_ARG_READABLE, ARG_LEVEL);
113   gtk_object_add_arg_type ("GstQueue::max_level", GTK_TYPE_INT,
114                            GTK_ARG_READWRITE, ARG_MAX_LEVEL);
115   gtk_object_add_arg_type ("GstQueue::block", GTK_TYPE_BOOL,
116                            GTK_ARG_READWRITE, ARG_BLOCK);
117
118   gtkobject_class->set_arg = gst_queue_set_arg;
119   gtkobject_class->get_arg = gst_queue_get_arg;
120
121   gstelement_class->change_state = gst_queue_change_state;
122 }
123
124 static void
125 gst_queue_init (GstQueue *queue)
126 {
127   // scheduling on this kind of element is, well, interesting
128   GST_FLAG_SET (queue, GST_ELEMENT_DECOUPLED);
129
130   queue->sinkpad = gst_pad_new ("sink", GST_PAD_SINK);
131   gst_pad_set_chain_function (queue->sinkpad, GST_DEBUG_FUNCPTR(gst_queue_chain));
132   gst_element_add_pad (GST_ELEMENT (queue), queue->sinkpad);
133   gst_pad_set_eos_function (queue->sinkpad, gst_queue_handle_eos);
134
135   queue->srcpad = gst_pad_new ("src", GST_PAD_SRC);
136   gst_pad_set_get_function (queue->srcpad, GST_DEBUG_FUNCPTR(gst_queue_get));
137   gst_element_add_pad (GST_ELEMENT (queue), queue->srcpad);
138
139   queue->queue = NULL;
140   queue->level_buffers = 0;
141   queue->max_buffers = 100;
142   queue->block = TRUE;
143   queue->level_bytes = 0;
144   queue->size_buffers = 0;
145   queue->size_bytes = 0;
146
147   queue->emptycond = g_cond_new ();
148   queue->fullcond = g_cond_new ();
149 }
150
151 static gboolean
152 gst_queue_handle_eos (GstPad *pad)
153 {
154   GstQueue *queue;
155
156   queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
157
158   GST_DEBUG (0,"queue: %s received eos\n", GST_ELEMENT_NAME (queue));
159
160   GST_LOCK (queue);
161   GST_DEBUG (0,"queue: %s has %d buffers left\n", GST_ELEMENT_NAME (queue),
162                   queue->level_buffers);
163
164   GST_FLAG_SET (pad, GST_PAD_EOS);
165
166   g_cond_signal (queue->emptycond);
167
168   GST_UNLOCK (queue);
169
170   return TRUE;
171 }
172
173 static void
174 gst_queue_cleanup_buffers (gpointer data, const gpointer user_data)
175 {
176   GST_DEBUG (0,"queue: %s cleaning buffer %p\n", (gchar *)user_data, data);
177
178   gst_buffer_unref (GST_BUFFER (data));
179 }
180
181 static void
182 gst_queue_flush (GstQueue *queue)
183 {
184   g_slist_foreach (queue->queue, gst_queue_cleanup_buffers,
185                   (char *) GST_ELEMENT_NAME (queue));
186   g_slist_free (queue->queue);
187
188   queue->queue = NULL;
189   queue->level_buffers = 0;
190   queue->timeval = NULL;
191 }
192
193 static void
194 gst_queue_chain (GstPad *pad, GstBuffer *buf)
195 {
196   GstQueue *queue;
197   gboolean tosignal = FALSE;
198   const guchar *name;
199
200   g_return_if_fail (pad != NULL);
201   g_return_if_fail (GST_IS_PAD (pad));
202   g_return_if_fail (buf != NULL);
203
204   queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
205   name = GST_ELEMENT_NAME (queue);
206
207   /* we have to lock the queue since we span threads */
208
209   GST_DEBUG (0,"queue: try have queue lock\n");
210   GST_LOCK (queue);
211   GST_DEBUG (0,"queue: %s adding buffer %p %ld\n", name, buf, pthread_self ());
212   GST_DEBUG (0,"queue: have queue lock\n");
213
214   if (GST_BUFFER_FLAG_IS_SET (buf, GST_BUFFER_FLUSH)) {
215     gst_queue_flush (queue);
216   }
217
218   GST_DEBUG (0,"queue: %s: chain %d %p\n", name, queue->level_buffers, buf);
219
220   while (queue->level_buffers >= queue->max_buffers) {
221     GST_DEBUG (0,"queue: %s waiting %d\n", name, queue->level_buffers);
222     STATUS("%s: O\n");
223     //g_cond_timed_wait (queue->fullcond, queue->fulllock, queue->timeval);
224     //FIXME need to signal other thread in case signals got lost?
225     g_cond_signal (queue->emptycond);
226     g_cond_wait (queue->fullcond, GST_OBJECT(queue)->lock);
227     STATUS("%s: O+\n");
228     GST_DEBUG (0,"queue: %s waiting done %d\n", name, queue->level_buffers);
229   }
230
231   /* put the buffer on the tail of the list */
232   queue->queue = g_slist_append (queue->queue, buf);
233 //  STATUS("%s: +\n");
234   GST_DEBUG (0,"(%s:%s)+ ",GST_DEBUG_PAD_NAME(pad));
235
236   /* if we were empty, but aren't any more, signal a condition */
237   tosignal = (queue->level_buffers >= 0);
238   queue->level_buffers++;
239
240   /* we can unlock now */
241   GST_DEBUG (0,"queue: %s chain %d end signal(%d,%p)\n", name, queue->level_buffers, tosignal, queue->emptycond);
242
243   if (tosignal) {
244 //    STATUS("%s: >\n");
245     g_cond_signal (queue->emptycond);
246 //    STATUS("%s: >>\n");
247   }
248   GST_UNLOCK (queue);
249 }
250
251 static GstBuffer *
252 gst_queue_get (GstPad *pad)
253 {
254   GstQueue *queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
255   GstBuffer *buf = NULL;
256   GSList *front;
257   const guchar *name;
258
259   name = GST_ELEMENT_NAME (queue);
260
261   /* have to lock for thread-safety */
262   GST_DEBUG (0,"queue: %s try have queue lock\n", name);
263   GST_LOCK (queue);
264   GST_DEBUG (0,"queue: %s push %d %ld %p\n", name, queue->level_buffers, pthread_self (), queue->emptycond);
265   GST_DEBUG (0,"queue: %s have queue lock\n", name);
266
267   // we bail if there's nothing there
268   if (!queue->level_buffers && !queue->block) {
269     GST_UNLOCK(queue);
270     return NULL;
271   }
272
273   while (!queue->level_buffers) {
274     STATUS("queue: %s U released lock\n");
275     //g_cond_timed_wait (queue->emptycond, queue->emptylock, queue->timeval);
276     if (GST_FLAG_IS_SET (queue->sinkpad, GST_PAD_EOS)) {
277       gst_pad_set_eos (queue->srcpad);
278       return NULL;
279     }
280     //FIXME need to signal other thread in case signals got lost?
281     g_cond_signal (queue->fullcond);
282     g_cond_wait (queue->emptycond, GST_OBJECT(queue)->lock);
283 //    STATUS("queue: %s U- getting lock\n");
284   }
285
286   front = queue->queue;
287   buf = (GstBuffer *)(front->data);
288   GST_DEBUG (0,"retrieved buffer %p from queue\n",buf);
289   queue->queue = g_slist_remove_link (queue->queue, front);
290   g_slist_free (front);
291
292   queue->level_buffers--;
293 //  STATUS("%s: -\n");
294   GST_DEBUG (0,"(%s:%s)- ",GST_DEBUG_PAD_NAME(pad));
295
296   if (queue->level_buffers < queue->max_buffers) {
297 //    STATUS("%s: < \n");
298     g_cond_signal (queue->fullcond);
299 //    STATUS("%s: << \n");
300   }
301   GST_UNLOCK(queue);
302
303 //  GST_DEBUG (0,"queue: %s pushing %d %p \n", name, queue->level_buffers, buf);
304 //  gst_pad_push (queue->srcpad, buf);
305 //  GST_DEBUG (0,"queue: %s pushing %d done \n", name, queue->level_buffers);
306
307   return buf;
308   /* unlock now */
309 }
310
311 static GstElementStateReturn
312 gst_queue_change_state (GstElement *element)
313 {
314   GstQueue *queue;
315   g_return_val_if_fail (GST_IS_QUEUE (element), GST_STATE_FAILURE);
316
317   queue = GST_QUEUE (element);
318   GST_DEBUG (0,"gstqueue: state pending %d\n", GST_STATE_PENDING (element));
319
320   /* if going down into NULL state, clear out buffers*/
321   if (GST_STATE_PENDING (element) == GST_STATE_READY) {
322     /* otherwise (READY or higher) we need to open the file */
323     gst_queue_flush (queue);
324   }
325
326   /* if we haven't failed already, give the parent class a chance to ;-) */
327   if (GST_ELEMENT_CLASS (parent_class)->change_state)
328     return GST_ELEMENT_CLASS (parent_class)->change_state (element);
329
330   return GST_STATE_SUCCESS;
331 }
332
333
334 static void
335 gst_queue_set_arg (GtkObject *object, GtkArg *arg, guint id)
336 {
337   GstQueue *queue;
338
339   /* it's not null if we got it, but it might not be ours */
340   g_return_if_fail (GST_IS_QUEUE (object));
341
342   queue = GST_QUEUE (object);
343
344   switch(id) {
345     case ARG_MAX_LEVEL:
346       queue->max_buffers = GTK_VALUE_INT (*arg);
347       break;
348     case ARG_BLOCK:
349       queue->block = GTK_VALUE_BOOL (*arg);
350       break;
351     default:
352       break;
353   }
354 }
355
356 static void
357 gst_queue_get_arg (GtkObject *object, GtkArg *arg, guint id)
358 {
359   GstQueue *queue;
360
361   /* it's not null if we got it, but it might not be ours */
362   g_return_if_fail (GST_IS_QUEUE (object));
363
364   queue = GST_QUEUE (object);
365
366   switch (id) {
367     case ARG_LEVEL:
368       GTK_VALUE_INT (*arg) = queue->level_buffers;
369       break;
370     case ARG_MAX_LEVEL:
371       GTK_VALUE_INT (*arg) = queue->max_buffers;
372       break;
373     case ARG_BLOCK:
374       GTK_VALUE_BOOL (*arg) = queue->block;
375       break;
376     default:
377       arg->type = GTK_TYPE_INVALID;
378       break;
379   }
380 }