Python:从`threading.local`中获取所有项目

时间:2014-08-21 21:05:21

标签: python multithreading

我有一个threading.local个对象。在调试时,我想获得它为所有线程包含的所有对象,而我只是在其中一个线程上。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:4)

如果你正在使用threading.localfrom _threading_local import local)的纯python版本,这是可能的:

for t in threading.enumerate():
    for item in t.__dict__:
       if isinstance(item, tuple):  # Each thread's `local` state is kept in a tuple stored in its __dict__
           print("Thread's local is %s" % t.__dict__[item])

以下是该行动的一个例子:

from _threading_local import local
import threading
import time

l = local()

def f():
   global l
   l.ok = "HMM"
   time.sleep(50)

if __name__ == "__main__":
    l.ok = 'hi'
    t = threading.Thread(target=f)
    t.start()
    for t in threading.enumerate():
        for item in t.__dict__:
           if isinstance(item, tuple):
               print("Thread's local is %s" % t.__dict__[item])

输出:

Thread's local is {'ok': 'hi'}
Thread's local is {'ok': 'HMM'}

这利用了local的纯python实现在local对象Thread中存储每个线程的__dict__状态这一事实。 ,使用元组对象作为键:

>>> threading.current_thread().__dict__
{ ..., ('_local__key', 'thread.local.140466266257288'): {'ok': 'hi'}, ...}

如果您正在使用local中编写的C的实现(如果您只使用from threading import local通常就是这种情况),我不确定如何/如果你能做到的话。