gst/parse/grammar.y: Fix a leak in parse-launch for any source-or-sink named element...
[platform/upstream/gstreamer.git] / gst / parse / grammar.y
1 %{
2 #include <glib-object.h>
3 #include <glib.h>
4 #include <stdio.h>
5 #include <string.h>
6 #include <stdlib.h>
7
8 #include "../gst_private.h"
9 #include "../gst-i18n-lib.h"
10
11 #include "../gstconfig.h"
12 #include "../gstparse.h"
13 #include "../gstinfo.h"
14 #include "../gsterror.h"
15 #include "../gsturi.h"
16 #include "../gstutils.h"
17 #include "../gstvalue.h"
18 #include "../gstchildproxy.h"
19 #include "types.h"
20
21 /* All error messages in this file are user-visible and need to be translated.
22  * Don't start the message with a capital, and don't end them with a period,
23  * as they will be presented inside a sentence/error.
24  */
25   
26 #define YYERROR_VERBOSE 1
27 #define YYPARSE_PARAM graph
28
29 #ifdef __GST_PARSE_TRACE
30 static guint __strings;
31 static guint __links;
32 static guint __chains;
33 gchar *
34 __gst_parse_strdup (gchar *org)
35 {
36   gchar *ret; 
37   __strings++;
38   ret = g_strdup (org);
39   /* g_print ("ALLOCATED STR   (%3u): %p %s\n", __strings, ret, ret); */
40   return ret;
41 }
42 void
43 __gst_parse_strfree (gchar *str)
44 {
45   if (str) {
46     /* g_print ("FREEING STR     (%3u): %p %s\n", __strings - 1, str, str); */
47     g_free (str);
48     g_return_if_fail (__strings > 0);
49     __strings--;
50   }
51 }
52 link_t *__gst_parse_link_new ()
53 {
54   link_t *ret;
55   __links++;
56   ret = g_new0 (link_t, 1);
57   /* g_print ("ALLOCATED LINK  (%3u): %p\n", __links, ret); */
58   return ret;
59 }
60 void
61 __gst_parse_link_free (link_t *data)
62 {
63   if (data) {
64     /* g_print ("FREEING LINK    (%3u): %p\n", __links - 1, data); */
65     g_free (data);
66     g_return_if_fail (__links > 0);
67     __links--;
68   }
69 }
70 chain_t *
71 __gst_parse_chain_new ()
72 {
73   chain_t *ret;
74   __chains++;
75   ret = g_new0 (chain_t, 1);
76   /* g_print ("ALLOCATED CHAIN (%3u): %p\n", __chains, ret); */
77   return ret;
78 }
79 void
80 __gst_parse_chain_free (chain_t *data)
81 {
82   /* g_print ("FREEING CHAIN   (%3u): %p\n", __chains - 1, data); */
83   g_free (data);
84   g_return_if_fail (__chains > 0);
85   __chains--;
86 }
87
88 #endif /* __GST_PARSE_TRACE */
89
90 typedef struct {
91   gchar *src_pad;
92   gchar *sink_pad;
93   GstElement *sink;
94   GstCaps *caps;
95   gulong signal_id;
96   /* FIXME: need to connect to "disposed" signal to clean up,
97    * but there is no such signal */
98 } DelayedLink;
99
100 /*** define SET_ERROR and ERROR macros/functions */
101
102 #ifdef G_HAVE_ISO_VARARGS
103
104 #  define SET_ERROR(error, type, ...) \
105 G_STMT_START { \
106   GST_CAT_ERROR (GST_CAT_PIPELINE, __VA_ARGS__); \
107   if ((error) && !*(error)) { \
108     g_set_error ((error), GST_PARSE_ERROR, (type), __VA_ARGS__); \
109   } \
110 } G_STMT_END
111
112 #  define ERROR(type, ...) \
113   SET_ERROR (((graph_t *) graph)->error, (type), __VA_ARGS__ )
114
115 #elif defined(G_HAVE_GNUC_VARARGS)
116
117 #  define SET_ERROR(error, type, args...) \
118 G_STMT_START { \
119   GST_CAT_ERROR (GST_CAT_PIPELINE, args ); \
120   if ((error) && !*(error)) { \
121     g_set_error ((error), GST_PARSE_ERROR, (type), args ); \
122   } \
123 } G_STMT_END
124
125 #  define ERROR(type, args...) \
126   SET_ERROR (((graph_t *) graph)->error,(type) , args )
127
128 #else
129
130 static inline void
131 SET_ERROR (GError **error, gint type, const char *format, ...)
132 {
133   if (error) {
134     if (*error) {
135       g_warning ("error while parsing");
136     } else {
137       va_list varargs;
138       char *string;
139
140       va_start (varargs, format);
141       string = g_strdup_vprintf (format, varargs);
142       va_end (varargs);
143       
144       g_set_error (error, GST_PARSE_ERROR, type, string);
145
146       g_free (string);
147     }
148   }
149 }
150
151 #endif /* G_HAVE_ISO_VARARGS */
152
153 /*** define YYPRINTF macro/function if we're debugging */
154
155 /* bison 1.35 calls this macro with side effects, we need to make sure the
156    side effects work - crappy bison */
157
158 #ifndef GST_DISABLE_GST_DEBUG
159 #  define YYDEBUG 1
160
161 #  ifdef G_HAVE_ISO_VARARGS
162
163 /* #  define YYFPRINTF(a, ...) GST_CAT_DEBUG (GST_CAT_PIPELINE, __VA_ARGS__) */
164 #    define YYFPRINTF(a, ...) \
165 G_STMT_START { \
166      gchar *temp = g_strdup_printf (__VA_ARGS__); \
167      GST_CAT_LOG (GST_CAT_PIPELINE, temp); \
168      g_free (temp); \
169 } G_STMT_END
170
171 #  elif defined(G_HAVE_GNUC_VARARGS)
172
173 #    define YYFPRINTF(a, args...) \
174 G_STMT_START { \
175      gchar *temp = g_strdup_printf ( args ); \
176      GST_CAT_LOG (GST_CAT_PIPELINE, temp); \
177      g_free (temp); \
178 } G_STMT_END
179
180 #  else
181
182 static inline void
183 YYPRINTF(const char *format, ...)
184 {
185   va_list varargs;
186   gchar *temp;
187   
188   va_start (varargs, format);
189   temp = g_strdup_vprintf (format, varargs);
190   GST_CAT_LOG (GST_CAT_PIPELINE, "%s", temp);
191   g_free (temp);
192   va_end (varargs);
193 }
194
195 #  endif /* G_HAVE_ISO_VARARGS */
196
197 #endif /* GST_DISABLE_GST_DEBUG */
198
199 #define GST_BIN_MAKE(res, type, chainval, assign) \
200 G_STMT_START { \
201   chain_t *chain = chainval; \
202   GSList *walk; \
203   GstBin *bin = (GstBin *) gst_element_factory_make (type, NULL); \
204   if (!chain) { \
205     SET_ERROR (((graph_t *) graph)->error, GST_PARSE_ERROR_EMPTY_BIN, \
206         _("specified empty bin \"%s\", not allowed"), type); \
207     g_slist_foreach (assign, (GFunc) gst_parse_strfree, NULL); \
208     g_slist_free (assign); \
209     YYERROR; \
210   } else if (!bin) { \
211     SET_ERROR (((graph_t *) graph)->error, GST_PARSE_ERROR_NO_SUCH_ELEMENT, \
212         _("no bin \"%s\", skipping"), type); \
213     g_slist_foreach (assign, (GFunc) gst_parse_strfree, NULL); \
214     g_slist_free (assign); \
215     res = chain; \
216   } else { \
217     for (walk = chain->elements; walk; walk = walk->next ) \
218       gst_bin_add (bin, GST_ELEMENT (walk->data)); \
219     g_slist_free (chain->elements); \
220     chain->elements = g_slist_prepend (NULL, bin); \
221     res = chain; \
222     /* set the properties now */ \
223     for (walk = assign; walk; walk = walk->next) \
224       gst_parse_element_set ((gchar *) walk->data, GST_ELEMENT (bin), graph); \
225     g_slist_free (assign); \
226   } \
227 } G_STMT_END
228
229 #define MAKE_LINK(link, _src, _src_name, _src_pads, _sink, _sink_name, _sink_pads) \
230 G_STMT_START { \
231   link = gst_parse_link_new (); \
232   link->src = _src; \
233   link->sink = _sink; \
234   link->src_name = _src_name; \
235   link->sink_name = _sink_name; \
236   link->src_pads = _src_pads; \
237   link->sink_pads = _sink_pads; \
238   link->caps = NULL; \
239 } G_STMT_END
240
241 #define MAKE_REF(link, _src, _pads) \
242 G_STMT_START { \
243   gchar *padname = _src; \
244   GSList *pads = _pads; \
245   if (padname) { \
246     while (*padname != '.') padname++; \
247     *padname = '\0'; \
248     padname++; \
249     if (*padname != '\0') \
250       pads = g_slist_prepend (pads, gst_parse_strdup (padname)); \
251   } \
252   MAKE_LINK (link, NULL, _src, pads, NULL, NULL, NULL); \
253 } G_STMT_END
254
255 static void
256 gst_parse_element_set (gchar *value, GstElement *element, graph_t *graph)
257 {
258   GParamSpec *pspec;
259   gchar *pos = value;
260   GValue v = { 0, }; 
261   GValue v2 = { 0, };
262   GstObject *target;
263   GType value_type;
264
265   /* parse the string, so the property name is null-terminated an pos points
266      to the beginning of the value */
267   while (!g_ascii_isspace (*pos) && (*pos != '=')) pos++; 
268   if (*pos == '=') { 
269     *pos = '\0'; 
270   } else { 
271     *pos = '\0'; 
272     pos++;
273     while (g_ascii_isspace (*pos)) pos++; 
274   } 
275   pos++; 
276   while (g_ascii_isspace (*pos)) pos++; 
277   if (*pos == '"') {
278     pos++;
279     pos[strlen (pos) - 1] = '\0';
280   }
281   gst_parse_unescape (pos);
282
283   if (gst_child_proxy_lookup (GST_OBJECT (element), value, &target, &pspec)) { 
284     value_type = G_PARAM_SPEC_VALUE_TYPE (pspec); 
285     GST_LOG ("parsing property %s as a %s", pspec->name,
286       g_type_name (value_type));
287     g_value_init (&v, value_type);
288     if (!gst_value_deserialize (&v, pos))
289       goto error;
290     g_object_set_property (G_OBJECT (target), pspec->name, &v);
291     gst_object_unref (target);
292   } else { 
293     SET_ERROR (((graph_t *) graph)->error, GST_PARSE_ERROR_NO_SUCH_PROPERTY, \
294         _("no property \"%s\" in element \"%s\""), value, \
295         GST_ELEMENT_NAME (element)); 
296   }
297
298 out:
299   gst_parse_strfree (value);
300   if (G_IS_VALUE (&v))
301     g_value_unset (&v);
302   if (G_IS_VALUE (&v2))
303     g_value_unset (&v2);
304   return;
305   
306 error:
307   gst_object_unref (target);
308   SET_ERROR (((graph_t *) graph)->error, GST_PARSE_ERROR_COULD_NOT_SET_PROPERTY,
309          _("could not set property \"%s\" in element \"%s\" to \"%s\""), 
310          value, GST_ELEMENT_NAME (element), pos); 
311   goto out;
312 }
313 static inline void
314 gst_parse_free_link (link_t *link)
315 {
316   gst_parse_strfree (link->src_name);
317   gst_parse_strfree (link->sink_name);
318   g_slist_foreach (link->src_pads, (GFunc) gst_parse_strfree, NULL);
319   g_slist_foreach (link->sink_pads, (GFunc) gst_parse_strfree, NULL);
320   g_slist_free (link->src_pads);
321   g_slist_free (link->sink_pads);
322   if (link->caps) gst_caps_unref (link->caps);
323   gst_parse_link_free (link);  
324 }
325
326 static void
327 gst_parse_element_lock (GstElement *element, gboolean lock)
328 {
329   GstPad *pad;
330   GstIterator *pads;
331   gboolean unlocked_peer = FALSE;
332   gboolean done = FALSE;
333   GList *walk;
334   
335   if (gst_element_is_locked_state (element) == lock)
336     return;
337
338   return;
339
340   /* check if we have an unlocked peer */
341   pads = gst_element_iterate_pads (element);
342   while (!done) {
343     gpointer data;
344     switch (gst_iterator_next (pads, &data)) {
345       case GST_ITERATOR_OK:
346       {
347         GstPad *pad = GST_PAD_CAST (data);
348
349         if (GST_PAD_IS_SINK (pad) && GST_PAD_PEER (pad) &&
350             !gst_element_is_locked_state (
351                 GST_PAD_PARENT (GST_PAD_PEER (pad)))) {
352           unlocked_peer = TRUE;
353           done = TRUE;
354         }
355         gst_object_unref (GST_OBJECT (pad));
356         break;
357       }
358       case GST_ITERATOR_RESYNC:
359         unlocked_peer = FALSE;
360         gst_iterator_resync (pads);
361         break;
362       case GST_ITERATOR_DONE:
363         done = TRUE;
364         break;
365       default:
366         g_assert_not_reached ();
367         break;
368     }
369   }
370   gst_iterator_free (pads);
371
372   if (!(lock && unlocked_peer)) {
373     GST_CAT_DEBUG (GST_CAT_PIPELINE, "setting locked state on element");
374     gst_element_set_locked_state (element, lock);
375     if (!lock)
376     {
377       /* try to sync state with parent */
378       GST_CAT_DEBUG (GST_CAT_PIPELINE,
379           "trying to sync state of element with parent");
380       /* FIXME: it would be nice if we can figure out why it failed
381          (e.g. caps nego) and give an error about that instead. */
382       if (gst_element_set_state (element, GST_STATE_PLAYING)
383           == GST_STATE_CHANGE_FAILURE)
384         GST_ELEMENT_ERROR (element, CORE, STATE_CHANGE, (NULL), (NULL));
385     }
386   } else {
387     return;
388   }
389   
390   /* check if there are other pads to (un)lock */
391   walk = (GList *) element->pads;
392   for  (; walk; walk = walk->next) {
393     pad = GST_PAD_CAST (walk->data);
394     if (GST_PAD_IS_SRC (pad) && GST_PAD_PEER (pad)) {
395       GstElement *next = GST_ELEMENT (GST_OBJECT_PARENT (GST_PAD_PEER (pad)));
396       if (gst_element_is_locked_state (next) != lock)
397         gst_parse_element_lock (next, lock);
398     }
399   }
400 }
401 static void
402 gst_parse_found_pad (GstElement *src, GstPad *pad, gpointer data)
403 {
404   DelayedLink *link = (DelayedLink *) data;
405   
406   GST_CAT_INFO (GST_CAT_PIPELINE, "trying delayed linking %s:%s to %s:%s", 
407                 GST_STR_NULL (GST_ELEMENT_NAME (src)), GST_STR_NULL (link->src_pad),
408                 GST_STR_NULL (GST_ELEMENT_NAME (link->sink)), GST_STR_NULL (link->sink_pad));
409
410   if (gst_element_link_pads_filtered (src, link->src_pad, link->sink,
411       link->sink_pad, link->caps)) {
412     /* do this here, we don't want to get any problems later on when
413      * unlocking states */
414     GST_CAT_DEBUG (GST_CAT_PIPELINE, "delayed linking %s:%s to %s:%s worked", 
415                    GST_STR_NULL (GST_ELEMENT_NAME (src)), GST_STR_NULL (link->src_pad),
416                    GST_STR_NULL (GST_ELEMENT_NAME (link->sink)), GST_STR_NULL (link->sink_pad));
417     g_signal_handler_disconnect (src, link->signal_id);
418     g_free (link->src_pad);
419     g_free (link->sink_pad);
420     if (link->caps) gst_caps_unref (link->caps);
421     if (!gst_element_is_locked_state (src))
422       gst_parse_element_lock (link->sink, FALSE);
423     g_free (link);
424   }
425 }
426 /* both padnames and the caps may be NULL */
427 static gboolean
428 gst_parse_perform_delayed_link (GstElement *src, const gchar *src_pad, 
429                                 GstElement *sink, const gchar *sink_pad,
430                                 GstCaps *caps)
431 {
432   GList *templs = gst_element_class_get_pad_template_list (
433       GST_ELEMENT_GET_CLASS (src));
434          
435   for (; templs; templs = templs->next) {
436     GstPadTemplate *templ = (GstPadTemplate *) templs->data;
437     if ((GST_PAD_TEMPLATE_DIRECTION (templ) == GST_PAD_SRC) &&
438         (GST_PAD_TEMPLATE_PRESENCE(templ) == GST_PAD_SOMETIMES))
439     {
440       DelayedLink *data = g_new (DelayedLink, 1); 
441       
442       /* TODO: maybe we should check if src_pad matches this template's names */
443
444       GST_CAT_DEBUG (GST_CAT_PIPELINE, "trying delayed link %s:%s to %s:%s", 
445                      GST_STR_NULL (GST_ELEMENT_NAME (src)), GST_STR_NULL (src_pad),
446                      GST_STR_NULL (GST_ELEMENT_NAME (sink)), GST_STR_NULL (sink_pad));
447
448       data->src_pad = g_strdup (src_pad);
449       data->sink = sink;
450       data->sink_pad = g_strdup (sink_pad);
451       if (caps) {
452         data->caps = gst_caps_copy (caps);
453       } else {
454         data->caps = NULL;
455       }
456       data->signal_id = g_signal_connect (G_OBJECT (src), "pad-added", 
457           G_CALLBACK (gst_parse_found_pad), data);
458       return TRUE;
459     }
460   }
461   return FALSE;
462 }
463 /*
464  * performs a link and frees the struct. src and sink elements must be given
465  * return values   0 - link performed
466  *                 1 - link delayed
467  *                <0 - error
468  */
469 static gint
470 gst_parse_perform_link (link_t *link, graph_t *graph)
471 {
472   GstElement *src = link->src;
473   GstElement *sink = link->sink;
474   GSList *srcs = link->src_pads;
475   GSList *sinks = link->sink_pads;
476   g_assert (GST_IS_ELEMENT (src));
477   g_assert (GST_IS_ELEMENT (sink));
478   
479   GST_CAT_INFO (GST_CAT_PIPELINE,
480       "linking %s:%s to %s:%s (%u/%u) with caps \"%" GST_PTR_FORMAT "\"", 
481       GST_ELEMENT_NAME (src), link->src_name ? link->src_name : "(any)",
482       GST_ELEMENT_NAME (sink), link->sink_name ? link->sink_name : "(any)",
483       g_slist_length (srcs), g_slist_length (sinks), link->caps);
484
485   if (!srcs || !sinks) {
486     if (gst_element_link_pads_filtered (src,
487         srcs ? (const gchar *) srcs->data : NULL, sink,
488         sinks ? (const gchar *) sinks->data : NULL, link->caps)) {
489       gst_parse_element_lock (sink, gst_element_is_locked_state (src));
490       goto success;
491     } else {
492       if (gst_parse_perform_delayed_link (src,
493           srcs ? (const gchar *) srcs->data : NULL,
494           sink, sinks ? (const gchar *) sinks->data : NULL, link->caps)) {
495         gst_parse_element_lock (sink, TRUE);
496         goto success;
497       } else {
498         goto error;
499       }
500     }
501   }
502   if (g_slist_length (link->src_pads) != g_slist_length (link->src_pads)) {
503     goto error;
504   }
505   while (srcs && sinks) {
506     const gchar *src_pad = (const gchar *) srcs->data;
507     const gchar *sink_pad = (const gchar *) sinks->data;
508     srcs = g_slist_next (srcs);
509     sinks = g_slist_next (sinks);
510     if (gst_element_link_pads_filtered (src, src_pad, sink, sink_pad,
511         link->caps)) {
512       gst_parse_element_lock (sink, gst_element_is_locked_state (src));
513       continue;
514     } else {
515       if (gst_parse_perform_delayed_link (src, src_pad,
516                                           sink, sink_pad,
517                                           link->caps)) {
518         gst_parse_element_lock (sink, TRUE);
519         continue;
520       } else {
521         goto error;
522       }
523     }
524   }
525   
526 success:
527   gst_parse_free_link (link);
528   return 0;
529   
530 error:
531   SET_ERROR (((graph_t *) graph)->error, GST_PARSE_ERROR_LINK,
532       _("could not link %s to %s"), GST_ELEMENT_NAME (src),
533       GST_ELEMENT_NAME (sink));
534   gst_parse_free_link (link);
535   return -1;
536 }
537
538
539 static int yylex (void *lvalp);
540 static int yyerror (const char *s);
541 %}
542
543 %union {
544     gchar *s;
545     chain_t *c;
546     link_t *l;
547     GstElement *e;
548     GSList *p;
549     graph_t *g;
550 }
551
552 %token <s> PARSE_URL
553 %token <s> IDENTIFIER
554 %left <s> REF PADREF BINREF
555 %token <s> ASSIGNMENT
556 %token <s> LINK
557
558 %type <g> graph
559 %type <c> chain bin
560 %type <l> reference
561 %type <l> linkpart link
562 %type <p> linklist
563 %type <e> element 
564 %type <p> padlist pads assignments
565
566 %left '(' ')'
567 %left ','
568 %right '.'
569 %left '!' '='
570
571 %pure_parser
572
573 %start graph
574 %%
575
576 element:        IDENTIFIER                    { $$ = gst_element_factory_make ($1, NULL); 
577                                                 if (!$$)
578                                                   SET_ERROR (((graph_t *) graph)->error, GST_PARSE_ERROR_NO_SUCH_ELEMENT, _("no element \"%s\""), $1);
579                                                 gst_parse_strfree ($1);
580                                                 if (!$$)
581                                                   YYERROR;
582                                               }
583         |       element ASSIGNMENT            { gst_parse_element_set ($2, $1, graph);
584                                                 $$ = $1;
585                                               }
586         ;
587 assignments:    /* NOP */                     { $$ = NULL; }
588         |       assignments ASSIGNMENT        { $$ = g_slist_prepend ($1, $2); }
589         ;               
590 bin:            '(' assignments chain ')' { GST_BIN_MAKE ($$, "bin", $3, $2); }
591         |       BINREF assignments chain ')'  { GST_BIN_MAKE ($$, $1, $3, $2); 
592                                                 gst_parse_strfree ($1);
593                                               }
594         |       BINREF assignments ')'        { GST_BIN_MAKE ($$, $1, NULL, $2); 
595                                                 gst_parse_strfree ($1);
596                                               }
597         |       BINREF assignments error ')'  { GST_BIN_MAKE ($$, $1, NULL, $2); 
598                                                 gst_parse_strfree ($1);
599                                               }
600         ;
601         
602 pads:           PADREF                        { $$ = g_slist_prepend (NULL, $1); }
603         |       PADREF padlist                { $$ = $2;
604                                                 $$ = g_slist_prepend ($$, $1);
605                                               }                              
606         ;
607 padlist:        ',' IDENTIFIER                { $$ = g_slist_prepend (NULL, $2); }
608         |       ',' IDENTIFIER padlist        { $$ = g_slist_prepend ($3, $2); }
609         ;
610         
611 reference:      REF                           { MAKE_REF ($$, $1, NULL); }
612         |       REF padlist                   { MAKE_REF ($$, $1, $2); }
613         ;
614
615 linkpart:       reference                     { $$ = $1; }
616         |       pads                          { MAKE_REF ($$, NULL, $1); }
617         |       /* NOP */                     { MAKE_REF ($$, NULL, NULL); }
618         ;
619         
620 link:           linkpart LINK linkpart        { $$ = $1;
621                                                 if ($2) {
622                                                   $$->caps = gst_caps_from_string ($2);
623                                                   if (!$$->caps)
624                                                     SET_ERROR (((graph_t *) graph)->error, GST_PARSE_ERROR_LINK, _("could not parse caps \"%s\""), $2);
625                                                   gst_parse_strfree ($2);
626                                                 }
627                                                 $$->sink_name = $3->src_name;
628                                                 $$->sink_pads = $3->src_pads;
629                                                 gst_parse_link_free ($3);
630                                               }
631         ;
632         
633 linklist:       link                          { $$ = g_slist_prepend (NULL, $1); }
634         |       link linklist                 { $$ = g_slist_prepend ($2, $1); }
635         |       linklist error                { $$ = $1; }
636         ;       
637
638 chain:          element                       { $$ = gst_parse_chain_new ();
639                                                 $$->first = $$->last = $1;
640                                                 $$->front = $$->back = NULL;
641                                                 $$->elements = g_slist_prepend (NULL, $1);
642                                               }
643         |       bin                           { $$ = $1; }
644         |       chain chain                   { if ($1->back && $2->front) {
645                                                   if (!$1->back->sink_name) {
646                                                     SET_ERROR (((graph_t *) graph)->error, GST_PARSE_ERROR_LINK, _("link without source element"));
647                                                     gst_parse_free_link ($1->back);
648                                                   } else {
649                                                     ((graph_t *) graph)->links = g_slist_prepend (((graph_t *) graph)->links, $1->back);
650                                                   }
651                                                   if (!$2->front->src_name) {
652                                                     SET_ERROR (((graph_t *) graph)->error, GST_PARSE_ERROR_LINK, _("link without sink element"));
653                                                     gst_parse_free_link ($2->front);
654                                                   } else {
655                                                     ((graph_t *) graph)->links = g_slist_prepend (((graph_t *) graph)->links, $2->front);
656                                                   }
657                                                   $1->back = NULL;
658                                                 } else if ($1->back) {
659                                                   if (!$1->back->sink_name) {
660                                                     $1->back->sink = $2->first;
661                                                   }
662                                                 } else if ($2->front) {
663                                                   if (!$2->front->src_name) {
664                                                     $2->front->src = $1->last;
665                                                   }
666                                                   $1->back = $2->front;
667                                                 }
668                                                 
669                                                 if ($1->back) {
670                                                   ((graph_t *) graph)->links = g_slist_prepend (((graph_t *) graph)->links, $1->back);
671                                                 }
672                                                 $1->last = $2->last;
673                                                 $1->back = $2->back;
674                                                 $1->elements = g_slist_concat ($1->elements, $2->elements);
675                                                 if ($2)
676                                                   gst_parse_chain_free ($2);
677                                                 $$ = $1;
678                                               }
679         |       chain linklist                { GSList *walk;
680                                                 if ($1->back) {
681                                                   $2 = g_slist_prepend ($2, $1->back);
682                                                   $1->back = NULL;
683                                                 } else {
684                                                   if (!((link_t *) $2->data)->src_name) {
685                                                     ((link_t *) $2->data)->src = $1->last;
686                                                   }                                               
687                                                 }
688                                                 for (walk = $2; walk; walk = walk->next) {
689                                                   link_t *link = (link_t *) walk->data;
690                                                   if (!link->sink_name && walk->next) {
691                                                     SET_ERROR (((graph_t *) graph)->error, GST_PARSE_ERROR_LINK, _("link without sink element"));
692                                                     gst_parse_free_link (link);
693                                                   } else if (!link->src_name && !link->src) {
694                                                     SET_ERROR (((graph_t *) graph)->error, GST_PARSE_ERROR_LINK, _("link without source element"));
695                                                     gst_parse_free_link (link);
696                                                   } else {
697                                                     if (walk->next) {
698                                                       ((graph_t *) graph)->links = g_slist_prepend (((graph_t *) graph)->links, link);
699                                                     } else {
700                                                       $1->back = link;
701                                                     }
702                                                   }
703                                                 }
704                                                 g_slist_free ($2);
705                                                 $$ = $1;
706                                               }
707         |       chain error                   { $$ = $1; }
708         |       link chain                    { if ($2->front) {
709                                                   if (!$2->front->src_name) {
710                                                     SET_ERROR (((graph_t *) graph)->error, GST_PARSE_ERROR_LINK, _("link without source element"));
711                                                     gst_parse_free_link ($2->front);
712                                                   } else {
713                                                     ((graph_t *) graph)->links = g_slist_prepend (((graph_t *) graph)->links, $2->front);
714                                                   }
715                                                 }
716                                                 if (!$1->sink_name) {
717                                                   $1->sink = $2->first;
718                                                 }
719                                                 $2->front = $1;
720                                                 $$ = $2;
721                                               }
722         |       PARSE_URL chain               { $$ = $2;
723                                                 if ($$->front) {
724                                                   GstElement *element = 
725                                                           gst_element_make_from_uri (GST_URI_SRC, $1, NULL);
726                                                   if (!element) {
727                                                     SET_ERROR (((graph_t *) graph)->error, GST_PARSE_ERROR_NO_SUCH_ELEMENT, 
728                                                             _("no source element for URI \"%s\""), $1);
729                                                   } else {
730                                                     $$->front->src = element;
731                                                     ((graph_t *) graph)->links = g_slist_prepend (
732                                                             ((graph_t *) graph)->links, $$->front);
733                                                     $$->front = NULL;
734                                                     $$->elements = g_slist_prepend ($$->elements, element);
735                                                   }
736                                                 } else {
737                                                   SET_ERROR (((graph_t *) graph)->error, GST_PARSE_ERROR_LINK, 
738                                                           _("no element to link URI \"%s\" to"), $1);
739                                                 }
740                                                 g_free ($1);
741                                               }
742         |       link PARSE_URL                { GstElement *element =
743                                                           gst_element_make_from_uri (GST_URI_SINK, $2, NULL);
744                                                 if (!element) {
745                                                   SET_ERROR (((graph_t *) graph)->error, GST_PARSE_ERROR_NO_SUCH_ELEMENT, 
746                                                           _("no sink element for URI \"%s\""), $2);
747                                                   YYERROR;
748                                                 } else if ($1->sink_name || $1->sink_pads) {
749                                                   SET_ERROR (((graph_t *) graph)->error, GST_PARSE_ERROR_LINK, 
750                                                           _("could not link sink element for URI \"%s\""), $2);
751                                                   YYERROR;
752                                                 } else {
753                                                   $$ = gst_parse_chain_new ();
754                                                   $$->first = $$->last = element;
755                                                   $$->front = $1;
756                                                   $$->front->sink = element;
757                                                   $$->elements = g_slist_prepend (NULL, element);
758                                                 }
759                                                 g_free ($2);
760                                               }
761         ;
762 graph:          /* NOP */                     { SET_ERROR (((graph_t *) graph)->error, GST_PARSE_ERROR_EMPTY, _("empty pipeline not allowed"));
763                                                 $$ = (graph_t *) graph;
764                                               }
765         |       chain                         { $$ = (graph_t *) graph;
766                                                 if ($1->front) {
767                                                   if (!$1->front->src_name) {
768                                                     SET_ERROR (((graph_t *) graph)->error, GST_PARSE_ERROR_LINK, _("link without source element"));
769                                                     gst_parse_free_link ($1->front);
770                                                   } else {
771                                                     $$->links = g_slist_prepend ($$->links, $1->front);
772                                                   }
773                                                   $1->front = NULL;
774                                                 }
775                                                 if ($1->back) {
776                                                   if (!$1->back->sink_name) {
777                                                     SET_ERROR (((graph_t *) graph)->error, GST_PARSE_ERROR_LINK, _("link without sink element"));
778                                                     gst_parse_free_link ($1->back);
779                                                   } else {
780                                                     $$->links = g_slist_prepend ($$->links, $1->back);
781                                                   }
782                                                   $1->back = NULL;
783                                                 }
784                                                 $$->chain = $1;
785                                               }
786         ;
787
788 %%
789
790 extern FILE *_gst_parse_yyin;
791 int _gst_parse_yylex (YYSTYPE *lvalp);
792
793 static int yylex (void *lvalp) {
794     return _gst_parse_yylex ((YYSTYPE*) lvalp);
795 }
796
797 static int
798 yyerror (const char *s)
799 {
800   /* FIXME: This should go into the GError somehow, but how? */
801   g_warning ("error: %s", s);
802   return -1;
803 }
804
805 struct yy_buffer_state * _gst_parse_yy_scan_string (char*);
806 void _gst_parse_yy_delete_buffer (struct yy_buffer_state *);
807 GstElement *
808 _gst_parse_launch (const gchar *str, GError **error)
809 {
810   graph_t g;
811   gchar *dstr;
812   GSList *walk;
813   GstBin *bin = NULL;
814   GstElement *ret;
815   struct yy_buffer_state *buf;
816   
817   g_return_val_if_fail (str != NULL, NULL);
818
819   g.chain = NULL;
820   g.links = NULL;
821   g.error = error;
822   
823 #ifdef __GST_PARSE_TRACE
824   GST_CAT_DEBUG (GST_CAT_PIPELINE, "TRACE: tracing enabled");
825   __strings = __chains = __links = 0;
826 #endif /* __GST_PARSE_TRACE */
827
828   dstr = g_strdup (str);
829   buf = _gst_parse_yy_scan_string (dstr);
830
831 #ifndef YYDEBUG
832   yydebug = 1;
833 #endif
834
835   if (yyparse (&g) != 0) {
836     SET_ERROR (error, GST_PARSE_ERROR_SYNTAX,
837         "Unrecoverable syntax error while parsing pipeline %s", str);
838     
839     goto error1;
840   }
841   g_free (dstr);
842   _gst_parse_yy_delete_buffer (buf);
843   
844   GST_CAT_DEBUG (GST_CAT_PIPELINE, "got %u elements and %u links",
845       g.chain ? g_slist_length (g.chain->elements) : 0,
846       g_slist_length (g.links));
847   
848   if (!g.chain) {
849     ret = NULL;
850   } else if (!(((chain_t *) g.chain)->elements->next)) {
851     /* only one toplevel element */  
852     ret = (GstElement *) ((chain_t *) g.chain)->elements->data;
853     g_slist_free (((chain_t *) g.chain)->elements);
854     if (GST_IS_BIN (ret))
855       bin = GST_BIN (ret);
856     gst_parse_chain_free (g.chain);
857   } else {  
858     /* put all elements in our bin */
859     bin = GST_BIN (gst_element_factory_make ("pipeline", NULL));
860     g_assert (bin);
861     
862     for (walk = g.chain->elements; walk; walk = walk->next)
863       gst_bin_add (bin, GST_ELEMENT (walk->data));
864     
865     g_slist_free (g.chain->elements);
866     ret = GST_ELEMENT (bin);
867     gst_parse_chain_free (g.chain);
868   }
869   
870   /* remove links */
871   for (walk = g.links; walk; walk = walk->next) {
872     link_t *l = (link_t *) walk->data;
873     if (!l->src) {
874       if (l->src_name) {
875         if (bin) {
876           l->src = gst_bin_get_by_name_recurse_up (bin, l->src_name);
877           if (l->src)
878             gst_object_unref (l->src);
879         } else {
880           l->src = strcmp (GST_ELEMENT_NAME (ret), l->src_name) == 0 ? ret : NULL;
881         }
882       }
883       if (!l->src) {
884         SET_ERROR (error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
885             "No element named \"%s\" - omitting link", l->src_name);
886         gst_parse_free_link (l);
887         continue;
888       }
889     }
890     if (!l->sink) {
891       if (l->sink_name) {
892         if (bin) {
893           l->sink = gst_bin_get_by_name_recurse_up (bin, l->sink_name);
894           if (l->sink)
895             gst_object_unref (l->sink);
896         } else {
897           l->sink = strcmp (GST_ELEMENT_NAME (ret), l->sink_name) == 0 ? ret : NULL;
898         }
899       }
900       if (!l->sink) {
901         SET_ERROR (error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
902             "No element named \"%s\" - omitting link", l->sink_name);
903         gst_parse_free_link (l);
904         continue;
905       }
906     }
907     gst_parse_perform_link (l, &g);
908   }
909   g_slist_free (g.links);
910
911 out:
912 #ifdef __GST_PARSE_TRACE
913   GST_CAT_DEBUG (GST_CAT_PIPELINE,
914       "TRACE: %u strings, %u chains and %u links left", __strings, __chains,
915       __links);
916   if (__strings || __chains || __links) {
917     g_warning ("TRACE: %u strings, %u chains and %u links left", __strings,
918         __chains, __links);
919   }
920 #endif /* __GST_PARSE_TRACE */
921
922   return ret;
923   
924 error1:
925   g_free (dstr);
926   
927   if (g.chain) {
928     g_slist_foreach (g.chain->elements, (GFunc)gst_object_unref, NULL);
929     g_slist_free (g.chain->elements);
930     gst_parse_chain_free (g.chain);
931   }
932
933   g_slist_foreach (g.links, (GFunc)gst_parse_free_link, NULL);
934   g_slist_free (g.links);
935   
936   if (error)
937     g_assert (*error);
938   ret = NULL;
939   
940   goto out;
941 }