mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
7a3a27d0c1
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.
146 lines
3.2 KiB
Text
146 lines
3.2 KiB
Text
%{
|
|
#include <math.h>
|
|
#include <string.h>
|
|
|
|
#include <glib/gprintf.h>
|
|
|
|
#include "../gst_private.h"
|
|
|
|
#include "types.h"
|
|
#include "../gstinfo.h"
|
|
#include "../gsturi.h"
|
|
#include "grammar.tab.h"
|
|
|
|
/* Override the default ECHO so as to avoid fortify warnings. Ignore the
|
|
embedded-NUL case for now. We know yytext is NUL-terminated. */
|
|
#define ECHO g_fprintf(yyout, "%s", yytext)
|
|
|
|
#ifdef G_HAVE_ISO_VARARGS
|
|
#define PRINT(...) GST_CAT_DEBUG (GST_CAT_PIPELINE, "flex: " __VA_ARGS__)
|
|
#elif defined(G_HAVE_GNUC_VARARGS)
|
|
#define PRINT(args...) GST_CAT_DEBUG (GST_CAT_PIPELINE, "flex: " args)
|
|
#else
|
|
static inline void
|
|
PRINT (const char *format, ...)
|
|
{
|
|
va_list varargs;
|
|
|
|
va_start (varargs, format);
|
|
GST_CAT_LEVEL_LOG_valist (GST_CAT_PIPELINE, GST_LEVEL_DEBUG, NULL,
|
|
format, varargs);
|
|
va_end (varargs);
|
|
}
|
|
#endif
|
|
|
|
%}
|
|
|
|
_operator [(){}.!,;=]
|
|
_identifier [[:alpha:]][[:alnum:]\-_%:]*
|
|
|
|
_char ("\\".)|([^[:space:]])
|
|
_string {_char}+|("\""([^\"]|"\\\"")*"\"")|("'"([^']|"\\\'")*"'")
|
|
|
|
_assign [[:space:]]*"="[[:space:]]*
|
|
|
|
_protocol [[:alpha:]][[:alnum:]+-\.]*
|
|
_url ({_protocol}"://"{_string}|["."{_identifier}]?"/"{_string})|({_protocol}"://")
|
|
|
|
/* we must do this here, because nearly everything matches a {_string} */
|
|
_assignment {_identifier}{_assign}{_string}
|
|
|
|
/* get pad/element references and stuff with dots right */
|
|
_padref "."{_identifier}
|
|
_ref {_identifier}"."{_identifier}?
|
|
_binref {_identifier}[[:space:]]*"."[[:space:]]*"("
|
|
|
|
/* links */
|
|
_mimechar [[:alnum:]-]
|
|
_mimetype {_mimechar}+"/"{_mimechar}+
|
|
_capschar ("\\".)|([^\;!])
|
|
_capsstring {_capschar}+
|
|
_caps {_mimetype}(","[^!]|{_capsstring})*
|
|
_link ("!"[[:space:]]*{_caps}([[:space:]]*(";"[[:space:]]*{_caps})*[[:space:]]*)*"!")|("!")
|
|
|
|
%x value
|
|
%option noyywrap
|
|
%option nounput
|
|
%option reentrant
|
|
%option bison-bridge
|
|
%%
|
|
|
|
{_assignment} {
|
|
/* "=" */
|
|
PRINT ("ASSIGNMENT: %s", yytext);
|
|
yylval->s = gst_parse_strdup (yytext);
|
|
BEGIN (INITIAL);
|
|
return ASSIGNMENT;
|
|
}
|
|
|
|
{_padref} {
|
|
yytext++;
|
|
PRINT ("PADREF: %s", yytext);
|
|
yylval->s = gst_parse_strdup (yytext);
|
|
BEGIN (INITIAL);
|
|
return PADREF;
|
|
}
|
|
|
|
{_ref} {
|
|
PRINT ("REF: %s", yytext);
|
|
yylval->s = gst_parse_strdup (yytext);
|
|
BEGIN (INITIAL);
|
|
return REF;
|
|
}
|
|
|
|
{_binref} {
|
|
gchar *pos = yytext;
|
|
while (!g_ascii_isspace (*pos) && (*pos != '.')) pos++;
|
|
*pos = '\0';
|
|
PRINT ("BINREF: %s", yytext);
|
|
yylval->s = gst_parse_strdup (yytext);
|
|
BEGIN (INITIAL);
|
|
return BINREF;
|
|
}
|
|
|
|
{_identifier} {
|
|
PRINT ("IDENTIFIER: %s", yytext);
|
|
yylval->s = gst_parse_strdup (yytext);
|
|
BEGIN (INITIAL);
|
|
return IDENTIFIER;
|
|
}
|
|
|
|
{_link} {
|
|
gchar *c = yytext;
|
|
PRINT ("LINK: %s", yytext);
|
|
c++;
|
|
if (*c) {
|
|
while (g_ascii_isspace (*c)) c++;
|
|
c = yylval->s = gst_parse_strdup (c);
|
|
while (*c) c++;
|
|
if (*--c != '!')
|
|
g_assert_not_reached ();
|
|
while (g_ascii_isspace (*--c));
|
|
*++c = '\0';
|
|
} else {
|
|
yylval->s = NULL;
|
|
}
|
|
BEGIN (INITIAL);
|
|
return LINK;
|
|
}
|
|
{_url} {
|
|
PRINT ("URL: %s", yytext);
|
|
yylval->s = g_strdup (yytext);
|
|
gst_parse_unescape (yylval->s);
|
|
BEGIN (INITIAL);
|
|
return PARSE_URL;
|
|
}
|
|
|
|
{_operator} { PRINT ("OPERATOR: [%s]", yytext); return *yytext; }
|
|
|
|
[[:space:]]+ { PRINT ("SPACE: [%s]", yytext); }
|
|
|
|
. {
|
|
PRINT ("Invalid Lexer element: %s\n", yytext);
|
|
return *yytext;
|
|
}
|
|
|
|
%%
|