-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRegEx.py
136 lines (101 loc) · 3.09 KB
/
RegEx.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
class RegEx:
def isNullable(self): raise Exception()
def derive(self, c): raise Exception()
def matches(self, string):
if len(string) == 0:
return self.isNullable()
else:
return self.derive(string[0]).matches(string[1:])
class Empty(RegEx):
def isNullable(self):
return False
def derive(self, c):
return self
class Blank(RegEx):
def isNullable(self):
return True
def derive(self, c):
return Empty()
class Primitive(RegEx):
def __init__(self, c):
self.c = c
def isNullable(self):
return False
def derive(self, c):
if self.c == c:
return Blank()
else:
return Empty()
class Choice(RegEx):
def __init__(self, this, that):
self.this = this
self.that = that
def isNullable(self):
return self.this.isNullable() or self.that.isNullable()
def derive(self, c):
return Choice(self.this.derive(c), self.that.derive(c))
class Repetition(RegEx):
def __init__(self, base):
self.base = base
def isNullable(self):
return True
def derive(self, c):
return Sequence(self.base.derive(c), self)
class Sequence(RegEx):
def __init__(self, left, right):
self.left = left
self.right = right
def isNullable(self):
return self.left.isNullable() and self.right.isNullable()
def derive(self, c):
if (self.left.isNullable()):
return Choice(Sequence(self.left.derive(c), self.right),
self.right.derive(c))
else:
return Sequence(self.left.derive(c), self.right)
class Intersection(RegEx):
def __init__(self, this, that):
self.this = this
self.that = that
def isNullable(self):
return self.this.isNullable() and self.that.isNullable()
def derive(self, c):
return Intersection(self.this.derive(c), self.that.derive(c))
class Difference(RegEx):
def __init__(self, left, right):
self.left = left
self.right = right
def isNullable(self):
return self.left.isNullable() and not self.right.isNullable()
def derive(self, c):
return Difference(self.left.derive(c), self.right.derive(c))
class Complement(RegEx):
def __init__(self, base):
self.base = base
def isNullable(self):
return not base.isNullable()
def derive(self, c):
return Complement(self.base.derive(c))
# tests
print(Empty().matches("anything"))
print(Blank().matches("anything"))
print(Blank().matches(""))
print(Primitive('c').matches("c"))
f = Primitive('f')
print(f.matches('f'))
o = Primitive('o')
foo = Sequence(f, Sequence(o,o))
print(foo.matches("foo"))
print(foo.matches("bar"))
b = Primitive('b')
a = Primitive('a')
r = Primitive('r')
bar = Sequence(b, Sequence(a,r))
print(bar.matches("bar"))
foobar = Choice(foo, bar)
print(foobar.matches("foo"))
print(foobar.matches("bar"))
print(foobar.matches("foobar"))
foobarstar = Repetition(foobar)
print(foobarstar.matches("foobarfoo"))
print(foobarstar.matches("foobarfoof"))