parse-launch: Support linking all pads with new operator
[platform/upstream/gstreamer.git] / gst / parse / grammar.y
1 %{
2 #include "../gst_private.h"
3
4 #include <glib-object.h>
5 #include <glib.h>
6 #include <stdio.h>
7 #include <string.h>
8 #include <stdlib.h>
9
10 #include "../gst-i18n-lib.h"
11
12 #include "../gstconfig.h"
13 #include "../gstparse.h"
14 #include "../gstinfo.h"
15 #include "../gsterror.h"
16 #include "../gststructure.h"
17 #include "../gsturi.h"
18 #include "../gstutils.h"
19 #include "../gstvalue.h"
20 #include "../gstchildproxy.h"
21 #include "types.h"
22
23 /* All error messages in this file are user-visible and need to be translated.
24  * Don't start the message with a capital, and don't end them with a period,
25  * as they will be presented inside a sentence/error.
26  */
27
28 #define YYERROR_VERBOSE 1
29
30 #define YYENABLE_NLS 0
31
32 #ifndef YYLTYPE_IS_TRIVIAL
33 #define YYLTYPE_IS_TRIVIAL 0
34 #endif
35
36 /*******************************************************************************************
37 *** Tracing memory leaks
38 *******************************************************************************************/
39
40 #ifdef __GST_PARSE_TRACE
41 static guint __strings;
42 static guint __links;
43 static guint __chains;
44 gchar *
45 __gst_parse_strdup (gchar *org)
46 {
47   gchar *ret;
48   __strings++;
49   ret = g_strdup (org);
50   /* g_print ("ALLOCATED STR   (%3u): %p %s\n", __strings, ret, ret); */
51   return ret;
52 }
53 void
54 __gst_parse_strfree (gchar *str)
55 {
56   if (str) {
57     /* g_print ("FREEING STR     (%3u): %p %s\n", __strings - 1, str, str); */
58     g_free (str);
59     g_return_if_fail (__strings > 0);
60     __strings--;
61   }
62 }
63 link_t *__gst_parse_link_new (void)
64 {
65   link_t *ret;
66   __links++;
67   ret = g_slice_new0 (link_t);
68   /* g_print ("ALLOCATED LINK  (%3u): %p\n", __links, ret); */
69   return ret;
70 }
71 void
72 __gst_parse_link_free (link_t *data)
73 {
74   if (data) {
75     /* g_print ("FREEING LINK    (%3u): %p\n", __links - 1, data); */
76     g_slice_free (link_t, data);
77     g_return_if_fail (__links > 0);
78     __links--;
79   }
80 }
81 chain_t *
82 __gst_parse_chain_new (void)
83 {
84   chain_t *ret;
85   __chains++;
86   ret = g_slice_new0 (chain_t);
87   /* g_print ("@%p: ALLOCATED CHAIN (%3u):\n", ret, __chains); */
88   return ret;
89 }
90 void
91 __gst_parse_chain_free (chain_t *data)
92 {
93   /* g_print ("@%p: FREEING CHAIN   (%3u):\n", data, __chains - 1); */
94   g_slice_free (chain_t, data);
95   g_return_if_fail (__chains > 0);
96   __chains--;
97 }
98
99 #endif /* __GST_PARSE_TRACE */
100
101 /*******************************************************************************************
102 *** define SET_ERROR macro/function
103 *******************************************************************************************/
104 #ifdef G_HAVE_ISO_VARARGS
105
106 #  define SET_ERROR(error, type, ...) \
107 G_STMT_START { \
108   GST_CAT_ERROR (GST_CAT_PIPELINE, __VA_ARGS__); \
109   if ((error) && !*(error)) { \
110     g_set_error ((error), GST_PARSE_ERROR, (type), __VA_ARGS__); \
111   } \
112 } G_STMT_END
113
114 #elif defined(G_HAVE_GNUC_VARARGS)
115
116 #  define SET_ERROR(error, type, args...) \
117 G_STMT_START { \
118   GST_CAT_ERROR (GST_CAT_PIPELINE, args ); \
119   if ((error) && !*(error)) { \
120     g_set_error ((error), GST_PARSE_ERROR, (type), args ); \
121   } \
122 } G_STMT_END
123
124 #else
125
126 static inline void
127 SET_ERROR (GError **error, gint type, const char *format, ...)
128 {
129   if (error) {
130     if (*error) {
131       g_warning ("error while parsing");
132     } else {
133       va_list varargs;
134       char *string;
135
136       va_start (varargs, format);
137       string = g_strdup_vprintf (format, varargs);
138       va_end (varargs);
139
140       g_set_error (error, GST_PARSE_ERROR, type, string);
141
142       g_free (string);
143     }
144   }
145 }
146
147 #endif /* G_HAVE_ISO_VARARGS */
148
149 /*** define YYPRINTF macro/function if we're debugging */
150
151 /* bison 1.35 calls this macro with side effects, we need to make sure the
152    side effects work - crappy bison */
153
154 #ifndef GST_DISABLE_GST_DEBUG
155 #  define YYDEBUG 1
156
157 #  ifdef G_HAVE_ISO_VARARGS
158
159 /* #  define YYFPRINTF(a, ...) GST_CAT_DEBUG (GST_CAT_PIPELINE, __VA_ARGS__) */
160 #    define YYFPRINTF(a, ...) \
161 G_STMT_START { \
162      GST_CAT_LOG (GST_CAT_PIPELINE, __VA_ARGS__); \
163 } G_STMT_END
164
165 #  elif defined(G_HAVE_GNUC_VARARGS)
166
167 #    define YYFPRINTF(a, args...) \
168 G_STMT_START { \
169      GST_CAT_LOG (GST_CAT_PIPELINE, args); \
170 } G_STMT_END
171
172 #  else
173
174 static inline void
175 YYPRINTF(const char *format, ...)
176 {
177   va_list varargs;
178   gchar *temp;
179
180   va_start (varargs, format);
181   temp = g_strdup_vprintf (format, varargs);
182   GST_CAT_LOG (GST_CAT_PIPELINE, "%s", temp);
183   g_free (temp);
184   va_end (varargs);
185 }
186
187 #  endif /* G_HAVE_ISO_VARARGS */
188
189 #endif /* GST_DISABLE_GST_DEBUG */
190
191
192 /*
193  * include headers generated by bison & flex, after defining (or not defining) YYDEBUG
194  */
195 #include "grammar.tab.h"
196 #include "parse_lex.h"
197
198 /*******************************************************************************************
199 *** report missing elements/bins/..
200 *******************************************************************************************/
201
202
203 static void  add_missing_element(graph_t *graph,gchar *name){
204   if ((graph)->ctx){
205     (graph)->ctx->missing_elements = g_list_append ((graph)->ctx->missing_elements, g_strdup (name));
206     }
207 }
208
209
210 /*******************************************************************************************
211 *** helpers for pipeline-setup
212 *******************************************************************************************/
213
214 #define TRY_SETUP_LINK(l) G_STMT_START { \
215    if( (!(l)->src.element) && (!(l)->src.name) ){ \
216      SET_ERROR (graph->error, GST_PARSE_ERROR_LINK, _("link has no source [sink=%s@%p]"), \
217         (l)->sink.name ? (l)->sink.name : "", \
218         (l)->sink.element); \
219      gst_parse_free_link (l); \
220    }else if( (!(l)->sink.element) && (!(l)->sink.name) ){ \
221      SET_ERROR (graph->error, GST_PARSE_ERROR_LINK, _("link has no sink [source=%s@%p]"), \
222         (l)->src.name ? (l)->src.name : "", \
223         (l)->src.element); \
224      gst_parse_free_link (l); \
225    }else{ \
226      graph->links = g_slist_append (graph->links, l ); \
227    }   \
228 } G_STMT_END
229
230 typedef struct {
231   gchar *src_pad;
232   gchar *sink_pad;
233   GstElement *sink;
234   GstCaps *caps;
235   gulong pad_added_signal_id, no_more_pads_signal_id;
236   gboolean all_pads;
237 } DelayedLink;
238
239 typedef struct {
240   gchar *name;
241   gchar *value_str;
242   gulong signal_id;
243 } DelayedSet;
244
245 static int  gst_resolve_reference(reference_t *rr, GstElement *pipeline){
246   GstBin *bin;
247
248   if(rr->element) return  0;  /* already resolved! */
249   if(!rr->name)   return -2;  /* no chance! */
250
251   if (GST_IS_BIN (pipeline)){
252     bin = GST_BIN (pipeline);
253     rr->element = gst_bin_get_by_name_recurse_up (bin, rr->name);
254   } else {
255     rr->element = strcmp (GST_ELEMENT_NAME (pipeline), rr->name) == 0 ?
256                 gst_object_ref(pipeline) : NULL;
257   }
258   if(rr->element) return 0; /* resolved */
259   else            return -1; /* not found */
260 }
261
262 static void gst_parse_free_delayed_set (DelayedSet *set)
263 {
264   g_free(set->name);
265   g_free(set->value_str);
266   g_slice_free(DelayedSet, set);
267 }
268
269 static void gst_parse_new_child(GstChildProxy *child_proxy, GObject *object,
270     const gchar * name, gpointer data);
271
272 static void gst_parse_add_delayed_set (GstElement *element, gchar *name, gchar *value_str)
273 {
274   DelayedSet *data = g_slice_new0 (DelayedSet);
275
276   GST_CAT_LOG_OBJECT (GST_CAT_PIPELINE, element, "delaying property set %s to %s",
277     name, value_str);
278
279   data->name = g_strdup(name);
280   data->value_str = g_strdup(value_str);
281   data->signal_id = g_signal_connect_data(element, "child-added",
282       G_CALLBACK (gst_parse_new_child), data, (GClosureNotify)
283       gst_parse_free_delayed_set, (GConnectFlags) 0);
284
285   /* FIXME: we would need to listen on all intermediate bins too */
286   if (GST_IS_BIN (element)) {
287     gchar **names, **current;
288     GstElement *parent, *child;
289
290     current = names = g_strsplit (name, "::", -1);
291     parent = gst_bin_get_by_name (GST_BIN_CAST (element), current[0]);
292     current++;
293     while (parent && current[0]) {
294       child = gst_bin_get_by_name (GST_BIN (parent), current[0]);
295       if (!child && current[1]) {
296         char *sub_name = g_strjoinv ("::", &current[0]);
297
298         gst_parse_add_delayed_set(parent, sub_name, value_str);
299         g_free (sub_name);
300       }
301       gst_object_unref (parent);
302       parent = child;
303       current++;
304     }
305     if (parent)
306       gst_object_unref (parent);
307     g_strfreev (names);
308   }
309 }
310
311 static void gst_parse_new_child(GstChildProxy *child_proxy, GObject *object,
312     const gchar * name, gpointer data)
313 {
314   DelayedSet *set = (DelayedSet *) data;
315   GParamSpec *pspec;
316   GValue v = { 0, };
317   GObject *target = NULL;
318   GType value_type;
319
320   GST_CAT_LOG_OBJECT (GST_CAT_PIPELINE, child_proxy, "new child %s, checking property %s",
321       name, set->name);
322
323   if (gst_child_proxy_lookup (child_proxy, set->name, &target, &pspec)) {
324     gboolean got_value = FALSE;
325
326     value_type = pspec->value_type;
327
328     GST_CAT_LOG_OBJECT (GST_CAT_PIPELINE, child_proxy, "parsing delayed property %s as a %s from %s",
329       pspec->name, g_type_name (value_type), set->value_str);
330     g_value_init (&v, value_type);
331     if (gst_value_deserialize (&v, set->value_str))
332       got_value = TRUE;
333     else if (g_type_is_a (value_type, GST_TYPE_ELEMENT)) {
334        GstElement *bin;
335
336        bin = gst_parse_bin_from_description_full (set->value_str, TRUE, NULL,
337            GST_PARSE_FLAG_NO_SINGLE_ELEMENT_BINS | GST_PARSE_FLAG_PLACE_IN_BIN, NULL);
338        if (bin) {
339          g_value_set_object (&v, bin);
340          got_value = TRUE;
341        }
342     }
343     g_signal_handler_disconnect (child_proxy, set->signal_id);
344     if (!got_value)
345       goto error;
346     g_object_set_property (target, pspec->name, &v);
347   } else {
348     const gchar *obj_name = GST_OBJECT_NAME(object);
349     gint len = strlen (obj_name);
350
351     /* do a delayed set */
352     if ((strlen (set->name) > (len + 2)) && !strncmp (set->name, obj_name, len) && !strncmp (&set->name[len], "::", 2)) {
353       gst_parse_add_delayed_set (GST_ELEMENT(child_proxy), set->name, set->value_str);
354     }
355   }
356
357 out:
358   if (G_IS_VALUE (&v))
359     g_value_unset (&v);
360   if (target)
361     g_object_unref (target);
362   return;
363
364 error:
365   GST_CAT_ERROR (GST_CAT_PIPELINE, "could not set property \"%s\" in %"
366       GST_PTR_FORMAT, pspec->name, target);
367   goto out;
368 }
369
370 static void gst_parse_element_set (gchar *value, GstElement *element, graph_t *graph)
371 {
372   GParamSpec *pspec = NULL;
373   gchar *pos = value;
374   GValue v = { 0, };
375   GObject *target = NULL;
376   GType value_type;
377
378   /* do nothing if assignment is for missing element */
379   if (element == NULL)
380     goto out;
381
382   /* parse the string, so the property name is null-terminated and pos points
383      to the beginning of the value */
384   while (!g_ascii_isspace (*pos) && (*pos != '=')) pos++;
385   if (*pos == '=') {
386     *pos = '\0';
387   } else {
388     *pos = '\0';
389     pos++;
390     while (g_ascii_isspace (*pos)) pos++;
391   }
392   pos++;
393   while (g_ascii_isspace (*pos)) pos++;
394   /* truncate a string if it is delimited with double quotes */
395   if (*pos == '"' && pos[strlen (pos) - 1] == '"') {
396     pos++;
397     pos[strlen (pos) - 1] = '\0';
398   }
399   gst_parse_unescape (pos);
400
401   if (GST_IS_CHILD_PROXY (element)) {
402     if (!gst_child_proxy_lookup (GST_CHILD_PROXY (element), value, &target, &pspec)) {
403       /* do a delayed set */
404       gst_parse_add_delayed_set (element, value, pos);
405     }
406   } else {
407     pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (element), value);
408     if (pspec != NULL) {
409       target = g_object_ref (element);
410       GST_CAT_LOG_OBJECT (GST_CAT_PIPELINE, target, "found %s property", value);
411     } else {
412       SET_ERROR (graph->error, GST_PARSE_ERROR_NO_SUCH_PROPERTY, \
413           _("no property \"%s\" in element \"%s\""), value, \
414           GST_ELEMENT_NAME (element));
415     }
416   }
417
418   if (pspec != NULL && target != NULL) {
419     gboolean got_value = FALSE;
420
421     value_type = pspec->value_type;
422
423     GST_CAT_LOG_OBJECT (GST_CAT_PIPELINE, element, "parsing property %s as a %s",
424         pspec->name, g_type_name (value_type));
425
426     g_value_init (&v, value_type);
427     if (gst_value_deserialize (&v, pos))
428       got_value = TRUE;
429     else if (g_type_is_a (value_type, GST_TYPE_ELEMENT)) {
430        GstElement *bin;
431
432        bin = gst_parse_bin_from_description_full (pos, TRUE, NULL,
433            GST_PARSE_FLAG_NO_SINGLE_ELEMENT_BINS | GST_PARSE_FLAG_PLACE_IN_BIN, NULL);
434        if (bin) {
435          g_value_set_object (&v, bin);
436          got_value = TRUE;
437        }
438     }
439     if (!got_value)
440       goto error;
441     g_object_set_property (target, pspec->name, &v);
442   }
443
444 out:
445   gst_parse_strfree (value);
446   if (G_IS_VALUE (&v))
447     g_value_unset (&v);
448   if (target)
449     g_object_unref (target);
450   return;
451
452 error:
453   SET_ERROR (graph->error, GST_PARSE_ERROR_COULD_NOT_SET_PROPERTY,
454          _("could not set property \"%s\" in element \"%s\" to \"%s\""),
455          value, GST_ELEMENT_NAME (element), pos);
456   goto out;
457 }
458
459 static void gst_parse_free_reference (reference_t *rr)
460 {
461   if(rr->element) gst_object_unref(rr->element);
462   gst_parse_strfree (rr->name);
463   g_slist_foreach (rr->pads, (GFunc) gst_parse_strfree, NULL);
464   g_slist_free (rr->pads);
465 }
466
467 static void gst_parse_free_link (link_t *link)
468 {
469   gst_parse_free_reference (&(link->src));
470   gst_parse_free_reference (&(link->sink));
471   if (link->caps) gst_caps_unref (link->caps);
472   gst_parse_link_free (link);
473 }
474
475 static void gst_parse_free_chain (chain_t *ch)
476 {
477   GSList *walk;
478   gst_parse_free_reference (&(ch->first));
479   gst_parse_free_reference (&(ch->last));
480   for(walk=ch->elements;walk;walk=walk->next)
481     gst_object_unref (walk->data);
482   g_slist_free (ch->elements);
483   gst_parse_chain_free (ch);
484 }
485
486 static void gst_parse_free_delayed_link (DelayedLink *link)
487 {
488   g_free (link->src_pad);
489   g_free (link->sink_pad);
490   if (link->caps) gst_caps_unref (link->caps);
491   g_slice_free (DelayedLink, link);
492 }
493
494 #define PRETTY_PAD_NAME_FMT "%s %s of %s named %s"
495 #define PRETTY_PAD_NAME_ARGS(elem, pad_name) \
496   (pad_name ? "pad " : "some"), (pad_name ? pad_name : "pad"), \
497   G_OBJECT_TYPE_NAME(elem), GST_STR_NULL (GST_ELEMENT_NAME (elem))
498
499 static void gst_parse_no_more_pads (GstElement *src, gpointer data)
500 {
501   DelayedLink *link = data;
502
503   /* Don't warn for all-pads links, as we expect those to
504    * still be active at no-more-pads */
505   if (!link->all_pads) {
506     GST_ELEMENT_WARNING(src, PARSE, DELAYED_LINK,
507       (_("Delayed linking failed.")),
508       ("failed delayed linking " PRETTY_PAD_NAME_FMT " to " PRETTY_PAD_NAME_FMT,
509           PRETTY_PAD_NAME_ARGS (src, link->src_pad),
510           PRETTY_PAD_NAME_ARGS (link->sink, link->sink_pad)));
511   }
512   /* we keep the handlers connected, so that in case an element still adds a pad
513    * despite no-more-pads, we will consider it for pending delayed links */
514 }
515
516 static void gst_parse_found_pad (GstElement *src, GstPad *pad, gpointer data)
517 {
518   DelayedLink *link = data;
519
520   GST_CAT_INFO (GST_CAT_PIPELINE,
521                 "trying delayed linking %s " PRETTY_PAD_NAME_FMT " to " PRETTY_PAD_NAME_FMT,
522                             link->all_pads ? "all pads" : "one pad",
523                 PRETTY_PAD_NAME_ARGS (src, link->src_pad),
524                 PRETTY_PAD_NAME_ARGS (link->sink, link->sink_pad));
525
526   if (gst_element_link_pads_filtered (src, link->src_pad, link->sink,
527       link->sink_pad, link->caps)) {
528     /* do this here, we don't want to get any problems later on when
529      * unlocking states */
530     GST_CAT_DEBUG (GST_CAT_PIPELINE,
531                    "delayed linking %s " PRETTY_PAD_NAME_FMT " to " PRETTY_PAD_NAME_FMT " worked",
532                                link->all_pads ? "all pads" : "one pad",
533                    PRETTY_PAD_NAME_ARGS (src, link->src_pad),
534                    PRETTY_PAD_NAME_ARGS (link->sink, link->sink_pad));
535     g_signal_handler_disconnect (src, link->no_more_pads_signal_id);
536     /* releases 'link' */
537     if (!link->all_pads)
538       g_signal_handler_disconnect (src, link->pad_added_signal_id);
539   }
540 }
541
542 /* both padnames and the caps may be NULL */
543 static gboolean
544 gst_parse_perform_delayed_link (GstElement *src, const gchar *src_pad,
545                                 GstElement *sink, const gchar *sink_pad,
546                                 GstCaps *caps, gboolean all_pads)
547 {
548   GList *templs = gst_element_class_get_pad_template_list (
549       GST_ELEMENT_GET_CLASS (src));
550
551   for (; templs; templs = templs->next) {
552     GstPadTemplate *templ = (GstPadTemplate *) templs->data;
553     if ((GST_PAD_TEMPLATE_DIRECTION (templ) == GST_PAD_SRC) &&
554         (GST_PAD_TEMPLATE_PRESENCE(templ) == GST_PAD_SOMETIMES))
555     {
556       DelayedLink *data = g_slice_new (DelayedLink);
557
558       data->all_pads = all_pads;
559
560       /* TODO: maybe we should check if src_pad matches this template's names */
561
562       GST_CAT_DEBUG (GST_CAT_PIPELINE,
563                      "trying delayed link " PRETTY_PAD_NAME_FMT " to " PRETTY_PAD_NAME_FMT,
564                      PRETTY_PAD_NAME_ARGS (src, src_pad),
565                      PRETTY_PAD_NAME_ARGS (sink, sink_pad));
566
567       data->src_pad = g_strdup (src_pad);
568       data->sink = sink;
569       data->sink_pad = g_strdup (sink_pad);
570       if (caps) {
571         data->caps = gst_caps_copy (caps);
572       } else {
573         data->caps = NULL;
574       }
575       data->pad_added_signal_id = g_signal_connect_data (src, "pad-added",
576           G_CALLBACK (gst_parse_found_pad), data,
577           (GClosureNotify) gst_parse_free_delayed_link, (GConnectFlags) 0);
578       data->no_more_pads_signal_id = g_signal_connect (src, "no-more-pads",
579           G_CALLBACK (gst_parse_no_more_pads), data);
580       return TRUE;
581     }
582   }
583   return FALSE;
584 }
585
586 /*
587  * performs a link and frees the struct. src and sink elements must be given
588  * return values   0 - link performed
589  *                 1 - link delayed
590  *                <0 - error
591  */
592 static gint
593 gst_parse_perform_link (link_t *link, graph_t *graph)
594 {
595   GstElement *src = link->src.element;
596   GstElement *sink = link->sink.element;
597   GSList *srcs = link->src.pads;
598   GSList *sinks = link->sink.pads;
599   g_assert (GST_IS_ELEMENT (src));
600   g_assert (GST_IS_ELEMENT (sink));
601
602   GST_CAT_INFO (GST_CAT_PIPELINE,
603       "linking " PRETTY_PAD_NAME_FMT " to " PRETTY_PAD_NAME_FMT " (%u/%u) with caps \"%" GST_PTR_FORMAT "\"",
604       PRETTY_PAD_NAME_ARGS (src, link->src.name),
605       PRETTY_PAD_NAME_ARGS (sink, link->sink.name),
606       g_slist_length (srcs), g_slist_length (sinks), link->caps);
607
608   if (!srcs || !sinks) {
609     gboolean found_one = gst_element_link_pads_filtered (src,
610         srcs ? (const gchar *) srcs->data : NULL, sink,
611         sinks ? (const gchar *) sinks->data : NULL, link->caps);
612
613     if (found_one) {
614       if (!link->all_pads)
615         goto success; /* Linked one, and not an all-pads link = we're done */
616
617       /* Try and link more available pads */
618       while (gst_element_link_pads_filtered (src,
619         srcs ? (const gchar *) srcs->data : NULL, sink,
620         sinks ? (const gchar *) sinks->data : NULL, link->caps));
621     }
622
623     /* We either didn't find any static pads, or this is a all-pads link,
624      * in which case watch for future pads and link those. Not a failure
625      * in the all-pads case if there's no sometimes pads to watch */
626     if (gst_parse_perform_delayed_link (src,
627           srcs ? (const gchar *) srcs->data : NULL,
628           sink, sinks ? (const gchar *) sinks->data : NULL, link->caps,
629           link->all_pads) || link->all_pads) {
630       goto success;
631     } else {
632       goto error;
633     }
634   }
635   if (g_slist_length (link->src.pads) != g_slist_length (link->sink.pads)) {
636     goto error;
637   }
638   while (srcs && sinks) {
639     const gchar *src_pad = (const gchar *) srcs->data;
640     const gchar *sink_pad = (const gchar *) sinks->data;
641     srcs = g_slist_next (srcs);
642     sinks = g_slist_next (sinks);
643     if (gst_element_link_pads_filtered (src, src_pad, sink, sink_pad,
644         link->caps)) {
645       continue;
646     } else {
647       if (gst_parse_perform_delayed_link (src, src_pad,
648                                           sink, sink_pad,
649                                           link->caps, link->all_pads)) {
650         continue;
651       } else {
652         goto error;
653       }
654     }
655   }
656
657 success:
658   gst_parse_free_link (link);
659   return 0;
660
661 error:
662   SET_ERROR (graph->error, GST_PARSE_ERROR_LINK,
663       _("could not link %s to %s"), GST_ELEMENT_NAME (src),
664       GST_ELEMENT_NAME (sink));
665   gst_parse_free_link (link);
666   return -1;
667 }
668
669
670 static int yyerror (void *scanner, graph_t *graph, const char *s);
671 %}
672
673 %union {
674     gchar *ss;
675     chain_t *cc;
676     link_t *ll;
677     reference_t rr;
678     GstElement *ee;
679     GSList *pp;
680     graph_t *gg;
681 }
682
683 /* No grammar ambiguities expected, FAIL otherwise */
684 %expect 0
685
686 %token <ss> PARSE_URL
687 %token <ss> IDENTIFIER
688 %left  <ss> REF PADREF BINREF
689 %token <ss> ASSIGNMENT
690 %token <ss> LINK
691 %token <ss> LINK_ALL
692
693 %type <ss> binopener
694 %type <gg> graph
695 %type <cc> chain bin chainlist openchain elementary
696 %type <rr> reference
697 %type <ll> link
698 %type <ee> element
699 %type <pp> morepads pads assignments
700
701 %destructor {   gst_parse_strfree ($$);         } <ss>
702 %destructor {   if($$)
703                   gst_parse_free_chain($$);     } <cc>
704 %destructor {   gst_parse_free_link ($$);       } <ll>
705 %destructor {   gst_parse_free_reference(&($$));} <rr>
706 %destructor {   gst_object_unref ($$);          } <ee>
707 %destructor {   GSList *walk;
708                 for(walk=$$;walk;walk=walk->next)
709                   gst_parse_strfree (walk->data);
710                 g_slist_free ($$);              } <pp>
711
712
713
714 %left '(' ')'
715 %left ','
716 %right '.'
717 %left '!' '=' ':'
718
719 %lex-param { void *scanner }
720 %parse-param { void *scanner }
721 %parse-param { graph_t *graph }
722 %pure-parser
723
724 %start graph
725 %%
726
727 /*************************************************************
728 * Grammar explanation:
729 *   _element_s are specified by an identifier of their type.
730 *   a name can be give in the optional property-assignments
731 *       coffeeelement
732 *       fakesrc name=john
733 *       identity silence=false name=frodo
734 *   (cont'd)
735 **************************************************************/
736 element:        IDENTIFIER                    { $$ = gst_element_factory_make ($1, NULL);
737                                                 if ($$ == NULL) {
738                                                   add_missing_element(graph, $1);
739                                                   SET_ERROR (graph->error, GST_PARSE_ERROR_NO_SUCH_ELEMENT, _("no element \"%s\""), $1);
740                                                 }
741                                                 gst_parse_strfree ($1);
742                                               }
743         |       element ASSIGNMENT            { gst_parse_element_set ($2, $1, graph);
744                                                 $$ = $1;
745                                               }
746         ;
747
748 /*************************************************************
749 * Grammar explanation: (cont'd)
750 *   a graph has (pure) _element_s, _bin_s and _link_s.
751 *   since bins are special elements, bins and elements can
752 *   be generalized as _elementary_.
753 *   The construction of _bin_s will be discussed later.
754 *   (cont'd)
755 *
756 **************************************************************/
757 elementary:
758         element                               { $$ = gst_parse_chain_new ();
759                                                 /* g_print ("@%p: CHAINing elementary\n", $$); */
760                                                 $$->first.element = $1? gst_object_ref($1) : NULL;
761                                                 $$->last.element = $1? gst_object_ref($1) : NULL;
762                                                 $$->first.name = $$->last.name = NULL;
763                                                 $$->first.pads = $$->last.pads = NULL;
764                                                 $$->elements = $1 ? g_slist_prepend (NULL, $1) : NULL;
765                                               }
766         | bin                                 { $$=$1; }
767         ;
768
769 /*************************************************************
770 * Grammar explanation: (cont'd)
771 *   a _chain_ is a list of _elementary_s that have _link_s inbetween
772 *   which are represented through infix-notation.
773 *
774 *       fakesrc ! sometransformation ! fakesink
775 *
776 *   every _link_ can be augmented with _pads_.
777 *
778 *       coffeesrc .sound ! speakersink
779 *       multisrc  .movie,ads ! .projector,smallscreen multisink
780 *
781 *   and every _link_ can be setup to filter media-types
782 *       mediasrc ! audio/x-raw, signed=TRUE ! stereosink
783 *
784 * User HINT:
785 *   if the lexer does not recognize your media-type it
786 *   will make it an element name. that results in errors
787 *   like
788 *       NO SUCH ELEMENT: no element audio7x-raw
789 *   '7' vs. '/' in https://en.wikipedia.org/wiki/QWERTZ
790 *
791 * Parsing HINT:
792 *   in the parser we need to differ between chains that can
793 *   be extended by more elementaries (_openchain_) and others
794 *   that are syntactically closed (handled later in this file).
795 *       (e.g. fakesrc ! sinkreferencename.padname)
796 **************************************************************/
797 chain:  openchain                             { $$=$1;
798                                                 if($$->last.name){
799                                                         SET_ERROR (graph->error, GST_PARSE_ERROR_SYNTAX,
800                                                         _("unexpected reference \"%s\" - ignoring"), $$->last.name);
801                                                         gst_parse_strfree($$->last.name);
802                                                         $$->last.name=NULL;
803                                                 }
804                                                 if($$->last.pads){
805                                                         SET_ERROR (graph->error, GST_PARSE_ERROR_SYNTAX,
806                                                         _("unexpected pad-reference \"%s\" - ignoring"), (gchar*)$$->last.pads->data);
807                                                         g_slist_foreach ($$->last.pads, (GFunc) gst_parse_strfree, NULL);
808                                                         g_slist_free ($$->last.pads);
809                                                         $$->last.pads=NULL;
810                                                 }
811                                               }
812         ;
813
814 openchain:
815         elementary pads                       { $$=$1;
816                                                 $$->last.pads = g_slist_concat ($$->last.pads, $2);
817                                                 /* g_print ("@%p@%p: FKI elementary pads\n", $1, $$->last.pads); */
818                                               }
819         | openchain link pads elementary pads
820                                               {
821                                                 $2->src  = $1->last;
822                                                 $2->sink = $4->first;
823                                                 $2->sink.pads = g_slist_concat ($3, $2->sink.pads);
824                                                 TRY_SETUP_LINK($2);
825                                                 $4->first = $1->first;
826                                                 $4->elements = g_slist_concat ($1->elements, $4->elements);
827                                                 gst_parse_chain_free($1);
828                                                 $$ = $4;
829                                                 $$->last.pads = g_slist_concat ($$->last.pads, $5);
830                                               }
831         ;
832
833 link:   LINK                                  { $$ = gst_parse_link_new ();
834                                                 $$->all_pads = FALSE;
835                                                 if ($1) {
836                                                   $$->caps = gst_caps_from_string ($1);
837                                                   if ($$->caps == NULL)
838                                                     SET_ERROR (graph->error, GST_PARSE_ERROR_LINK, _("could not parse caps \"%s\""), $1);
839                                                   gst_parse_strfree ($1);
840                                                 }
841                                               }
842         | LINK_ALL                            { $$ = gst_parse_link_new ();
843                                                 $$->all_pads = TRUE;
844                                                 if ($1) {
845                                                   $$->caps = gst_caps_from_string ($1);
846                                                   if ($$->caps == NULL)
847                                                     SET_ERROR (graph->error, GST_PARSE_ERROR_LINK, _("could not parse caps \"%s\""), $1);
848                                                   gst_parse_strfree ($1);
849                                                 }
850                                               }
851         ;
852 pads:           /* NOP */                     { $$ = NULL; }
853         |       PADREF morepads               { $$ = $2;
854                                                 $$ = g_slist_prepend ($$, $1);
855                                               }
856         ;
857 morepads:       /* NOP */                     { $$ = NULL; }
858         |       ',' IDENTIFIER morepads       { $$ = g_slist_prepend ($3, $2); }
859         ;
860
861 /*************************************************************
862 * Grammar explanation: (cont'd)
863 *   the first and last elements of a _chain_ can be give
864 *   as URL. This creates special elements that fit the URL.
865 *
866 *       fakesrc ! http://fake-sink.org
867 *       http://somesource.org ! fakesink
868 **************************************************************/
869
870 chain:  openchain link PARSE_URL              { GstElement *element =
871                                                           gst_element_make_from_uri (GST_URI_SINK, $3, NULL, NULL);
872                                                 /* FIXME: get and parse error properly */
873                                                 if (!element) {
874                                                   SET_ERROR (graph->error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
875                                                           _("no sink element for URI \"%s\""), $3);
876                                                 }
877                                                 $$ = $1;
878                                                 $2->sink.element = element?gst_object_ref(element):NULL;
879                                                 $2->src = $1->last;
880                                                 TRY_SETUP_LINK($2);
881                                                 $$->last.element = NULL;
882                                                 $$->last.name = NULL;
883                                                 $$->last.pads = NULL;
884                                                 if(element) $$->elements = g_slist_append ($$->elements, element);
885                                                 g_free ($3);
886                                               }
887         ;
888 openchain:
889         PARSE_URL                             { GstElement *element =
890                                                           gst_element_make_from_uri (GST_URI_SRC, $1, NULL, NULL);
891                                                 /* FIXME: get and parse error properly */
892                                                 if (!element) {
893                                                   SET_ERROR (graph->error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
894                                                     _("no source element for URI \"%s\""), $1);
895                                                 }
896                                                 $$ = gst_parse_chain_new ();
897                                                 /* g_print ("@%p: CHAINing srcURL\n", $$); */
898                                                 $$->first.element = NULL;
899                                                 $$->first.name = NULL;
900                                                 $$->first.pads = NULL;
901                                                 $$->last.element = element ? gst_object_ref(element):NULL;
902                                                 $$->last.name = NULL;
903                                                 $$->last.pads = NULL;
904                                                 $$->elements = element ? g_slist_prepend (NULL, element)  : NULL;
905                                                 g_free($1);
906                                               }
907         ;
908
909
910 /*************************************************************
911 * Grammar explanation: (cont'd)
912 *   the first and last elements of a _chain_ can be linked
913 *   to a named _reference_ (with optional pads).
914 *
915 *       fakesrc ! nameOfSinkElement.
916 *       fakesrc ! nameOfSinkElement.Padname
917 *       fakesrc ! nameOfSinkElement.Padname, anotherPad
918 *       nameOfSource.Padname ! fakesink
919 **************************************************************/
920
921 chain:  openchain link reference              { $$ = $1;
922                                                 $2->sink= $3;
923                                                 $2->src = $1->last;
924                                                 TRY_SETUP_LINK($2);
925                                                 $$->last.element = NULL;
926                                                 $$->last.name = NULL;
927                                                 $$->last.pads = NULL;
928                                               }
929         ;
930
931
932 openchain:
933         reference                             { $$ = gst_parse_chain_new ();
934                                                 $$->last=$1;
935                                                 $$->first.element = NULL;
936                                                 $$->first.name = NULL;
937                                                 $$->first.pads = NULL;
938                                                 $$->elements = NULL;
939                                               }
940         ;
941 reference:      REF morepads                  {
942                                                 gchar *padname = $1;
943                                                 GSList *pads = $2;
944                                                 if (padname) {
945                                                   while (*padname != '.') padname++;
946                                                   *padname = '\0';
947                                                   padname++;
948                                                   if (*padname != '\0')
949                                                     pads = g_slist_prepend (pads, gst_parse_strdup (padname));
950                                                 }
951                                                 $$.element=NULL;
952                                                 $$.name=$1;
953                                                 $$.pads=pads;
954                                               }
955         ;
956
957
958 /*************************************************************
959 * Grammar explanation: (cont'd)
960 *   a _chainlist_ is just a list of _chain_s.
961 *
962 *   You can specify _link_s with named
963 *   _reference_ on each side. That
964 *   works already after the explanations above.
965 *       someSourceName.Pad ! someSinkName.
966 *       someSourceName.Pad,anotherPad ! someSinkName.Apad,Bpad
967 *
968 *   If a syntax error occurs, the already finished _chain_s
969 *   and _links_ are kept intact.
970 *************************************************************/
971
972 chainlist: /* NOP */                          { $$ = NULL; }
973         | chainlist chain                     { if ($1){
974                                                   gst_parse_free_reference(&($1->last));
975                                                   gst_parse_free_reference(&($2->first));
976                                                   $2->first = $1->first;
977                                                   $2->elements = g_slist_concat ($1->elements, $2->elements);
978                                                   gst_parse_chain_free ($1);
979                                                 }
980                                                 $$ = $2;
981                                               }
982         | chainlist error                     { $$=$1;
983                                                 GST_CAT_DEBUG (GST_CAT_PIPELINE,"trying to recover from syntax error");
984                                                 SET_ERROR (graph->error, GST_PARSE_ERROR_SYNTAX, _("syntax error"));
985                                               }
986         ;
987
988 /*************************************************************
989 * Grammar explanation: (cont'd)
990 *   _bins_
991 *************************************************************/
992
993
994 assignments:    /* NOP */                     { $$ = NULL; }
995         |       ASSIGNMENT assignments        { $$ = g_slist_prepend ($2, $1); }
996         ;
997
998 binopener:      '('                           { $$ = gst_parse_strdup(_("bin")); }
999         |       BINREF                        { $$ = $1; }
1000         ;
1001 bin:    binopener assignments chainlist ')'   {
1002                                                 chain_t *chain = $3;
1003                                                 GSList *walk;
1004                                                 GstBin *bin = (GstBin *) gst_element_factory_make ($1, NULL);
1005                                                 if (!chain) {
1006                                                   SET_ERROR (graph->error, GST_PARSE_ERROR_EMPTY_BIN,
1007                                                     _("specified empty bin \"%s\", not allowed"), $1);
1008                                                   chain = gst_parse_chain_new ();
1009                                                   chain->first.element = chain->last.element = NULL;
1010                                                   chain->first.name    = chain->last.name    = NULL;
1011                                                   chain->first.pads    = chain->last.pads    = NULL;
1012                                                   chain->elements = NULL;
1013                                                 }
1014                                                 if (!bin) {
1015                                                   add_missing_element(graph, $1);
1016                                                   SET_ERROR (graph->error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
1017                                                     _("no bin \"%s\", unpacking elements"), $1);
1018                                                   /* clear property-list */
1019                                                   g_slist_foreach ($2, (GFunc) gst_parse_strfree, NULL);
1020                                                   g_slist_free ($2);
1021                                                   $2 = NULL;
1022                                                 } else {
1023                                                   for (walk = chain->elements; walk; walk = walk->next )
1024                                                     gst_bin_add (bin, GST_ELEMENT (walk->data));
1025                                                   g_slist_free (chain->elements);
1026                                                   chain->elements = g_slist_prepend (NULL, bin);
1027                                                 }
1028                                                 $$ = chain;
1029                                                 /* set the properties now
1030                                                  * HINT: property-list cleared above, if bin==NULL
1031                                                  */
1032                                                 for (walk = $2; walk; walk = walk->next)
1033                                                   gst_parse_element_set ((gchar *) walk->data,
1034                                                         GST_ELEMENT (bin), graph);
1035                                                 g_slist_free ($2);
1036                                                 gst_parse_strfree ($1);
1037                                               }
1038         ;
1039
1040 /*************************************************************
1041 * Grammar explanation: (cont'd)
1042 *   _graph_
1043 *************************************************************/
1044
1045 graph:  chainlist                             { $$ = graph;
1046                                                 $$->chain = $1;
1047                                                 if(!$1) {
1048                                                   SET_ERROR (graph->error, GST_PARSE_ERROR_EMPTY, _("empty pipeline not allowed"));
1049                                                 }
1050                                               }
1051         ;
1052
1053 %%
1054
1055
1056 static int
1057 yyerror (void *scanner, graph_t *graph, const char *s)
1058 {
1059   /* FIXME: This should go into the GError somehow, but how? */
1060   GST_WARNING ("Error during parsing: %s", s);
1061   return -1;
1062 }
1063
1064
1065 GstElement *
1066 priv_gst_parse_launch (const gchar *str, GError **error, GstParseContext *ctx,
1067     GstParseFlags flags)
1068 {
1069   graph_t g;
1070   gchar *dstr;
1071   GSList *walk;
1072   GstBin *bin = NULL;
1073   GstElement *ret;
1074   yyscan_t scanner;
1075
1076   g_return_val_if_fail (str != NULL, NULL);
1077   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
1078
1079   g.chain = NULL;
1080   g.links = NULL;
1081   g.error = error;
1082   g.ctx = ctx;
1083   g.flags = flags;
1084
1085 #ifdef __GST_PARSE_TRACE
1086   GST_CAT_DEBUG (GST_CAT_PIPELINE, "TRACE: tracing enabled");
1087   __strings = __chains = __links = 0;
1088 #endif /* __GST_PARSE_TRACE */
1089
1090   /* g_print("Now scanning: %s\n", str); */
1091
1092   dstr = g_strdup (str);
1093   priv_gst_parse_yylex_init (&scanner);
1094   priv_gst_parse_yy_scan_string (dstr, scanner);
1095
1096 #if YYDEBUG
1097   yydebug = 1;
1098 #endif
1099
1100   if (yyparse (scanner, &g) != 0) {
1101     SET_ERROR (error, GST_PARSE_ERROR_SYNTAX,
1102         "Unrecoverable syntax error while parsing pipeline %s", str);
1103
1104     priv_gst_parse_yylex_destroy (scanner);
1105     g_free (dstr);
1106
1107     goto error1;
1108   }
1109   priv_gst_parse_yylex_destroy (scanner);
1110   g_free (dstr);
1111
1112   GST_CAT_DEBUG (GST_CAT_PIPELINE, "got %u elements and %u links",
1113       g.chain ? g_slist_length (g.chain->elements) : 0,
1114       g_slist_length (g.links));
1115
1116   /* ensure chain is not NULL */
1117   if (!g.chain){
1118     g.chain=gst_parse_chain_new ();
1119     g.chain->elements=NULL;
1120     g.chain->first.element=NULL;
1121     g.chain->first.name=NULL;
1122     g.chain->first.pads=NULL;
1123     g.chain->last.element=NULL;
1124     g.chain->last.name=NULL;
1125     g.chain->last.pads=NULL;
1126   };
1127
1128   /* ensure elements is not empty */
1129   if(!g.chain->elements){
1130     g.chain->elements= g_slist_prepend (NULL, NULL);
1131   };
1132
1133   /* put all elements in our bin if necessary */
1134   if(g.chain->elements->next){
1135     if (flags & GST_PARSE_FLAG_PLACE_IN_BIN)
1136       bin = GST_BIN (gst_element_factory_make ("bin", NULL));
1137     else
1138       bin = GST_BIN (gst_element_factory_make ("pipeline", NULL));
1139     g_assert (bin);
1140
1141     for (walk = g.chain->elements; walk; walk = walk->next) {
1142       if (walk->data != NULL)
1143         gst_bin_add (bin, GST_ELEMENT (walk->data));
1144     }
1145     g_slist_free (g.chain->elements);
1146     g.chain->elements = g_slist_prepend (NULL, bin);
1147   }
1148
1149   ret = (GstElement *) g.chain->elements->data;
1150   g_slist_free (g.chain->elements);
1151   g.chain->elements=NULL;
1152   if (GST_IS_BIN (ret))
1153     bin = GST_BIN (ret);
1154   gst_parse_free_chain (g.chain);
1155   g.chain = NULL;
1156
1157
1158   /* resolve and perform links */
1159   for (walk = g.links; walk; walk = walk->next) {
1160     link_t *l = (link_t *) walk->data;
1161     int err;
1162     err=gst_resolve_reference( &(l->src), ret);
1163     if (err) {
1164        if(-1==err){
1165           SET_ERROR (error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
1166               "No src-element named \"%s\" - omitting link", l->src.name);
1167        }else{
1168           /* probably a missing element which we've handled already */
1169           SET_ERROR (error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
1170               "No src-element found - omitting link");
1171        }
1172        gst_parse_free_link (l);
1173        continue;
1174     }
1175
1176     err=gst_resolve_reference( &(l->sink), ret);
1177     if (err) {
1178        if(-1==err){
1179           SET_ERROR (error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
1180               "No sink-element named \"%s\" - omitting link", l->src.name);
1181        }else{
1182           /* probably a missing element which we've handled already */
1183           SET_ERROR (error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
1184               "No sink-element found - omitting link");
1185        }
1186        gst_parse_free_link (l);
1187        continue;
1188     }
1189     gst_parse_perform_link (l, &g);
1190   }
1191   g_slist_free (g.links);
1192
1193 out:
1194 #ifdef __GST_PARSE_TRACE
1195   GST_CAT_DEBUG (GST_CAT_PIPELINE,
1196       "TRACE: %u strings, %u chains and %u links left", __strings, __chains,
1197       __links);
1198   if (__strings || __chains || __links) {
1199     g_warning ("TRACE: %u strings, %u chains and %u links left", __strings,
1200         __chains, __links);
1201   }
1202 #endif /* __GST_PARSE_TRACE */
1203
1204   return ret;
1205
1206 error1:
1207   if (g.chain) {
1208     gst_parse_free_chain (g.chain);
1209     g.chain=NULL;
1210   }
1211
1212   g_slist_foreach (g.links, (GFunc)gst_parse_free_link, NULL);
1213   g_slist_free (g.links);
1214
1215   if (error)
1216     g_assert (*error);
1217   ret = NULL;
1218
1219   goto out;
1220 }