2002-03-31 21:09:17 +00:00
|
|
|
%{
|
2010-01-20 01:09:55 +00:00
|
|
|
#include "../gst_private.h"
|
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
#include <glib-object.h>
|
2002-03-31 21:09:17 +00:00
|
|
|
#include <glib.h>
|
|
|
|
#include <stdio.h>
|
2002-04-10 16:50:00 +00:00
|
|
|
#include <string.h>
|
2003-02-10 07:53:58 +00:00
|
|
|
#include <stdlib.h>
|
2003-06-29 14:05:49 +00:00
|
|
|
|
2004-01-13 14:23:44 +00:00
|
|
|
#include "../gst-i18n-lib.h"
|
2003-06-29 14:05:49 +00:00
|
|
|
|
2003-11-24 03:21:54 +00:00
|
|
|
#include "../gstconfig.h"
|
2002-04-07 23:32:16 +00:00
|
|
|
#include "../gstparse.h"
|
2003-04-08 21:59:44 +00:00
|
|
|
#include "../gstinfo.h"
|
2004-03-05 13:07:48 +00:00
|
|
|
#include "../gsterror.h"
|
API: gst_parse_launch_full()
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gst.c: (init_post):
* gst/gst_private.h: (_GstParseContext):
* gst/gstparse.c: (gst_parse_error_quark), (gst_parse_context_new),
(gst_parse_context_free), (gst_parse_context_get_missing_elements),
(gst_parse_launchv), (gst_parse_launchv_full), (gst_parse_launch),
(gst_parse_launch_full):
* gst/gstparse.h: (GST_PARSE_FLAG_NONE), (GST_PARSE_FLAG_FATAL_ERRORS),
(GstParseFlags), (GstParseContext):
* gst/gstutils.c: (gst_parse_bin_from_description),
(gst_parse_bin_from_description_full):
* gst/gstutils.h:
* gst/parse/grammar.y:
* gst/parse/types.h:
* win32/common/libgstreamer.def:
Add new gst_parse_*_full API (#528178):
API: gst_parse_launch_full()
API: gst_parse_launchv_full()
API: gst_parse_bin_from_description_full()
API: gst_parse_context_new()
API: gst_parse_context_free()
API: gst_parse_context_get_missing_elements()
2008-05-24 15:33:53 +00:00
|
|
|
#include "../gststructure.h"
|
2003-11-24 03:21:54 +00:00
|
|
|
#include "../gsturi.h"
|
2005-03-07 18:27:42 +00:00
|
|
|
#include "../gstutils.h"
|
gst/gstvalue.c: add serialization and comparison functions for long, int64, enum and float values
Original commit message from CVS:
* gst/gstvalue.c: (gst_strtoll), (CREATE_SERIALIZATION),
(CREATE_USERIALIZATION), (_gst_value_initialize),
(gst_value_compare_float), (gst_value_serialize_float),
(gst_value_deserialize_float), (gst_value_compare_enum),
(gst_value_serialize_enum), (gst_value_deserialize_enum):
add serialization and comparison functions for long, int64, enum and
float values
* gst/gstvalue.c: (gst_value_serialize), (gst_value_deserialize):
use best serialization function in type hierarchy instead of only a
matching one. This is required for enums to work.
* gst/parse/grammar.y:
use gst_caps_deserialize
* testsuite/parse/Makefile.am:
parse1 now works
* testsuite/parse/parse1.c: (main):
remove aggregator check, aggregator is broken, this test works now
but fails because of bug #138012
* testsuite/parse/parse2.c: (main):
s/xvideosink/xvimagesink - this test looks a lot like we should
disable it
2004-05-18 01:36:14 +00:00
|
|
|
#include "../gstvalue.h"
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
#include "../gstchildproxy.h"
|
2002-04-01 06:30:39 +00:00
|
|
|
#include "types.h"
|
2002-04-07 23:32:16 +00:00
|
|
|
|
2004-01-13 14:23:44 +00:00
|
|
|
/* All error messages in this file are user-visible and need to be translated.
|
|
|
|
* Don't start the message with a capital, and don't end them with a period,
|
|
|
|
* as they will be presented inside a sentence/error.
|
|
|
|
*/
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2002-04-01 04:36:56 +00:00
|
|
|
#define YYERROR_VERBOSE 1
|
gst/parse/: Make the parser reentrant and recursively callable. This requires flex >= 2.5.31, for older versions preg...
Original commit message from CVS:
Patch by: Marc-Andre Lureau <marcandre dot lureau at gmail dot com>
* gst/parse/Makefile.am:
* gst/parse/grammar.y:
* gst/parse/parse.l:
Make the parser reentrant and recursively callable. This requires flex
>= 2.5.31, for older versions pregenerated sources are used as we
can't bump the build dependency. Finally fixes #349180.
* gst/gstparse.c: (gst_parse_launch):
Drop the HAVE_MT_SAVE_FLEX #ifdefs as we always use a new enough flex
now anyway.
* docs/gst/Makefile.am:
* docs/gst/Makefile.am:
* gst/parse/grammar.tab.pre.c: (__gst_parse_strdup),
(__gst_parse_strfree), (__gst_parse_link_new),
(__gst_parse_link_free), (__gst_parse_chain_new),
(__gst_parse_chain_free), (SET_ERROR), (YYPRINTF),
(gst_parse_element_set), (gst_parse_free_link),
(gst_parse_found_pad), (gst_parse_perform_delayed_link),
(gst_parse_perform_link), (yytnamerr), (yysyntax_error), (yyerror),
(_gst_parse_launch):
* gst/parse/grammar.tab.pre.h:
* gst/parse/lex._gst_parse_yy.pre.c: (PRINT), (yy_get_next_buffer),
(yy_get_previous_state), (yy_try_NUL_trans), (input),
(_gst_parse_yyrestart), (_gst_parse_yy_switch_to_buffer),
(_gst_parse_yy_load_buffer_state), (_gst_parse_yy_create_buffer),
(_gst_parse_yy_delete_buffer), (_gst_parse_yy_init_buffer),
(_gst_parse_yy_flush_buffer), (_gst_parse_yypush_buffer_state),
(_gst_parse_yypop_buffer_state),
(_gst_parse_yyensure_buffer_stack), (_gst_parse_yy_scan_buffer),
(_gst_parse_yy_scan_string), (_gst_parse_yy_scan_bytes),
(yy_fatal_error), (_gst_parse_yyget_extra),
(_gst_parse_yyget_lineno), (_gst_parse_yyget_column),
(_gst_parse_yyget_in), (_gst_parse_yyget_out),
(_gst_parse_yyget_leng), (_gst_parse_yyget_text),
(_gst_parse_yyset_extra), (_gst_parse_yyset_lineno),
(_gst_parse_yyset_column), (_gst_parse_yyset_in),
(_gst_parse_yyset_out), (_gst_parse_yyget_debug),
(_gst_parse_yyset_debug), (_gst_parse_yyget_lval),
(_gst_parse_yyset_lval), (_gst_parse_yylex_init),
(yy_init_globals), (_gst_parse_yylex_destroy), (yy_flex_strncpy),
(yy_flex_strlen), (_gst_parse_yyalloc), (_gst_parse_yyrealloc),
(_gst_parse_yyfree):
If the installed flex version is too old use pre-generated parser
sources. These pre-generated parser sources are always updated when
the actual flex/bison sources change but require everybody who wants
to change something in the parser to have flex >= 2.5.31 installed.
2007-04-18 12:34:51 +00:00
|
|
|
|
2010-04-07 11:29:52 +00:00
|
|
|
#define YYENABLE_NLS 0
|
|
|
|
|
|
|
|
#ifndef YYLTYPE_IS_TRIVIAL
|
|
|
|
#define YYLTYPE_IS_TRIVIAL 0
|
|
|
|
#endif
|
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
/*******************************************************************************************
|
|
|
|
*** Tracing memory leaks
|
|
|
|
*******************************************************************************************/
|
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
#ifdef __GST_PARSE_TRACE
|
2003-05-18 22:45:27 +00:00
|
|
|
static guint __strings;
|
|
|
|
static guint __links;
|
|
|
|
static guint __chains;
|
2003-04-08 21:59:44 +00:00
|
|
|
gchar *
|
|
|
|
__gst_parse_strdup (gchar *org)
|
|
|
|
{
|
2011-02-14 13:39:21 +00:00
|
|
|
gchar *ret;
|
2003-04-08 21:59:44 +00:00
|
|
|
__strings++;
|
2003-04-16 21:37:35 +00:00
|
|
|
ret = g_strdup (org);
|
|
|
|
/* g_print ("ALLOCATED STR (%3u): %p %s\n", __strings, ret, ret); */
|
|
|
|
return ret;
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
|
|
|
void
|
|
|
|
__gst_parse_strfree (gchar *str)
|
|
|
|
{
|
|
|
|
if (str) {
|
2003-04-16 21:37:35 +00:00
|
|
|
/* g_print ("FREEING STR (%3u): %p %s\n", __strings - 1, str, str); */
|
2003-04-08 21:59:44 +00:00
|
|
|
g_free (str);
|
|
|
|
g_return_if_fail (__strings > 0);
|
|
|
|
__strings--;
|
|
|
|
}
|
|
|
|
}
|
2014-01-10 20:10:17 +00:00
|
|
|
link_t *__gst_parse_link_new (void)
|
2003-04-08 21:59:44 +00:00
|
|
|
{
|
2003-04-16 21:37:35 +00:00
|
|
|
link_t *ret;
|
2003-04-08 21:59:44 +00:00
|
|
|
__links++;
|
2009-10-31 15:49:03 +00:00
|
|
|
ret = g_slice_new0 (link_t);
|
2003-04-16 21:37:35 +00:00
|
|
|
/* g_print ("ALLOCATED LINK (%3u): %p\n", __links, ret); */
|
|
|
|
return ret;
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
|
|
|
void
|
|
|
|
__gst_parse_link_free (link_t *data)
|
|
|
|
{
|
|
|
|
if (data) {
|
2003-04-16 21:37:35 +00:00
|
|
|
/* g_print ("FREEING LINK (%3u): %p\n", __links - 1, data); */
|
2009-10-31 15:49:03 +00:00
|
|
|
g_slice_free (link_t, data);
|
2003-04-08 21:59:44 +00:00
|
|
|
g_return_if_fail (__links > 0);
|
|
|
|
__links--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chain_t *
|
2014-01-10 20:10:17 +00:00
|
|
|
__gst_parse_chain_new (void)
|
2003-04-08 21:59:44 +00:00
|
|
|
{
|
2003-04-16 21:37:35 +00:00
|
|
|
chain_t *ret;
|
2003-04-08 21:59:44 +00:00
|
|
|
__chains++;
|
2009-10-31 15:49:03 +00:00
|
|
|
ret = g_slice_new0 (chain_t);
|
2014-01-14 12:45:34 +00:00
|
|
|
/* g_print ("@%p: ALLOCATED CHAIN (%3u):\n", ret, __chains); */
|
2003-04-16 21:37:35 +00:00
|
|
|
return ret;
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
|
|
|
void
|
|
|
|
__gst_parse_chain_free (chain_t *data)
|
|
|
|
{
|
2014-01-14 12:45:34 +00:00
|
|
|
/* g_print ("@%p: FREEING CHAIN (%3u):\n", data, __chains - 1); */
|
2009-10-31 15:49:03 +00:00
|
|
|
g_slice_free (chain_t, data);
|
2004-04-19 17:40:24 +00:00
|
|
|
g_return_if_fail (__chains > 0);
|
|
|
|
__chains--;
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __GST_PARSE_TRACE */
|
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
/*******************************************************************************************
|
|
|
|
*** define SET_ERROR macro/function
|
|
|
|
*******************************************************************************************/
|
2003-04-08 21:59:44 +00:00
|
|
|
#ifdef G_HAVE_ISO_VARARGS
|
2005-10-10 22:59:22 +00:00
|
|
|
|
2005-10-10 22:49:42 +00:00
|
|
|
# define SET_ERROR(error, type, ...) \
|
|
|
|
G_STMT_START { \
|
2004-05-04 20:07:38 +00:00
|
|
|
GST_CAT_ERROR (GST_CAT_PIPELINE, __VA_ARGS__); \
|
|
|
|
if ((error) && !*(error)) { \
|
|
|
|
g_set_error ((error), GST_PARSE_ERROR, (type), __VA_ARGS__); \
|
2003-04-08 21:59:44 +00:00
|
|
|
} \
|
2005-10-10 22:49:42 +00:00
|
|
|
} G_STMT_END
|
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
#elif defined(G_HAVE_GNUC_VARARGS)
|
|
|
|
|
2005-10-10 22:49:42 +00:00
|
|
|
# define SET_ERROR(error, type, args...) \
|
|
|
|
G_STMT_START { \
|
2004-05-04 20:07:38 +00:00
|
|
|
GST_CAT_ERROR (GST_CAT_PIPELINE, args ); \
|
|
|
|
if ((error) && !*(error)) { \
|
|
|
|
g_set_error ((error), GST_PARSE_ERROR, (type), args ); \
|
2003-04-08 21:59:44 +00:00
|
|
|
} \
|
2005-10-10 22:49:42 +00:00
|
|
|
} G_STMT_END
|
|
|
|
|
2004-05-07 02:36:28 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
SET_ERROR (GError **error, gint type, const char *format, ...)
|
|
|
|
{
|
|
|
|
if (error) {
|
|
|
|
if (*error) {
|
|
|
|
g_warning ("error while parsing");
|
|
|
|
} else {
|
|
|
|
va_list varargs;
|
|
|
|
char *string;
|
|
|
|
|
|
|
|
va_start (varargs, format);
|
|
|
|
string = g_strdup_vprintf (format, varargs);
|
|
|
|
va_end (varargs);
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2004-05-07 02:36:28 +00:00
|
|
|
g_set_error (error, GST_PARSE_ERROR, type, string);
|
|
|
|
|
|
|
|
g_free (string);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-10-10 22:59:22 +00:00
|
|
|
#endif /* G_HAVE_ISO_VARARGS */
|
|
|
|
|
|
|
|
/*** define YYPRINTF macro/function if we're debugging */
|
|
|
|
|
|
|
|
/* bison 1.35 calls this macro with side effects, we need to make sure the
|
|
|
|
side effects work - crappy bison */
|
|
|
|
|
|
|
|
#ifndef GST_DISABLE_GST_DEBUG
|
|
|
|
# define YYDEBUG 1
|
|
|
|
|
|
|
|
# ifdef G_HAVE_ISO_VARARGS
|
|
|
|
|
|
|
|
/* # define YYFPRINTF(a, ...) GST_CAT_DEBUG (GST_CAT_PIPELINE, __VA_ARGS__) */
|
|
|
|
# define YYFPRINTF(a, ...) \
|
|
|
|
G_STMT_START { \
|
2009-10-07 20:23:08 +00:00
|
|
|
GST_CAT_LOG (GST_CAT_PIPELINE, __VA_ARGS__); \
|
2005-10-10 22:59:22 +00:00
|
|
|
} G_STMT_END
|
|
|
|
|
|
|
|
# elif defined(G_HAVE_GNUC_VARARGS)
|
|
|
|
|
|
|
|
# define YYFPRINTF(a, args...) \
|
|
|
|
G_STMT_START { \
|
2009-10-07 20:23:08 +00:00
|
|
|
GST_CAT_LOG (GST_CAT_PIPELINE, args); \
|
2005-10-10 22:59:22 +00:00
|
|
|
} G_STMT_END
|
|
|
|
|
|
|
|
# else
|
|
|
|
|
2004-05-07 02:36:28 +00:00
|
|
|
static inline void
|
|
|
|
YYPRINTF(const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list varargs;
|
|
|
|
gchar *temp;
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2004-05-07 02:36:28 +00:00
|
|
|
va_start (varargs, format);
|
2005-10-10 23:11:33 +00:00
|
|
|
temp = g_strdup_vprintf (format, varargs);
|
2004-05-07 02:36:28 +00:00
|
|
|
GST_CAT_LOG (GST_CAT_PIPELINE, "%s", temp);
|
|
|
|
g_free (temp);
|
|
|
|
va_end (varargs);
|
|
|
|
}
|
|
|
|
|
2005-10-10 22:59:22 +00:00
|
|
|
# endif /* G_HAVE_ISO_VARARGS */
|
|
|
|
|
|
|
|
#endif /* GST_DISABLE_GST_DEBUG */
|
2003-04-08 21:59:44 +00:00
|
|
|
|
2013-11-19 14:03:35 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* include headers generated by bison & flex, after defining (or not defining) YYDEBUG
|
|
|
|
*/
|
|
|
|
#include "grammar.tab.h"
|
|
|
|
#include "parse_lex.h"
|
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
/*******************************************************************************************
|
|
|
|
*** report missing elements/bins/..
|
|
|
|
*******************************************************************************************/
|
2013-11-19 14:03:35 +00:00
|
|
|
|
API: gst_parse_launch_full()
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gst.c: (init_post):
* gst/gst_private.h: (_GstParseContext):
* gst/gstparse.c: (gst_parse_error_quark), (gst_parse_context_new),
(gst_parse_context_free), (gst_parse_context_get_missing_elements),
(gst_parse_launchv), (gst_parse_launchv_full), (gst_parse_launch),
(gst_parse_launch_full):
* gst/gstparse.h: (GST_PARSE_FLAG_NONE), (GST_PARSE_FLAG_FATAL_ERRORS),
(GstParseFlags), (GstParseContext):
* gst/gstutils.c: (gst_parse_bin_from_description),
(gst_parse_bin_from_description_full):
* gst/gstutils.h:
* gst/parse/grammar.y:
* gst/parse/types.h:
* win32/common/libgstreamer.def:
Add new gst_parse_*_full API (#528178):
API: gst_parse_launch_full()
API: gst_parse_launchv_full()
API: gst_parse_bin_from_description_full()
API: gst_parse_context_new()
API: gst_parse_context_free()
API: gst_parse_context_get_missing_elements()
2008-05-24 15:33:53 +00:00
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
static void add_missing_element(graph_t *graph,gchar *name){
|
|
|
|
if ((graph)->ctx){
|
|
|
|
(graph)->ctx->missing_elements = g_list_append ((graph)->ctx->missing_elements, g_strdup (name));
|
|
|
|
}
|
2010-04-07 11:24:14 +00:00
|
|
|
}
|
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
/*******************************************************************************************
|
|
|
|
*** helpers for pipeline-setup
|
|
|
|
*******************************************************************************************/
|
|
|
|
|
|
|
|
#define TRY_SETUP_LINK(l) G_STMT_START { \
|
|
|
|
if( (!(l)->src.element) && (!(l)->src.name) ){ \
|
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_LINK, _("link has no source [sink=%s@%p]"), \
|
2016-10-23 21:11:08 +00:00
|
|
|
(l)->sink.name ? (l)->sink.name : "", \
|
2014-01-10 20:10:17 +00:00
|
|
|
(l)->sink.element); \
|
|
|
|
gst_parse_free_link (l); \
|
|
|
|
}else if( (!(l)->sink.element) && (!(l)->sink.name) ){ \
|
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_LINK, _("link has no sink [source=%s@%p]"), \
|
2016-10-23 21:11:08 +00:00
|
|
|
(l)->src.name ? (l)->src.name : "", \
|
2014-01-10 20:10:17 +00:00
|
|
|
(l)->src.element); \
|
|
|
|
gst_parse_free_link (l); \
|
|
|
|
}else{ \
|
2014-01-14 14:52:26 +00:00
|
|
|
graph->links = g_slist_append (graph->links, l ); \
|
2014-01-10 20:10:17 +00:00
|
|
|
} \
|
2005-10-10 22:49:42 +00:00
|
|
|
} G_STMT_END
|
2003-04-08 21:59:44 +00:00
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
typedef struct {
|
|
|
|
gchar *src_pad;
|
|
|
|
gchar *sink_pad;
|
|
|
|
GstElement *sink;
|
|
|
|
GstCaps *caps;
|
2016-01-02 18:42:17 +00:00
|
|
|
gulong pad_added_signal_id, no_more_pads_signal_id;
|
2015-06-25 17:29:27 +00:00
|
|
|
gboolean all_pads;
|
2014-01-10 20:10:17 +00:00
|
|
|
} DelayedLink;
|
2003-04-08 21:59:44 +00:00
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
typedef struct {
|
|
|
|
gchar *name;
|
|
|
|
gchar *value_str;
|
|
|
|
gulong signal_id;
|
|
|
|
} DelayedSet;
|
|
|
|
|
|
|
|
static int gst_resolve_reference(reference_t *rr, GstElement *pipeline){
|
|
|
|
GstBin *bin;
|
|
|
|
|
|
|
|
if(rr->element) return 0; /* already resolved! */
|
|
|
|
if(!rr->name) return -2; /* no chance! */
|
|
|
|
|
|
|
|
if (GST_IS_BIN (pipeline)){
|
|
|
|
bin = GST_BIN (pipeline);
|
|
|
|
rr->element = gst_bin_get_by_name_recurse_up (bin, rr->name);
|
|
|
|
} else {
|
2016-01-03 10:37:57 +00:00
|
|
|
rr->element = strcmp (GST_ELEMENT_NAME (pipeline), rr->name) == 0 ?
|
2014-01-10 20:10:17 +00:00
|
|
|
gst_object_ref(pipeline) : NULL;
|
|
|
|
}
|
|
|
|
if(rr->element) return 0; /* resolved */
|
|
|
|
else return -1; /* not found */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gst_parse_free_delayed_set (DelayedSet *set)
|
2010-03-18 08:22:09 +00:00
|
|
|
{
|
|
|
|
g_free(set->name);
|
|
|
|
g_free(set->value_str);
|
|
|
|
g_slice_free(DelayedSet, set);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gst_parse_new_child(GstChildProxy *child_proxy, GObject *object,
|
2012-08-07 23:54:49 +00:00
|
|
|
const gchar * name, gpointer data);
|
2010-03-18 08:22:09 +00:00
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
static void gst_parse_add_delayed_set (GstElement *element, gchar *name, gchar *value_str)
|
2010-03-18 08:22:09 +00:00
|
|
|
{
|
|
|
|
DelayedSet *data = g_slice_new0 (DelayedSet);
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2010-03-18 08:22:09 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_PIPELINE, element, "delaying property set %s to %s",
|
|
|
|
name, value_str);
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2010-03-18 08:22:09 +00:00
|
|
|
data->name = g_strdup(name);
|
|
|
|
data->value_str = g_strdup(value_str);
|
|
|
|
data->signal_id = g_signal_connect_data(element, "child-added",
|
|
|
|
G_CALLBACK (gst_parse_new_child), data, (GClosureNotify)
|
|
|
|
gst_parse_free_delayed_set, (GConnectFlags) 0);
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2010-03-18 08:22:09 +00:00
|
|
|
/* FIXME: we would need to listen on all intermediate bins too */
|
|
|
|
if (GST_IS_BIN (element)) {
|
|
|
|
gchar **names, **current;
|
|
|
|
GstElement *parent, *child;
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2010-03-18 08:22:09 +00:00
|
|
|
current = names = g_strsplit (name, "::", -1);
|
|
|
|
parent = gst_bin_get_by_name (GST_BIN_CAST (element), current[0]);
|
|
|
|
current++;
|
|
|
|
while (parent && current[0]) {
|
|
|
|
child = gst_bin_get_by_name (GST_BIN (parent), current[0]);
|
|
|
|
if (!child && current[1]) {
|
|
|
|
char *sub_name = g_strjoinv ("::", ¤t[0]);
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2010-03-18 08:22:09 +00:00
|
|
|
gst_parse_add_delayed_set(parent, sub_name, value_str);
|
|
|
|
g_free (sub_name);
|
|
|
|
}
|
2014-07-24 20:02:58 +00:00
|
|
|
gst_object_unref (parent);
|
2010-03-18 08:22:09 +00:00
|
|
|
parent = child;
|
|
|
|
current++;
|
|
|
|
}
|
2014-07-24 20:02:58 +00:00
|
|
|
if (parent)
|
|
|
|
gst_object_unref (parent);
|
2010-03-18 08:22:09 +00:00
|
|
|
g_strfreev (names);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
static void gst_parse_new_child(GstChildProxy *child_proxy, GObject *object,
|
2012-08-07 23:54:49 +00:00
|
|
|
const gchar * name, gpointer data)
|
2008-02-01 12:10:17 +00:00
|
|
|
{
|
|
|
|
DelayedSet *set = (DelayedSet *) data;
|
|
|
|
GParamSpec *pspec;
|
2011-02-14 13:39:21 +00:00
|
|
|
GValue v = { 0, };
|
2012-03-31 10:00:56 +00:00
|
|
|
GObject *target = NULL;
|
2008-02-01 12:10:17 +00:00
|
|
|
GType value_type;
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2010-03-18 08:22:09 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_PIPELINE, child_proxy, "new child %s, checking property %s",
|
2012-08-07 23:54:49 +00:00
|
|
|
name, set->name);
|
2008-02-01 12:10:17 +00:00
|
|
|
|
2012-08-12 12:27:06 +00:00
|
|
|
if (gst_child_proxy_lookup (child_proxy, set->name, &target, &pspec)) {
|
2009-04-21 08:33:43 +00:00
|
|
|
gboolean got_value = FALSE;
|
|
|
|
|
2009-12-28 16:25:20 +00:00
|
|
|
value_type = pspec->value_type;
|
2008-02-01 12:10:17 +00:00
|
|
|
|
2010-03-18 08:22:09 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_PIPELINE, child_proxy, "parsing delayed property %s as a %s from %s",
|
|
|
|
pspec->name, g_type_name (value_type), set->value_str);
|
2008-02-01 12:10:17 +00:00
|
|
|
g_value_init (&v, value_type);
|
2009-04-21 08:33:43 +00:00
|
|
|
if (gst_value_deserialize (&v, set->value_str))
|
|
|
|
got_value = TRUE;
|
|
|
|
else if (g_type_is_a (value_type, GST_TYPE_ELEMENT)) {
|
|
|
|
GstElement *bin;
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2013-07-01 20:04:46 +00:00
|
|
|
bin = gst_parse_bin_from_description_full (set->value_str, TRUE, NULL,
|
2016-03-11 08:23:04 +00:00
|
|
|
GST_PARSE_FLAG_NO_SINGLE_ELEMENT_BINS | GST_PARSE_FLAG_PLACE_IN_BIN, NULL);
|
2009-04-21 08:33:43 +00:00
|
|
|
if (bin) {
|
|
|
|
g_value_set_object (&v, bin);
|
|
|
|
got_value = TRUE;
|
|
|
|
}
|
2008-02-01 12:10:17 +00:00
|
|
|
}
|
|
|
|
g_signal_handler_disconnect (child_proxy, set->signal_id);
|
2009-04-21 08:33:43 +00:00
|
|
|
if (!got_value)
|
|
|
|
goto error;
|
2012-03-31 10:00:56 +00:00
|
|
|
g_object_set_property (target, pspec->name, &v);
|
2010-03-18 08:22:09 +00:00
|
|
|
} else {
|
|
|
|
const gchar *obj_name = GST_OBJECT_NAME(object);
|
|
|
|
gint len = strlen (obj_name);
|
|
|
|
|
|
|
|
/* do a delayed set */
|
|
|
|
if ((strlen (set->name) > (len + 2)) && !strncmp (set->name, obj_name, len) && !strncmp (&set->name[len], "::", 2)) {
|
|
|
|
gst_parse_add_delayed_set (GST_ELEMENT(child_proxy), set->name, set->value_str);
|
|
|
|
}
|
2008-02-01 12:10:17 +00:00
|
|
|
}
|
|
|
|
|
2009-04-21 08:33:43 +00:00
|
|
|
out:
|
2008-02-01 12:10:17 +00:00
|
|
|
if (G_IS_VALUE (&v))
|
|
|
|
g_value_unset (&v);
|
|
|
|
if (target)
|
2012-03-31 10:00:56 +00:00
|
|
|
g_object_unref (target);
|
2008-02-01 12:10:17 +00:00
|
|
|
return;
|
2009-04-21 08:33:43 +00:00
|
|
|
|
|
|
|
error:
|
2012-04-18 13:37:25 +00:00
|
|
|
GST_CAT_ERROR (GST_CAT_PIPELINE, "could not set property \"%s\" in %"
|
2012-03-31 10:00:56 +00:00
|
|
|
GST_PTR_FORMAT, pspec->name, target);
|
2009-04-21 08:33:43 +00:00
|
|
|
goto out;
|
2008-02-01 12:10:17 +00:00
|
|
|
}
|
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
static void gst_parse_element_set (gchar *value, GstElement *element, graph_t *graph)
|
2003-04-08 21:59:44 +00:00
|
|
|
{
|
2012-08-12 12:27:06 +00:00
|
|
|
GParamSpec *pspec = NULL;
|
2003-04-08 21:59:44 +00:00
|
|
|
gchar *pos = value;
|
2011-02-14 13:39:21 +00:00
|
|
|
GValue v = { 0, };
|
2012-03-31 10:00:56 +00:00
|
|
|
GObject *target = NULL;
|
2005-06-22 11:02:57 +00:00
|
|
|
GType value_type;
|
|
|
|
|
2008-05-25 13:56:38 +00:00
|
|
|
/* do nothing if assignment is for missing element */
|
|
|
|
if (element == NULL)
|
|
|
|
goto out;
|
|
|
|
|
2012-07-17 07:57:47 +00:00
|
|
|
/* parse the string, so the property name is null-terminated and pos points
|
2003-04-08 21:59:44 +00:00
|
|
|
to the beginning of the value */
|
2011-02-14 13:39:21 +00:00
|
|
|
while (!g_ascii_isspace (*pos) && (*pos != '=')) pos++;
|
|
|
|
if (*pos == '=') {
|
|
|
|
*pos = '\0';
|
|
|
|
} else {
|
|
|
|
*pos = '\0';
|
2003-04-08 21:59:44 +00:00
|
|
|
pos++;
|
2011-02-14 13:39:21 +00:00
|
|
|
while (g_ascii_isspace (*pos)) pos++;
|
|
|
|
}
|
|
|
|
pos++;
|
|
|
|
while (g_ascii_isspace (*pos)) pos++;
|
2015-03-27 17:16:03 +00:00
|
|
|
/* truncate a string if it is delimited with double quotes */
|
|
|
|
if (*pos == '"' && pos[strlen (pos) - 1] == '"') {
|
2003-04-08 21:59:44 +00:00
|
|
|
pos++;
|
|
|
|
pos[strlen (pos) - 1] = '\0';
|
|
|
|
}
|
ported gstchildproxy over from 0.8 ported gst-inspect fixes and enhancements over from 0.8
Original commit message from CVS:
* docs/gst/gstreamer-docs.sgml:
* docs/gst/gstreamer-sections.txt:
* gst/Makefile.am:
* gst/gstbin.c: (gst_bin_get_type),
(gst_bin_child_proxy_get_child_by_index),
(gst_bin_child_proxy_get_children_count),
(gst_bin_child_proxy_init):
* gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
(gst_child_proxy_get_child_by_index),
(gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
(gst_child_proxy_get_property), (gst_child_proxy_get_valist),
(gst_child_proxy_get), (gst_child_proxy_set_property),
(gst_child_proxy_set_valist), (gst_child_proxy_set),
(gst_child_proxy_child_added), (gst_child_proxy_child_removed),
(gst_child_proxy_base_init), (gst_child_proxy_get_type):
* gst/gstchildproxy.h:
* gst/parse/grammar.y:
* tools/gst-inspect.c: (print_interfaces),
(print_element_properties_info), (print_element_info):
ported gstchildproxy over from 0.8
ported gst-inspect fixes and enhancements over from 0.8
2005-08-22 21:03:33 +00:00
|
|
|
gst_parse_unescape (pos);
|
|
|
|
|
2012-08-12 12:27:06 +00:00
|
|
|
if (GST_IS_CHILD_PROXY (element)) {
|
|
|
|
if (!gst_child_proxy_lookup (GST_CHILD_PROXY (element), value, &target, &pspec)) {
|
|
|
|
/* do a delayed set */
|
|
|
|
gst_parse_add_delayed_set (element, value, pos);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (element), value);
|
|
|
|
if (pspec != NULL) {
|
2018-03-20 14:11:01 +00:00
|
|
|
target = G_OBJECT (g_object_ref (element));
|
2012-08-12 12:27:06 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_PIPELINE, target, "found %s property", value);
|
|
|
|
} else {
|
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_NO_SUCH_PROPERTY, \
|
|
|
|
_("no property \"%s\" in element \"%s\""), value, \
|
|
|
|
GST_ELEMENT_NAME (element));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pspec != NULL && target != NULL) {
|
2009-04-21 08:33:43 +00:00
|
|
|
gboolean got_value = FALSE;
|
|
|
|
|
2009-12-28 16:25:20 +00:00
|
|
|
value_type = pspec->value_type;
|
2009-04-21 08:33:43 +00:00
|
|
|
|
2012-08-12 12:27:06 +00:00
|
|
|
GST_CAT_LOG_OBJECT (GST_CAT_PIPELINE, element, "parsing property %s as a %s",
|
|
|
|
pspec->name, g_type_name (value_type));
|
|
|
|
|
2005-06-22 11:02:57 +00:00
|
|
|
g_value_init (&v, value_type);
|
2009-04-21 08:33:43 +00:00
|
|
|
if (gst_value_deserialize (&v, pos))
|
|
|
|
got_value = TRUE;
|
|
|
|
else if (g_type_is_a (value_type, GST_TYPE_ELEMENT)) {
|
|
|
|
GstElement *bin;
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2013-07-01 20:04:46 +00:00
|
|
|
bin = gst_parse_bin_from_description_full (pos, TRUE, NULL,
|
2016-03-11 08:23:04 +00:00
|
|
|
GST_PARSE_FLAG_NO_SINGLE_ELEMENT_BINS | GST_PARSE_FLAG_PLACE_IN_BIN, NULL);
|
2009-04-21 08:33:43 +00:00
|
|
|
if (bin) {
|
|
|
|
g_value_set_object (&v, bin);
|
|
|
|
got_value = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!got_value)
|
2003-04-08 21:59:44 +00:00
|
|
|
goto error;
|
2012-03-31 10:00:56 +00:00
|
|
|
g_object_set_property (target, pspec->name, &v);
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
gst_parse_strfree (value);
|
2004-02-04 17:24:23 +00:00
|
|
|
if (G_IS_VALUE (&v))
|
|
|
|
g_value_unset (&v);
|
2008-02-01 12:10:17 +00:00
|
|
|
if (target)
|
2012-03-31 10:00:56 +00:00
|
|
|
g_object_unref (target);
|
2003-04-08 21:59:44 +00:00
|
|
|
return;
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
error:
|
2008-05-25 14:13:22 +00:00
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_COULD_NOT_SET_PROPERTY,
|
2011-02-14 13:39:21 +00:00
|
|
|
_("could not set property \"%s\" in element \"%s\" to \"%s\""),
|
|
|
|
value, GST_ELEMENT_NAME (element), pos);
|
2003-05-06 22:58:04 +00:00
|
|
|
goto out;
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
2010-03-18 08:22:09 +00:00
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
static void gst_parse_free_reference (reference_t *rr)
|
2003-04-08 21:59:44 +00:00
|
|
|
{
|
2014-01-10 20:10:17 +00:00
|
|
|
if(rr->element) gst_object_unref(rr->element);
|
|
|
|
gst_parse_strfree (rr->name);
|
|
|
|
g_slist_foreach (rr->pads, (GFunc) gst_parse_strfree, NULL);
|
|
|
|
g_slist_free (rr->pads);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gst_parse_free_link (link_t *link)
|
|
|
|
{
|
|
|
|
gst_parse_free_reference (&(link->src));
|
|
|
|
gst_parse_free_reference (&(link->sink));
|
2005-03-07 18:27:42 +00:00
|
|
|
if (link->caps) gst_caps_unref (link->caps);
|
2011-02-14 13:39:21 +00:00
|
|
|
gst_parse_link_free (link);
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
2005-03-07 18:27:42 +00:00
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
static void gst_parse_free_chain (chain_t *ch)
|
|
|
|
{
|
|
|
|
GSList *walk;
|
|
|
|
gst_parse_free_reference (&(ch->first));
|
|
|
|
gst_parse_free_reference (&(ch->last));
|
|
|
|
for(walk=ch->elements;walk;walk=walk->next)
|
|
|
|
gst_object_unref (walk->data);
|
|
|
|
g_slist_free (ch->elements);
|
|
|
|
gst_parse_chain_free (ch);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gst_parse_free_delayed_link (DelayedLink *link)
|
2009-10-29 05:03:44 +00:00
|
|
|
{
|
|
|
|
g_free (link->src_pad);
|
|
|
|
g_free (link->sink_pad);
|
|
|
|
if (link->caps) gst_caps_unref (link->caps);
|
2009-10-31 15:49:03 +00:00
|
|
|
g_slice_free (DelayedLink, link);
|
2009-10-29 05:03:44 +00:00
|
|
|
}
|
|
|
|
|
2016-01-03 21:55:48 +00:00
|
|
|
#define PRETTY_PAD_NAME_FMT "%s %s of %s named %s"
|
|
|
|
#define PRETTY_PAD_NAME_ARGS(elem, pad_name) \
|
|
|
|
(pad_name ? "pad " : "some"), (pad_name ? pad_name : "pad"), \
|
|
|
|
G_OBJECT_TYPE_NAME(elem), GST_STR_NULL (GST_ELEMENT_NAME (elem))
|
|
|
|
|
2016-01-02 18:42:17 +00:00
|
|
|
static void gst_parse_no_more_pads (GstElement *src, gpointer data)
|
|
|
|
{
|
|
|
|
DelayedLink *link = data;
|
|
|
|
|
2015-06-25 17:29:27 +00:00
|
|
|
/* Don't warn for all-pads links, as we expect those to
|
|
|
|
* still be active at no-more-pads */
|
|
|
|
if (!link->all_pads) {
|
|
|
|
GST_ELEMENT_WARNING(src, PARSE, DELAYED_LINK,
|
|
|
|
(_("Delayed linking failed.")),
|
|
|
|
("failed delayed linking " PRETTY_PAD_NAME_FMT " to " PRETTY_PAD_NAME_FMT,
|
|
|
|
PRETTY_PAD_NAME_ARGS (src, link->src_pad),
|
|
|
|
PRETTY_PAD_NAME_ARGS (link->sink, link->sink_pad)));
|
|
|
|
}
|
2016-01-02 18:42:17 +00:00
|
|
|
/* we keep the handlers connected, so that in case an element still adds a pad
|
|
|
|
* despite no-more-pads, we will consider it for pending delayed links */
|
|
|
|
}
|
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
static void gst_parse_found_pad (GstElement *src, GstPad *pad, gpointer data)
|
2003-04-08 21:59:44 +00:00
|
|
|
{
|
2009-10-31 15:56:17 +00:00
|
|
|
DelayedLink *link = data;
|
2009-10-31 15:43:26 +00:00
|
|
|
|
2016-01-03 21:55:48 +00:00
|
|
|
GST_CAT_INFO (GST_CAT_PIPELINE,
|
2015-06-25 17:29:27 +00:00
|
|
|
"trying delayed linking %s " PRETTY_PAD_NAME_FMT " to " PRETTY_PAD_NAME_FMT,
|
|
|
|
link->all_pads ? "all pads" : "one pad",
|
2016-01-03 21:55:48 +00:00
|
|
|
PRETTY_PAD_NAME_ARGS (src, link->src_pad),
|
|
|
|
PRETTY_PAD_NAME_ARGS (link->sink, link->sink_pad));
|
2003-04-11 00:00:46 +00:00
|
|
|
|
2005-10-10 22:49:42 +00:00
|
|
|
if (gst_element_link_pads_filtered (src, link->src_pad, link->sink,
|
|
|
|
link->sink_pad, link->caps)) {
|
|
|
|
/* do this here, we don't want to get any problems later on when
|
|
|
|
* unlocking states */
|
2016-01-03 21:55:48 +00:00
|
|
|
GST_CAT_DEBUG (GST_CAT_PIPELINE,
|
2015-06-25 17:29:27 +00:00
|
|
|
"delayed linking %s " PRETTY_PAD_NAME_FMT " to " PRETTY_PAD_NAME_FMT " worked",
|
|
|
|
link->all_pads ? "all pads" : "one pad",
|
2016-01-03 21:55:48 +00:00
|
|
|
PRETTY_PAD_NAME_ARGS (src, link->src_pad),
|
|
|
|
PRETTY_PAD_NAME_ARGS (link->sink, link->sink_pad));
|
2016-01-02 18:42:17 +00:00
|
|
|
g_signal_handler_disconnect (src, link->no_more_pads_signal_id);
|
|
|
|
/* releases 'link' */
|
2015-06-25 17:29:27 +00:00
|
|
|
if (!link->all_pads)
|
|
|
|
g_signal_handler_disconnect (src, link->pad_added_signal_id);
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
|
|
|
}
|
2010-03-18 08:22:09 +00:00
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
/* both padnames and the caps may be NULL */
|
|
|
|
static gboolean
|
2011-02-14 13:39:21 +00:00
|
|
|
gst_parse_perform_delayed_link (GstElement *src, const gchar *src_pad,
|
2005-10-10 22:49:42 +00:00
|
|
|
GstElement *sink, const gchar *sink_pad,
|
2015-06-25 17:29:27 +00:00
|
|
|
GstCaps *caps, gboolean all_pads)
|
2003-04-08 21:59:44 +00:00
|
|
|
{
|
2005-10-10 22:49:42 +00:00
|
|
|
GList *templs = gst_element_class_get_pad_template_list (
|
|
|
|
GST_ELEMENT_GET_CLASS (src));
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2004-04-19 17:40:24 +00:00
|
|
|
for (; templs; templs = templs->next) {
|
2003-04-08 21:59:44 +00:00
|
|
|
GstPadTemplate *templ = (GstPadTemplate *) templs->data;
|
2005-10-10 22:49:42 +00:00
|
|
|
if ((GST_PAD_TEMPLATE_DIRECTION (templ) == GST_PAD_SRC) &&
|
|
|
|
(GST_PAD_TEMPLATE_PRESENCE(templ) == GST_PAD_SOMETIMES))
|
2003-04-08 21:59:44 +00:00
|
|
|
{
|
2011-02-14 13:39:21 +00:00
|
|
|
DelayedLink *data = g_slice_new (DelayedLink);
|
|
|
|
|
2015-06-25 17:29:27 +00:00
|
|
|
data->all_pads = all_pads;
|
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
/* TODO: maybe we should check if src_pad matches this template's names */
|
|
|
|
|
2016-01-03 21:55:48 +00:00
|
|
|
GST_CAT_DEBUG (GST_CAT_PIPELINE,
|
|
|
|
"trying delayed link " PRETTY_PAD_NAME_FMT " to " PRETTY_PAD_NAME_FMT,
|
|
|
|
PRETTY_PAD_NAME_ARGS (src, src_pad),
|
|
|
|
PRETTY_PAD_NAME_ARGS (sink, sink_pad));
|
2003-04-08 21:59:44 +00:00
|
|
|
|
|
|
|
data->src_pad = g_strdup (src_pad);
|
|
|
|
data->sink = sink;
|
|
|
|
data->sink_pad = g_strdup (sink_pad);
|
2003-12-24 00:26:45 +00:00
|
|
|
if (caps) {
|
|
|
|
data->caps = gst_caps_copy (caps);
|
|
|
|
} else {
|
|
|
|
data->caps = NULL;
|
|
|
|
}
|
2016-01-02 18:42:17 +00:00
|
|
|
data->pad_added_signal_id = g_signal_connect_data (src, "pad-added",
|
2009-10-31 15:56:17 +00:00
|
|
|
G_CALLBACK (gst_parse_found_pad), data,
|
|
|
|
(GClosureNotify) gst_parse_free_delayed_link, (GConnectFlags) 0);
|
2016-01-02 18:42:17 +00:00
|
|
|
data->no_more_pads_signal_id = g_signal_connect (src, "no-more-pads",
|
|
|
|
G_CALLBACK (gst_parse_no_more_pads), data);
|
2003-04-08 21:59:44 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
2010-03-18 08:22:09 +00:00
|
|
|
|
2016-11-11 20:31:03 +00:00
|
|
|
static gboolean
|
|
|
|
gst_parse_element_can_do_caps (GstElement * e, GstPadDirection dir,
|
|
|
|
GstCaps * link_caps)
|
|
|
|
{
|
2017-01-18 13:07:58 +00:00
|
|
|
gboolean can_do = FALSE, done = FALSE;
|
|
|
|
GstIterator *it;
|
2016-11-11 20:31:03 +00:00
|
|
|
|
2017-01-18 13:07:58 +00:00
|
|
|
it = (dir == GST_PAD_SRC) ? gst_element_iterate_src_pads (e) : gst_element_iterate_sink_pads (e);
|
2016-11-11 20:31:03 +00:00
|
|
|
|
2017-01-18 13:07:58 +00:00
|
|
|
while (!done && !can_do) {
|
|
|
|
GValue v = G_VALUE_INIT;
|
|
|
|
GstPad *pad;
|
2016-11-11 20:31:03 +00:00
|
|
|
GstCaps *caps;
|
|
|
|
|
2017-01-18 13:07:58 +00:00
|
|
|
switch (gst_iterator_next (it, &v)) {
|
|
|
|
case GST_ITERATOR_OK:
|
|
|
|
pad = g_value_get_object (&v);
|
|
|
|
|
|
|
|
caps = gst_pad_get_current_caps (pad);
|
|
|
|
if (caps == NULL)
|
|
|
|
caps = gst_pad_query_caps (pad, NULL);
|
2016-11-11 20:31:03 +00:00
|
|
|
|
2017-01-18 13:07:58 +00:00
|
|
|
can_do = gst_caps_can_intersect (caps, link_caps);
|
2016-11-11 20:31:03 +00:00
|
|
|
|
2017-01-18 13:07:58 +00:00
|
|
|
GST_TRACE ("can_do: %d for %" GST_PTR_FORMAT " and %" GST_PTR_FORMAT,
|
|
|
|
can_do, caps, link_caps);
|
2016-11-11 20:31:03 +00:00
|
|
|
|
2017-01-18 13:07:58 +00:00
|
|
|
gst_caps_unref (caps);
|
2016-11-11 20:31:03 +00:00
|
|
|
|
2017-01-18 13:07:58 +00:00
|
|
|
g_value_unset (&v);
|
|
|
|
break;
|
|
|
|
case GST_ITERATOR_DONE:
|
|
|
|
case GST_ITERATOR_ERROR:
|
|
|
|
done = TRUE;
|
|
|
|
break;
|
|
|
|
case GST_ITERATOR_RESYNC:
|
|
|
|
gst_iterator_resync (it);
|
|
|
|
break;
|
|
|
|
}
|
2016-11-11 20:31:03 +00:00
|
|
|
}
|
|
|
|
|
2017-01-18 13:07:58 +00:00
|
|
|
gst_iterator_free (it);
|
2016-11-11 20:31:03 +00:00
|
|
|
|
|
|
|
return can_do;
|
|
|
|
}
|
|
|
|
|
2003-12-24 14:39:46 +00:00
|
|
|
/*
|
2003-04-08 21:59:44 +00:00
|
|
|
* performs a link and frees the struct. src and sink elements must be given
|
2003-05-18 15:03:34 +00:00
|
|
|
* return values 0 - link performed
|
2003-04-08 21:59:44 +00:00
|
|
|
* 1 - link delayed
|
|
|
|
* <0 - error
|
|
|
|
*/
|
|
|
|
static gint
|
|
|
|
gst_parse_perform_link (link_t *link, graph_t *graph)
|
|
|
|
{
|
2014-01-10 20:10:17 +00:00
|
|
|
GstElement *src = link->src.element;
|
|
|
|
GstElement *sink = link->sink.element;
|
|
|
|
GSList *srcs = link->src.pads;
|
|
|
|
GSList *sinks = link->sink.pads;
|
2003-04-08 21:59:44 +00:00
|
|
|
g_assert (GST_IS_ELEMENT (src));
|
|
|
|
g_assert (GST_IS_ELEMENT (sink));
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2005-10-10 22:49:42 +00:00
|
|
|
GST_CAT_INFO (GST_CAT_PIPELINE,
|
2016-01-03 21:55:48 +00:00
|
|
|
"linking " PRETTY_PAD_NAME_FMT " to " PRETTY_PAD_NAME_FMT " (%u/%u) with caps \"%" GST_PTR_FORMAT "\"",
|
|
|
|
PRETTY_PAD_NAME_ARGS (src, link->src.name),
|
|
|
|
PRETTY_PAD_NAME_ARGS (sink, link->sink.name),
|
2005-10-10 22:49:42 +00:00
|
|
|
g_slist_length (srcs), g_slist_length (sinks), link->caps);
|
2003-04-16 21:37:35 +00:00
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
if (!srcs || !sinks) {
|
2015-06-25 17:29:27 +00:00
|
|
|
gboolean found_one = gst_element_link_pads_filtered (src,
|
|
|
|
srcs ? (const gchar *) srcs->data : NULL, sink,
|
|
|
|
sinks ? (const gchar *) sinks->data : NULL, link->caps);
|
|
|
|
|
|
|
|
if (found_one) {
|
|
|
|
if (!link->all_pads)
|
|
|
|
goto success; /* Linked one, and not an all-pads link = we're done */
|
|
|
|
|
|
|
|
/* Try and link more available pads */
|
|
|
|
while (gst_element_link_pads_filtered (src,
|
2005-10-10 22:49:42 +00:00
|
|
|
srcs ? (const gchar *) srcs->data : NULL, sink,
|
2015-06-25 17:29:27 +00:00
|
|
|
sinks ? (const gchar *) sinks->data : NULL, link->caps));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We either didn't find any static pads, or this is a all-pads link,
|
|
|
|
* in which case watch for future pads and link those. Not a failure
|
|
|
|
* in the all-pads case if there's no sometimes pads to watch */
|
|
|
|
if (gst_parse_perform_delayed_link (src,
|
|
|
|
srcs ? (const gchar *) srcs->data : NULL,
|
|
|
|
sink, sinks ? (const gchar *) sinks->data : NULL, link->caps,
|
|
|
|
link->all_pads) || link->all_pads) {
|
2003-04-08 21:59:44 +00:00
|
|
|
goto success;
|
|
|
|
} else {
|
2015-06-25 17:29:27 +00:00
|
|
|
goto error;
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
|
|
|
}
|
2014-01-10 20:10:17 +00:00
|
|
|
if (g_slist_length (link->src.pads) != g_slist_length (link->sink.pads)) {
|
2003-04-08 21:59:44 +00:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
while (srcs && sinks) {
|
|
|
|
const gchar *src_pad = (const gchar *) srcs->data;
|
|
|
|
const gchar *sink_pad = (const gchar *) sinks->data;
|
|
|
|
srcs = g_slist_next (srcs);
|
|
|
|
sinks = g_slist_next (sinks);
|
2005-10-10 22:49:42 +00:00
|
|
|
if (gst_element_link_pads_filtered (src, src_pad, sink, sink_pad,
|
|
|
|
link->caps)) {
|
2003-04-08 21:59:44 +00:00
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
if (gst_parse_perform_delayed_link (src, src_pad,
|
|
|
|
sink, sink_pad,
|
2015-06-25 17:29:27 +00:00
|
|
|
link->caps, link->all_pads)) {
|
2003-04-08 21:59:44 +00:00
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
success:
|
|
|
|
gst_parse_free_link (link);
|
|
|
|
return 0;
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
error:
|
2016-11-11 20:31:03 +00:00
|
|
|
if (link->caps != NULL) {
|
|
|
|
gboolean src_can_do_caps, sink_can_do_caps;
|
|
|
|
gchar *caps_str = gst_caps_to_string (link->caps);
|
|
|
|
|
|
|
|
src_can_do_caps =
|
|
|
|
gst_parse_element_can_do_caps (src, GST_PAD_SRC, link->caps);
|
|
|
|
sink_can_do_caps =
|
|
|
|
gst_parse_element_can_do_caps (sink, GST_PAD_SINK, link->caps);
|
|
|
|
|
|
|
|
if (!src_can_do_caps && sink_can_do_caps) {
|
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_LINK,
|
|
|
|
_("could not link %s to %s, %s can't handle caps %s"),
|
|
|
|
GST_ELEMENT_NAME (src), GST_ELEMENT_NAME (sink),
|
|
|
|
GST_ELEMENT_NAME (src), caps_str);
|
|
|
|
} else if (src_can_do_caps && !sink_can_do_caps) {
|
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_LINK,
|
|
|
|
_("could not link %s to %s, %s can't handle caps %s"),
|
|
|
|
GST_ELEMENT_NAME (src), GST_ELEMENT_NAME (sink),
|
|
|
|
GST_ELEMENT_NAME (sink), caps_str);
|
|
|
|
} else if (!src_can_do_caps && !sink_can_do_caps) {
|
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_LINK,
|
|
|
|
_("could not link %s to %s, neither element can handle caps %s"),
|
|
|
|
GST_ELEMENT_NAME (src), GST_ELEMENT_NAME (sink), caps_str);
|
|
|
|
} else {
|
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_LINK,
|
|
|
|
_("could not link %s to %s with caps %s"),
|
|
|
|
GST_ELEMENT_NAME (src), GST_ELEMENT_NAME (sink), caps_str);
|
|
|
|
}
|
|
|
|
g_free (caps_str);
|
|
|
|
} else {
|
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_LINK,
|
|
|
|
_("could not link %s to %s"), GST_ELEMENT_NAME (src),
|
|
|
|
GST_ELEMENT_NAME (sink));
|
|
|
|
}
|
2003-04-08 21:59:44 +00:00
|
|
|
gst_parse_free_link (link);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2002-04-07 23:32:16 +00:00
|
|
|
|
gst/parse/: Make the parser reentrant and recursively callable. This requires flex >= 2.5.31, for older versions preg...
Original commit message from CVS:
Patch by: Marc-Andre Lureau <marcandre dot lureau at gmail dot com>
* gst/parse/Makefile.am:
* gst/parse/grammar.y:
* gst/parse/parse.l:
Make the parser reentrant and recursively callable. This requires flex
>= 2.5.31, for older versions pregenerated sources are used as we
can't bump the build dependency. Finally fixes #349180.
* gst/gstparse.c: (gst_parse_launch):
Drop the HAVE_MT_SAVE_FLEX #ifdefs as we always use a new enough flex
now anyway.
* docs/gst/Makefile.am:
* docs/gst/Makefile.am:
* gst/parse/grammar.tab.pre.c: (__gst_parse_strdup),
(__gst_parse_strfree), (__gst_parse_link_new),
(__gst_parse_link_free), (__gst_parse_chain_new),
(__gst_parse_chain_free), (SET_ERROR), (YYPRINTF),
(gst_parse_element_set), (gst_parse_free_link),
(gst_parse_found_pad), (gst_parse_perform_delayed_link),
(gst_parse_perform_link), (yytnamerr), (yysyntax_error), (yyerror),
(_gst_parse_launch):
* gst/parse/grammar.tab.pre.h:
* gst/parse/lex._gst_parse_yy.pre.c: (PRINT), (yy_get_next_buffer),
(yy_get_previous_state), (yy_try_NUL_trans), (input),
(_gst_parse_yyrestart), (_gst_parse_yy_switch_to_buffer),
(_gst_parse_yy_load_buffer_state), (_gst_parse_yy_create_buffer),
(_gst_parse_yy_delete_buffer), (_gst_parse_yy_init_buffer),
(_gst_parse_yy_flush_buffer), (_gst_parse_yypush_buffer_state),
(_gst_parse_yypop_buffer_state),
(_gst_parse_yyensure_buffer_stack), (_gst_parse_yy_scan_buffer),
(_gst_parse_yy_scan_string), (_gst_parse_yy_scan_bytes),
(yy_fatal_error), (_gst_parse_yyget_extra),
(_gst_parse_yyget_lineno), (_gst_parse_yyget_column),
(_gst_parse_yyget_in), (_gst_parse_yyget_out),
(_gst_parse_yyget_leng), (_gst_parse_yyget_text),
(_gst_parse_yyset_extra), (_gst_parse_yyset_lineno),
(_gst_parse_yyset_column), (_gst_parse_yyset_in),
(_gst_parse_yyset_out), (_gst_parse_yyget_debug),
(_gst_parse_yyset_debug), (_gst_parse_yyget_lval),
(_gst_parse_yyset_lval), (_gst_parse_yylex_init),
(yy_init_globals), (_gst_parse_yylex_destroy), (yy_flex_strncpy),
(yy_flex_strlen), (_gst_parse_yyalloc), (_gst_parse_yyrealloc),
(_gst_parse_yyfree):
If the installed flex version is too old use pre-generated parser
sources. These pre-generated parser sources are always updated when
the actual flex/bison sources change but require everybody who wants
to change something in the parser to have flex >= 2.5.31 installed.
2007-04-18 12:34:51 +00:00
|
|
|
static int yyerror (void *scanner, graph_t *graph, const char *s);
|
2002-03-31 21:09:17 +00:00
|
|
|
%}
|
|
|
|
|
|
|
|
%union {
|
2014-01-10 20:10:17 +00:00
|
|
|
gchar *ss;
|
|
|
|
chain_t *cc;
|
|
|
|
link_t *ll;
|
|
|
|
reference_t rr;
|
|
|
|
GstElement *ee;
|
|
|
|
GSList *pp;
|
|
|
|
graph_t *gg;
|
2002-03-31 21:09:17 +00:00
|
|
|
}
|
|
|
|
|
2014-01-16 11:28:47 +00:00
|
|
|
/* No grammar ambiguities expected, FAIL otherwise */
|
|
|
|
%expect 0
|
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
%token <ss> PARSE_URL
|
|
|
|
%token <ss> IDENTIFIER
|
2016-01-03 10:37:57 +00:00
|
|
|
%left <ss> REF PADREF BINREF
|
2014-01-10 20:10:17 +00:00
|
|
|
%token <ss> ASSIGNMENT
|
|
|
|
%token <ss> LINK
|
2015-06-25 17:29:27 +00:00
|
|
|
%token <ss> LINK_ALL
|
2014-01-10 20:10:17 +00:00
|
|
|
|
|
|
|
%type <ss> binopener
|
|
|
|
%type <gg> graph
|
|
|
|
%type <cc> chain bin chainlist openchain elementary
|
|
|
|
%type <rr> reference
|
|
|
|
%type <ll> link
|
|
|
|
%type <ee> element
|
|
|
|
%type <pp> morepads pads assignments
|
|
|
|
|
|
|
|
%destructor { gst_parse_strfree ($$); } <ss>
|
2014-01-16 11:28:47 +00:00
|
|
|
%destructor { if($$)
|
|
|
|
gst_parse_free_chain($$); } <cc>
|
2014-01-10 20:10:17 +00:00
|
|
|
%destructor { gst_parse_free_link ($$); } <ll>
|
|
|
|
%destructor { gst_parse_free_reference(&($$));} <rr>
|
|
|
|
%destructor { gst_object_unref ($$); } <ee>
|
|
|
|
%destructor { GSList *walk;
|
|
|
|
for(walk=$$;walk;walk=walk->next)
|
|
|
|
gst_parse_strfree (walk->data);
|
|
|
|
g_slist_free ($$); } <pp>
|
|
|
|
|
2002-03-31 21:09:17 +00:00
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
|
2005-12-07 11:52:05 +00:00
|
|
|
%left '(' ')'
|
2002-04-07 23:32:16 +00:00
|
|
|
%left ','
|
2003-04-08 21:59:44 +00:00
|
|
|
%right '.'
|
2015-06-25 17:29:27 +00:00
|
|
|
%left '!' '=' ':'
|
2002-04-01 04:36:56 +00:00
|
|
|
|
2013-08-21 06:59:29 +00:00
|
|
|
%lex-param { void *scanner }
|
gst/parse/: Make the parser reentrant and recursively callable. This requires flex >= 2.5.31, for older versions preg...
Original commit message from CVS:
Patch by: Marc-Andre Lureau <marcandre dot lureau at gmail dot com>
* gst/parse/Makefile.am:
* gst/parse/grammar.y:
* gst/parse/parse.l:
Make the parser reentrant and recursively callable. This requires flex
>= 2.5.31, for older versions pregenerated sources are used as we
can't bump the build dependency. Finally fixes #349180.
* gst/gstparse.c: (gst_parse_launch):
Drop the HAVE_MT_SAVE_FLEX #ifdefs as we always use a new enough flex
now anyway.
* docs/gst/Makefile.am:
* docs/gst/Makefile.am:
* gst/parse/grammar.tab.pre.c: (__gst_parse_strdup),
(__gst_parse_strfree), (__gst_parse_link_new),
(__gst_parse_link_free), (__gst_parse_chain_new),
(__gst_parse_chain_free), (SET_ERROR), (YYPRINTF),
(gst_parse_element_set), (gst_parse_free_link),
(gst_parse_found_pad), (gst_parse_perform_delayed_link),
(gst_parse_perform_link), (yytnamerr), (yysyntax_error), (yyerror),
(_gst_parse_launch):
* gst/parse/grammar.tab.pre.h:
* gst/parse/lex._gst_parse_yy.pre.c: (PRINT), (yy_get_next_buffer),
(yy_get_previous_state), (yy_try_NUL_trans), (input),
(_gst_parse_yyrestart), (_gst_parse_yy_switch_to_buffer),
(_gst_parse_yy_load_buffer_state), (_gst_parse_yy_create_buffer),
(_gst_parse_yy_delete_buffer), (_gst_parse_yy_init_buffer),
(_gst_parse_yy_flush_buffer), (_gst_parse_yypush_buffer_state),
(_gst_parse_yypop_buffer_state),
(_gst_parse_yyensure_buffer_stack), (_gst_parse_yy_scan_buffer),
(_gst_parse_yy_scan_string), (_gst_parse_yy_scan_bytes),
(yy_fatal_error), (_gst_parse_yyget_extra),
(_gst_parse_yyget_lineno), (_gst_parse_yyget_column),
(_gst_parse_yyget_in), (_gst_parse_yyget_out),
(_gst_parse_yyget_leng), (_gst_parse_yyget_text),
(_gst_parse_yyset_extra), (_gst_parse_yyset_lineno),
(_gst_parse_yyset_column), (_gst_parse_yyset_in),
(_gst_parse_yyset_out), (_gst_parse_yyget_debug),
(_gst_parse_yyset_debug), (_gst_parse_yyget_lval),
(_gst_parse_yyset_lval), (_gst_parse_yylex_init),
(yy_init_globals), (_gst_parse_yylex_destroy), (yy_flex_strncpy),
(yy_flex_strlen), (_gst_parse_yyalloc), (_gst_parse_yyrealloc),
(_gst_parse_yyfree):
If the installed flex version is too old use pre-generated parser
sources. These pre-generated parser sources are always updated when
the actual flex/bison sources change but require everybody who wants
to change something in the parser to have flex >= 2.5.31 installed.
2007-04-18 12:34:51 +00:00
|
|
|
%parse-param { void *scanner }
|
|
|
|
%parse-param { graph_t *graph }
|
|
|
|
%pure-parser
|
2002-04-07 23:32:16 +00:00
|
|
|
|
2002-04-01 04:36:56 +00:00
|
|
|
%start graph
|
2002-03-31 21:09:17 +00:00
|
|
|
%%
|
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
/*************************************************************
|
|
|
|
* Grammar explanation:
|
|
|
|
* _element_s are specified by an identifier of their type.
|
|
|
|
* a name can be give in the optional property-assignments
|
|
|
|
* coffeeelement
|
|
|
|
* fakesrc name=john
|
|
|
|
* identity silence=false name=frodo
|
|
|
|
* (cont'd)
|
|
|
|
**************************************************************/
|
2011-02-14 13:39:21 +00:00
|
|
|
element: IDENTIFIER { $$ = gst_element_factory_make ($1, NULL);
|
2006-07-27 13:26:27 +00:00
|
|
|
if ($$ == NULL) {
|
2014-01-10 20:10:17 +00:00
|
|
|
add_missing_element(graph, $1);
|
2008-05-25 14:13:22 +00:00
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_NO_SUCH_ELEMENT, _("no element \"%s\""), $1);
|
2006-07-27 13:26:27 +00:00
|
|
|
}
|
|
|
|
gst_parse_strfree ($1);
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
|
|
|
| element ASSIGNMENT { gst_parse_element_set ($2, $1, graph);
|
|
|
|
$$ = $1;
|
|
|
|
}
|
|
|
|
;
|
2014-01-10 20:10:17 +00:00
|
|
|
|
|
|
|
/*************************************************************
|
|
|
|
* Grammar explanation: (cont'd)
|
|
|
|
* a graph has (pure) _element_s, _bin_s and _link_s.
|
|
|
|
* since bins are special elements, bins and elements can
|
|
|
|
* be generalized as _elementary_.
|
|
|
|
* The construction of _bin_s will be discussed later.
|
|
|
|
* (cont'd)
|
|
|
|
*
|
|
|
|
**************************************************************/
|
|
|
|
elementary:
|
|
|
|
element { $$ = gst_parse_chain_new ();
|
2014-01-14 12:45:34 +00:00
|
|
|
/* g_print ("@%p: CHAINing elementary\n", $$); */
|
2014-01-10 20:10:17 +00:00
|
|
|
$$->first.element = $1? gst_object_ref($1) : NULL;
|
|
|
|
$$->last.element = $1? gst_object_ref($1) : NULL;
|
|
|
|
$$->first.name = $$->last.name = NULL;
|
|
|
|
$$->first.pads = $$->last.pads = NULL;
|
|
|
|
$$->elements = $1 ? g_slist_prepend (NULL, $1) : NULL;
|
|
|
|
}
|
|
|
|
| bin { $$=$1; }
|
2011-02-14 13:39:21 +00:00
|
|
|
;
|
2014-01-10 20:10:17 +00:00
|
|
|
|
|
|
|
/*************************************************************
|
|
|
|
* Grammar explanation: (cont'd)
|
2018-04-27 16:40:31 +00:00
|
|
|
* a _chain_ is a list of _elementary_s that have _link_s in between
|
2014-01-10 20:10:17 +00:00
|
|
|
* which are represented through infix-notation.
|
|
|
|
*
|
|
|
|
* fakesrc ! sometransformation ! fakesink
|
|
|
|
*
|
|
|
|
* every _link_ can be augmented with _pads_.
|
|
|
|
*
|
|
|
|
* coffeesrc .sound ! speakersink
|
|
|
|
* multisrc .movie,ads ! .projector,smallscreen multisink
|
|
|
|
*
|
|
|
|
* and every _link_ can be setup to filter media-types
|
|
|
|
* mediasrc ! audio/x-raw, signed=TRUE ! stereosink
|
|
|
|
*
|
|
|
|
* User HINT:
|
|
|
|
* if the lexer does not recognize your media-type it
|
|
|
|
* will make it an element name. that results in errors
|
|
|
|
* like
|
|
|
|
* NO SUCH ELEMENT: no element audio7x-raw
|
|
|
|
* '7' vs. '/' in https://en.wikipedia.org/wiki/QWERTZ
|
|
|
|
*
|
|
|
|
* Parsing HINT:
|
|
|
|
* in the parser we need to differ between chains that can
|
|
|
|
* be extended by more elementaries (_openchain_) and others
|
|
|
|
* that are syntactically closed (handled later in this file).
|
|
|
|
* (e.g. fakesrc ! sinkreferencename.padname)
|
|
|
|
**************************************************************/
|
2016-01-03 10:37:57 +00:00
|
|
|
chain: openchain { $$=$1;
|
2014-01-10 20:10:17 +00:00
|
|
|
if($$->last.name){
|
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_SYNTAX,
|
|
|
|
_("unexpected reference \"%s\" - ignoring"), $$->last.name);
|
|
|
|
gst_parse_strfree($$->last.name);
|
|
|
|
$$->last.name=NULL;
|
|
|
|
}
|
|
|
|
if($$->last.pads){
|
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_SYNTAX,
|
|
|
|
_("unexpected pad-reference \"%s\" - ignoring"), (gchar*)$$->last.pads->data);
|
|
|
|
g_slist_foreach ($$->last.pads, (GFunc) gst_parse_strfree, NULL);
|
|
|
|
g_slist_free ($$->last.pads);
|
|
|
|
$$->last.pads=NULL;
|
|
|
|
}
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
2014-01-10 20:10:17 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
openchain:
|
|
|
|
elementary pads { $$=$1;
|
|
|
|
$$->last.pads = g_slist_concat ($$->last.pads, $2);
|
2014-01-14 12:45:34 +00:00
|
|
|
/* g_print ("@%p@%p: FKI elementary pads\n", $1, $$->last.pads); */
|
2003-04-14 18:33:58 +00:00
|
|
|
}
|
2014-01-10 20:10:17 +00:00
|
|
|
| openchain link pads elementary pads
|
|
|
|
{
|
|
|
|
$2->src = $1->last;
|
|
|
|
$2->sink = $4->first;
|
|
|
|
$2->sink.pads = g_slist_concat ($3, $2->sink.pads);
|
|
|
|
TRY_SETUP_LINK($2);
|
|
|
|
$4->first = $1->first;
|
|
|
|
$4->elements = g_slist_concat ($1->elements, $4->elements);
|
|
|
|
gst_parse_chain_free($1);
|
|
|
|
$$ = $4;
|
|
|
|
$$->last.pads = g_slist_concat ($$->last.pads, $5);
|
2003-04-14 18:33:58 +00:00
|
|
|
}
|
2003-04-08 21:59:44 +00:00
|
|
|
;
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
link: LINK { $$ = gst_parse_link_new ();
|
2015-06-25 17:29:27 +00:00
|
|
|
$$->all_pads = FALSE;
|
|
|
|
if ($1) {
|
|
|
|
$$->caps = gst_caps_from_string ($1);
|
|
|
|
if ($$->caps == NULL)
|
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_LINK, _("could not parse caps \"%s\""), $1);
|
|
|
|
gst_parse_strfree ($1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
| LINK_ALL { $$ = gst_parse_link_new ();
|
|
|
|
$$->all_pads = TRUE;
|
2014-01-10 20:10:17 +00:00
|
|
|
if ($1) {
|
|
|
|
$$->caps = gst_caps_from_string ($1);
|
|
|
|
if ($$->caps == NULL)
|
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_LINK, _("could not parse caps \"%s\""), $1);
|
|
|
|
gst_parse_strfree ($1);
|
|
|
|
}
|
2011-02-14 13:39:21 +00:00
|
|
|
}
|
2003-04-23 20:06:54 +00:00
|
|
|
;
|
2014-01-10 20:10:17 +00:00
|
|
|
pads: /* NOP */ { $$ = NULL; }
|
|
|
|
| PADREF morepads { $$ = $2;
|
|
|
|
$$ = g_slist_prepend ($$, $1);
|
|
|
|
}
|
2003-04-08 21:59:44 +00:00
|
|
|
;
|
2014-01-10 20:10:17 +00:00
|
|
|
morepads: /* NOP */ { $$ = NULL; }
|
|
|
|
| ',' IDENTIFIER morepads { $$ = g_slist_prepend ($3, $2); }
|
2003-04-08 21:59:44 +00:00
|
|
|
;
|
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
/*************************************************************
|
|
|
|
* Grammar explanation: (cont'd)
|
|
|
|
* the first and last elements of a _chain_ can be give
|
|
|
|
* as URL. This creates special elements that fit the URL.
|
|
|
|
*
|
|
|
|
* fakesrc ! http://fake-sink.org
|
|
|
|
* http://somesource.org ! fakesink
|
|
|
|
**************************************************************/
|
|
|
|
|
|
|
|
chain: openchain link PARSE_URL { GstElement *element =
|
|
|
|
gst_element_make_from_uri (GST_URI_SINK, $3, NULL, NULL);
|
|
|
|
/* FIXME: get and parse error properly */
|
|
|
|
if (!element) {
|
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
|
|
|
|
_("no sink element for URI \"%s\""), $3);
|
|
|
|
}
|
|
|
|
$$ = $1;
|
|
|
|
$2->sink.element = element?gst_object_ref(element):NULL;
|
|
|
|
$2->src = $1->last;
|
|
|
|
TRY_SETUP_LINK($2);
|
|
|
|
$$->last.element = NULL;
|
|
|
|
$$->last.name = NULL;
|
|
|
|
$$->last.pads = NULL;
|
|
|
|
if(element) $$->elements = g_slist_append ($$->elements, element);
|
|
|
|
g_free ($3);
|
|
|
|
}
|
2003-04-08 21:59:44 +00:00
|
|
|
;
|
2014-01-10 20:10:17 +00:00
|
|
|
openchain:
|
|
|
|
PARSE_URL { GstElement *element =
|
|
|
|
gst_element_make_from_uri (GST_URI_SRC, $1, NULL, NULL);
|
|
|
|
/* FIXME: get and parse error properly */
|
|
|
|
if (!element) {
|
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
|
|
|
|
_("no source element for URI \"%s\""), $1);
|
2003-05-17 20:45:06 +00:00
|
|
|
}
|
2014-01-10 20:10:17 +00:00
|
|
|
$$ = gst_parse_chain_new ();
|
2014-01-14 12:45:34 +00:00
|
|
|
/* g_print ("@%p: CHAINing srcURL\n", $$); */
|
2014-01-10 20:10:17 +00:00
|
|
|
$$->first.element = NULL;
|
|
|
|
$$->first.name = NULL;
|
|
|
|
$$->first.pads = NULL;
|
|
|
|
$$->last.element = element ? gst_object_ref(element):NULL;
|
|
|
|
$$->last.name = NULL;
|
|
|
|
$$->last.pads = NULL;
|
|
|
|
$$->elements = element ? g_slist_prepend (NULL, element) : NULL;
|
|
|
|
g_free($1);
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
|
|
|
;
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2003-04-27 23:56:31 +00:00
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
/*************************************************************
|
|
|
|
* Grammar explanation: (cont'd)
|
|
|
|
* the first and last elements of a _chain_ can be linked
|
|
|
|
* to a named _reference_ (with optional pads).
|
|
|
|
*
|
|
|
|
* fakesrc ! nameOfSinkElement.
|
|
|
|
* fakesrc ! nameOfSinkElement.Padname
|
|
|
|
* fakesrc ! nameOfSinkElement.Padname, anotherPad
|
|
|
|
* nameOfSource.Padname ! fakesink
|
|
|
|
**************************************************************/
|
|
|
|
|
|
|
|
chain: openchain link reference { $$ = $1;
|
|
|
|
$2->sink= $3;
|
|
|
|
$2->src = $1->last;
|
|
|
|
TRY_SETUP_LINK($2);
|
|
|
|
$$->last.element = NULL;
|
|
|
|
$$->last.name = NULL;
|
|
|
|
$$->last.pads = NULL;
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
2014-01-10 20:10:17 +00:00
|
|
|
;
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
|
|
|
|
openchain:
|
|
|
|
reference { $$ = gst_parse_chain_new ();
|
|
|
|
$$->last=$1;
|
|
|
|
$$->first.element = NULL;
|
|
|
|
$$->first.name = NULL;
|
|
|
|
$$->first.pads = NULL;
|
|
|
|
$$->elements = NULL;
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
2014-01-10 20:10:17 +00:00
|
|
|
;
|
|
|
|
reference: REF morepads {
|
|
|
|
gchar *padname = $1;
|
|
|
|
GSList *pads = $2;
|
|
|
|
if (padname) {
|
|
|
|
while (*padname != '.') padname++;
|
|
|
|
*padname = '\0';
|
|
|
|
padname++;
|
|
|
|
if (*padname != '\0')
|
|
|
|
pads = g_slist_prepend (pads, gst_parse_strdup (padname));
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
2014-01-10 20:10:17 +00:00
|
|
|
$$.element=NULL;
|
|
|
|
$$.name=$1;
|
|
|
|
$$.pads=pads;
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
2014-01-10 20:10:17 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************
|
|
|
|
* Grammar explanation: (cont'd)
|
|
|
|
* a _chainlist_ is just a list of _chain_s.
|
|
|
|
*
|
|
|
|
* You can specify _link_s with named
|
|
|
|
* _reference_ on each side. That
|
|
|
|
* works already after the explanations above.
|
|
|
|
* someSourceName.Pad ! someSinkName.
|
2016-01-03 10:37:57 +00:00
|
|
|
* someSourceName.Pad,anotherPad ! someSinkName.Apad,Bpad
|
2014-01-10 20:10:17 +00:00
|
|
|
*
|
|
|
|
* If a syntax error occurs, the already finished _chain_s
|
|
|
|
* and _links_ are kept intact.
|
|
|
|
*************************************************************/
|
|
|
|
|
|
|
|
chainlist: /* NOP */ { $$ = NULL; }
|
|
|
|
| chainlist chain { if ($1){
|
|
|
|
gst_parse_free_reference(&($1->last));
|
|
|
|
gst_parse_free_reference(&($2->first));
|
|
|
|
$2->first = $1->first;
|
|
|
|
$2->elements = g_slist_concat ($1->elements, $2->elements);
|
|
|
|
gst_parse_chain_free ($1);
|
2003-11-24 03:21:54 +00:00
|
|
|
}
|
|
|
|
$$ = $2;
|
|
|
|
}
|
2014-01-10 20:10:17 +00:00
|
|
|
| chainlist error { $$=$1;
|
|
|
|
GST_CAT_DEBUG (GST_CAT_PIPELINE,"trying to recover from syntax error");
|
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_SYNTAX, _("syntax error"));
|
2003-11-24 03:21:54 +00:00
|
|
|
}
|
2014-01-10 20:10:17 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
/*************************************************************
|
|
|
|
* Grammar explanation: (cont'd)
|
|
|
|
* _bins_
|
|
|
|
*************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
assignments: /* NOP */ { $$ = NULL; }
|
2014-01-16 11:28:47 +00:00
|
|
|
| ASSIGNMENT assignments { $$ = g_slist_prepend ($2, $1); }
|
2014-01-10 20:10:17 +00:00
|
|
|
;
|
|
|
|
|
2017-01-31 19:19:18 +00:00
|
|
|
binopener: '(' { $$ = gst_parse_strdup("bin"); }
|
2014-01-10 20:10:17 +00:00
|
|
|
| BINREF { $$ = $1; }
|
|
|
|
;
|
2016-01-03 10:37:57 +00:00
|
|
|
bin: binopener assignments chainlist ')' {
|
2014-01-10 20:10:17 +00:00
|
|
|
chain_t *chain = $3;
|
|
|
|
GSList *walk;
|
|
|
|
GstBin *bin = (GstBin *) gst_element_factory_make ($1, NULL);
|
|
|
|
if (!chain) {
|
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_EMPTY_BIN,
|
|
|
|
_("specified empty bin \"%s\", not allowed"), $1);
|
|
|
|
chain = gst_parse_chain_new ();
|
|
|
|
chain->first.element = chain->last.element = NULL;
|
|
|
|
chain->first.name = chain->last.name = NULL;
|
|
|
|
chain->first.pads = chain->last.pads = NULL;
|
|
|
|
chain->elements = NULL;
|
|
|
|
}
|
|
|
|
if (!bin) {
|
|
|
|
add_missing_element(graph, $1);
|
2011-02-14 13:39:21 +00:00
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
|
2014-01-10 20:10:17 +00:00
|
|
|
_("no bin \"%s\", unpacking elements"), $1);
|
|
|
|
/* clear property-list */
|
|
|
|
g_slist_foreach ($2, (GFunc) gst_parse_strfree, NULL);
|
|
|
|
g_slist_free ($2);
|
|
|
|
$2 = NULL;
|
2003-11-24 03:21:54 +00:00
|
|
|
} else {
|
2014-01-10 20:10:17 +00:00
|
|
|
for (walk = chain->elements; walk; walk = walk->next )
|
|
|
|
gst_bin_add (bin, GST_ELEMENT (walk->data));
|
|
|
|
g_slist_free (chain->elements);
|
|
|
|
chain->elements = g_slist_prepend (NULL, bin);
|
2003-11-24 03:21:54 +00:00
|
|
|
}
|
2014-01-10 20:10:17 +00:00
|
|
|
$$ = chain;
|
|
|
|
/* set the properties now
|
|
|
|
* HINT: property-list cleared above, if bin==NULL
|
|
|
|
*/
|
|
|
|
for (walk = $2; walk; walk = walk->next)
|
|
|
|
gst_parse_element_set ((gchar *) walk->data,
|
|
|
|
GST_ELEMENT (bin), graph);
|
|
|
|
g_slist_free ($2);
|
|
|
|
gst_parse_strfree ($1);
|
2003-11-24 03:21:54 +00:00
|
|
|
}
|
2003-04-08 21:59:44 +00:00
|
|
|
;
|
2014-01-10 20:10:17 +00:00
|
|
|
|
|
|
|
/*************************************************************
|
|
|
|
* Grammar explanation: (cont'd)
|
|
|
|
* _graph_
|
|
|
|
*************************************************************/
|
|
|
|
|
|
|
|
graph: chainlist { $$ = graph;
|
2003-04-08 21:59:44 +00:00
|
|
|
$$->chain = $1;
|
2014-01-10 20:10:17 +00:00
|
|
|
if(!$1) {
|
|
|
|
SET_ERROR (graph->error, GST_PARSE_ERROR_EMPTY, _("empty pipeline not allowed"));
|
|
|
|
}
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
|
|
|
;
|
2002-03-31 21:09:17 +00:00
|
|
|
|
|
|
|
%%
|
|
|
|
|
|
|
|
|
2002-04-07 23:32:16 +00:00
|
|
|
static int
|
gst/parse/: Make the parser reentrant and recursively callable. This requires flex >= 2.5.31, for older versions preg...
Original commit message from CVS:
Patch by: Marc-Andre Lureau <marcandre dot lureau at gmail dot com>
* gst/parse/Makefile.am:
* gst/parse/grammar.y:
* gst/parse/parse.l:
Make the parser reentrant and recursively callable. This requires flex
>= 2.5.31, for older versions pregenerated sources are used as we
can't bump the build dependency. Finally fixes #349180.
* gst/gstparse.c: (gst_parse_launch):
Drop the HAVE_MT_SAVE_FLEX #ifdefs as we always use a new enough flex
now anyway.
* docs/gst/Makefile.am:
* docs/gst/Makefile.am:
* gst/parse/grammar.tab.pre.c: (__gst_parse_strdup),
(__gst_parse_strfree), (__gst_parse_link_new),
(__gst_parse_link_free), (__gst_parse_chain_new),
(__gst_parse_chain_free), (SET_ERROR), (YYPRINTF),
(gst_parse_element_set), (gst_parse_free_link),
(gst_parse_found_pad), (gst_parse_perform_delayed_link),
(gst_parse_perform_link), (yytnamerr), (yysyntax_error), (yyerror),
(_gst_parse_launch):
* gst/parse/grammar.tab.pre.h:
* gst/parse/lex._gst_parse_yy.pre.c: (PRINT), (yy_get_next_buffer),
(yy_get_previous_state), (yy_try_NUL_trans), (input),
(_gst_parse_yyrestart), (_gst_parse_yy_switch_to_buffer),
(_gst_parse_yy_load_buffer_state), (_gst_parse_yy_create_buffer),
(_gst_parse_yy_delete_buffer), (_gst_parse_yy_init_buffer),
(_gst_parse_yy_flush_buffer), (_gst_parse_yypush_buffer_state),
(_gst_parse_yypop_buffer_state),
(_gst_parse_yyensure_buffer_stack), (_gst_parse_yy_scan_buffer),
(_gst_parse_yy_scan_string), (_gst_parse_yy_scan_bytes),
(yy_fatal_error), (_gst_parse_yyget_extra),
(_gst_parse_yyget_lineno), (_gst_parse_yyget_column),
(_gst_parse_yyget_in), (_gst_parse_yyget_out),
(_gst_parse_yyget_leng), (_gst_parse_yyget_text),
(_gst_parse_yyset_extra), (_gst_parse_yyset_lineno),
(_gst_parse_yyset_column), (_gst_parse_yyset_in),
(_gst_parse_yyset_out), (_gst_parse_yyget_debug),
(_gst_parse_yyset_debug), (_gst_parse_yyget_lval),
(_gst_parse_yyset_lval), (_gst_parse_yylex_init),
(yy_init_globals), (_gst_parse_yylex_destroy), (yy_flex_strncpy),
(yy_flex_strlen), (_gst_parse_yyalloc), (_gst_parse_yyrealloc),
(_gst_parse_yyfree):
If the installed flex version is too old use pre-generated parser
sources. These pre-generated parser sources are always updated when
the actual flex/bison sources change but require everybody who wants
to change something in the parser to have flex >= 2.5.31 installed.
2007-04-18 12:34:51 +00:00
|
|
|
yyerror (void *scanner, graph_t *graph, const char *s)
|
2002-03-31 21:09:17 +00:00
|
|
|
{
|
2003-04-08 21:59:44 +00:00
|
|
|
/* FIXME: This should go into the GError somehow, but how? */
|
gst/gststructure.*: Add API for setting values into structures without performing a quark lookup, if the appropriate ...
Original commit message from CVS:
* gst/gststructure.c: (gst_structure_id_set),
(gst_structure_id_set_valist):
* gst/gststructure.h:
Add API for setting values into structures without performing
a quark lookup, if the appropriate quark is already known.
API: gst_structure_id_set
API: gst_structure_id_set_valist
* gst/parse/grammar.y:
* gst/parse/parse.l:
Remove some dead code shown by the coverage information.
Don't throw a critical g_warning when encountering a syntax error,
just warn and let the normal error path handle it.
* plugins/elements/gstelements.c:
Bump the rank of filesink up to PRIMARY so that it is preferred over
gnomevfssink for file:// sink uri's
* tests/check/pipelines/parse-launch.c: (expected_fail_pipe),
(GST_START_TEST), (run_delayed_test),
(gst_parse_test_element_base_init),
(gst_parse_test_element_class_init), (gst_parse_test_element_init),
(gst_parse_test_element_change_state),
(gst_register_parse_element), (parse_suite):
Beef up the tests for parse syntax to check that more error cases
fail as they are supposed to. Increases the test coverage a bit.
2006-07-26 17:04:45 +00:00
|
|
|
GST_WARNING ("Error during parsing: %s", s);
|
2002-03-31 21:09:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
gst/parse/: Make the parser reentrant and recursively callable. This requires flex >= 2.5.31, for older versions preg...
Original commit message from CVS:
Patch by: Marc-Andre Lureau <marcandre dot lureau at gmail dot com>
* gst/parse/Makefile.am:
* gst/parse/grammar.y:
* gst/parse/parse.l:
Make the parser reentrant and recursively callable. This requires flex
>= 2.5.31, for older versions pregenerated sources are used as we
can't bump the build dependency. Finally fixes #349180.
* gst/gstparse.c: (gst_parse_launch):
Drop the HAVE_MT_SAVE_FLEX #ifdefs as we always use a new enough flex
now anyway.
* docs/gst/Makefile.am:
* docs/gst/Makefile.am:
* gst/parse/grammar.tab.pre.c: (__gst_parse_strdup),
(__gst_parse_strfree), (__gst_parse_link_new),
(__gst_parse_link_free), (__gst_parse_chain_new),
(__gst_parse_chain_free), (SET_ERROR), (YYPRINTF),
(gst_parse_element_set), (gst_parse_free_link),
(gst_parse_found_pad), (gst_parse_perform_delayed_link),
(gst_parse_perform_link), (yytnamerr), (yysyntax_error), (yyerror),
(_gst_parse_launch):
* gst/parse/grammar.tab.pre.h:
* gst/parse/lex._gst_parse_yy.pre.c: (PRINT), (yy_get_next_buffer),
(yy_get_previous_state), (yy_try_NUL_trans), (input),
(_gst_parse_yyrestart), (_gst_parse_yy_switch_to_buffer),
(_gst_parse_yy_load_buffer_state), (_gst_parse_yy_create_buffer),
(_gst_parse_yy_delete_buffer), (_gst_parse_yy_init_buffer),
(_gst_parse_yy_flush_buffer), (_gst_parse_yypush_buffer_state),
(_gst_parse_yypop_buffer_state),
(_gst_parse_yyensure_buffer_stack), (_gst_parse_yy_scan_buffer),
(_gst_parse_yy_scan_string), (_gst_parse_yy_scan_bytes),
(yy_fatal_error), (_gst_parse_yyget_extra),
(_gst_parse_yyget_lineno), (_gst_parse_yyget_column),
(_gst_parse_yyget_in), (_gst_parse_yyget_out),
(_gst_parse_yyget_leng), (_gst_parse_yyget_text),
(_gst_parse_yyset_extra), (_gst_parse_yyset_lineno),
(_gst_parse_yyset_column), (_gst_parse_yyset_in),
(_gst_parse_yyset_out), (_gst_parse_yyget_debug),
(_gst_parse_yyset_debug), (_gst_parse_yyget_lval),
(_gst_parse_yyset_lval), (_gst_parse_yylex_init),
(yy_init_globals), (_gst_parse_yylex_destroy), (yy_flex_strncpy),
(yy_flex_strlen), (_gst_parse_yyalloc), (_gst_parse_yyrealloc),
(_gst_parse_yyfree):
If the installed flex version is too old use pre-generated parser
sources. These pre-generated parser sources are always updated when
the actual flex/bison sources change but require everybody who wants
to change something in the parser to have flex >= 2.5.31 installed.
2007-04-18 12:34:51 +00:00
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
GstElement *
|
2011-10-08 13:17:25 +00:00
|
|
|
priv_gst_parse_launch (const gchar *str, GError **error, GstParseContext *ctx,
|
API: gst_parse_launch_full()
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gst.c: (init_post):
* gst/gst_private.h: (_GstParseContext):
* gst/gstparse.c: (gst_parse_error_quark), (gst_parse_context_new),
(gst_parse_context_free), (gst_parse_context_get_missing_elements),
(gst_parse_launchv), (gst_parse_launchv_full), (gst_parse_launch),
(gst_parse_launch_full):
* gst/gstparse.h: (GST_PARSE_FLAG_NONE), (GST_PARSE_FLAG_FATAL_ERRORS),
(GstParseFlags), (GstParseContext):
* gst/gstutils.c: (gst_parse_bin_from_description),
(gst_parse_bin_from_description_full):
* gst/gstutils.h:
* gst/parse/grammar.y:
* gst/parse/types.h:
* win32/common/libgstreamer.def:
Add new gst_parse_*_full API (#528178):
API: gst_parse_launch_full()
API: gst_parse_launchv_full()
API: gst_parse_bin_from_description_full()
API: gst_parse_context_new()
API: gst_parse_context_free()
API: gst_parse_context_get_missing_elements()
2008-05-24 15:33:53 +00:00
|
|
|
GstParseFlags flags)
|
2002-03-31 21:09:17 +00:00
|
|
|
{
|
2003-04-08 21:59:44 +00:00
|
|
|
graph_t g;
|
|
|
|
gchar *dstr;
|
|
|
|
GSList *walk;
|
|
|
|
GstElement *ret;
|
gst/parse/: Make the parser reentrant and recursively callable. This requires flex >= 2.5.31, for older versions preg...
Original commit message from CVS:
Patch by: Marc-Andre Lureau <marcandre dot lureau at gmail dot com>
* gst/parse/Makefile.am:
* gst/parse/grammar.y:
* gst/parse/parse.l:
Make the parser reentrant and recursively callable. This requires flex
>= 2.5.31, for older versions pregenerated sources are used as we
can't bump the build dependency. Finally fixes #349180.
* gst/gstparse.c: (gst_parse_launch):
Drop the HAVE_MT_SAVE_FLEX #ifdefs as we always use a new enough flex
now anyway.
* docs/gst/Makefile.am:
* docs/gst/Makefile.am:
* gst/parse/grammar.tab.pre.c: (__gst_parse_strdup),
(__gst_parse_strfree), (__gst_parse_link_new),
(__gst_parse_link_free), (__gst_parse_chain_new),
(__gst_parse_chain_free), (SET_ERROR), (YYPRINTF),
(gst_parse_element_set), (gst_parse_free_link),
(gst_parse_found_pad), (gst_parse_perform_delayed_link),
(gst_parse_perform_link), (yytnamerr), (yysyntax_error), (yyerror),
(_gst_parse_launch):
* gst/parse/grammar.tab.pre.h:
* gst/parse/lex._gst_parse_yy.pre.c: (PRINT), (yy_get_next_buffer),
(yy_get_previous_state), (yy_try_NUL_trans), (input),
(_gst_parse_yyrestart), (_gst_parse_yy_switch_to_buffer),
(_gst_parse_yy_load_buffer_state), (_gst_parse_yy_create_buffer),
(_gst_parse_yy_delete_buffer), (_gst_parse_yy_init_buffer),
(_gst_parse_yy_flush_buffer), (_gst_parse_yypush_buffer_state),
(_gst_parse_yypop_buffer_state),
(_gst_parse_yyensure_buffer_stack), (_gst_parse_yy_scan_buffer),
(_gst_parse_yy_scan_string), (_gst_parse_yy_scan_bytes),
(yy_fatal_error), (_gst_parse_yyget_extra),
(_gst_parse_yyget_lineno), (_gst_parse_yyget_column),
(_gst_parse_yyget_in), (_gst_parse_yyget_out),
(_gst_parse_yyget_leng), (_gst_parse_yyget_text),
(_gst_parse_yyset_extra), (_gst_parse_yyset_lineno),
(_gst_parse_yyset_column), (_gst_parse_yyset_in),
(_gst_parse_yyset_out), (_gst_parse_yyget_debug),
(_gst_parse_yyset_debug), (_gst_parse_yyget_lval),
(_gst_parse_yyset_lval), (_gst_parse_yylex_init),
(yy_init_globals), (_gst_parse_yylex_destroy), (yy_flex_strncpy),
(yy_flex_strlen), (_gst_parse_yyalloc), (_gst_parse_yyrealloc),
(_gst_parse_yyfree):
If the installed flex version is too old use pre-generated parser
sources. These pre-generated parser sources are always updated when
the actual flex/bison sources change but require everybody who wants
to change something in the parser to have flex >= 2.5.31 installed.
2007-04-18 12:34:51 +00:00
|
|
|
yyscan_t scanner;
|
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
g_return_val_if_fail (str != NULL, NULL);
|
2008-05-22 15:38:54 +00:00
|
|
|
g_return_val_if_fail (error == NULL || *error == NULL, NULL);
|
2002-04-07 23:32:16 +00:00
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
g.chain = NULL;
|
|
|
|
g.links = NULL;
|
|
|
|
g.error = error;
|
API: gst_parse_launch_full()
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gst.c: (init_post):
* gst/gst_private.h: (_GstParseContext):
* gst/gstparse.c: (gst_parse_error_quark), (gst_parse_context_new),
(gst_parse_context_free), (gst_parse_context_get_missing_elements),
(gst_parse_launchv), (gst_parse_launchv_full), (gst_parse_launch),
(gst_parse_launch_full):
* gst/gstparse.h: (GST_PARSE_FLAG_NONE), (GST_PARSE_FLAG_FATAL_ERRORS),
(GstParseFlags), (GstParseContext):
* gst/gstutils.c: (gst_parse_bin_from_description),
(gst_parse_bin_from_description_full):
* gst/gstutils.h:
* gst/parse/grammar.y:
* gst/parse/types.h:
* win32/common/libgstreamer.def:
Add new gst_parse_*_full API (#528178):
API: gst_parse_launch_full()
API: gst_parse_launchv_full()
API: gst_parse_bin_from_description_full()
API: gst_parse_context_new()
API: gst_parse_context_free()
API: gst_parse_context_get_missing_elements()
2008-05-24 15:33:53 +00:00
|
|
|
g.ctx = ctx;
|
|
|
|
g.flags = flags;
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
#ifdef __GST_PARSE_TRACE
|
2003-06-29 14:05:49 +00:00
|
|
|
GST_CAT_DEBUG (GST_CAT_PIPELINE, "TRACE: tracing enabled");
|
2003-04-08 21:59:44 +00:00
|
|
|
__strings = __chains = __links = 0;
|
|
|
|
#endif /* __GST_PARSE_TRACE */
|
|
|
|
|
2014-01-14 12:45:34 +00:00
|
|
|
/* g_print("Now scanning: %s\n", str); */
|
2014-01-10 20:10:17 +00:00
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
dstr = g_strdup (str);
|
2011-10-08 13:17:25 +00:00
|
|
|
priv_gst_parse_yylex_init (&scanner);
|
|
|
|
priv_gst_parse_yy_scan_string (dstr, scanner);
|
2002-04-01 06:30:39 +00:00
|
|
|
|
2013-11-19 14:03:35 +00:00
|
|
|
#if YYDEBUG
|
2003-04-08 21:59:44 +00:00
|
|
|
yydebug = 1;
|
2002-04-01 06:30:39 +00:00
|
|
|
#endif
|
|
|
|
|
gst/parse/: Make the parser reentrant and recursively callable. This requires flex >= 2.5.31, for older versions preg...
Original commit message from CVS:
Patch by: Marc-Andre Lureau <marcandre dot lureau at gmail dot com>
* gst/parse/Makefile.am:
* gst/parse/grammar.y:
* gst/parse/parse.l:
Make the parser reentrant and recursively callable. This requires flex
>= 2.5.31, for older versions pregenerated sources are used as we
can't bump the build dependency. Finally fixes #349180.
* gst/gstparse.c: (gst_parse_launch):
Drop the HAVE_MT_SAVE_FLEX #ifdefs as we always use a new enough flex
now anyway.
* docs/gst/Makefile.am:
* docs/gst/Makefile.am:
* gst/parse/grammar.tab.pre.c: (__gst_parse_strdup),
(__gst_parse_strfree), (__gst_parse_link_new),
(__gst_parse_link_free), (__gst_parse_chain_new),
(__gst_parse_chain_free), (SET_ERROR), (YYPRINTF),
(gst_parse_element_set), (gst_parse_free_link),
(gst_parse_found_pad), (gst_parse_perform_delayed_link),
(gst_parse_perform_link), (yytnamerr), (yysyntax_error), (yyerror),
(_gst_parse_launch):
* gst/parse/grammar.tab.pre.h:
* gst/parse/lex._gst_parse_yy.pre.c: (PRINT), (yy_get_next_buffer),
(yy_get_previous_state), (yy_try_NUL_trans), (input),
(_gst_parse_yyrestart), (_gst_parse_yy_switch_to_buffer),
(_gst_parse_yy_load_buffer_state), (_gst_parse_yy_create_buffer),
(_gst_parse_yy_delete_buffer), (_gst_parse_yy_init_buffer),
(_gst_parse_yy_flush_buffer), (_gst_parse_yypush_buffer_state),
(_gst_parse_yypop_buffer_state),
(_gst_parse_yyensure_buffer_stack), (_gst_parse_yy_scan_buffer),
(_gst_parse_yy_scan_string), (_gst_parse_yy_scan_bytes),
(yy_fatal_error), (_gst_parse_yyget_extra),
(_gst_parse_yyget_lineno), (_gst_parse_yyget_column),
(_gst_parse_yyget_in), (_gst_parse_yyget_out),
(_gst_parse_yyget_leng), (_gst_parse_yyget_text),
(_gst_parse_yyset_extra), (_gst_parse_yyset_lineno),
(_gst_parse_yyset_column), (_gst_parse_yyset_in),
(_gst_parse_yyset_out), (_gst_parse_yyget_debug),
(_gst_parse_yyset_debug), (_gst_parse_yyget_lval),
(_gst_parse_yyset_lval), (_gst_parse_yylex_init),
(yy_init_globals), (_gst_parse_yylex_destroy), (yy_flex_strncpy),
(yy_flex_strlen), (_gst_parse_yyalloc), (_gst_parse_yyrealloc),
(_gst_parse_yyfree):
If the installed flex version is too old use pre-generated parser
sources. These pre-generated parser sources are always updated when
the actual flex/bison sources change but require everybody who wants
to change something in the parser to have flex >= 2.5.31 installed.
2007-04-18 12:34:51 +00:00
|
|
|
if (yyparse (scanner, &g) != 0) {
|
2005-10-10 22:49:42 +00:00
|
|
|
SET_ERROR (error, GST_PARSE_ERROR_SYNTAX,
|
|
|
|
"Unrecoverable syntax error while parsing pipeline %s", str);
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2011-10-08 13:17:25 +00:00
|
|
|
priv_gst_parse_yylex_destroy (scanner);
|
2006-07-31 15:07:30 +00:00
|
|
|
g_free (dstr);
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
goto error1;
|
|
|
|
}
|
2011-10-08 13:17:25 +00:00
|
|
|
priv_gst_parse_yylex_destroy (scanner);
|
2003-04-08 21:59:44 +00:00
|
|
|
g_free (dstr);
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2005-10-10 22:49:42 +00:00
|
|
|
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));
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
/* ensure chain is not NULL */
|
|
|
|
if (!g.chain){
|
|
|
|
g.chain=gst_parse_chain_new ();
|
|
|
|
g.chain->elements=NULL;
|
|
|
|
g.chain->first.element=NULL;
|
|
|
|
g.chain->first.name=NULL;
|
|
|
|
g.chain->first.pads=NULL;
|
|
|
|
g.chain->last.element=NULL;
|
|
|
|
g.chain->last.name=NULL;
|
|
|
|
g.chain->last.pads=NULL;
|
|
|
|
};
|
2016-01-03 10:37:57 +00:00
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
/* ensure elements is not empty */
|
|
|
|
if(!g.chain->elements){
|
|
|
|
g.chain->elements= g_slist_prepend (NULL, NULL);
|
|
|
|
};
|
2016-01-03 10:37:57 +00:00
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
/* put all elements in our bin if necessary */
|
|
|
|
if(g.chain->elements->next){
|
2018-12-15 10:42:30 +00:00
|
|
|
GstBin *bin;
|
2016-03-11 08:23:04 +00:00
|
|
|
if (flags & GST_PARSE_FLAG_PLACE_IN_BIN)
|
|
|
|
bin = GST_BIN (gst_element_factory_make ("bin", NULL));
|
|
|
|
else
|
|
|
|
bin = GST_BIN (gst_element_factory_make ("pipeline", NULL));
|
2003-04-08 21:59:44 +00:00
|
|
|
g_assert (bin);
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2006-07-27 13:26:27 +00:00
|
|
|
for (walk = g.chain->elements; walk; walk = walk->next) {
|
|
|
|
if (walk->data != NULL)
|
|
|
|
gst_bin_add (bin, GST_ELEMENT (walk->data));
|
|
|
|
}
|
2003-04-08 21:59:44 +00:00
|
|
|
g_slist_free (g.chain->elements);
|
2014-01-10 20:10:17 +00:00
|
|
|
g.chain->elements = g_slist_prepend (NULL, bin);
|
2016-01-03 10:37:57 +00:00
|
|
|
}
|
2014-01-10 20:10:17 +00:00
|
|
|
|
|
|
|
ret = (GstElement *) g.chain->elements->data;
|
|
|
|
g_slist_free (g.chain->elements);
|
|
|
|
g.chain->elements=NULL;
|
|
|
|
gst_parse_free_chain (g.chain);
|
|
|
|
g.chain = NULL;
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2014-01-10 20:10:17 +00:00
|
|
|
|
|
|
|
/* resolve and perform links */
|
2004-04-19 17:40:24 +00:00
|
|
|
for (walk = g.links; walk; walk = walk->next) {
|
2003-04-08 21:59:44 +00:00
|
|
|
link_t *l = (link_t *) walk->data;
|
2014-01-10 20:10:17 +00:00
|
|
|
int err;
|
|
|
|
err=gst_resolve_reference( &(l->src), ret);
|
|
|
|
if (err) {
|
|
|
|
if(-1==err){
|
2008-05-25 13:56:38 +00:00
|
|
|
SET_ERROR (error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
|
2014-01-10 20:10:17 +00:00
|
|
|
"No src-element named \"%s\" - omitting link", l->src.name);
|
|
|
|
}else{
|
2008-05-25 13:56:38 +00:00
|
|
|
/* probably a missing element which we've handled already */
|
2014-01-10 20:10:17 +00:00
|
|
|
SET_ERROR (error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
|
|
|
|
"No src-element found - omitting link");
|
|
|
|
}
|
|
|
|
gst_parse_free_link (l);
|
|
|
|
continue;
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
2014-01-10 20:10:17 +00:00
|
|
|
|
|
|
|
err=gst_resolve_reference( &(l->sink), ret);
|
|
|
|
if (err) {
|
|
|
|
if(-1==err){
|
2008-05-25 13:56:38 +00:00
|
|
|
SET_ERROR (error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
|
2014-01-10 20:10:17 +00:00
|
|
|
"No sink-element named \"%s\" - omitting link", l->src.name);
|
|
|
|
}else{
|
2008-05-25 13:56:38 +00:00
|
|
|
/* probably a missing element which we've handled already */
|
2014-01-10 20:10:17 +00:00
|
|
|
SET_ERROR (error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
|
|
|
|
"No sink-element found - omitting link");
|
|
|
|
}
|
|
|
|
gst_parse_free_link (l);
|
|
|
|
continue;
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
|
|
|
gst_parse_perform_link (l, &g);
|
|
|
|
}
|
|
|
|
g_slist_free (g.links);
|
2002-04-07 23:32:16 +00:00
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
out:
|
|
|
|
#ifdef __GST_PARSE_TRACE
|
2005-10-10 22:49:42 +00:00
|
|
|
GST_CAT_DEBUG (GST_CAT_PIPELINE,
|
|
|
|
"TRACE: %u strings, %u chains and %u links left", __strings, __chains,
|
|
|
|
__links);
|
2003-04-08 21:59:44 +00:00
|
|
|
if (__strings || __chains || __links) {
|
2005-10-10 22:49:42 +00:00
|
|
|
g_warning ("TRACE: %u strings, %u chains and %u links left", __strings,
|
|
|
|
__chains, __links);
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
|
|
|
#endif /* __GST_PARSE_TRACE */
|
2002-04-07 23:32:16 +00:00
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
return ret;
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
error1:
|
|
|
|
if (g.chain) {
|
2014-01-10 20:10:17 +00:00
|
|
|
gst_parse_free_chain (g.chain);
|
2014-01-16 11:28:47 +00:00
|
|
|
g.chain=NULL;
|
2003-04-08 21:59:44 +00:00
|
|
|
}
|
2004-04-19 17:40:24 +00:00
|
|
|
|
|
|
|
g_slist_foreach (g.links, (GFunc)gst_parse_free_link, NULL);
|
2003-04-08 21:59:44 +00:00
|
|
|
g_slist_free (g.links);
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2004-05-04 17:00:11 +00:00
|
|
|
if (error)
|
|
|
|
g_assert (*error);
|
2003-04-08 21:59:44 +00:00
|
|
|
ret = NULL;
|
2011-02-14 13:39:21 +00:00
|
|
|
|
2003-04-08 21:59:44 +00:00
|
|
|
goto out;
|
2002-03-31 21:09:17 +00:00
|
|
|
}
|