Files
@ 171b6c89df1d
Branch filter:
Location: Regular-Expresso/regexp.py
171b6c89df1d
2.4 KiB
text/x-python
a Python prototype
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 | from abc import abstractmethod
class Token:
is_skippable = False
@abstractmethod
def list_first(self):
pass
@abstractmethod
def list_last(self):
pass
@abstractmethod
def list_neighbours(self):
pass
class Symbol(Token):
def __init__(self, position, value):
self.position = position
self.value = value
def list_first(self):
yield self.position
def list_last(self):
yield self.position
def list_neighbours(self):
yield from []
def __str__(self):
return self.value
class Asterisk(Token):
is_skippable = True
def __init__(self, content: Token):
self.content = content
def list_first(self):
yield from self.content.list_first()
def list_last(self):
yield from self.content.list_last()
def list_neighbours(self):
yield from self.content.list_neighbours()
for x in self.list_last():
for y in self.list_first():
yield (x, y)
def __str__(self):
return str(self.content) + "*"
class Chain(Token):
def __init__(self, content: list):
self.content = content
def list_first(self):
for token in self.content:
yield from token.list_first()
if not token.is_skippable:
break
def list_last(self):
for token in reversed(self.content):
yield from token.list_last()
if not token.is_skippable:
break
def list_neighbours(self):
previous = []
for token in self.content:
for t in previous:
for x in t.list_last():
for y in token.list_first():
yield (x, y)
yield from token.list_neighbours()
if token.is_skippable:
previous.append(token)
else:
previous = [token]
def __str__(self):
return "(" + "".join(str(x) for x in self.content) + ")"
def find_closing_parenthesis(pattern, k):
counter = 0
for (i, c) in enumerate(pattern[k:]):
if c == "(":
counter += 1
elif c == ")":
counter -= 1
if counter == 0:
return k+i
return None
def parse(pattern, offset=0):
res = []
i = 0
while i < len(pattern):
c = pattern[i]
if c == "(":
j = find_closing_parenthesis(pattern, i)
inner_content = parse(pattern[i+1:j], offset+i+1)
res.append(inner_content)
i = j+1
elif c == "*":
token = res.pop()
res.append(Asterisk(token))
i += 1
else:
res.append(Symbol(i+offset, c))
i += 1
return Chain(res)
if __name__ == "__main__":
for pattern in ["a*b*", "(ab)*", "a((bc)*d)*"]:
print("#", pattern)
p = parse(pattern)
print(p, list(p.list_first()), list(p.list_last()))
print(list(p.list_neighbours()))
print()
|