]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/gstreamer0-10.git/blob - gst/gstparse.c
gst-indent run on core
[glsdk/gstreamer0-10.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  */
24 #include <string.h>
26 #include "gst_private.h"
28 #include "gstparse.h"
29 #include "gstinfo.h"
31 extern GstElement *_gst_parse_launch (const gchar *, GError **);
33 GQuark
34 gst_parse_error_quark (void)
35 {
36   static GQuark quark = 0;
38   if (!quark)
39     quark = g_quark_from_static_string ("gst_parse_error");
40   return quark;
41 }
43 static gchar *
44 _gst_parse_escape (const gchar * str)
45 {
46   GString *gstr = NULL;
48   g_return_val_if_fail (str != NULL, NULL);
50   gstr = g_string_sized_new (strlen (str));
52   while (*str) {
53     if (*str == ' ')
54       g_string_append_c (gstr, '\\');
55     g_string_append_c (gstr, *str);
56     str++;
57   }
59   return gstr->str;
60 }
62 /**
63  * gst_parse_launchv:
64  * @argv: null-terminated array of arguments
65  * @error: pointer to a #GError
66  *
67  * Create a new element based on command line syntax.
68  * #error will contain an error message if an erroneuos pipeline is specified.
69  * An error does not mean that the pipeline could not be constructed.
70  *
71  * Returns: a new element on success and NULL on failure.
72  */
73 GstElement *
74 gst_parse_launchv (const gchar ** argv, GError ** error)
75 {
76   GstElement *element;
77   GString *str;
78   const gchar **argvp, *arg;
79   gchar *tmp;
81   g_return_val_if_fail (argv != NULL, NULL);
83   /* let's give it a nice size. */
84   str = g_string_sized_new (1024);
86   argvp = argv;
87   while (*argvp) {
88     arg = *argvp;
89     tmp = _gst_parse_escape (arg);
90     g_string_append (str, tmp);
91     g_free (tmp);
92     g_string_append (str, " ");
93     argvp++;
94   }
96   element = gst_parse_launch (str->str, error);
98   g_string_free (str, TRUE);
100   return element;
103 /**
104  * gst_parse_launch:
105  * @pipeline_description: the command line describing the pipeline
106  * @error: the error message in case of an erroneous pipeline.
107  *
108  * Create a new pipeline based on command line syntax.
109  * Please note that you might get a return value that is not NULL even though
110  * the error is set. In this case there was a recoverable parsing error and you
111  * can try to play the pipeline.
112  *
113  * Returns: a new element on success, NULL on failure. If more than one toplevel
114  * element is specified by the pipeline_description, all elements are put into
115  * a #GstPipeline ant that is returned.
116  */
117 GstElement *
118 gst_parse_launch (const gchar * pipeline_description, GError ** error)
120   GstElement *element;
121   static GStaticMutex flex_lock = G_STATIC_MUTEX_INIT;
123   g_return_val_if_fail (pipeline_description != NULL, NULL);
125   GST_CAT_INFO (GST_CAT_PIPELINE, "parsing pipeline description %s",
126       pipeline_description);
128   /* the need for the mutex will go away with flex 2.5.6 */
129   g_static_mutex_lock (&flex_lock);
130   element = _gst_parse_launch (pipeline_description, error);
131   g_static_mutex_unlock (&flex_lock);
133   return element;