2017-07-27 09:14:45 +02:00
|
|
|
from collections import namedtuple
|
|
|
|
|
import re
|
|
|
|
|
|
2017-07-27 15:18:17 +02:00
|
|
|
Operator = namedtuple("Operator", [ "func", "nargs" , "prec", "assoc" ]) # export
|
|
|
|
|
L, R = 'Left Right'.split()
|
|
|
|
|
ARG, KEYW, LPAREN, RPAREN = 'arg kw ( )'.split()
|
2017-07-27 09:14:45 +02:00
|
|
|
|
|
|
|
|
class Stack:
|
|
|
|
|
|
|
|
|
|
def __init__(self, itemlist=[]):
|
|
|
|
|
self.items = itemlist
|
|
|
|
|
|
|
|
|
|
def isEmpty(self):
|
|
|
|
|
if self.items == []:
|
|
|
|
|
return True
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
def peek(self):
|
|
|
|
|
return self.items[-1:][0]
|
|
|
|
|
|
|
|
|
|
def pop(self):
|
|
|
|
|
return self.items.pop()
|
|
|
|
|
|
|
|
|
|
def push(self, item):
|
|
|
|
|
self.items.append(item)
|
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
class ShuntingYard(object): # export
|
|
|
|
|
|
2017-07-27 15:18:17 +02:00
|
|
|
def __init__(self, operators = None):
|
|
|
|
|
self.debug = True
|
2017-07-27 09:14:45 +02:00
|
|
|
self.__ops = {}
|
2017-07-27 15:18:17 +02:00
|
|
|
if operators is not None:
|
|
|
|
|
for k, v in operators.iteritems():
|
|
|
|
|
self.add_operator(k, v.func, v.nargs, v.prec, v.assoc)
|
|
|
|
|
|
|
|
|
|
def token_string():
|
|
|
|
|
for k, v in self.__ops:
|
|
|
|
|
buf = ", " + k
|
|
|
|
|
if v.nargs > 1:
|
|
|
|
|
buf += "xxx"
|
|
|
|
|
r = r + buf
|
|
|
|
|
if len(r):
|
|
|
|
|
return r[2:]
|
|
|
|
|
return r
|
2017-07-27 09:14:45 +02:00
|
|
|
|
|
|
|
|
def tokenize(self, spec):
|
|
|
|
|
|
|
|
|
|
regex = ""
|
|
|
|
|
for k in self.__ops.keys():
|
|
|
|
|
regex = regex + "|" + re.escape(k)
|
|
|
|
|
|
|
|
|
|
regex = regex[1:]
|
|
|
|
|
|
|
|
|
|
scanner = re.Scanner([
|
|
|
|
|
(regex, lambda scanner,token:("kw", token)),
|
|
|
|
|
(r"\w+", lambda scanner,token:("arg", token)),
|
|
|
|
|
(r"\s+", None), # None == skip token.
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
tokens, remainder = scanner.scan(spec)
|
|
|
|
|
if len(remainder)>0:
|
2017-07-27 15:18:17 +02:00
|
|
|
raise Exception("Failed to tokenize " + spec + ", remaining bit is ", remainder)
|
2017-07-27 09:14:45 +02:00
|
|
|
|
2017-07-27 15:18:17 +02:00
|
|
|
#print tokens
|
|
|
|
|
return tokens
|
2017-07-27 09:14:45 +02:00
|
|
|
r = []
|
|
|
|
|
for e in tokens:
|
|
|
|
|
r.append(e[1])
|
|
|
|
|
|
|
|
|
|
return r
|
|
|
|
|
|
2017-07-27 15:18:17 +02:00
|
|
|
def add_operator(self, name, func, nargs, precedence, assoc):
|
|
|
|
|
self.__ops[name] = Operator(func, nargs, precedence, assoc)
|
2017-07-27 09:14:45 +02:00
|
|
|
|
|
|
|
|
def infix_to_postfix(self, infix):
|
2017-07-27 15:18:17 +02:00
|
|
|
tokenized = self.tokenize(infix)
|
|
|
|
|
print "tokenized = ", tokenized
|
|
|
|
|
outq, stack = [], []
|
|
|
|
|
table = ['TOKEN,ACTION,RPN OUTPUT,OP STACK,NOTES'.split(',')]
|
|
|
|
|
for toktype, token in tokenized:
|
|
|
|
|
print "Checking token", token
|
|
|
|
|
note = action = ''
|
|
|
|
|
if toktype == ARG:
|
|
|
|
|
action = 'Add arg to output'
|
|
|
|
|
outq.append(token)
|
|
|
|
|
table.append( (token, action, ' '.join(outq), ' '.join(s[0] for s in stack), note) )
|
|
|
|
|
elif toktype == KEYW:
|
|
|
|
|
val = self.__ops[token]
|
|
|
|
|
t1, (f1, n1, p1, a1) = token, val
|
|
|
|
|
v = t1
|
|
|
|
|
note = 'Pop ops from stack to output'
|
|
|
|
|
while stack:
|
|
|
|
|
t2, (f2, n2, p2, a2) = stack[-1]
|
|
|
|
|
if (a1 == L and p1 <= p2) or (a1 == R and p1 < p2):
|
|
|
|
|
if t1 != RPAREN:
|
|
|
|
|
if t2 != LPAREN:
|
|
|
|
|
stack.pop()
|
|
|
|
|
action = '(Pop op)'
|
|
|
|
|
outq.append(t2)
|
|
|
|
|
else:
|
|
|
|
|
break
|
|
|
|
|
else:
|
|
|
|
|
if t2 != LPAREN:
|
|
|
|
|
stack.pop()
|
|
|
|
|
action = '(Pop op)'
|
|
|
|
|
outq.append(t2)
|
|
|
|
|
else:
|
|
|
|
|
stack.pop()
|
|
|
|
|
action = '(Pop & discard "(")'
|
|
|
|
|
table.append( (v, action, ' '.join(outq), ' '.join(s[0] for s in stack), note) )
|
|
|
|
|
break
|
|
|
|
|
table.append( (v, action, ' '.join(outq), ' '.join(s[0] for s in stack), note) )
|
|
|
|
|
v = note = ''
|
|
|
|
|
else:
|
|
|
|
|
note = ''
|
|
|
|
|
break
|
|
|
|
|
note = ''
|
|
|
|
|
note = ''
|
|
|
|
|
if t1 != RPAREN:
|
|
|
|
|
stack.append((token, val))
|
|
|
|
|
action = 'Push op token to stack'
|
|
|
|
|
else:
|
|
|
|
|
action = 'Discard ")"'
|
|
|
|
|
table.append( (v, action, ' '.join(outq), ' '.join(s[0] for s in stack), note) )
|
|
|
|
|
note = 'Drain stack to output'
|
|
|
|
|
while stack:
|
|
|
|
|
v = ''
|
|
|
|
|
t2, (f2, n2, p2, a2) = stack[-1]
|
|
|
|
|
action = '(Pop op)'
|
|
|
|
|
stack.pop()
|
|
|
|
|
outq.append(t2)
|
|
|
|
|
table.append( (v, action, ' '.join(outq), ' '.join(s[0] for s in stack), note) )
|
|
|
|
|
v = note = ''
|
|
|
|
|
if self.debug:
|
|
|
|
|
maxcolwidths = [len(max(x, key=len)) for x in zip(*table)]
|
|
|
|
|
row = table[0]
|
|
|
|
|
print( ' '.join('{cell:^{width}}'.format(width=width, cell=cell) for (width, cell) in zip(maxcolwidths, row)))
|
|
|
|
|
for row in table[1:]:
|
|
|
|
|
print( ' '.join('{cell:<{width}}'.format(width=width, cell=cell) for (width, cell) in zip(maxcolwidths, row)))
|
|
|
|
|
return table[-1][2].split()
|
|
|
|
|
|
|
|
|
|
def infix_to_postfix_orig(self, infix):
|
2017-07-27 09:14:45 +02:00
|
|
|
|
|
|
|
|
s = Stack()
|
|
|
|
|
r = []
|
|
|
|
|
tokens = self.tokenize(infix)
|
|
|
|
|
|
2017-07-27 15:18:17 +02:00
|
|
|
for tokinfo in tokens:
|
|
|
|
|
|
|
|
|
|
print tokinfo
|
|
|
|
|
toktype, token = tokinfo[0], tokinfo[1]
|
2017-07-27 09:14:45 +02:00
|
|
|
|
|
|
|
|
print "Checking token ", token
|
|
|
|
|
|
|
|
|
|
if token not in self.__ops.keys():
|
|
|
|
|
r.append(token)
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
if token == '(':
|
|
|
|
|
s.push(token)
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
if token == ')':
|
|
|
|
|
topToken = s.pop()
|
|
|
|
|
while topToken != '(':
|
|
|
|
|
r.append(topToken)
|
|
|
|
|
topToken = s.pop()
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
while (not s.isEmpty()) and (self.__ops[s.peek()].prec >= self.__ops[token].prec):
|
|
|
|
|
#print token
|
|
|
|
|
r.append(s.pop())
|
|
|
|
|
#print r
|
|
|
|
|
|
|
|
|
|
s.push(token)
|
|
|
|
|
print (s.peek())
|
|
|
|
|
|
|
|
|
|
while not s.isEmpty():
|
|
|
|
|
opToken = s.pop()
|
|
|
|
|
r.append(opToken)
|
|
|
|
|
#print r
|
|
|
|
|
|
|
|
|
|
return r
|
|
|
|
|
#return " ".join(r)
|
|
|
|
|
|
|
|
|
|
def eval_postfix(self, postfixexpr):
|
|
|
|
|
|
|
|
|
|
vals = Stack()
|
|
|
|
|
|
|
|
|
|
for token in postfixexpr:
|
|
|
|
|
|
2017-07-27 15:18:17 +02:00
|
|
|
print "Checking token %s" % (token)
|
2017-07-27 09:14:45 +02:00
|
|
|
if token not in self.__ops.keys():
|
|
|
|
|
vals.push(token)
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
op = self.__ops[token]
|
|
|
|
|
args = []
|
2017-07-27 15:18:17 +02:00
|
|
|
print "Adding %d arguments" % (op.nargs)
|
2017-07-27 09:14:45 +02:00
|
|
|
for i in range(0, op.nargs):
|
2017-07-27 15:18:17 +02:00
|
|
|
print "Adding argument %d" % (i)
|
2017-07-27 09:14:45 +02:00
|
|
|
args.append(vals.pop())
|
2017-07-27 15:18:17 +02:00
|
|
|
#print "running %s(%s)" % (token, ', '.join(reversed(args)))
|
2017-07-27 09:14:45 +02:00
|
|
|
val = op.func(*reversed(args))
|
|
|
|
|
print "%s(%s) = %s" % (token, ', '.join(reversed(args)), val)
|
|
|
|
|
vals.push(val)
|
|
|
|
|
|
|
|
|
|
return vals.pop()
|
|
|
|
|
|
|
|
|
|
def eval(self, infix):
|
|
|
|
|
postfix = self.infix_to_postfix(infix)
|
|
|
|
|
print infix, "-->", postfix
|
|
|
|
|
return self.eval_postfix(postfix)
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
|
|
|
|
|
# ------------- testbed calculator
|
|
|
|
|
|
|
|
|
|
from string import atof
|
|
|
|
|
|
|
|
|
|
class Calculator(ShuntingYard):
|
|
|
|
|
|
2017-07-27 15:18:17 +02:00
|
|
|
#def tokenize(self, string):
|
|
|
|
|
# return string.split()
|
2017-07-27 09:14:45 +02:00
|
|
|
|
|
|
|
|
def f_mult(self, a, b):
|
|
|
|
|
return str(atof(a) * atof(b));
|
|
|
|
|
|
|
|
|
|
def f_div(self, a, b):
|
|
|
|
|
return str(atof(a) / atof(b));
|
|
|
|
|
|
|
|
|
|
def f_add(self, a, b):
|
|
|
|
|
return str(atof(a) + atof(b));
|
|
|
|
|
|
|
|
|
|
def f_sub(self, a, b):
|
|
|
|
|
return str(atof(a) - atof(b));
|
|
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
|
Op = Operator
|
|
|
|
|
operators = {
|
2017-07-27 15:18:17 +02:00
|
|
|
'^': Op(None, 2, 4, R),
|
|
|
|
|
'*': Op(self.f_mult, 2, 3, L),
|
|
|
|
|
'/': Op(self.f_div, 2, 3, L),
|
|
|
|
|
'+': Op(self.f_add, 2, 2, L),
|
|
|
|
|
'-': Op(self.f_sub, 2, 2, L),
|
|
|
|
|
'(': Op(None, 0, 9, L),
|
|
|
|
|
')': Op(None, 0, 0, L),
|
2017-07-27 09:14:45 +02:00
|
|
|
}
|
|
|
|
|
super(Calculator, self).__init__(operators)
|
|
|
|
|
|
2017-07-27 15:18:17 +02:00
|
|
|
rr = Calculator().eval("( 2 * 3 + 4 * 5 ) / ( 5 - 3 )")
|
|
|
|
|
print "Result =", rr
|
2017-07-27 09:14:45 +02:00
|
|
|
|
|
|
|
|
# ------------- testbed match object
|
|
|
|
|
|
|
|
|
|
Object = namedtuple("Object", [ "Name", "Label" ])
|
|
|
|
|
|
|
|
|
|
class Matcher(ShuntingYard):
|
|
|
|
|
|
|
|
|
|
def f_is_name(self, a):
|
|
|
|
|
if obj.Name == a:
|
|
|
|
|
return "True"
|
|
|
|
|
return "False"
|
|
|
|
|
|
|
|
|
|
def f_matches_label(self, a):
|
|
|
|
|
if re.match(a, obj.Label):
|
|
|
|
|
return "True"
|
|
|
|
|
return "False"
|
|
|
|
|
|
|
|
|
|
def f_is_not(self, a):
|
|
|
|
|
if a == "True":
|
|
|
|
|
return "False"
|
2017-07-27 15:18:17 +02:00
|
|
|
return "True"
|
2017-07-27 09:14:45 +02:00
|
|
|
|
|
|
|
|
def f_and(self, a_, b_):
|
|
|
|
|
a = a_ == "True"
|
|
|
|
|
b = b_ == "True"
|
|
|
|
|
if a and b:
|
|
|
|
|
return "True"
|
|
|
|
|
return "False"
|
|
|
|
|
|
|
|
|
|
def __init__(self, obj):
|
|
|
|
|
Op = Operator
|
|
|
|
|
operators = {
|
2017-07-27 15:18:17 +02:00
|
|
|
'(': Op(None, 2, 9, L),
|
|
|
|
|
')': Op(None, 2, 0, L),
|
|
|
|
|
'name=': Op(self.f_is_name, 1, 3, R),
|
|
|
|
|
'and': Op(self.f_and, 2, 3, L),
|
|
|
|
|
'label~=': Op(self.f_matches_label, 1, 3, R),
|
|
|
|
|
'False': Op(None, 0, 3, L),
|
|
|
|
|
'True': Op(None, 0, 3, L),
|
|
|
|
|
'not': Op(self.f_is_not, 1, 3, R),
|
2017-07-27 09:14:45 +02:00
|
|
|
}
|
|
|
|
|
super(Matcher, self).__init__(operators)
|
|
|
|
|
|
|
|
|
|
obj = Object("hans", "wurst")
|
|
|
|
|
|
|
|
|
|
r = Matcher(obj).eval("name=hans and (not label~=worst)")
|
|
|
|
|
print "Result =", r
|
|
|
|
|
|