简体   繁体   English

无法使用上下文管理器从线程中捕获异常

[英]Unable to capture exceptions from threads with context manager

Target Script目标脚本


from threading import Thread
import instrument
import sys

args=None
def main():
    function1()


def function1():
     with open("help11.txt") as f:
          print(f.read())

if __name__ == "__main__":
    with instrument.FooManager():
        t= Thread(target=main)
        t.start()
        t.join()

Context Manager Definition Instrument.py上下文管理器定义 Instrument.py

class FooManager(object):

    def __init__(self, **kwargs):
         self.kwargs = kwargs

    def __enter__(self):
        self.start_time, self.fmt_start_time = self.__timings()

    def __exit__(self, exc_type, exc_value, traceback):
        print(exc_type)
        print(exc_value)
        self.end_time, self.fmt_end_time = self.__timings()
        duration = (self.end_time - self.start_time)
        print("start_time",self.start_time)
        print("end_time",self.end_time)
        print("duration",duration)

    def __timings(self):

       return time.time(),time.strftime('%Y-%m-%d %H:%M %Z', time.gmtime(time.time()))

Actual Output实际产量

Exception in thread Thread-1:
Traceback (most recent call last):
  File "/usr/lib/python3.6/threading.py", line 916, in _bootstrap_inner
    self.run()
  File "/usr/lib/python3.6/threading.py", line 864, in run
    self._target(*self._args, **self._kwargs)
  File "test.py", line 10, in main
    function1(10000000, 1)
  File "test.py", line 14, in function1
    with open("help11.txt") as f:
FileNotFoundError: [Errno 2] No such file or directory: 'help11.txt'

None
None
fmt_start_time 1602782848.645685
end_time 1602782848.6461706
duration 0.0004856586456298828

Expected Output预期产出

All i want is capture the error somehow using context manager instead i am getting the value as None in exc_type and exc_value or what is the recommended way to capture error raised by threads within context manager我想要的只是使用上下文管理器以某种方式捕获错误,而不是我在 exc_type 和 exc_value 中将值设为 None 或者什么是捕获上下文管理器中线程引发的错误的推荐方法

Note: This code is working fine when there are no thread declarations after "with statement"注意:当“with 语句”之后没有线程声明时,此代码工作正常

To propagate exceptions from threads use ThreadPoolExecutor from concurrent.futures要从线程传播异常,请使用concurrent.futures ThreadPoolExecutor

from concurrent.futures.thread import ThreadPoolExecutor


def foo():
    raise RuntimeError()


with ThreadPoolExecutor(max_workers=1) as executor:
    future = executor.submit(foo)
    print(future.result())

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM