no reason to lock
[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  *
5  * :
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #define DEBUG(format,args...)
24 #define DEBUG_NOPREFIX(format,args...)
25 #define VERBOSE(format,args...)
26
27 #define GST_PARSE_LISTPAD(list)   ((GstPad*)(list->data))
28
29 #include <string.h>
30
31 #include "gst_private.h"
32 #include "gstparse.h"
33 #include "gstpipeline.h"
34 #include "gstthread.h"
35 #include "gstutils.h"
36
37 typedef struct _gst_parse_priv gst_parse_priv;
38 struct _gst_parse_priv {
39   guint bincount;
40   guint threadcount;
41   gint binlevel;
42   GHashTable *elementcounts;
43   gboolean verbose;
44   gboolean debug;
45 };
46
47 typedef struct _gst_parse_delayed_pad gst_parse_delayed_pad;
48 struct _gst_parse_delayed_pad {
49   gchar *name;
50   GstPad *peer;
51 };
52
53 /* FIXME need to either revive this, or have pad->padtemplate connections in core
54 static void
55 gst_parse_newpad(GstElement *element,GstPad *pad,launch_delayed_pad *peer)
56 {
57   gst_info("have NEW_PAD signal\n");
58   // if it matches, connect it
59   if (!strcmp(GST_PAD_NAME(pad),peer->name)) {
60     gst_pad_connect(pad,peer->peer);
61     gst_info("delayed connect of '%s' to '%s'\n",
62              GST_PAD_NAME(pad),GST_PAD_NAME(peer->peer));
63   }
64 }
65 */
66
67 typedef struct {
68   gchar *srcpadname;
69   GstPad *target;
70 } dyn_connect;
71
72 static void have_eos (void)
73 {
74   DEBUG ("I have eos on the first element\n");
75   exit (0);
76 }
77
78 static void
79 dynamic_connect (GstElement *element, GstPad *newpad, gpointer data)
80 {
81   dyn_connect *connect = (dyn_connect *)data;
82
83   if (!strcmp (gst_pad_get_name (newpad), connect->srcpadname)) {
84     gst_pad_connect (newpad, connect->target);
85   }
86 }
87
88 static gchar *
89 gst_parse_unique_name(gchar *type,gst_parse_priv *priv)
90 {
91   gint count;
92
93   count = GPOINTER_TO_INT(g_hash_table_lookup(priv->elementcounts,type));
94   count++;
95   g_hash_table_insert(priv->elementcounts,type,GINT_TO_POINTER(count));
96
97   return g_strdup_printf("%s%d",type,count-1);
98 }
99
100
101
102 static gint
103 gst_parse_launch_cmdline(int argc,char *argv[],GstBin *parent,gst_parse_priv *priv)
104 {
105   gint i = 0, j = 0;
106   gchar *arg;
107   GstElement *element = NULL, *previous = NULL, *prevelement = NULL;
108   gchar closingchar = '\0';
109   gint len;
110   gchar *ptr;
111   gchar *sinkpadname = NULL, *srcpadname = NULL, *tempname;
112   GstPad *temppad;
113   GSList *sinkpads = NULL, *srcpads = NULL;
114   gint numsrcpads = 0, numsinkpads = 0;
115   GList *pads;
116   gint elementcount = 0;
117   gint retval = 0;
118
119   priv->binlevel++;
120
121   if (GST_IS_PIPELINE(parent)) { closingchar = '\0';DEBUG("in pipeline "); }
122   else if (GST_IS_THREAD(parent)) { closingchar = '}';DEBUG("in thread "); }
123   else { closingchar = ')';DEBUG("in bin "); }
124   DEBUG_NOPREFIX("%s\n",GST_ELEMENT_NAME (GST_ELEMENT (parent)));
125
126   while (i < argc) {
127     arg = argv[i];
128     // FIXME this is a lame solution for problems with the first parser
129     if (arg == NULL) { i++;continue; }
130     len = strlen(arg);
131     element = NULL;
132     DEBUG("** ARGUMENT is '%s'\n",arg);
133
134     // a null that slipped through the reconstruction
135     if (len == 0) {
136       DEBUG("random arg, FIXME\n");
137       i++;
138       continue;
139
140     // end of the container
141     } else if (arg[0] == closingchar) {
142       // time to finish off this bin
143       DEBUG("exiting container %s\n",GST_ELEMENT_NAME (GST_ELEMENT (parent)));
144       retval = i+1;
145       break;
146
147     // a pad connection
148     } else if ((ptr = strchr(arg,'!'))) {
149       DEBUG("attempting to connect pads together....\n");
150
151       // if it starts with the !
152       if (arg[0] == '!') {
153         srcpadname = NULL;
154         // if there's a sinkpad...
155         if (len > 1)
156           sinkpadname = &arg[1];
157         else
158           sinkpadname = NULL;
159       } else {
160         srcpadname = g_strndup(arg,(ptr-arg));
161         // if there's a sinkpad
162         if (len > (ptr-arg)+1)
163           sinkpadname = &ptr[1];
164         else
165           sinkpadname = NULL;
166       }
167
168       GST_DEBUG(0,"have srcpad %s, sinkpad %s\n",srcpadname,sinkpadname);
169
170       g_slist_free(srcpads);
171       srcpads = NULL;
172       numsrcpads=0;
173       tempname=NULL;
174
175       // find src pads
176       if (srcpadname != NULL) {
177         while (1){
178           // split name at commas
179           if ((ptr = strchr(srcpadname,','))){
180             tempname = g_strndup(srcpadname,(ptr-srcpadname));
181             srcpadname = &ptr[1];
182           } else {
183             tempname = srcpadname;
184           }
185           
186           // look for pad with that name
187           if ((temppad = gst_element_get_pad(previous,tempname))){
188             srcpads = g_slist_append(srcpads,temppad);
189             numsrcpads++;
190           }
191           
192           // try to create a pad using that padtemplate name
193           else if ((temppad = gst_element_request_pad_by_name(previous,tempname))) {
194             srcpads = g_slist_append(srcpads,temppad);
195             numsrcpads++;
196           }
197           if (!temppad) {
198             GST_DEBUG(0,"NO SUCH pad %s in element %s\n",tempname,GST_ELEMENT_NAME(previous));
199           } else {
200             GST_DEBUG(0,"have src pad %s:%s\n",GST_DEBUG_PAD_NAME(temppad));
201           }
202           
203           // if there is no more commas in srcpadname then we're done
204           if (tempname == srcpadname) break;
205           g_free(tempname);
206         }
207       }
208       else {
209         // check through the list to find the first sink pad
210         GST_DEBUG(0,"CHECKING through element %s for pad named %s\n",GST_ELEMENT_NAME(previous),srcpadname);
211         pads = gst_element_get_pad_list(previous);
212         while (pads) {
213           temppad = GST_PARSE_LISTPAD(pads);
214           GST_DEBUG(0,"have pad %s:%s\n",GST_DEBUG_PAD_NAME(temppad));
215           if (GST_IS_GHOST_PAD(temppad)) GST_DEBUG(0,"it's a ghost pad\n");
216           if (gst_pad_get_direction (temppad) == GST_PAD_SRC){
217             srcpads = g_slist_append(srcpads,temppad);
218             numsrcpads++;
219             break;
220           }
221           pads = g_list_next (pads);
222         }
223         if (!srcpads) GST_DEBUG(0,"error, can't find a src pad!!!\n");
224         else GST_DEBUG(0,"have src pad %s:%s\n",GST_DEBUG_PAD_NAME(GST_PARSE_LISTPAD(srcpads)));
225       }
226
227     // argument with = in it
228     } else if (strstr(arg, "=")) {
229       gchar * argname;
230       gchar * argval;
231       gchar * pos = strstr(arg, "=");
232       // we have an argument
233       argname = arg;
234       pos[0] = '\0';
235       argval = pos+1;
236       
237       // parse dparams values
238       if (strstr(arg, "@") == arg){
239         GstDParamManager *dpman;
240         GstDParam *dparam;
241         GType dparam_type;
242                 
243         argname++;
244         GST_DEBUG(0,"attempting to set dynamic param '%s' to '%s' on element '%s'\n",
245               argname,argval,GST_ELEMENT_NAME(previous));
246         
247         dpman = GST_ELEMENT_DPARAM_MANAGER(previous);
248         dparam_type = gst_dpman_get_dparam_type(dpman, argname);
249         if (dparam_type > 0){
250           gst_dpman_set_mode(dpman, "synchronous");
251           dparam = gst_dparam_new(dparam_type);
252           gst_dpman_attach_dparam (dpman, argname, dparam);
253           gst_dparam_set_value_from_string(GST_DPARAM_GET_POINT(dparam, 0LL)[0], argval);
254           GST_DPARAM_READY_FOR_UPDATE(dparam) = TRUE;
255         }
256
257       } else {
258         GST_DEBUG(0,"attempting to set argument '%s' to '%s' on element '%s'\n",
259               argname,argval,GST_ELEMENT_NAME(previous));
260         gst_util_set_object_arg (G_OBJECT(previous), argname, argval);
261         g_free(argname);
262      }
263
264     // element or argument, or beginning of bin or thread
265     } else if (arg[0] == '[') {
266       // we have the start of a name of the preceding element.
267       // rename previous element to next arg.
268       if (arg[1] != '\0') {
269         fprintf(stderr,"error, unexpected junk after [\n");
270         exit(-1);
271       }
272       i++;
273       if (i < argc) {
274         gst_element_set_name(previous, argv[i]);
275       } else {
276         fprintf(stderr,"error, expected element name, found end of arguments\n");
277         exit(-1);
278       }
279       i++;
280       if (i >= argc) {
281         fprintf(stderr,"error, expected ], found end of arguments\n");
282         exit(-1);
283       } else if (strcmp(argv[i], "]") != 0) {
284         fprintf(stderr,"error, expected ], found '%s'\n", argv[i]);
285         exit(-1);
286       }
287     } else {
288       DEBUG("have element or bin/thread\n");
289       // if we have a bin or thread starting
290       if (strchr("({",arg[0])) {
291         if (arg[0] == '(') {
292           // create a bin and add it to the current parent
293           element = gst_bin_new(g_strdup_printf("bin%d",priv->bincount++));
294           if (!element) {
295             fprintf(stderr,"Couldn't create a bin!\n");
296 //            exit(-1);
297           }
298           GST_DEBUG(0,"CREATED bin %s\n",GST_ELEMENT_NAME(element));
299         } else if (arg[0] == '{') {
300           // create a thread and add it to the current parent
301           element = gst_thread_new(g_strdup_printf("thread%d",priv->threadcount++));
302           if (!element) {
303             fprintf(stderr,"Couldn't create a thread!\n");
304 //            exit(-1);
305           }
306           GST_DEBUG(0,"CREATED thread %s\n",GST_ELEMENT_NAME(element));
307         } else {
308           DEBUG("error in parser, unexpected symbol, FIXME\n");
309           i++;
310           continue;
311         }
312
313         i += gst_parse_launch_cmdline(argc - i, argv + i + 1, GST_BIN (element), priv);
314
315       } else {
316         // we have an element
317         DEBUG("attempting to create element '%s'\n",arg);
318         ptr = gst_parse_unique_name(arg,priv);
319         element = gst_elementfactory_make(arg,ptr);
320         g_free(ptr);
321         if (!element) {
322           fprintf(stderr,"Couldn't create a '%s', no such element or need to run gstreamer-register?\n",arg);
323           exit(-1);
324         }
325         GST_DEBUG(0,"CREATED element %s\n",GST_ELEMENT_NAME(element));
326       }
327
328       gst_bin_add (GST_BIN (parent), element);
329       elementcount++;
330
331       g_slist_free(sinkpads);
332       sinkpads = NULL;
333       numsinkpads=0;
334       tempname=NULL;
335
336       // find sink pads
337       if (sinkpadname != NULL) {
338         while (1){
339           // split name at commas
340           if ((ptr = strchr(sinkpadname,','))){
341             tempname = g_strndup(sinkpadname,(ptr-sinkpadname));
342             sinkpadname = &ptr[1];
343           } else {
344             tempname = sinkpadname;
345           }
346           
347           // look for pad with that name
348           if ((temppad = gst_element_get_pad(element,tempname))){
349             sinkpads = g_slist_append(sinkpads,temppad);
350             numsinkpads++;
351           }
352           
353           // try to create a pad using that padtemplate name
354           else if ((temppad = gst_element_request_pad_by_name(element,tempname))) {
355             sinkpads = g_slist_append(sinkpads,temppad);
356             numsinkpads++;
357           }
358           if (!temppad) {
359             GST_DEBUG(0,"NO SUCH pad %s in element %s\n",tempname,GST_ELEMENT_NAME(element));
360           } else {
361             GST_DEBUG(0,"have sink pad %s:%s\n",GST_DEBUG_PAD_NAME(temppad));
362           }
363           
364           // if there is no more commas in sinkpadname then we're done
365           if (tempname == sinkpadname) break;
366           g_free(tempname);
367         }
368       }
369       else {
370         // check through the list to find the first sink pad
371         pads = gst_element_get_pad_list(element);
372         while (pads) {
373           temppad = GST_PAD(pads->data);
374           pads = g_list_next (pads);
375           if (gst_pad_get_direction (temppad) == GST_PAD_SINK){
376             sinkpads = g_slist_append(sinkpads,temppad);
377             numsinkpads++;
378             break;
379           }
380         }
381       }
382
383       if (!sinkpads) GST_DEBUG(0,"can't find a sink pad for %s\n", gst_element_get_name (previous));
384       else GST_DEBUG(0,"have sink pad %s:%s\n",GST_DEBUG_PAD_NAME(GST_PARSE_LISTPAD(sinkpads)));
385
386       if (!srcpads && sinkpads && previous) {
387         dyn_connect *connect = g_malloc (sizeof (dyn_connect));
388
389         connect->srcpadname = srcpadname;
390         connect->target = GST_PARSE_LISTPAD(sinkpads);
391
392         GST_DEBUG(0,"SETTING UP dynamic connection %s:%s and %s:%s\n",
393           gst_element_get_name (previous),
394           srcpadname,
395           GST_DEBUG_PAD_NAME(GST_PARSE_LISTPAD(sinkpads)));
396
397         g_signal_connect (G_OBJECT (previous), "new_pad", dynamic_connect, connect);
398         g_signal_connect (G_OBJECT (previous), "new_ghost_pad", dynamic_connect, connect);
399       }
400       else {
401         for (j=0; (j<numsrcpads) && (j<numsinkpads); j++){
402           GST_DEBUG(0,"CONNECTING %s:%s and %s:%s\n",
403             GST_DEBUG_PAD_NAME(GST_PARSE_LISTPAD(g_slist_nth(srcpads,j))),
404             GST_DEBUG_PAD_NAME(GST_PARSE_LISTPAD(g_slist_nth(sinkpads,j))));
405           gst_pad_connect(
406             GST_PARSE_LISTPAD(g_slist_nth(srcpads,j)),
407             GST_PARSE_LISTPAD(g_slist_nth(sinkpads,j)));
408         }
409       }
410               
411       g_slist_free(srcpads);
412       srcpads = NULL;
413       
414       g_slist_free(sinkpads);
415       sinkpads = NULL;      
416
417       // thomas: if we're the first element, connect eos signal
418       if (elementcount == 1) 
419       {
420         g_signal_connect (G_OBJECT (element), "eos", have_eos, NULL);
421
422       }
423       // if we're the first element, ghost all the sinkpads
424       if (elementcount == 1) {
425         DEBUG("first element, ghosting all of %s's sink pads to parent %s\n",
426               GST_ELEMENT_NAME(element),GST_ELEMENT_NAME(GST_ELEMENT(parent)));
427         pads = gst_element_get_pad_list (element);
428         while (pads) {
429           temppad = GST_PAD (pads->data);
430           pads = g_list_next (pads);
431           if (!temppad) DEBUG("much oddness, pad doesn't seem to exist\n");
432           else if (gst_pad_get_direction (temppad) == GST_PAD_SINK) {
433             gst_element_add_ghost_pad (GST_ELEMENT (parent), temppad,
434 g_strdup_printf("%s-ghost",GST_PAD_NAME(temppad)));
435             GST_DEBUG(0,"GHOSTED %s:%s to %s as %s-ghost\n",
436                       GST_DEBUG_PAD_NAME(temppad),GST_ELEMENT_NAME(GST_ELEMENT(parent)),GST_PAD_NAME(temppad));
437           }
438         }
439       }
440
441       previous = element;
442       if (!GST_IS_BIN(element)) prevelement = element;
443     }
444
445     i++;
446   }
447
448   // ghost all the src pads of the bin
449   if (prevelement != NULL) {
450     DEBUG("last element, ghosting all of %s's src pads to parent %s\n",
451           GST_ELEMENT_NAME(prevelement),GST_ELEMENT_NAME(GST_ELEMENT(parent)));
452     pads = gst_element_get_pad_list (prevelement);
453     while (pads) {
454       temppad = GST_PAD (pads->data);
455       pads = g_list_next (pads);
456       if (!temppad) DEBUG("much oddness, pad doesn't seem to exist\n");
457       else if (gst_pad_get_direction (temppad) == GST_PAD_SRC) {
458         gst_element_add_ghost_pad (GST_ELEMENT (parent), temppad,
459 g_strdup_printf("%s-ghost",GST_PAD_NAME(temppad)));
460         GST_DEBUG(0,"GHOSTED %s:%s to %s as %s-ghost\n",
461 GST_DEBUG_PAD_NAME(temppad),GST_ELEMENT_NAME (parent),GST_PAD_NAME(temppad));
462       }
463     }
464   }
465
466   priv->binlevel--;
467
468   if (retval) return retval;
469
470   if (closingchar != '\0')
471     DEBUG("returning IN THE WRONG PLACE\n");
472   else DEBUG("ending pipeline\n");
473   return i+1;
474 }
475
476 /**
477  * gst_parse_launch:
478  * @cmdline: the command line describing the pipeline
479  * @parent: the parent bin for the resulting pipeline
480  *
481  * Create a new pipeline based on command line syntax.
482  *
483  * Returns: ?
484  */
485 gint
486 gst_parse_launch(const gchar *cmdline,GstBin *parent)
487 {
488   gst_parse_priv priv;
489   gchar **argvn;
490   gint newargc;
491   gint i;
492   const gchar *cp, *start, *end;
493   gchar *temp;
494   GSList *string_list = NULL, *slist;
495
496   priv.bincount = 0;
497   priv.threadcount = 0;
498   priv.binlevel = 0;
499   priv.elementcounts = NULL;
500   priv.verbose = FALSE;
501   priv.debug = FALSE;
502
503   end = cmdline + strlen(cmdline);
504   newargc = 0;
505
506   temp = "";
507
508   // Extract the arguments to a gslist in reverse order
509   for (cp = cmdline; cp < end; ) {
510     i = strcspn(cp, "([{}]) \"\\");
511
512     if (i > 0) {
513       temp = g_strconcat (temp, g_strndup (cp, i), NULL);
514       
515       // see if we have an escape char
516       if (cp[i] != '\\') {
517         // normal argument - copy and add to the list
518         string_list = g_slist_prepend(string_list, temp);
519         newargc++;
520         temp = "";
521       }
522       else {
523         temp = g_strconcat (temp, g_strndup (&cp[++i], 1), NULL);
524       }
525       cp += i;
526     }
527
528     // skip spaces
529     while (cp < end && *cp == ' ') {
530       cp++;
531     }
532
533     // handle quoted arguments
534     if (*cp == '"') {
535       start = ++cp;
536
537       // find matching quote
538       while (cp < end && *cp != '"')
539         cp++;
540
541       // make sure we got it
542       if (cp == end) {
543         g_warning("gst_parse_launch: Unbalanced quote in command line");
544         // FIXME: The list leaks here
545         return 0;
546       }
547
548       // copy the string sans quotes
549       string_list = g_slist_prepend(string_list, g_strndup(start, cp - start));
550       newargc++;
551       cp += 2; // skip the quote aswell
552     }
553
554     // brackets exist in a separate argument slot
555     if (*cp && strchr("([{}])", *cp)) {
556       string_list = g_slist_prepend(string_list, g_strndup(cp, 1));
557       newargc++;
558       cp++;
559     }
560   }
561
562   // now allocate the new argv array
563   argvn = g_new0(char *,newargc);
564   GST_DEBUG(0,"got %d args\n",newargc);
565
566   // reverse the list and put the strings in the new array
567   i = newargc;
568
569   for (slist = string_list; slist; slist = slist->next)
570     argvn[--i] = slist->data;
571
572   g_slist_free(string_list);
573
574   // print them out
575   for (i=0;i<newargc;i++) {
576     GST_DEBUG(0,"arg %d is: %s\n",i,argvn[i]);
577   }
578
579   // set up the elementcounts hash
580   priv.elementcounts = g_hash_table_new(g_str_hash,g_str_equal);
581
582   // do it!
583   i = gst_parse_launch_cmdline(newargc,argvn,parent,&priv);
584
585 //  GST_DEBUG(0, "Finished - freeing temporary argument array");
586 //  g_strfreev(argvn);
587
588   return i;
589 }
590