Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 4b37228823fecb73fe70dc009e696a7805b0833f authored by Ethan Furman on 08 December 2020, 22:29:02 UTC
[3.9] [Enum] reformat and add doc strings (GH-23705). (GH-23707)
Tip revision: 4b37228
__main__.py
import argparse

from .pgen import ParserGenerator


def main():
    parser = argparse.ArgumentParser(description="Parser generator main program.")
    parser.add_argument(
        "grammar", type=str, help="The file with the grammar definition in EBNF format"
    )
    parser.add_argument("tokens", type=str, help="The file with the token definitions")
    parser.add_argument(
        "graminit_h",
        type=argparse.FileType("w"),
        help="The path to write the grammar's non-terminals as #defines",
    )
    parser.add_argument(
        "graminit_c",
        type=argparse.FileType("w"),
        help="The path to write the grammar as initialized data",
    )

    parser.add_argument("--verbose", "-v", action="count")
    parser.add_argument(
        "--graph",
        type=argparse.FileType("w"),
        action="store",
        metavar="GRAPH_OUTPUT_FILE",
        help="Dumps a DOT representation of the generated automata in a file",
    )

    args = parser.parse_args()

    p = ParserGenerator(
        args.grammar, args.tokens, verbose=args.verbose, graph_file=args.graph
    )
    grammar = p.make_grammar()
    grammar.produce_graminit_h(args.graminit_h.write)
    grammar.produce_graminit_c(args.graminit_c.write)


if __name__ == "__main__":
    main()
back to top