gpt4 book ai didi

python : Using Decorators to write Logs on a file

转载 作者:行者123 更新时间:2023-12-04 15:06:58 27 4
gpt4 key购买 nike

我正在尝试使用 python 装饰器在文件上写入日志,当我在一种方法上使用它时它可以工作,但是一旦我开始尝试在多种方法上使用它,事情就会开始变得困惑。

例如,如果我有 2 个方法 A() 和 B() 的 2 个日志,B() 在 A() 内部被调用,一个在我调用它时,一个在我结束它时事情变成这样:A1 B1 B2 A2 B1 B2 B1 B2

A1 到 A2 没问题,但在那之后 B() 被调用了 x 次(它被调用的次数显然发生了变化),我不明白为什么。

这是我的装饰器:

class LogDecorator(object):
state: str

def __init__(self, state):
self.state = state
self.log_file = 'log.txt'

def __call__(self, *function):
if len(function) >= 1:
def wrapper(params=None):
if self.state == 'main':
self.reset_log_file()
function_name = function[0].__name__
self.append_log_to_file('Calling function ' + function_name + '...')
result = function[0]() if params is None else function[0](params)
self.append_log_to_file('Function ' + function_name + ' ended. Returned ' + str(result))
return result
return wrapper

def __get__(self, obj, objtype):
return functools.partial(self.__call__, obj)

def append_log_to_file(self, message: str) -> None:
log_file = open(self.log_file, 'a')
log_file.write(message)
log_file.close()

def reset_log_file(self):
log_file = open(self.log_file, 'w+')
log_file.write('')
log_file.close()

我使用“主要”状态是因为我在 API 的端点上并且我想为每个 API 调用重置文件。

这是我在主状态下的第一个类

class AppService:
@staticmethod
@LogDecorator(state='main')
def endpoint() -> Response:
response: Response = Response()

response.append_message('Getting all tests')
tests: list = TestDAO.get_all()
return response

这是我的第二节课

class TestDAO(BaseDAO):
@staticmethod
@LogDecorator(state='sub')
def get_all() -> list:
return db.session.query(Test).all()

此示例中的预期输出为

Calling function endpoint...
Calling function get_all...
Function get_all ended. Returned [Objects]
Function endpoint ended. Returned {Object}

但是我得到了

Calling function endpoint...
Calling function get_all...
Function get_all ended. Returned [Objects]
Calling function get_all...
Function get_all ended. Returned [Objects]
Calling function get_all...
Function get_all ended. Returned [Objects]
Function endpoint ended. Returned {Object}
Calling function get_all...
Function get_all ended. Returned [Objects]
Calling function get_all...
Function get_all ended. Returned [Objects]
Calling function get_all...
Function get_all ended. Returned [Objects]
Calling function get_all...
Function get_all ended. Returned [Objects]
Calling function get_all...
Function get_all ended. Returned [Objects]
Calling function get_all...
Function get_all ended. Returned [Objects]

谁能弄清楚装饰器为什么会这样?

提前致谢

最佳答案

让我们期待以下示例的输出。

def decorator(f):
def g():
print('Hello, G.')
return g


@decorator
def f():
print('Hello, F.')


f()

它会打印

Hello, G.

装饰器根本没有装饰f,相反,没有对f做任何装饰,它返回一个全新的方法(定义为g)。或者,装饰器也可以返回匿名方法。

def decorator(f):
return lambda : print('Hello, G.')

装饰器做的就是这个。它采用一个方法(必要时带有参数)并可能使用给定的方法(又名装饰)定义一个新方法。然后它返回新定义的方法,但与给定函数具有相同的名称。以下抽象会有所帮助。

@decorator
def f():
print('Hello, F.')

vvvvvvvvvvvvvvvvvvvvvv

def f(): # the name is not changed
#def g(): as if anonymous function
print('Hello, G.')

所以看起来装饰f,然而,它是一个方法,只是命名为f。如果您从 AppService 调用 TestDAO.get_all,您调用的是已经装饰 TestDAO.get_all

关于 python : Using Decorators to write Logs on a file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65948746/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com