Added syntax to make filtered connections like: osssrc src\!audio/raw, channels=int...
[platform/upstream/gstreamer.git] / gst / gstparse.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *                    2002 Andy Wingo <wingo@pobox.com>
5  *
6  * gstparse.c: get a pipeline from a text pipeline description
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 #include <string.h>
25
26 #include "gstparse.h"
27 #include "gstinfo.h"
28 #include "gstlog.h"
29 #include "parse/types.h"
30
31 typedef struct _gst_parse_delayed_pad gst_parse_delayed_pad;
32 struct _gst_parse_delayed_pad
33 {
34   gchar *name;
35   GstPad *peer;
36 };
37
38 typedef struct
39 {
40   gchar *srcpadname;
41   GstPad *target_pad;
42   GstElement *target_element;
43   GstElement *pipeline;
44 }
45 dynamic_connection_t;
46
47
48 GQuark 
49 gst_parse_error_quark (void)
50 {
51   static GQuark quark = 0;
52   if (!quark)
53     quark = g_quark_from_static_string ("gst_parse_error");
54   return quark;
55 }
56
57 G_GNUC_UNUSED static void
58 dynamic_connect (GstElement * element, GstPad * newpad, gpointer data)
59 {
60   dynamic_connection_t *dc = (dynamic_connection_t *) data;
61   gboolean warn = TRUE;
62
63   /* do we know the exact srcpadname? */
64   if (dc->srcpadname) {
65     GstPadTemplate *templ = gst_pad_get_pad_template (newpad);
66
67     /* see if this is the one */
68     if (strcmp (gst_pad_get_name (newpad), dc->srcpadname) && 
69         strcmp (gst_object_get_name (GST_OBJECT (templ)), dc->srcpadname)) {
70       return;
71     }
72   }
73
74   /* try to find a target pad if we don't know it yet */
75   if (!dc->target_pad) {
76     if (!GST_PAD_IS_CONNECTED (newpad)) {
77       dc->target_pad = gst_element_get_compatible_pad (dc->target_element, newpad);
78       warn = FALSE;
79     }
80     else {
81       return;
82     }
83   }
84   if (!GST_PAD_IS_CONNECTED (dc->target_pad) && !GST_PAD_IS_CONNECTED (newpad)) {
85     gst_element_set_state (dc->pipeline, GST_STATE_PAUSED);
86     if (!gst_pad_connect (newpad, dc->target_pad) && warn) {
87       g_warning ("could not connect %s:%s to %s:%s", GST_DEBUG_PAD_NAME (newpad), 
88                  GST_DEBUG_PAD_NAME (dc->target_pad));
89     }
90     gst_element_set_state (dc->pipeline, GST_STATE_PLAYING);
91   }
92 }
93
94 static gboolean
95 make_elements (graph_t *g, GError **error) 
96 {
97   GList *l = NULL;
98   gchar *bin_type;
99   element_t *e;
100   
101   if (!(g->bins || g->elements)) {
102     g_set_error (error,
103                  GST_PARSE_ERROR,
104                  GST_PARSE_ERROR_SYNTAX,
105                  "Empty bin");
106     return FALSE;
107   }
108
109   if (g->current_bin_type)
110     bin_type = g->current_bin_type;
111   else
112     bin_type = "pipeline";
113   
114   if (!(g->bin = gst_element_factory_make (bin_type, NULL))) {
115     g_set_error (error,
116                  GST_PARSE_ERROR,
117                  GST_PARSE_ERROR_NO_SUCH_ELEMENT,
118                  "No such bin type %s", bin_type);
119     return FALSE;
120   }
121   
122   l = g->elements;
123   while (l) {
124     e = (element_t*)l->data;
125     if (!(e->element = gst_element_factory_make (e->type, NULL))) {
126       g_set_error (error,
127                    GST_PARSE_ERROR,
128                    GST_PARSE_ERROR_NO_SUCH_ELEMENT,
129                    "No such element %s", e->type);
130       return FALSE;
131     }
132     gst_bin_add (GST_BIN (g->bin), e->element);
133     l = g_list_next (l);
134   }
135   
136   l = g->bins;
137   while (l) {
138     if (!make_elements ((graph_t*)l->data, error))
139       return FALSE;
140     gst_bin_add (GST_BIN (g->bin), ((graph_t*)l->data)->bin);
141     l = g_list_next (l);
142   }
143
144   return TRUE;
145 }
146
147 static gboolean
148 set_properties (graph_t *g, GError **error)
149 {
150   GList *l, *l2;
151   element_t *e;
152   property_t *p;
153   GParamSpec *pspec;
154   
155   l = g->elements;
156   while (l) {
157     e = (element_t*)l->data;
158     l2 = e->property_values;
159     while (l2) {
160       p = (property_t*)l2->data;
161       if ((pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (e->element), p->name))) {
162         g_object_set_property (G_OBJECT (e->element), p->name, p->value);
163       } else {
164         g_set_error (error,
165                      GST_PARSE_ERROR,
166                      GST_PARSE_ERROR_NO_SUCH_PROPERTY,
167                      "No such property '%s' in element '%s'",
168                      p->name, GST_OBJECT_NAME (GST_OBJECT (e->element)));
169         return FALSE;
170       }
171       l2 = g_list_next (l2);
172     }
173     l = g_list_next (l);
174   }
175   
176   l = g->bins;
177   while (l) {
178     if (!set_properties ((graph_t*)l->data, error))
179       return FALSE;
180     l = g_list_next (l);
181   }
182   
183   return TRUE;
184 }
185
186 static GstElement*
187 find_element_by_index_recurse (graph_t *g, gint i)
188 {
189   GList *l;
190   element_t *e;
191   GstElement *element;
192   
193   l = g->elements;
194   while (l) {
195     e = (element_t*)l->data;
196     if (e->index == i) {
197       return e->element;
198     }
199     l = g_list_next (l);
200   }
201   
202   l = g->bins;
203   while (l) {
204     if ((element = find_element_by_index_recurse ((graph_t*)l->data, i)))
205       return element;
206     l = g_list_next (l);
207   }
208   
209   return NULL;
210 }
211
212 static GstElement*
213 find_element_by_index (graph_t *g, gint i) 
214 {
215   while (g->parent)
216     g = g->parent;
217
218   return find_element_by_index_recurse (g, i);
219 }
220
221 static gboolean
222 make_connections (graph_t *g, GError **error)
223 {
224   GList *l, *a, *b;
225   connection_t *c;
226   dynamic_connection_t *dc;
227   GstElement *src, *sink;
228   GstPad *p1, *p2;
229   GstPadTemplate *pt1, *pt2;
230   GstCaps *caps;
231   
232   l = g->connections;
233   while (l) {
234     c = (connection_t*)l->data;
235     if (c->src_name) {
236       if (!(src = gst_bin_get_by_name (GST_BIN (g->bin), c->src_name))) {
237         g_set_error (error,
238                      GST_PARSE_ERROR,
239                      GST_PARSE_ERROR_NO_SUCH_ELEMENT,
240                      "No such element '%s'",
241                      c->src_name);
242         return FALSE;
243       }
244     } else {
245       src = find_element_by_index (g, c->src_index);
246       g_assert (src);
247     }
248     if (c->sink_name) {
249       if (!(sink = gst_bin_get_by_name (GST_BIN (g->bin), c->sink_name))) {
250         g_set_error (error,
251                      GST_PARSE_ERROR,
252                      GST_PARSE_ERROR_NO_SUCH_ELEMENT,
253                      "No such element '%s'",
254                      c->sink_name);
255         return FALSE;
256       }
257     } else {
258       sink = find_element_by_index (g, c->sink_index);
259       g_assert (sink);
260     }
261     
262     a = c->src_pads;
263     b = c->sink_pads;
264     caps = c->caps;
265     gst_caps_debug (caps, "foo");
266     /* g_print ("a: %p, b: %p\n", a, b); */
267     if (a && b) {
268       /* balanced multipad connection */
269       while (a && b) {
270         p1 = gst_element_get_pad (src, (gchar*)a->data);
271         p2 = gst_element_get_pad (sink, (gchar*)b->data);
272
273         if (!p2)
274           goto could_not_get_pad_b;
275         
276         if (!p1 && p2 && (pt1 = gst_element_get_pad_template (src, (gchar*)a->data)) &&
277             pt1->presence == GST_PAD_SOMETIMES) {
278           dc = g_new0 (dynamic_connection_t, 1);
279           dc->srcpadname = (gchar*)a->data;
280           dc->target_pad = p2;
281           dc->target_element = sink;
282           dc->pipeline = g->bin;
283           
284           GST_DEBUG (GST_CAT_PIPELINE, "setting up dynamic connection %s:%s and %s:%s",
285                      GST_OBJECT_NAME (GST_OBJECT (src)),
286                      (gchar*)a->data, GST_DEBUG_PAD_NAME (p2));
287           
288           g_signal_connect (G_OBJECT (src), "new_pad", G_CALLBACK (dynamic_connect), dc);
289         } else if (!p1) {
290           goto could_not_get_pad_a;
291         } else if (!gst_pad_connect_filtered (p1, p2, caps)) {
292           goto could_not_connect_pads;
293         }
294         a = g_list_next (a);
295         b = g_list_next (b);
296       }
297     } else if (a) {
298       if ((pt1 = gst_element_get_pad_template (src, (gchar*)a->data))) {
299         if ((p1 = gst_element_get_pad (src, (gchar*)a->data)) || pt1->presence == GST_PAD_SOMETIMES) {
300           if (!p1) {
301             /* sigh, a hack until i fix the gstelement api... */
302             if ((pt2 = gst_element_get_compatible_pad_template (sink, pt1))) {
303               if ((p2 = gst_element_get_pad (sink, pt2->name_template))) {
304                 dc = g_new0 (dynamic_connection_t, 1);
305                 dc->srcpadname = (gchar*)a->data;
306                 dc->target_pad = p2;
307                 dc->target_element = NULL;
308                 dc->pipeline = g->bin;
309               
310                 GST_DEBUG (GST_CAT_PIPELINE, "setting up dynamic connection %s:%s and %s:%s",
311                            GST_OBJECT_NAME (GST_OBJECT (src)),
312                            (gchar*)a->data, GST_DEBUG_PAD_NAME (p2));
313               
314                 g_signal_connect (G_OBJECT (src), "new_pad", G_CALLBACK (dynamic_connect), dc);
315                 goto next;
316               } else {
317                 /* both pt1 and pt2 are sometimes templates. sheesh. */
318                 goto both_templates_have_sometimes_presence;
319               }
320             } else {
321               /* if the target pad has no padtemplate we will figure out a target 
322                * pad later on */
323               dc = g_new0 (dynamic_connection_t, 1);
324               dc->srcpadname = (gchar*)a->data;
325               dc->target_pad = NULL;
326               dc->target_element = sink;
327               dc->pipeline = g->bin;
328               
329               GST_DEBUG (GST_CAT_PIPELINE, "setting up dynamic connection %s:%s, and some pad in %s",
330                            GST_OBJECT_NAME (GST_OBJECT (src)),
331                            (gchar*)a->data, GST_OBJECT_NAME (sink));
332               
333               g_signal_connect (G_OBJECT (src), "new_pad", G_CALLBACK (dynamic_connect), dc);
334               goto next;
335             }
336           } else {
337             goto could_not_get_compatible_to_a;
338           }
339         } else {
340           goto could_not_get_pad_a;
341         }
342       } else {
343         goto could_not_get_pad_a;
344       }
345       
346       if (!gst_pad_connect_filtered (p1, p2, caps)) {
347         goto could_not_connect_pads;
348       }
349     } else if (b) {
350       /* we don't support dynamic connections on this side yet, if ever */
351       if (!(p2 = gst_element_get_pad (sink, (gchar*)b->data))) {
352         goto could_not_get_pad_b;
353       }
354       if (!(p1 = gst_element_get_compatible_pad (src, p2))) {
355         goto could_not_get_compatible_to_b;
356       }
357       if (!gst_pad_connect_filtered (p1, p2, caps)) {
358         goto could_not_connect_pads;
359       }
360     } else {
361       if (!gst_element_connect_filtered (src, sink, caps)) {
362         goto could_not_connect_elements;
363       }
364     }
365 next:
366     l = g_list_next (l);
367   }
368   
369   l = g->bins;
370   while (l) {
371     if (!make_connections ((graph_t*)l->data, error))
372       return FALSE;
373     l = g_list_next (l);
374   }
375   
376   return TRUE;
377
378 could_not_get_pad_a:
379   g_set_error (error,
380                GST_PARSE_ERROR,
381                GST_PARSE_ERROR_CONNECT,
382                "Could not get a pad %s from element %s",
383                (gchar*)a->data, GST_OBJECT_NAME (src));
384   return FALSE;
385 could_not_get_pad_b:
386   g_set_error (error,
387                GST_PARSE_ERROR,
388                GST_PARSE_ERROR_CONNECT,
389                "Could not get a pad %s from element %s",
390                (gchar*)b->data, GST_OBJECT_NAME (sink));
391   return FALSE;
392 could_not_get_compatible_to_a:
393   g_set_error (error,
394                GST_PARSE_ERROR,
395                GST_PARSE_ERROR_CONNECT,
396                "Could not find a compatible pad in element %s to for %s:%s",
397                GST_OBJECT_NAME (sink), GST_OBJECT_NAME (src), (gchar*)a->data);
398   return FALSE;
399 could_not_get_compatible_to_b:
400   g_set_error (error,
401                GST_PARSE_ERROR,
402                GST_PARSE_ERROR_CONNECT,
403                "Could not find a compatible pad in element %s to for %s:%s",
404                GST_OBJECT_NAME (src), GST_OBJECT_NAME (sink), (gchar*)b->data);
405   return FALSE;
406 both_templates_have_sometimes_presence:
407   g_set_error (error,
408                GST_PARSE_ERROR,
409                GST_PARSE_ERROR_CONNECT,
410                "Both %s:%s and %s:%s have GST_PAD_SOMETIMES presence, operation not supported",
411                GST_OBJECT_NAME (src), pt1->name_template, GST_OBJECT_NAME (sink), pt2->name_template);
412   return FALSE;
413 could_not_connect_pads:
414   g_set_error (error,
415                GST_PARSE_ERROR,
416                GST_PARSE_ERROR_CONNECT,
417                "Could not connect %s:%s to %s:%s",
418                GST_DEBUG_PAD_NAME (p1),
419                GST_DEBUG_PAD_NAME (p2));
420   return FALSE;
421 could_not_connect_elements:
422   g_set_error (error,
423                GST_PARSE_ERROR,
424                GST_PARSE_ERROR_CONNECT,
425                "Could not connect element %s to %s",
426                GST_OBJECT_NAME (src),
427                GST_OBJECT_NAME (sink));
428   return FALSE;
429 }
430
431 static GstBin*
432 pipeline_from_graph (graph_t *g, GError **error)
433 {
434   if (!make_elements (g, error))
435     return NULL;
436   
437   if (!set_properties (g, error))
438     return NULL;
439   
440   if (!make_connections (g, error))
441     return NULL;
442   
443   return (GstBin*)g->bin;
444 }
445
446 /**
447  * gst_parse_launchv:
448  * @argv: null-terminated array of arguments
449  * @error: pointer to GError
450  *
451  * Create a new pipeline based on command line syntax.
452  *
453  * Returns: a new pipeline on success, NULL on failure and error
454  * will contain the error message.
455  */
456 GstBin *
457 gst_parse_launchv (const gchar **argv, GError **error)
458 {
459   GstBin *pipeline;
460   GString *str;
461   const gchar **argvp, *arg;
462   gchar *tmp;
463
464   g_return_val_if_fail (argv != NULL, NULL);
465
466   /* let's give it a nice size. */
467   str = g_string_sized_new (1024);
468
469   argvp = argv;
470   while (*argvp) {
471     arg = *argvp;
472     tmp = _gst_parse_escape (arg);
473     g_string_append (str, tmp);
474     g_free (tmp);
475     g_string_append (str, " ");
476     argvp++;
477   }
478   
479   pipeline = gst_parse_launch (str->str, error);
480
481   g_string_free (str, TRUE);
482
483   return pipeline;
484 }
485
486 gchar *_gst_parse_escape (const gchar *str)
487 {
488   GString *gstr = NULL;
489   
490   g_return_val_if_fail (str != NULL, NULL);
491   
492   gstr = g_string_sized_new (strlen (str));
493   
494   while (*str) {
495     if (*str == ' ')
496       g_string_append_c (gstr, '\\');
497     g_string_append_c (gstr, *str);
498     str++;
499   }
500   
501   return gstr->str;
502 }
503
504 void _gst_parse_unescape (gchar *str)
505 {
506   gchar *walk;
507   
508   g_return_if_fail (str != NULL);
509   
510   walk = str;
511   
512   while (*walk) {
513     if (*walk == '\\')
514       walk++;
515     *str = *walk;
516     str++;
517     walk++;
518   }
519   *str = '\0';
520 }
521
522 /**
523  * gst_parse_launch:
524  * @pipeline_description: the command line describing the pipeline
525  * @error: the error message in case of a failure
526  *
527  * Create a new pipeline based on command line syntax.
528  *
529  * Returns: a new bin on success, NULL on failure. By default the bin is
530  * a GstPipeline, but it depends on the pipeline_description.
531  */
532 GstBin *
533 gst_parse_launch (const gchar * pipeline_description, GError **error)
534 {
535   graph_t *graph;
536   static GStaticMutex flex_lock = G_STATIC_MUTEX_INIT;
537
538   g_return_val_if_fail (pipeline_description != NULL, NULL);
539
540   GST_INFO (GST_CAT_PIPELINE, "parsing pipeline description %s",
541             pipeline_description);
542
543   /* the need for the mutex will go away with flex 2.5.6 */
544   g_static_mutex_lock (&flex_lock);
545   graph = _gst_parse_launch (pipeline_description, error);
546   g_static_mutex_unlock (&flex_lock);
547
548   if (!graph)
549     return NULL;
550   
551   return pipeline_from_graph (graph, error);
552 }