-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregexToNFA.py
275 lines (223 loc) · 7.91 KB
/
regexToNFA.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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
from colorama import Style
import jsonManager
import sys
from graphviz import Digraph
specialChar = [
"*",
"|",
"+",
".",
"(",
")",
"[",
"]",
"{",
"}",
".",
"-",
"epsilon"
]
def addConcatenationSymbol(regex, regSize):
concRegex = ""
for i in range(regSize - 1):
concRegex += regex[i]
if regex[i] not in specialChar:
if regex[i+1] not in specialChar or regex[i+1] == "(" or regex[i+1] == "[":
concRegex += "."
elif regex[i] == ")" and regex[i+1] == "(":
concRegex += "."
elif regex[i] == "]" and regex[i+1] == "[":
concRegex += "."
elif (regex[i] == "*" or regex[i] == "+") and (regex[i+1] == "(" or regex[i+1] == "["):
concRegex += "."
elif (regex[i] == "*" or regex[i] == "+") and regex[i+1] not in specialChar:
concRegex += "."
elif (regex[i] == ")" or regex[i] == "]") and regex[i+1] not in specialChar:
concRegex += "."
concRegex += regex[-1]
return concRegex
def compPrecedence(first, second):
precedence = ["|", ".", "+", "*"]
return precedence.index(first) > precedence.index(second)
def getPostFix(concatenatedRegex, concSize):
stack = []
postFix = ""
i = 0
while i < concSize:
concReChar = concatenatedRegex[i]
if concReChar not in specialChar or concReChar == "*" or concReChar == "+" or concReChar == "[":
if (concReChar == "["):
for j in range(5):
postFix += concatenatedRegex[i+j]
i += 4
else:
postFix += concReChar
elif concReChar == ")":
while len(stack) > 0 and stack[-1] != "(":
postFix += stack.pop()
stack.pop()
elif concReChar == "(":
stack.append(concReChar)
elif len(stack) == 0 or stack[-1] == "(" or compPrecedence(concReChar, stack[-1]):
stack.append(concReChar)
else:
while len(stack) > 0 and stack[-1] != "(" and not compPrecedence(concReChar, stack[-1]):
postFix += stack.pop()
stack.append(concReChar)
i += 1
while len(stack) > 0:
postFix += stack.pop()
return postFix
class RegexType:
Character = 1
Concatenate = 2
OR = 3
STAR = 4
PLUS = 5
class State:
def __init__(self):
self.next_state = {}
class ExpressionTree:
def __init__(self, charType, value=None):
self.charType = charType
self.value = value
self.left = None
self.right = None
def computeExpressionTree(postFix, postSize):
stack = []
i = 0
while i < postSize:
postChar = postFix[i]
if postChar == "|":
tree = ExpressionTree(RegexType.OR)
tree.right = stack.pop()
tree.left = stack.pop()
stack.append(tree)
elif postChar == ".":
tree = ExpressionTree(RegexType.Concatenate)
tree.right = stack.pop()
tree.left = stack.pop()
stack.append(tree)
elif postChar == "*":
tree = ExpressionTree(RegexType.STAR)
tree.left = stack.pop()
stack.append(tree)
elif postChar == "+":
tree = ExpressionTree(RegexType.PLUS)
tree.left = stack.pop()
stack.append(tree)
else:
value = ""
if (postChar == "["):
for j in range(5):
value += postFix[i+j]
i += 4
stack.append(ExpressionTree(RegexType.Character, value))
else:
stack.append(ExpressionTree(RegexType.Character, postChar))
i += 1
return stack[0]
def doConcatenation(expTree):
leftNFA = computeRegex(expTree.left)
rightNFA = computeRegex(expTree.right)
leftNFA[1].next_state["epsilon"] = [rightNFA[0]]
return leftNFA[0], rightNFA[1]
def doOR(expTree):
start = State()
end = State()
firstNFA = computeRegex(expTree.left)
secondNFA = computeRegex(expTree.right)
start.next_state["epsilon"] = [firstNFA[0], secondNFA[0]]
firstNFA[1].next_state["epsilon"] = [end]
secondNFA[1].next_state["epsilon"] = [end]
return start, end
def doSTAR (expTree):
start = State()
end = State()
starred_nfa = computeRegex(expTree.left)
start.next_state["epsilon"] = [starred_nfa[0], end]
starred_nfa[1].next_state["epsilon"] = [starred_nfa[0], end]
return start, end
def doPLUS (expTree):
start = State()
end = State()
starred_nfa = computeRegex(expTree.left)
start.next_state["epsilon"] = [starred_nfa[0]]
starred_nfa[1].next_state["epsilon"] = [starred_nfa[0], end]
return start, end
def doChar (expTree):
start = State ()
end = State()
start.next_state[expTree.value] = [end]
return start, end
def computeRegex (expTree):
if expTree.charType == RegexType.Concatenate:
return doConcatenation(expTree)
elif expTree.charType == RegexType.OR:
return doOR(expTree)
elif expTree.charType == RegexType.STAR:
return doSTAR(expTree)
elif expTree.charType == RegexType.PLUS:
return doPLUS(expTree)
else:
return doChar(expTree)
def arrangeNFA(computedRegex):
global transitions
transitions = []
arrangeTransitions(computedRegex[0], [], {computedRegex[0] : 1})
isTerminating()
def isTerminating ():
global transitions
for state in jsonManager.NFA:
if (len (jsonManager.NFA[state]) == 1):
jsonManager.NFA[state]["IsTerminating"] = True
def arrangeTransitions (state, statesDone, symbolTable):
global transitions
if state in statesDone :
return
statesDone.append (state)
for symbol in list (state.next_state):
for nextSymbol in state.next_state[symbol]:
if nextSymbol not in symbolTable:
symbolTable[nextSymbol] = sorted(symbolTable.values())[-1] + 1
jsonManager.createNewState ("S" + str (symbolTable[nextSymbol]), jsonManager.NFA)
transitions.append (["S" + str (symbolTable[state]), symbol, "S" + str (symbolTable[nextSymbol])])
jsonManager.addTransition ("S" + str (symbolTable[state]), "S" + str (symbolTable[nextSymbol]), symbol, jsonManager.NFA)
arrangeTransitions (nextSymbol, statesDone, symbolTable)
def setTerminatingNode(graph):
for state in jsonManager.NFA:
if (state != "StartingState"):
if jsonManager.NFA[state]["IsTerminating"] == False:
graph.attr('node', shape = 'circle')
graph.node(state)
if state == 'S1':
graph.attr('node', shape='none')
graph.node('')
graph.edge("", state)
else:
graph.attr('node', shape = 'doublecircle')
graph.node(state)
if state == jsonManager.NFA["StartingState"]:
graph.attr('node', shape='none')
graph.node('')
graph.edge("", state)
def setTransistions(graph):
global transitions
for transition in transitions:
graph.edge(transition[0], transition[2], label=('ε', transition[1])[transition[1] != 'epsilon'])
fileName = "NFA.json"
file = "NFA"
if (len(sys.argv) == 6):
fileName = sys.argv[4]
file = sys.argv[5]
regex = sys.argv[2]
concatenatedRegex = addConcatenationSymbol(regex, len(regex))
postFix = getPostFix(concatenatedRegex, len(concatenatedRegex))
expTree = computeExpressionTree(postFix, len(postFix))
computedRegex = computeRegex(expTree)
arrangeNFA(computedRegex)
jsonManager.createJSONFile (fileName, jsonManager.NFA)
finiteGraph = Digraph(graph_attr={'rankdir': 'LR'})
setTerminatingNode (finiteGraph)
setTransistions(finiteGraph)
finiteGraph.render(file, view =True, format= 'png', overwrite_source= True)