6

次のように、クラスのメンバー関数によって返される値に @postcondition デコレータを使用しようとしています。

def out_gt0(retval, inval):
    assert retval > 0, "Return value < 0"

class foo(object):
    def __init__(self, w, h):
        self.width = w
        self.height = h
    @postcondition(out_gt0)
    def bar(self):
        return -1

メンバー関数 'bar' を呼び出そうとすると (そして、@postcondition を呼び出して警告を表示させます)、次のようになります。

>>> f = foo(2,3)
>>> f.bar()
Traceback (most recent call last):
  File "<pyshell#22>", line 1, in <module>
    f.bar()
  File "<pyshell#8>", line 106, in __call__
    result = self._func(*args, **kwargs)
TypeError: bar() takes exactly 1 argument (0 given)
>>> 

@postcondition の私の定義は、ここで見られるものhttp://wiki.python.org/moin/PythonDecoratorLibrary#Pre-.2FPost-Conditionsです。

@postcondition の根底にある関数がメンバー関数を処理することを期待していないためにエラーが発生したと思います(確かに、これまでに見たすべての例は単純な古い関数を使用しているだけです)が、修正方法がわからないので、これを行うことができますか?

アドバイスをいただければ幸いです。

4

2 に答える 2

14

特別なことをする必要はありません:

import functools

def condition(pre_condition=None, post_condition=None):
    def decorator(func):
        @functools.wraps(func) # presever name, docstring, etc
        def wrapper(*args, **kwargs): #NOTE: no self
            if pre_condition is not None:
               assert pre_condition(*args, **kwargs)
            retval = func(*args, **kwargs) # call original function or method
            if post_condition is not None:
               assert post_condition(retval)
            return retval
        return wrapper
    return decorator

def pre_condition(check):
    return condition(pre_condition=check)

def post_condition(check):
    return condition(post_condition=check)

使用法:

@pre_condition(lambda arg: arg > 0)
def function(arg): # ordinary function
    pass

class C(object):
    @post_condition(lambda ret: ret > 0)
    def method_fail(self):
        return 0
    @post_condition(lambda ret: ret > 0)
    def method_success(self):
        return 1

テスト:

function(1)
try: function(0)
except AssertionError: pass
else: assert 0, "never happens"

c = C()
c.method_success()
try: c.method_fail()
except AssertionError: pass
else: assert 0, "never happens"
于 2012-08-28T01:07:21.343 に答える
0

以下の例は機能します:

def out_gt0(retval):
    assert retval > 0, "Return value < 0"

def mypostfunc(callback):
    def mydecorator(func):
        def retFunc(self, *args, **kwargs):
            retval = func(self, *args, **kwargs)
            callback(retval)
            return retval
        return retFunc
    return mydecorator

class foo(object):
    def __init__(self, w, h):
        self.width = w
        self.height = h
    @mypostfunc(out_gt0)
    def bar1(self):
        return -1
    @mypostfunc(out_gt0)
    def bar2(self):
        return 1

f=foo(1,2)
print "bar2:", f.bar2()
print "bar1:", f.bar1()

出力は次のとおりです。

bar2: 1
bar1:
Traceback (most recent call last):
  File "s.py", line 27, in <module>
    print "bar1:", f.bar1()
  File "s.py", line 9, in retFunc
    callback(retval)
  File "s.py", line 3, in out_gt0
    assert retval > 0, "Return value < 0"
AssertionError: Return value < 0
于 2012-08-28T00:38:13.043 に答える