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