これがデコレータの適切な使用例であるかどうかはおそらく疑わしいですが、ここでは:
import string
SelfClosing = object()
def escapeAttr(attr):
# WARNING: example only, security not guaranteed for any of these functions
return attr.replace('"', '\\"')
def tag(name, content='', **attributes):
# prepare attributes
for attr,value in attributes.items():
assert all(c.isalnum() for c in attr) # probably want to check xml spec
attrString = ' '.join('{}="{}"'.format(k,escapeAttr(v)) for k,v in attributes.items())
if not content==SelfClosing:
return '<{name} {attrs}>{content}</{name}>'.format(
name = name,
attrs = attrString,
content = content
)
else: # self-closing tag
return '<{name} {attrs}/>'
例:
def makeBoldWrapper(**attributes):
def wrapWithBold(origFunc):
def composed(*args, **kw):
result = origFunc(*args, **kw)
postprocessed = tag('b', content=result, **attributes)
return postprocessed
return composed
return wrapWithBold
デモ:
@makeBoldWrapper(attr1='1', attr2='2')
def helloWorld(text):
return text
>>> print( helloWorld('Hello, world!') )
<b attr2="2" attr1="1">Hello, world!</b>
デコレーターに関する一般的な誤解は、パラメーター(attr1=...)
がデコレーターに対するパラメーターであるというもの@myDecorator
です。そうではありません。むしろ、関数呼び出しの結果はmyDecoratorFactory(attr1=...)
として計算されsomeresult
、匿名のデコレーターになり@someresult
ます。したがって、「引数付きデコレータ」は実際には、デコレータを値として返す必要があるデコレータ ファクトリです。