[Tools] GstPipe String Parser
authorMyungJoo Ham <myungjoo.ham@samsung.com>
Fri, 3 Jul 2020 01:05:23 +0000 (10:05 +0900)
committerMyungJoo Ham <myungjoo.ham@samsung.com>
Tue, 1 Dec 2020 09:18:24 +0000 (18:18 +0900)
commit37be40a94aef84ada3a43f20e6e3244ef0f8fa9a
tree19c7f30f47e95fa4f742fb096f04ff563994c7e6
parentfdcd4d5de024e182576cb507ddd728643e439770
[Tools] GstPipe String Parser

Rather than rewriting lex/yacc code from scratch for python,
modify GST's lex/yacc (flex/bison) C code and call it
from python.

This is the first commit of parser and simply imports
GST-Parser code without touching it.

Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
tools/development/parser/.gitignore [new file with mode: 0644]
tools/development/parser/gen_grammar.py.in [new file with mode: 0755]
tools/development/parser/gen_lex.py.in [new file with mode: 0755]
tools/development/parser/grammar.y [new file with mode: 0644]
tools/development/parser/meson.build [new file with mode: 0644]
tools/development/parser/parse.l [new file with mode: 0644]
tools/development/parser/types.h [new file with mode: 0644]