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