-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtree-sitter-parser.py
executable file
·55 lines (45 loc) · 1.38 KB
/
tree-sitter-parser.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python3
import argparse
import os
from io import StringIO
import yaml
from tree_sitter_parser import (
EMPTY_CONFIG,
init_parsers,
parse_and_translate,
pretty_print_ast,
)
def main():
parser = argparse.ArgumentParser()
parser.add_argument("file", help="path to the file to parse")
parser.add_argument("language", help="language of to the file to parse")
parser.add_argument(
"--raw", action="store_true", help="deactivate the rewrite rules"
)
parser.add_argument(
"--pretty",
action="store_true",
help="pretty print the AST instead of using XML",
)
args = parser.parse_args()
script_dir = os.path.abspath(os.path.dirname(os.path.realpath(__file__)))
rules_file = os.path.join(script_dir, "rules.yml")
with open(rules_file, "r") as stream:
tree_rewrite_rules = yaml.safe_load(stream)
config = (
tree_rewrite_rules[args.language]
if not args.raw and args.language in tree_rewrite_rules
else EMPTY_CONFIG
)
parsers = init_parsers(script_dir)
doc = parse_and_translate(
parsers[args.language], config, open(args.file, "rb").read()
)
if args.pretty:
out = StringIO()
pretty_print_ast(doc.firstChild, out)
print(out.getvalue())
else:
print(doc.toprettyxml())
if __name__ == "__main__":
main()