bcd97762c8cca6d0d9244dd3bdb520d3be600496
[platform/upstream/gstreamer.git] / gst / gstbin.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gstbin.c: GstBin container object and support code
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 GST_DEBUG_ENABLED
24 #include "config.h"
25 #include "gst_private.h"
26
27 #include "gstbin.h"
28
29 #include "gstscheduler.h"
30
31
32
33 GstElementDetails gst_bin_details = {
34   "Generic bin",
35   "Bin",
36   "Simple container object",
37   VERSION,
38   "Erik Walthinsen <omega@cse.ogi.edu>",
39   "(C) 1999",
40 };
41
42
43 static void                     gst_bin_real_destroy            (GtkObject *object);
44
45 static GstElementStateReturn    gst_bin_change_state            (GstElement *element);
46 static GstElementStateReturn    gst_bin_change_state_norecurse  (GstBin *bin);
47 static gboolean                 gst_bin_change_state_type       (GstBin *bin,
48                                                                  GstElementState state,
49                                                                  GtkType type);
50
51 static void                     gst_bin_create_plan_func        (GstBin *bin);
52 static gboolean                 gst_bin_iterate_func            (GstBin *bin);
53
54 static xmlNodePtr               gst_bin_save_thyself            (GstElement *element, xmlNodePtr parent);
55 static void                     gst_bin_restore_thyself         (GstElement *element, xmlNodePtr parent,
56                                                                  GHashTable *elements);
57
58 /* Bin signals and args */
59 enum {
60   OBJECT_ADDED,
61   LAST_SIGNAL
62 };
63
64 enum {
65   ARG_0,
66   /* FILL ME */
67 };
68
69
70 static void gst_bin_class_init  (GstBinClass *klass);
71 static void gst_bin_init        (GstBin *bin);
72
73
74 static GstElementClass *parent_class = NULL;
75 static guint gst_bin_signals[LAST_SIGNAL] = { 0 };
76
77 GtkType
78 gst_bin_get_type (void)
79 {
80   static GtkType bin_type = 0;
81
82   if (!bin_type) {
83     static const GtkTypeInfo bin_info = {
84       "GstBin",
85       sizeof(GstBin),
86       sizeof(GstBinClass),
87       (GtkClassInitFunc)gst_bin_class_init,
88       (GtkObjectInitFunc)gst_bin_init,
89       (GtkArgSetFunc)NULL,
90       (GtkArgGetFunc)NULL,
91       (GtkClassInitFunc)NULL,
92     };
93     bin_type = gtk_type_unique (GST_TYPE_ELEMENT, &bin_info);
94   }
95   return bin_type;
96 }
97
98 static void
99 gst_bin_class_init (GstBinClass *klass)
100 {
101   GtkObjectClass *gtkobject_class;
102   GstElementClass *gstelement_class;
103
104   gtkobject_class = (GtkObjectClass*)klass;
105   gstelement_class = (GstElementClass*)klass;
106
107   parent_class = gtk_type_class (GST_TYPE_ELEMENT);
108
109   gst_bin_signals[OBJECT_ADDED] =
110     gtk_signal_new ("object_added", GTK_RUN_FIRST, gtkobject_class->type,
111                     GTK_SIGNAL_OFFSET (GstBinClass, object_added),
112                     gtk_marshal_NONE__POINTER, GTK_TYPE_NONE, 1,
113                     GST_TYPE_ELEMENT);
114   gtk_object_class_add_signals (gtkobject_class, gst_bin_signals, LAST_SIGNAL);
115
116   klass->change_state_type =            gst_bin_change_state_type;
117   klass->create_plan =                  gst_bin_create_plan_func;
118   klass->schedule =                     gst_bin_schedule_func;
119   klass->iterate =                      gst_bin_iterate_func;
120
121   gstelement_class->change_state =      gst_bin_change_state;
122   gstelement_class->save_thyself =      gst_bin_save_thyself;
123   gstelement_class->restore_thyself =   gst_bin_restore_thyself;
124
125   gtkobject_class->destroy =            gst_bin_real_destroy;
126 }
127
128 static void
129 gst_bin_init (GstBin *bin)
130 {
131   // in general, we prefer to use cothreads for most things
132   GST_FLAG_SET (bin, GST_BIN_FLAG_PREFER_COTHREADS);
133
134   bin->numchildren = 0;
135   bin->children = NULL;
136   bin->eos_providers = NULL;
137   bin->num_eos_providers = 0;
138   bin->chains = NULL;
139   bin->eoscond = g_cond_new ();
140 // FIXME temporary testing measure
141 //  bin->use_cothreads = TRUE;
142 }
143
144 /**
145  * gst_bin_new:
146  * @name: name of new bin
147  *
148  * Create a new bin with given name.
149  *
150  * Returns: new bin
151  */
152 GstElement*
153 gst_bin_new (const gchar *name)
154 {
155   return gst_elementfactory_make ("bin", name);
156 }
157
158 /**
159  * gst_bin_add:
160  * @bin: #GstBin to add element to
161  * @element: #GstElement to add to bin
162  *
163  * Add the given element to the bin.  Set the elements parent, and thus
164  * add a reference.
165  */
166 void
167 gst_bin_add (GstBin *bin,
168              GstElement *element)
169 {
170   g_return_if_fail (bin != NULL);
171   g_return_if_fail (GST_IS_BIN (bin));
172   g_return_if_fail (element != NULL);
173   g_return_if_fail (GST_IS_ELEMENT (element));
174
175   // must be NULL or PAUSED state in order to modify bin
176   g_return_if_fail ((GST_STATE (bin) == GST_STATE_NULL) ||
177                     (GST_STATE (bin) == GST_STATE_PAUSED));
178
179   bin->children = g_list_append (bin->children, element);
180   bin->numchildren++;
181   gst_object_set_parent (GST_OBJECT (element), GST_OBJECT (bin));
182
183   GST_INFO_ELEMENT (GST_CAT_PARENTAGE, bin, "added child %s", gst_element_get_name(element));
184
185   /* we know we have at least one child, we just added one... */
186 //  if (GST_STATE(element) < GST_STATE_READY)
187 //    gst_bin_change_state_norecurse(bin,GST_STATE_READY);
188
189   gtk_signal_emit (GTK_OBJECT (bin), gst_bin_signals[OBJECT_ADDED], element);
190 }
191
192 /**
193  * gst_bin_remove:
194  * @bin: #GstBin to remove element from
195  * @element: #GstElement to remove
196  *
197  * Remove the element from its associated bin, unparenting as well.
198  */
199 void
200 gst_bin_remove (GstBin *bin,
201                 GstElement *element)
202 {
203   g_return_if_fail (bin != NULL);
204   g_return_if_fail (GST_IS_BIN (bin));
205   g_return_if_fail (element != NULL);
206   g_return_if_fail (GST_IS_ELEMENT (element));
207   g_return_if_fail (bin->children != NULL);
208
209   // must be NULL or PAUSED state in order to modify bin
210   g_return_if_fail ((GST_STATE (bin) == GST_STATE_NULL) ||
211                     (GST_STATE (bin) == GST_STATE_PAUSED));
212
213   if (g_list_find(bin->children, element) == NULL) {
214     // FIXME this should be a warning!!!
215     GST_ERROR_OBJECT(bin,element,"no such element in bin");
216     return;
217   }
218
219   gst_object_unparent (GST_OBJECT (element));
220   bin->children = g_list_remove (bin->children, element);
221   bin->numchildren--;
222
223   GST_INFO_ELEMENT (GST_CAT_PARENTAGE, bin, "removed child %s", gst_element_get_name(element));
224
225   /* if we're down to zero children, force state to NULL */
226   if (bin->numchildren == 0)
227     gst_element_set_state (GST_ELEMENT (bin), GST_STATE_NULL);
228 }
229
230
231 static GstElementStateReturn
232 gst_bin_change_state (GstElement *element)
233 {
234   GstBin *bin;
235   GList *children;
236   GstElement *child;
237
238   GST_DEBUG_ENTER("(\"%s\")",gst_element_get_name (element));
239
240   g_return_val_if_fail (GST_IS_BIN (element), GST_STATE_FAILURE);
241
242   bin = GST_BIN (element);
243
244 //  GST_DEBUG (0,"currently %d(%s), %d(%s) pending\n",GST_STATE (element),
245 //          _gst_print_statename (GST_STATE (element)), GST_STATE_PENDING (element),
246 //          _gst_print_statename (GST_STATE_PENDING (element)));
247
248   GST_INFO_ELEMENT (GST_CAT_STATES, element, "changing bin's state from %s to %s",
249                 _gst_print_statename (GST_STATE (element)),
250                 _gst_print_statename (GST_STATE_PENDING (element)));
251
252 //  g_return_val_if_fail(bin->numchildren != 0, GST_STATE_FAILURE);
253
254   switch (GST_STATE_TRANSITION (element)) {
255     case GST_STATE_NULL_TO_READY:
256     {
257       GstObject *parent;
258
259       parent = gst_object_get_parent (GST_OBJECT (element));
260
261       if (!parent || !GST_IS_BIN (parent))
262         gst_bin_create_plan (bin);
263
264       break;
265     }
266     default:
267       break;
268   }
269
270 //  g_print("-->\n");
271   children = bin->children;
272   while (children) {
273     child = GST_ELEMENT (children->data);
274     GST_DEBUG (0,"setting state on '%s'\n",gst_element_get_name (child));
275     switch (gst_element_set_state (child, GST_STATE_PENDING (element))) {
276       case GST_STATE_FAILURE:
277         GST_STATE_PENDING (element) = GST_STATE_NONE_PENDING;
278         GST_DEBUG (0,"child '%s' failed to go to state %d(%s)\n", gst_element_get_name (child),
279               GST_STATE_PENDING (element), _gst_print_statename (GST_STATE_PENDING (element)));
280         return GST_STATE_FAILURE;
281         break;
282       case GST_STATE_ASYNC:
283         GST_DEBUG (0,"child '%s' is changing state asynchronously\n", gst_element_get_name (child));
284         break;
285     }
286 //    g_print("\n");
287     children = g_list_next (children);
288   }
289 //  g_print("<-- \"%s\"\n",gst_object_get_name(GST_OBJECT(bin)));
290
291
292   return gst_bin_change_state_norecurse (bin);
293 }
294
295
296 static GstElementStateReturn
297 gst_bin_change_state_norecurse (GstBin *bin)
298 {
299
300   if (GST_ELEMENT_CLASS (parent_class)->change_state)
301     return GST_ELEMENT_CLASS (parent_class)->change_state (GST_ELEMENT (bin));
302   else
303     return GST_STATE_FAILURE;
304 }
305
306 static gboolean
307 gst_bin_change_state_type(GstBin *bin,
308                           GstElementState state,
309                           GtkType type)
310 {
311   GList *children;
312   GstElement *child;
313
314 //  g_print("gst_bin_change_state_type(\"%s\",%d,%d);\n",
315 //          gst_object_get_name(GST_OBJECT(bin)),state,type);
316
317   g_return_val_if_fail (GST_IS_BIN (bin), FALSE);
318   g_return_val_if_fail (bin->numchildren != 0, FALSE);
319
320 //  g_print("-->\n");
321   children = bin->children;
322   while (children) {
323     child = GST_ELEMENT (children->data);
324     if (GST_IS_BIN (child)) {
325       if (!gst_bin_set_state_type (GST_BIN (child), state,type))
326         return FALSE;
327     } else if (GTK_CHECK_TYPE (child,type)) {
328       if (!gst_element_set_state (child,state))
329         return FALSE;
330     }
331 //    g_print("\n");
332     children = g_list_next (children);
333   }
334   if (type == GST_TYPE_BIN)
335     gst_element_set_state (GST_ELEMENT (bin),state);
336
337   return TRUE;
338 }
339
340 /**
341  * gst_bin_set_state_type:
342  * @bin: #GstBin to set the state
343  * @state: the new state to set the elements to
344  * @type: the type of elements to change
345  *
346  * Sets the state of only those objects of the given type.
347  *
348  * Returns: indication if the state change was successfull
349  */
350 gboolean
351 gst_bin_set_state_type (GstBin *bin,
352                         GstElementState state,
353                         GtkType type)
354 {
355   GstBinClass *oclass;
356
357   GST_DEBUG (0,"gst_bin_set_state_type(\"%s\",%d,%d)\n",
358           gst_element_get_name (GST_ELEMENT (bin)), state,type);
359
360   g_return_val_if_fail (bin != NULL, FALSE);
361   g_return_val_if_fail (GST_IS_BIN (bin), FALSE);
362
363   oclass = GST_BIN_CLASS (GTK_OBJECT (bin)->klass);
364
365   if (oclass->change_state_type)
366     (oclass->change_state_type) (bin,state,type);
367   return TRUE;
368 }
369
370 static void
371 gst_bin_real_destroy (GtkObject *object)
372 {
373   GstBin *bin = GST_BIN (object);
374   GList *children;
375   GstElement *child;
376
377   GST_DEBUG (0,"in gst_bin_real_destroy()\n");
378
379   children = bin->children;
380   while (children) {
381     child = GST_ELEMENT (children->data);
382     gst_element_destroy (child);
383     children = g_list_next (children);
384   }
385
386   g_list_free (bin->children);
387 }
388
389 /**
390  * gst_bin_get_by_name:
391  * @bin: #Gstbin to search
392  * @name: the element name to search for
393  *
394  * Get the element with the given name from this bin.
395  *
396  * Returns: the element with the given name
397  */
398 GstElement*
399 gst_bin_get_by_name (GstBin *bin,
400                      const gchar *name)
401 {
402   GList *children;
403   GstElement *child;
404
405   g_return_val_if_fail (bin != NULL, NULL);
406   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
407   g_return_val_if_fail (name != NULL, NULL);
408
409   GST_INFO_ELEMENT (GST_CAT_PARENTAGE, bin, "looking up child element %s", name);
410
411   children = bin->children;
412   while (children) {
413     child = GST_ELEMENT (children->data);
414     if (!strcmp (child->name,name))
415       return child;
416     if (GST_IS_BIN (child)) {
417       GstElement *res = gst_bin_get_by_name (GST_BIN (child), name);
418       if (res)
419         return res;
420     }
421     children = g_list_next (children);
422   }
423
424   return NULL;
425 }
426
427 /**
428  * gst_bin_get_list:
429  * @bin: #Gstbin to get the list from
430  *
431  * Get the list of elements in this bin.
432  *
433  * Returns: a GList of elements
434  */
435 GList*
436 gst_bin_get_list (GstBin *bin)
437 {
438   g_return_val_if_fail (bin != NULL, NULL);
439   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
440
441   return bin->children;
442 }
443
444 static xmlNodePtr
445 gst_bin_save_thyself (GstElement *element,
446                       xmlNodePtr parent)
447 {
448   GstBin *bin = GST_BIN (element);
449   xmlNodePtr childlist;
450   GList *children;
451   GstElement *child;
452
453   if (GST_ELEMENT_CLASS (parent_class)->save_thyself)
454     GST_ELEMENT_CLASS (parent_class)->save_thyself (GST_ELEMENT (bin), parent);
455
456   childlist = xmlNewChild (parent,NULL,"children",NULL);
457
458   GST_INFO_ELEMENT (GST_CAT_XML, bin, "saving %d children", bin->numchildren);
459
460   children = bin->children;
461   while (children) {
462     child = GST_ELEMENT (children->data);
463     gst_element_save_thyself (child, childlist);
464     children = g_list_next (children);
465   }
466   return childlist;
467 }
468
469 static void
470 gst_bin_restore_thyself (GstElement *element,
471                          xmlNodePtr parent,
472                          GHashTable *elements)
473 {
474   GstBin *bin = GST_BIN (element);
475   xmlNodePtr field = parent->xmlChildrenNode;
476   xmlNodePtr childlist;
477
478 //  g_print("gstbin: restore \"%s\"\n", gst_element_get_name (element));
479
480   while (field) {
481     if (!strcmp (field->name, "children")) {
482       GST_INFO_ELEMENT (GST_CAT_XML, element, "loading children");
483       childlist = field->xmlChildrenNode;
484       while (childlist) {
485         if (!strcmp (childlist->name, "element")) {
486           GstElement *element = gst_element_load_thyself (childlist, elements);
487
488           gst_bin_add (bin, element);
489         }
490         childlist = childlist->next;
491       }
492     }
493
494     field = field->next;
495   }
496
497 }
498
499 void
500 gst_bin_use_cothreads (GstBin *bin,
501                        gboolean enabled)
502 {
503   g_return_if_fail (GST_IS_BIN (bin));
504
505   bin->use_cothreads = enabled;
506 }
507
508 /**
509  * gst_bin_iterate:
510  * @bin: #Gstbin to iterate
511  *
512  * Iterates over the elements in this bin.
513  */
514 gboolean
515 gst_bin_iterate (GstBin *bin)
516 {
517   GstBinClass *oclass;
518   gboolean eos = TRUE;
519
520   GST_DEBUG_ENTER("(\"%s\")",gst_element_get_name(GST_ELEMENT(bin)));
521
522   oclass = GST_BIN_CLASS (GTK_OBJECT (bin)->klass);
523
524   if (oclass->iterate)
525     eos = (oclass->iterate) (bin);
526
527   GST_DEBUG_LEAVE("(\"%s\")",gst_element_get_name(GST_ELEMENT(bin)));
528
529   return eos;
530 }
531
532 /**
533  * gst_bin_create_plan:
534  * @bin: #GstBin to create the plan for
535  *
536  * Let the bin figure out how to handle its children.
537  */
538 void
539 gst_bin_create_plan (GstBin *bin)
540 {
541   GstBinClass *oclass;
542
543   oclass = GST_BIN_CLASS (GTK_OBJECT (bin)->klass);
544
545   if (oclass->create_plan)
546     (oclass->create_plan) (bin);
547 }
548
549 /* out internal element fired EOS, we decrement the number of pending EOS childs */
550 static void
551 gst_bin_received_eos (GstElement *element, GstBin *bin)
552 {
553   GST_INFO_ELEMENT (GST_CAT_PLANNING, bin, "child %s fired eos, pending %d\n", gst_element_get_name (element),
554                   bin->num_eos_providers);
555
556   GST_LOCK (bin);
557   if (bin->num_eos_providers) {
558     bin->num_eos_providers--;
559     g_cond_signal (bin->eoscond);
560   }
561   GST_UNLOCK (bin);
562 }
563
564 /**
565  * gst_bin_schedule:
566  * @bin: #GstBin to schedule
567  *
568  * Let the bin figure out how to handle its children.
569  */
570 void
571 gst_bin_schedule (GstBin *bin)
572 {
573   GstBinClass *oclass;
574
575   oclass = GST_BIN_CLASS (GTK_OBJECT (bin)->klass);
576
577   if (oclass->schedule)
578     (oclass->schedule) (bin);
579 }
580
581 typedef struct {
582   gulong offset;
583   gulong size;
584 } region_struct;
585
586
587 static void
588 gst_bin_create_plan_func (GstBin *bin)
589 {
590   GstElement *manager;
591   GList *elements;
592   GstElement *element;
593 #ifdef GST_DEBUG_ENABLED
594   const gchar *elementname;
595 #endif
596   GSList *pending = NULL;
597   GstBin *pending_bin;
598
599   GST_DEBUG_ENTER("(\"%s\")",gst_element_get_name (GST_ELEMENT (bin)));
600
601   GST_INFO_ELEMENT (GST_CAT_PLANNING, bin, "creating plan");
602
603   // first figure out which element is the manager of this and all child elements
604   // if we're a managing bin ourselves, that'd be us
605   if (GST_FLAG_IS_SET (bin, GST_BIN_FLAG_MANAGER)) {
606     manager = GST_ELEMENT (bin);
607     GST_DEBUG (0,"setting manager to self\n");
608   // otherwise, it's what our parent says it is
609   } else {
610     manager = gst_element_get_manager (GST_ELEMENT (bin));
611     if (!manager) {
612       GST_DEBUG (0,"manager not set for element \"%s\" assuming manager is self\n", gst_element_get_name (GST_ELEMENT (bin)));
613       manager = GST_ELEMENT (bin);
614       GST_FLAG_SET (bin, GST_BIN_FLAG_MANAGER);
615     }
616     GST_DEBUG (0,"setting manager to \"%s\"\n", gst_element_get_name (manager));
617   }
618   gst_element_set_manager (GST_ELEMENT (bin), manager);
619
620   // perform the first recursive pass of plan generation
621   // we set the manager of every element but those who manage themselves
622   // the need for cothreads is also determined recursively
623   GST_DEBUG (0,"performing first-phase recursion\n");
624   bin->need_cothreads = bin->use_cothreads;
625   if (bin->need_cothreads)
626     GST_DEBUG (0,"requiring cothreads because we're forced to\n");
627
628   elements = bin->children;
629   while (elements) {
630     element = GST_ELEMENT (elements->data);
631     elements = g_list_next (elements);
632 #ifdef GST_DEBUG_ENABLED
633     elementname = gst_element_get_name (element);
634 #endif
635     GST_DEBUG (0,"have element \"%s\"\n",elementname);
636
637     // first set their manager
638     GST_DEBUG (0,"setting manager of \"%s\" to \"%s\"\n",elementname,gst_element_get_name(manager));
639     gst_element_set_manager (element, manager);
640
641     // we do recursion and such for Bins
642     if (GST_IS_BIN (element)) {
643       // recurse into the child Bin
644       GST_DEBUG (0,"recursing into child Bin \"%s\" with manager \"%s\"\n",elementname,
645                       gst_element_get_name(element->manager));
646       gst_bin_create_plan (GST_BIN (element));
647       GST_DEBUG (0,"after recurse got manager \"%s\"\n",
648                       gst_element_get_name(element->manager));
649       // check to see if it needs cothreads and isn't self-managing
650       if (((GST_BIN (element))->need_cothreads) && !GST_FLAG_IS_SET(element,GST_BIN_FLAG_MANAGER)) {
651         GST_DEBUG (0,"requiring cothreads because child bin \"%s\" does\n",elementname);
652         bin->need_cothreads = TRUE;
653       }
654     } else {
655       // then we need to determine whether they need cothreads
656       // if it's a loop-based element, use cothreads
657       if (element->loopfunc != NULL) {
658         GST_DEBUG (0,"requiring cothreads because \"%s\" is a loop-based element\n",elementname);
659         GST_FLAG_SET (element, GST_ELEMENT_USE_COTHREAD);
660       // if it's a 'complex' element, use cothreads
661       } else if (GST_FLAG_IS_SET (element, GST_ELEMENT_COMPLEX)) {
662         GST_DEBUG (0,"requiring cothreads because \"%s\" is complex\n",elementname);
663         GST_FLAG_SET (element, GST_ELEMENT_USE_COTHREAD);
664       // if the element has more than one sink pad, use cothreads
665       } else if (element->numsinkpads > 1) {
666         GST_DEBUG (0,"requiring cothreads because \"%s\" has more than one sink pad\n",elementname);
667         GST_FLAG_SET (element, GST_ELEMENT_USE_COTHREAD);
668       }
669       if (GST_FLAG_IS_SET (element, GST_ELEMENT_USE_COTHREAD))
670         bin->need_cothreads = TRUE;
671     }
672   }
673
674
675   // if we're not a manager thread, we're done.
676   if (!GST_FLAG_IS_SET (bin, GST_BIN_FLAG_MANAGER)) {
677     GST_DEBUG_LEAVE("(\"%s\")",gst_element_get_name(GST_ELEMENT(bin)));
678     return;
679   }
680
681   // clear previous plan state
682   g_list_free (bin->managed_elements);
683   bin->managed_elements = NULL;
684   bin->num_managed_elements = 0;
685
686   // find all the managed children
687   // here we pull off the trick of walking an entire arbitrary tree without recursion
688   GST_DEBUG (0,"attempting to find all the elements to manage\n");
689   pending = g_slist_prepend (pending, bin);
690   do {
691     // retrieve the top of the stack and pop it
692     pending_bin = GST_BIN (pending->data);
693     pending = g_slist_remove (pending, pending_bin);
694
695     // walk the list of elements, find bins, and do stuff
696     GST_DEBUG (0,"checking Bin \"%s\" for managed elements\n",
697           gst_element_get_name (GST_ELEMENT (pending_bin)));
698     elements = pending_bin->children;
699     while (elements) {
700       element = GST_ELEMENT (elements->data);
701       elements = g_list_next (elements);
702 #ifdef GST_DEBUG_ENABLED
703       elementname = gst_element_get_name (element);
704 #endif
705
706       // if it's ours, add it to the list
707       if (element->manager == GST_ELEMENT(bin)) {
708         // if it's a Bin, add it to the list of Bins to check
709         if (GST_IS_BIN (element)) {
710           GST_DEBUG (0,"flattened recurse into \"%s\"\n",elementname);
711           pending = g_slist_prepend (pending, element);
712
713         // otherwise add it to the list of elements
714         } else {
715           GST_DEBUG (0,"found element \"%s\" that I manage\n",elementname);
716           bin->managed_elements = g_list_prepend (bin->managed_elements, element);
717           bin->num_managed_elements++;
718         }
719       }
720       // else it's not ours and we need to wait for EOS notifications
721       else {
722         gtk_signal_connect (GTK_OBJECT (element), "eos", gst_bin_received_eos, bin);
723         bin->eos_providers = g_list_prepend (bin->eos_providers, element);
724         bin->num_eos_providers++;
725       }
726     }
727   } while (pending);
728
729   GST_DEBUG (0,"have %d elements to manage, implementing plan\n",bin->num_managed_elements);
730
731   gst_bin_schedule(bin);
732
733   g_print ("gstbin \"%s\", eos providers:%d\n",
734                   gst_element_get_name (GST_ELEMENT (bin)),
735                   bin->num_eos_providers);
736
737   GST_DEBUG_LEAVE("(\"%s\")",gst_element_get_name(GST_ELEMENT(bin)));
738 }
739
740 static gboolean
741 gst_bin_iterate_func (GstBin *bin)
742 {
743   GList *chains;
744   _GstBinChain *chain;
745   GList *entries;
746   GstElement *entry;
747   GList *pads;
748   GstPad *pad;
749   GstBuffer *buf = NULL;
750   gint num_scheduled = 0;
751   gboolean eos = FALSE;
752
753   GST_DEBUG_ENTER("(\"%s\")", gst_element_get_name (GST_ELEMENT (bin)));
754
755   g_return_val_if_fail (bin != NULL, TRUE);
756   g_return_val_if_fail (GST_IS_BIN (bin), TRUE);
757   g_return_val_if_fail (GST_STATE (bin) == GST_STATE_PLAYING, TRUE);
758
759   // step through all the chains
760   chains = bin->chains;
761   while (chains) {
762     chain = (_GstBinChain *)(chains->data);
763     chains = g_list_next (chains);
764
765     if (!chain->need_scheduling) continue;
766
767     if (chain->need_cothreads) {
768       // all we really have to do is switch to the first child
769       // FIXME this should be lots more intelligent about where to start
770       GST_DEBUG (0,"starting iteration via cothreads\n");
771
772       entry = GST_ELEMENT (chain->elements->data);
773       GST_FLAG_SET (entry, GST_ELEMENT_COTHREAD_STOPPING);
774       GST_DEBUG (0,"set COTHREAD_STOPPING flag on \"%s\"(@%p)\n",
775             gst_element_get_name(entry),entry);
776       cothread_switch (entry->threadstate);
777
778     } else {
779       GST_DEBUG (0,"starting iteration via chain-functions\n");
780
781       entries = chain->entries;
782
783       g_assert (entries != NULL);
784
785       while (entries) {
786         entry = GST_ELEMENT (entries->data);
787         entries = g_list_next (entries);
788
789         GST_DEBUG (0,"have entry \"%s\"\n",gst_element_get_name(entry));
790
791         if (GST_IS_BIN (entry)) {
792           gst_bin_iterate (GST_BIN (entry));
793         } else {
794           pads = entry->pads;
795           while (pads) {
796             pad = GST_PAD (pads->data);
797             if (GST_RPAD_DIRECTION(pad) == GST_PAD_SRC) {
798               GST_DEBUG (0,"calling getfunc of %s:%s\n",GST_DEBUG_PAD_NAME(pad));
799               if (GST_REAL_PAD(pad)->getfunc == NULL)
800                 fprintf(stderr, "error, no getfunc in \"%s\"\n", gst_element_get_name (entry));
801               else
802                 buf = (GST_REAL_PAD(pad)->getfunc)(pad);
803               if (buf) gst_pad_push(pad,buf);
804             }
805             pads = g_list_next (pads);
806           }
807         }
808       }
809     }
810     num_scheduled++;
811   }
812
813   // check if nothing was scheduled that was ours..
814   if (!num_scheduled) {
815     // are there any other elements that are still busy?
816     if (bin->num_eos_providers) {
817       GST_LOCK (bin);
818       GST_DEBUG (0,"waiting for eos providers\n");
819       g_cond_wait (bin->eoscond, GST_OBJECT(bin)->lock);
820       GST_DEBUG (0,"num eos providers %d\n", bin->num_eos_providers);
821       GST_UNLOCK (bin);
822     }
823     else {
824       gst_element_signal_eos (GST_ELEMENT (bin));
825       eos = TRUE;
826     }
827   }
828
829   GST_DEBUG_LEAVE("(%s)", gst_element_get_name (GST_ELEMENT (bin)));
830   return !eos;
831 }
832