functools を使用してデコレータを作成しています。これにより、メソッド呼び出しの詳細をログに記録できます。
私はそれを書くためにここで多くの助けを得ました...それは私自身のものではなく、私はまだそれがどのように機能するかを学んでいます...
私は ipython をよく使います。使用するときは次のとおりです。
import Tools
imagetools = Tools.Tools()
imagetools.save_new_image ?
Type: instancemethod
String Form:<bound method ImageTools.save_new_image of <ImageTools.ImageTools object at 0x305d1d0>>
File: /fs/corpus6/dpc/workspace/python/Modules/MiscTools.py
Definition: imagetools.save_new_image(self, *args, **kwargs)
Docstring: <no docstring>
これは私の問題行です...さらに、ドキュメント文字列をまだ書いていません... :|
Definition: imagetools.save_new_image(self, *args, **kwargs)
私はそれをしたい:
save_new_image_clone(self, data, header, outfile, coordmap)
ラッパー:
import functools
def log_method(func):
@functools.wraps(func)
def wrapper(self, *args, **kwargs):
self.__doc__ = func.__doc__
# allows me to put the wrapper in helper methods that are sometimes major steps
if check_for_True_in_last_arg(*args):
log.debug('''Last arg is "True" which could indicate the caller
intends the log to work on this method. For that behaviour, use the keyword arg: log_this=True''')
if 'log_this' in kwargs and kwargs['log_this'] is not False:
args_name = inspect.getargspec(func)[0][1:] #drop the 'self' arg
args_dict = dict(list(itertools_izip(args_name, args)) + list(kwargs.iteritems()))
method_name = wrapper.__name__
args_dict_string = '\nMETHOD: ' + method_name + '\n'
for k,v in args_dict.iteritems():
if type(v) is not np.ndarray:
args_dict_string += "%s: %s\n" %(k,v)
elif type(v) is np.ndarray:
args_dict_string += "NUMPY ARRAY:%s \nSHAPE:%s\n" %(k, str(v.shape))
args_dict_string += '\n'
log.info(args_dict_string)
return func(self, *args, **kwargs)
return wrapper
更新: ipython 内から、何が起こっているかを確認するためにこれを行いましたが、まだ役に立ちませんでした..
help??
Type: _Helper
String Form:Type help() for interactive help, or help(object) for help about object.
File: /usr/lib64/python2.7/site.py
Definition: help(self, *args, **kwds)
Source:
class _Helper(object):
"""Define the builtin 'help'.
This is a wrapper around pydoc.help (with a twist).
"""
def __repr__(self):
return "Type help() for interactive help, " \
"or help(object) for help about object."
def __call__(self, *args, **kwds):
import pydoc
return pydoc.help(*args, **kwds)
Call def: help(self, *args, **kwds)