-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathir_python.py
225 lines (165 loc) · 6.2 KB
/
ir_python.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
class PythonInstr:
def __init__(self, pc, *some_children):
self.pc = pc
self.children = list([*some_children])
def replace(self, curr, next_curr):
i = self.children.index(curr)
if(i >= 0):
self.children[i] = next_curr
def append(self, *other):
self.children += list([*other])
def __str__(self):
return f"PC {self.pc} TYPE: {type(self)} "
def dotty_repr(self):
return f"{id(self)} [label=\"unknown\" color=\"black\" fillcolor=\"gray\" style=\"filled\" ]\n"
def dotty_str(self, reset_visited=False):
children_link = [f"{id(self)} -> {id(c)}\n" for c in self.children]
return "".join(children_link)+ self.dotty_repr()
def navigate(self,action):
visited = []
to_visit = [self]
while len(to_visit) > 0:
e = to_visit.pop()
visited.append(e)
#print(e,'->', e.children)
action(e)
#append children in reversed order because elements to visit
#are popped from to_visit list. Hence in order to have
# as first elem to visiti the first children, just push
# children in to_visit list in reversed order.
for child in reversed(e.children):
#print('\t',child)
if not (child in visited or child in to_visit):
to_visit.append(child)
def getNodes(self):
def accumulate(l):
def action_accumulate(x):
l.append(x)
return action_accumulate
node_list = []
action = accumulate(node_list)
self.navigate(action)
return node_list
def execute(self, string, cur_char_index ):
raise NotImplementedError
#sub_regex = namedtuple('sub_regex', ['start', 'end'])
class Accept(PythonInstr):
def __init__(self,pc):
super().__init__(pc)
def dotty_repr(self):
return f"{id(self)} [label=\"{self.pc} : \\\\00 => ✓\" color=\"black\" fillcolor=\"#1ac0c6\" style=\"filled\"]\n"
def execute(self, string, cur_char_index ):
if(len(string)-1 == cur_char_index):
return [Accepted]
else:
return []
def __str__(self):
return f"PC {self.pc} ACCEPT \\0 ✓ "
class Accept_Partial(PythonInstr):
def __init__(self,pc):
super().__init__(pc)
def dotty_repr(self):
return f"{id(self)} [label=\"{self.pc} : ✓\" color=\"black\" fillcolor=\"#1ac0c6\" style=\"filled\"]\n"
def execute(self, string, cur_char_index ):
return [Accepted]
def __str__(self):
return f"PC {self.pc} ACCEPT ✓ "
class Split(PythonInstr):
def __init__(self,pc, *children):
super().__init__(pc,*children)
def dotty_repr(self):
return f"{id(self)} [label=\"{self.pc} : SPLIT\" color=\"black\" fillcolor=\"#dee0e6\" style=\"filled\"]\n"
def execute(self, string, cur_char_index ):
return [Continuation(self.children[0], string, cur_char_index),
Continuation(self.children[1], string, cur_char_index)]
def __str__(self):
return f"PC {self.pc} SPLIT {self.children[0].pc, self.children[1].pc} "
class Match(PythonInstr):
def __init__(self, pc, achar, child):
super().__init__(pc, child)
if isinstance( achar, str):
self.char = bytes(achar, 'utf-8', 'ignore')[0]
else:
self.char = achar
def dotty_repr(self):
return f"{id(self)} [label =\"{self.pc} : {chr(self.char)}\" color=\"black\" fillcolor=\"#ffa822\" style=\"filled\"]\n"
def execute(self, string, cur_char_index ):
if cur_char_index < len(string) and string[cur_char_index] == self.char :
return [Continuation(self.children[0], string, cur_char_index+1)]
else :
return []
def __str__(self):
c = chr(self.char)
return f"PC {self.pc} MATCH {c} "
class NotMatch(PythonInstr):
def __init__(self, pc, achar, child):
super().__init__(pc, child)
if isinstance( achar, str):
self.char = bytes(achar, 'utf-8', 'ignore')[0]
else:
self.char = achar
def dotty_repr(self):
return f"{id(self)} [label =\"{self.pc} : ^{chr(self.char)}\" color=\"black\" fillcolor=\"#ffa822\" style=\"filled\"]\n"
def execute(self, string, cur_char_index ):
if cur_char_index < len(string) and string[cur_char_index] != self.char :
return [Continuation(self.children[0], string, cur_char_index)]
else :
return []
def __str__(self):
c = chr(self.char)
return f"PC {self.pc} NOT MATCH {c} "
class Match_any(PythonInstr):
def __init__(self, pc, *children):
super().__init__(pc, *children)
def dotty_repr(self):
return f"{id(self)} [label =\"{self.pc} : \\.\" color=\"black\" fillcolor=\"#ffa822\" style=\"filled\"]\n"
def execute(self, string, cur_char_index ):
if cur_char_index < len(string):
return [Continuation(self.children[0], string, cur_char_index+1)]
else:
return []
def __str__(self):
return f"PC {self.pc} MATCH ANY "
class Jmp(PythonInstr):
def __init__(self, pc, next):
super().__init__(pc, next)
def dotty_repr(self):
return f"{id(self)} [label=\"{self.pc} : JMP\" color=\"black\" fillcolor=\"#2792ce\" style=\"filled\"]\n"
def execute(self, string, cur_char_index ):
return [Continuation(self.children[0],string,cur_char_index)]
def __str__(self):
return f"PC {self.pc} JMP to {self.children[0].pc} "
class End_Without_Accepting(PythonInstr):
def __init__(self, pc):
super().__init__(pc)
def dotty_repr(self):
return f" {id(self)} [label =\"{self.pc} : ✗\" color=\"black\" fillcolor=\"#ff6150\" style=\"filled\"]\n"
def execute(self, string, cur_char_index ):
return []
def __str__(self):
return f"PC {self.pc} ✗ "
class PlaceholderNop(PythonInstr):
def __init__(self, pc, child):
super().__init__(pc, child)
def dotty_repr(self):
return f" {id(self)} [label =\"{self.pc} : Nop\" color=\"black\" fillcolor=\"white\" style=\"filled\"]\n"
def execute(self, string, cur_char_index ):
return [Continuation(self.children[0], string, cur_char_index)]
def __str__(self):
return f"PC {self.pc} NOP "
class Continuation:
def __init__(self, instr, string, cur_char_index):
self.instr = instr
self.string = string
self.cur_char_index = cur_char_index
def execute(self):
return self.instr.execute(self.string, self.cur_char_index)
def __str__(self):
old_chars = self.string[:self.cur_char_index]
cur_char = bytes([self.string[self.cur_char_index]])
next_chars = self.string[self.cur_char_index+1:] if self.cur_char_index+1 < len(self.string) else ""
return f'@ {old_chars}[{cur_char}]{next_chars} : {self.instr}'
def __repr__(self):
return self.__str__()
#object to signal completion
Accepted = {}