7bd6e2f242cd8adc955be671d1974c7612c10efd
[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   gchar *ret; 
26   __strings++;
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         if (!(en = g_enum_get_value_by_nick (klass, pos))) {
275           gint i = strtol (pos, &endptr, 0);
276           if (endptr && *endptr == '\0') {
277             en = g_enum_get_value (klass, i);
278           }
279         }
280       }
281       if (!en)
282         goto error;
283       g_value_set_enum (&v, en->value);
284       break;
285     }
286     case G_TYPE_INT:
287     case G_TYPE_LONG:
288     case G_TYPE_INT64: {
289       gchar *endptr;
290       glong l;
291       g_value_init (&v2, G_TYPE_LONG); 
292       l = strtol (pos, &endptr, 0);
293       if (*endptr != '\0') goto error_conversion;
294       g_value_set_long (&v2, l);
295       if (!g_value_transform (&v2, &v)) goto error_conversion;
296       break;      
297     }
298     case G_TYPE_UINT:
299     case G_TYPE_ULONG:
300     case G_TYPE_UINT64: {
301       gchar *endptr;
302       gulong ul;
303       g_value_init (&v2, G_TYPE_ULONG); 
304       ul = strtoul (pos, &endptr, 0);
305       if (*endptr != '\0') goto error_conversion;
306       g_value_set_ulong (&v2, ul);
307       if (!g_value_transform (&v2, &v)) goto error_conversion;
308       break;      
309     }
310     case G_TYPE_FLOAT:
311     case G_TYPE_DOUBLE: {
312       gchar *endptr;
313       gdouble d;
314       g_value_init (&v2, G_TYPE_DOUBLE); 
315       d = strtod (pos, &endptr);
316       if (*endptr != '\0') goto error_conversion;
317       g_value_set_double (&v2, d);
318       if (!g_value_transform (&v2, &v)) goto error_conversion;
319       break;      
320     }
321     default:
322       /* add more */
323       g_warning ("property \"%s\" in element %s cannot be set", value, GST_ELEMENT_NAME (element)); 
324       goto error;
325     }
326     g_object_set_property (G_OBJECT (element), value, &v); 
327   } else { 
328     ERROR (GST_PARSE_ERROR_NO_SUCH_PROPERTY, "No property \"%s\" in element \"%s\"", value, GST_ELEMENT_NAME (element)); 
329   }
330
331 out:
332   gst_parse_strfree (value);
333   return;
334   
335 error:
336   ERROR (GST_PARSE_ERROR_COULD_NOT_SET_PROPERTY,
337          "Could not set property \"%s\" in element \"%s\" to \"%s\"", 
338          value, GST_ELEMENT_NAME (element), pos); 
339   goto out;
340 error_conversion:
341   ERROR (GST_PARSE_ERROR_COULD_NOT_SET_PROPERTY,
342          "Could not convert \"%s\" so that it fits property \"%s\" in element \"%s\"",
343          pos, value, GST_ELEMENT_NAME (element)); 
344   goto out;
345 }
346 static inline void
347 gst_parse_free_link (link_t *link)
348 {
349   gst_parse_strfree (link->src_name);
350   gst_parse_strfree (link->sink_name);
351   g_slist_foreach (link->src_pads, (GFunc) gst_parse_strfree, NULL);
352   g_slist_foreach (link->sink_pads, (GFunc) gst_parse_strfree, NULL);
353   g_slist_free (link->src_pads);
354   g_slist_free (link->sink_pads);
355   gst_caps_unref (link->caps);
356   gst_parse_link_free (link);  
357 }
358 static void
359 gst_parse_element_lock (GstElement *element, gboolean lock)
360 {
361   GstPad *pad;
362   GList *walk = (GList *) gst_element_get_pad_list (element);
363   gboolean unlocked_peer = FALSE;
364   
365   if (gst_element_is_locked_state (element) == lock)
366     return;
367   /* check if we have an unlocked peer */
368   while (walk) {
369     pad = (GstPad *) GST_PAD_REALIZE (walk->data);
370     walk = walk->next;
371     if (GST_PAD_IS_SINK (pad) && GST_PAD_PEER (pad) &&
372         !gst_element_is_locked_state (GST_PAD_PARENT (GST_PAD_PEER (pad)))) {
373       unlocked_peer = TRUE;
374       break;
375     }
376   }  
377   
378   if (!(lock && unlocked_peer)) {
379     gst_element_set_locked_state (element, lock);
380     if (!lock)
381       gst_element_sync_state_with_parent (element);
382   } else {
383     return;
384   }
385   
386   /* check if there are other pads to (un)lock */
387   walk = (GList *) gst_element_get_pad_list (element);
388   while (walk) {
389     pad = (GstPad *) GST_PAD_REALIZE (walk->data);
390     walk = walk->next;
391     if (GST_PAD_IS_SRC (pad) && GST_PAD_PEER (pad)) {
392       GstElement *next = GST_ELEMENT (GST_OBJECT_PARENT (GST_PAD_PEER (pad)));
393       if (gst_element_is_locked_state (next) != lock)
394         gst_parse_element_lock (next, lock);
395     }
396   }
397 }
398 static void
399 gst_parse_found_pad (GstElement *src, GstPad *pad, gpointer data)
400 {
401   DelayedLink *link = (DelayedLink *) data;
402   
403   GST_INFO (GST_CAT_PIPELINE, "trying delayed linking %s:%s to %s:%s", 
404             GST_ELEMENT_NAME (src), link->src_pad,
405             GST_ELEMENT_NAME (link->sink), link->sink_pad);
406
407   if (gst_element_link_pads_filtered (src, link->src_pad, link->sink, link->sink_pad, link->caps)) {
408     /* do this here, we don't want to get any problems later on when unlocking states */
409     GST_DEBUG (GST_CAT_PIPELINE, "delayed linking %s:%s to %s:%s worked", 
410                GST_ELEMENT_NAME (src), link->src_pad,
411                GST_ELEMENT_NAME (link->sink), link->sink_pad);
412     g_signal_handler_disconnect (src, link->signal_id);
413     g_free (link->src_pad);
414     g_free (link->sink_pad);
415     gst_caps_unref (link->caps);
416     if (!gst_element_is_locked_state (src))
417       gst_parse_element_lock (link->sink, FALSE);
418     g_free (link);
419   }
420 }
421 /* both padnames and the caps may be NULL */
422 static gboolean
423 gst_parse_perform_delayed_link (GstElement *src, const gchar *src_pad, 
424                                 GstElement *sink, const gchar *sink_pad, GstCaps *caps)
425 {
426   GList *templs = gst_element_get_pad_template_list (src);
427          
428   while (templs) {
429     GstPadTemplate *templ = (GstPadTemplate *) templs->data;
430     if ((GST_PAD_TEMPLATE_DIRECTION (templ) == GST_PAD_SRC) && (GST_PAD_TEMPLATE_PRESENCE(templ) == GST_PAD_SOMETIMES))
431     {
432       DelayedLink *data = g_new (DelayedLink, 1); 
433       
434       /* TODO: maybe we should check if src_pad matches this template's names */
435
436       GST_DEBUG (GST_CAT_PIPELINE, "trying delayed link %s:%s to %s:%s", 
437                  GST_ELEMENT_NAME (src), src_pad, GST_ELEMENT_NAME (sink), sink_pad);
438
439       data->src_pad = g_strdup (src_pad);
440       data->sink = sink;
441       data->sink_pad = g_strdup (sink_pad);
442       data->caps = gst_caps_ref (caps);
443       data->signal_id = g_signal_connect (G_OBJECT (src), "new_pad", 
444                                           G_CALLBACK (gst_parse_found_pad), data);
445       return TRUE;
446     }
447     templs = g_list_next (templs);
448   }
449   return FALSE;
450 }
451 /**
452  * performs a link and frees the struct. src and sink elements must be given
453  * return values:  0 - link performed
454  *                 1 - link delayed
455  *                <0 - error
456  */
457 static gint
458 gst_parse_perform_link (link_t *link, graph_t *graph)
459 {
460   GstElement *src = link->src;
461   GstElement *sink = link->sink;
462   GSList *srcs = link->src_pads;
463   GSList *sinks = link->sink_pads;
464   g_assert (GST_IS_ELEMENT (src));
465   g_assert (GST_IS_ELEMENT (sink));
466   
467   GST_INFO (GST_CAT_PIPELINE, "linking %s(%s):%u to %s(%s):%u", 
468             GST_ELEMENT_NAME (src), link->src_name ? link->src_name : "---", g_slist_length (srcs),
469             GST_ELEMENT_NAME (sink), link->sink_name ? link->sink_name : "---", g_slist_length (sinks));
470
471   if (!srcs || !sinks) {
472     if (gst_element_link_pads_filtered (src, srcs ? (const gchar *) srcs->data : NULL,
473                                         sink, sinks ? (const gchar *) sinks->data : NULL,
474                                         link->caps)) {
475       gst_parse_element_lock (sink, gst_element_is_locked_state (src));
476       goto success;
477     } else {
478       if (gst_parse_perform_delayed_link (src, srcs ? (const gchar *) srcs->data : NULL,
479                                           sink, sinks ? (const gchar *) sinks->data : NULL,
480                                           link->caps)) {
481         gst_parse_element_lock (sink, TRUE);
482         goto success;
483       } else {
484         goto error;
485       }
486     }
487   }
488   if (g_slist_length (link->src_pads) != g_slist_length (link->src_pads)) {
489     goto error;
490   }
491   while (srcs && sinks) {
492     const gchar *src_pad = (const gchar *) srcs->data;
493     const gchar *sink_pad = (const gchar *) sinks->data;
494     srcs = g_slist_next (srcs);
495     sinks = g_slist_next (sinks);
496     if (gst_element_link_pads_filtered (src, src_pad, sink, sink_pad, link->caps)) {
497       gst_parse_element_lock (sink, gst_element_is_locked_state (src));
498       continue;
499     } else {
500       if (gst_parse_perform_delayed_link (src, src_pad,
501                                           sink, sink_pad,
502                                           link->caps)) {
503         gst_parse_element_lock (sink, TRUE);
504         continue;
505       } else {
506         goto error;
507       }
508     }
509   }
510   
511 success:
512   gst_parse_free_link (link);
513   return 0;
514   
515 error:
516   ERROR (GST_PARSE_ERROR_LINK, "could not link %s to %s", GST_ELEMENT_NAME (src), GST_ELEMENT_NAME (sink));
517   gst_parse_free_link (link);
518   return -1;
519 }
520
521
522 static int yylex (void *lvalp);
523 static int yyerror (const char *s);
524 %}
525
526 %union {
527     gchar *s;
528     chain_t *c;
529     link_t *l;
530     GstElement *e;
531     GSList *p;
532     graph_t *g;
533 }
534
535 %token <s> IDENTIFIER
536 %left <s> REF PADREF BINREF
537 %token <s> ASSIGNMENT
538
539 %type <g> graph
540 %type <c> chain bin
541 %type <l> reference
542 %type <l> linkpart link
543 %type <p> linklist
544 %type <e> element
545 %type <p> padlist pads assignments
546
547 %left '{' '}' '(' ')'
548 %left ','
549 %right '.'
550 %left '!' '='
551
552 %pure_parser
553
554 %start graph
555 %%
556
557 element:        IDENTIFIER                    { $$ = gst_element_factory_make ($1, NULL); 
558                                                 if (!$$)
559                                                   ERROR (GST_PARSE_ERROR_NO_SUCH_ELEMENT, "No element \"%s\"", $1);
560                                                 gst_parse_strfree ($1);
561                                                 if (!$$)
562                                                   YYERROR;
563                                               }
564         |       element ASSIGNMENT            { gst_parse_element_set ($2, $1, graph);
565                                                 $$ = $1;
566                                               }
567         ;
568         
569 assignments:    /* NOP */                     { $$ = NULL; }
570         |       assignments ASSIGNMENT        { $$ = g_slist_prepend ($1, $2); }
571         ;               
572 bin:            '{' assignments chain '}'     { GST_BIN_MAKE ($$, "thread", $3, $2); }
573         |       '(' assignments chain ')'     { GST_BIN_MAKE ($$, "bin", $3, $2); }
574         |       BINREF assignments chain ')'  { GST_BIN_MAKE ($$, $1, $3, $2); 
575                                                 gst_parse_strfree ($1);
576                                               }
577         |       '{' assignments '}'           { GST_BIN_MAKE ($$, "thread", NULL, $2); }
578         |       '(' assignments '}'           { GST_BIN_MAKE ($$, "thread", NULL, $2); }
579         |       BINREF assignments ')'        { GST_BIN_MAKE ($$, $1, NULL, $2); 
580                                                 gst_parse_strfree ($1);
581                                               }
582         |       '{' assignments error '}'     { GST_BIN_MAKE ($$, "thread", NULL, $2); }
583         |       '(' assignments error '}'     { GST_BIN_MAKE ($$, "thread", NULL, $2); }
584         |       BINREF assignments error ')'  { GST_BIN_MAKE ($$, $1, NULL, $2); 
585                                                 gst_parse_strfree ($1);
586                                               }
587         ;
588         
589 pads:           PADREF                        { $$ = g_slist_prepend (NULL, $1); }
590         |       PADREF padlist                { $$ = $2;
591                                                 $$ = g_slist_prepend ($$, $1);
592                                               }                              
593         ;
594 padlist:        ',' IDENTIFIER                { $$ = g_slist_prepend (NULL, $2); }
595         |       ',' IDENTIFIER padlist        { $$ = g_slist_prepend ($3, $2); }
596         ;
597         
598 reference:      REF                           { MAKE_REF ($$, $1, NULL); }
599         |       REF padlist                   { MAKE_REF ($$, $1, $2); }
600         ;
601
602 linkpart:       reference                     { $$ = $1; }
603         |       pads                          { MAKE_REF ($$, NULL, $1); }
604         |       /* NOP */                     { MAKE_REF ($$, NULL, NULL); }
605         ;
606         
607 link:           linkpart '!' linkpart         { $$ = $1;
608                                                 $$->sink_name = $3->src_name;
609                                                 $$->sink_pads = $3->src_pads;
610                                                 gst_parse_link_free ($3);
611                                               }
612         ;
613         
614 linklist:       link                          { $$ = g_slist_prepend (NULL, $1); }
615         |       link linklist                 { $$ = g_slist_prepend ($2, $1); }
616         |       linklist error                { $$ = $1; }
617         ;       
618
619 chain:          element                       { $$ = gst_parse_chain_new ();
620                                                 $$->first = $$->last = $1;
621                                                 $$->front = $$->back = NULL;
622                                                 $$->elements = g_slist_prepend (NULL, $1);
623                                               }
624         |       bin                           { $$ = $1; }
625         |       chain chain                   { if ($1->back && $2->front) {
626                                                   if (!$1->back->sink_name) {
627                                                     ERROR (GST_PARSE_ERROR_LINK, "link without source element");
628                                                     gst_parse_free_link ($1->back);
629                                                   } else {
630                                                     ((graph_t *) graph)->links = g_slist_prepend (((graph_t *) graph)->links, $1->back);
631                                                   }
632                                                   if (!$2->front->src_name) {
633                                                     ERROR (GST_PARSE_ERROR_LINK, "link without sink element");
634                                                     gst_parse_free_link ($2->front);
635                                                   } else {
636                                                     ((graph_t *) graph)->links = g_slist_prepend (((graph_t *) graph)->links, $2->front);
637                                                   }
638                                                   $1->back = NULL;
639                                                 } else if ($1->back) {
640                                                   if (!$1->back->sink_name) {
641                                                     $1->back->sink = $2->first;
642                                                   }
643                                                 } else if ($2->front) {
644                                                   if (!$2->front->src_name) {
645                                                     $2->front->src = $1->last;
646                                                   }
647                                                   $1->back = $2->front;
648                                                 }
649                                                 
650                                                 if ($1->back) {
651                                                   if (!$1->back->sink || !$1->back->src) {
652                                                     ((graph_t *) graph)->links = g_slist_prepend (((graph_t *) graph)->links, $1->back);
653                                                     $1->back = NULL;
654                                                   } else {
655                                                     gst_parse_perform_link ($1->back, (graph_t *) graph);
656                                                   }
657                                                 }
658                                                 $1->last = $2->last;
659                                                 $1->back = $2->back;
660                                                 $1->elements = g_slist_concat ($1->elements, $2->elements);
661                                                 gst_parse_chain_free ($2);
662                                                 $$ = $1;
663                                               }
664         |       link chain                    { if ($2->front) {
665                                                   if (!$2->front->src_name) {
666                                                     ERROR (GST_PARSE_ERROR_LINK, "link without source element");
667                                                     gst_parse_free_link ($2->front);
668                                                   } else {
669                                                     ((graph_t *) graph)->links = g_slist_prepend (((graph_t *) graph)->links, $2->front);
670                                                   }
671                                                 }
672                                                 if (!$1->sink_name) {
673                                                   $1->sink = $2->first;
674                                                 }
675                                                 $2->front = $1;
676                                                 $$ = $2;
677                                               }
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                                                 walk = $2;
689                                                 while (walk) {
690                                                   link_t *link = (link_t *) walk->data;
691                                                   walk = walk->next;
692                                                   if (!link->sink_name && walk) {
693                                                     ERROR (GST_PARSE_ERROR_LINK, "link without sink element");
694                                                     gst_parse_free_link (link);
695                                                   } else if (!link->src_name && !link->src) {
696                                                     ERROR (GST_PARSE_ERROR_LINK, "link without source element");
697                                                     gst_parse_free_link (link);
698                                                   } else {
699                                                     if (walk) {
700                                                       ((graph_t *) graph)->links = g_slist_prepend (((graph_t *) graph)->links, link);
701                                                     } else {
702                                                       $1->back = link;
703                                                     }
704                                                   }
705                                                 }
706                                                 g_slist_free ($2);
707                                                 $$ = $1;
708                                               }
709         |       chain error                   { $$ = $1; }
710         ;
711         
712 graph:          /* NOP */                     { ERROR (GST_PARSE_ERROR_EMPTY, "Empty pipeline not allowed");
713                                                 $$ = (graph_t *) graph;
714                                               }
715         |       chain                         { $$ = (graph_t *) graph;
716                                                 if ($1->front) {
717                                                   if (!$1->front->src_name) {
718                                                     ERROR (GST_PARSE_ERROR_LINK, "link without source element");
719                                                     gst_parse_free_link ($1->front);
720                                                   } else {
721                                                     $$->links = g_slist_prepend ($$->links, $1->front);
722                                                   }
723                                                   $1->front = NULL;
724                                                 }
725                                                 if ($1->back) {
726                                                   if (!$1->back->sink_name) {
727                                                     ERROR (GST_PARSE_ERROR_LINK, "link without sink element");
728                                                     gst_parse_free_link ($1->back);
729                                                   } else {
730                                                     $$->links = g_slist_prepend ($$->links, $1->back);
731                                                   }
732                                                   $1->back = NULL;
733                                                 }
734                                                 $$->chain = $1;
735                                               }
736         ;
737
738 %%
739
740 extern FILE *_gst_parse_yyin;
741 int _gst_parse_yylex (YYSTYPE *lvalp);
742
743 static int yylex (void *lvalp) {
744     return _gst_parse_yylex ((YYSTYPE*) lvalp);
745 }
746
747 static int
748 yyerror (const char *s)
749 {
750   /* FIXME: This should go into the GError somehow, but how? */
751   g_warning ("error: %s\n", s);
752   return -1;
753 }
754
755 int _gst_parse_yy_scan_string (char*);
756 GstElement *
757 _gst_parse_launch (const gchar *str, GError **error)
758 {
759   graph_t g;
760   gchar *dstr;
761   GSList *walk;
762   GstBin *bin = NULL;
763   GstElement *ret;
764   
765   g_return_val_if_fail (str != NULL, NULL);
766
767   g.chain = NULL;
768   g.links = NULL;
769   g.error = error;
770   
771 #ifdef __GST_PARSE_TRACE
772   GST_DEBUG (GST_CAT_PIPELINE, "TRACE: tracing enabled");
773   __strings = __chains = __links = 0;
774 #endif /* __GST_PARSE_TRACE */
775
776   dstr = g_strdup (str);
777   _gst_parse_yy_scan_string (dstr);
778
779 #ifdef GST_DEBUG_ENABLED
780   yydebug = 1;
781 #endif
782
783   if (yyparse (&g) != 0) {
784     SET_ERROR (error, GST_PARSE_ERROR_SYNTAX, "Unrecoverable syntax error while parsing pipeline");
785     
786     goto error1;
787   }
788   g_free (dstr);
789   
790   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));
791   
792   if (!g.chain) {
793     ret = NULL;
794   } else if (!(((chain_t *) g.chain)->elements->next)) {
795     /* only one toplevel element */  
796     ret = (GstElement *) ((chain_t *) g.chain)->elements->data;
797     g_slist_free (((chain_t *) g.chain)->elements);
798     if (GST_IS_BIN (ret))
799       bin = GST_BIN (ret);
800   } else {  
801     /* put all elements in our bin */
802     bin = GST_BIN (gst_element_factory_make ("pipeline", NULL));
803     g_assert (bin);
804     walk = g.chain->elements;
805     while (walk) {
806       gst_bin_add (bin, GST_ELEMENT (walk->data));
807       walk = g_slist_next (walk);  
808     }
809     g_slist_free (g.chain->elements);
810     ret = GST_ELEMENT (bin);
811   }
812   gst_parse_chain_free (g.chain);
813   
814   /* remove links */
815   walk = g.links;
816   while (walk) {
817     link_t *l = (link_t *) walk->data;
818     GstElement *sink;
819     walk = g_slist_next (walk);
820     if (!l->src) {
821       if (l->src_name) {
822         if (bin) {
823           l->src = gst_bin_get_by_name_recurse_up (bin, l->src_name);
824         } else {
825           l->src = strcmp (GST_ELEMENT_NAME (ret), l->src_name) == 0 ? ret : NULL;
826         }
827       }
828       if (!l->src) {
829         SET_ERROR (error, GST_PARSE_ERROR_NO_SUCH_ELEMENT, "No element named \"%s\" - omitting link", l->src_name);
830         gst_parse_free_link (l);
831         continue;
832       }
833     }
834     if (!l->sink) {
835       if (l->sink_name) {
836         if (bin) {
837           l->sink = gst_bin_get_by_name_recurse_up (bin, l->sink_name);
838         } else {
839           l->sink = strcmp (GST_ELEMENT_NAME (ret), l->sink_name) == 0 ? ret : NULL;
840         }
841       }
842       if (!l->sink) {
843         SET_ERROR (error, GST_PARSE_ERROR_NO_SUCH_ELEMENT, "No element named \"%s\" - omitting link", l->sink_name);
844         gst_parse_free_link (l);
845         continue;
846       }
847     }
848     sink = l->sink;
849     gst_parse_perform_link (l, &g);
850   }
851   g_slist_free (g.links);
852
853 out:
854 #ifdef __GST_PARSE_TRACE
855   GST_DEBUG (GST_CAT_PIPELINE, "TRACE: %u strings, %u chains and %u links left", __strings, __chains, __links);
856   if (__strings || __chains || __links) {
857     g_warning ("TRACE: %u strings, %u chains and %u links left", __strings, __chains, __links);
858   }
859 #endif /* __GST_PARSE_TRACE */
860
861   return ret;
862   
863 error1:
864   g_free (dstr);
865   
866   if (g.chain) {
867     walk = g.chain->elements;
868     while (walk) {
869       gst_object_unref (GST_OBJECT (walk->data));
870       walk = walk->next;
871     }
872     g_slist_free (g.chain->elements);
873   }
874   gst_parse_chain_free (g.chain);
875   
876   walk = g.links;
877   while (walk) {
878     gst_parse_free_link ((link_t *) walk->data);
879     walk = walk->next;
880   }
881   g_slist_free (g.links);
882   
883   g_assert (*error);
884   ret = NULL;
885   
886   goto out;
887 }