forked from pcyin/NL2code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
parse_hiro.py
93 lines (76 loc) · 2.44 KB
/
parse_hiro.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import ast
import sys
import re
import inspect
def typename(x):
return type(x).__name__
def escape(text):
text = text \
.replace('"', '`') \
.replace('\'', '`') \
.replace(' ', '-SP-') \
.replace('\t', '-TAB-') \
.replace('\n', '-NL-') \
.replace('(', '-LRB-') \
.replace(')', '-RRB-') \
.replace('|', '-BAR-')
return repr(text)[1:-1] if text else '-NONE-'
def makestr(node):
#if node is None or isinstance(node, ast.Pass):
# return ''
if isinstance(node, ast.AST):
n = 0
nodename = typename(node)
s = '(' + nodename
for chname, chval in ast.iter_fields(node):
chstr = makestr(chval)
if chstr:
s += ' (' + chname + ' ' + chstr + ')'
n += 1
if not n:
s += ' -' + nodename + '-' # (Foo) -> (Foo -Foo-)
s += ')'
return s
elif isinstance(node, list):
n = 0
s = '(list'
for ch in node:
chstr = makestr(ch)
if chstr:
s += ' ' + chstr
n += 1
s += ')'
return s if n else ''
elif isinstance(node, str):
return '(str ' + escape(node) + ')'
elif isinstance(node, bytes):
return '(bytes ' + escape(str(node)) + ')'
else:
return '(' + typename(node) + ' ' + str(node) + ')'
def main():
p_elif = re.compile(r'^elif\s?')
p_else = re.compile(r'^else\s?')
p_try = re.compile(r'^try\s?')
p_except = re.compile(r'^except\s?')
p_finally = re.compile(r'^finally\s?')
p_decorator = re.compile(r'^@.*')
for l in ["""val = Header ( val , encoding ) . encode ( )"""]: # val = ', ' . join ( sanitize_address ( addr , encoding ) for addr in getaddresses ( ( val , ) ) )
l = l.strip()
if not l:
print()
sys.stdout.flush()
continue
if p_elif.match(l): l = 'if True: pass\n' + l
if p_else.match(l): l = 'if True: pass\n' + l
if p_try.match(l): l = l + 'pass\nexcept: pass'
elif p_except.match(l): l = 'try: pass\n' + l
elif p_finally.match(l): l = 'try: pass\n' + l
if p_decorator.match(l): l = l + '\ndef dummy(): pass'
if l[-1] == ':': l = l + 'pass'
parse = ast.parse(l)
parse = parse.body[0]
dump = makestr(parse)
print(dump)
sys.stdout.flush()
if __name__ == '__main__':
main()