1 """Thread-local objects.
3 (Note that this module provides a Python version of the threading.local
4 class. Depending on the version of Python you're using, there may be a
5 faster one available. You should always import the `local` class from
8 Thread-local objects support the management of thread-local data.
9 If you have data that you want to be local to a thread, simply create
10 a thread-local object and use its attributes:
13 >>> mydata.number = 42
17 You can also access the local-object's dictionary:
21 >>> mydata.__dict__.setdefault('widgets', [])
26 What's important about thread-local objects is that their data are
27 local to a thread. If we access the data in a different thread:
31 ... items = mydata.__dict__.items()
34 ... mydata.number = 11
35 ... log.append(mydata.number)
38 >>> thread = threading.Thread(target=f)
44 we get different data. Furthermore, changes made in the other thread
45 don't affect data seen in this thread:
50 Of course, values you get from a local object, including a __dict__
51 attribute, are for whatever thread was current at the time the
52 attribute was read. For that reason, you generally don't want to save
53 these values across threads, as they apply only to the thread they
56 You can create custom local objects by subclassing the local class:
58 >>> class MyLocal(local):
60 ... initialized = False
61 ... def __init__(self, **kw):
62 ... if self.initialized:
63 ... raise SystemError('__init__ called too many times')
64 ... self.initialized = True
65 ... self.__dict__.update(kw)
66 ... def squared(self):
67 ... return self.number ** 2
69 This can be useful to support default values, methods and
70 initialization. Note that if you define an __init__ method, it will be
71 called each time the local object is used in a separate thread. This
72 is necessary to initialize each thread's dictionary.
74 Now if we create a local object:
76 >>> mydata = MyLocal(color='red')
78 Now we have a default number:
89 And a method that operates on the data:
94 As before, we can access the data in a separate thread:
97 >>> thread = threading.Thread(target=f)
101 [[('color', 'red'), ('initialized', True)], 11]
103 without affecting this thread's data:
108 Traceback (most recent call last):
110 AttributeError: 'MyLocal' object has no attribute 'color'
112 Note that subclasses can define slots, but they are not thread
113 local. They are shared across threads:
115 >>> class MyLocal(local):
116 ... __slots__ = 'number'
118 >>> mydata = MyLocal()
119 >>> mydata.number = 42
120 >>> mydata.color = 'red'
122 So, the separate thread:
124 >>> thread = threading.Thread(target=f)
138 # We need to use objects from the threading module, but the threading
139 # module may also want to use our `local` class, if support for locals
140 # isn't compiled in to the `thread` module. This creates potential problems
141 # with circular imports. For that reason, we don't import `threading`
142 # until the bottom of this file (a hack sufficient to worm around the
143 # potential problems). Note that almost all platforms do have support for
144 # locals in the `thread` module, and there is no circular import problem
145 # then, so problems introduced by fiddling the order of imports here won't
146 # manifest on most boxes.
148 class _localbase(object):
149 __slots__
= '_local__key', '_local__args', '_local__lock'
151 def __new__(cls
, *args
, **kw
):
152 self
= object.__new
__(cls
)
153 key
= '_local__key', 'thread.local.' + str(id(self
))
154 object.__setattr
__(self
, '_local__key', key
)
155 object.__setattr
__(self
, '_local__args', (args
, kw
))
156 object.__setattr
__(self
, '_local__lock', RLock())
158 if args
or kw
and (cls
.__init
__ is object.__init
__):
159 raise TypeError("Initialization arguments are not supported")
161 # We need to create the thread dict in anticipation of
162 # __init__ being called, to make sure we don't call it
164 dict = object.__getattribute
__(self
, '__dict__')
165 current_thread().__dict
__[key
] = dict
170 key
= object.__getattribute
__(self
, '_local__key')
171 d
= current_thread().__dict
__.get(key
)
174 current_thread().__dict
__[key
] = d
175 object.__setattr
__(self
, '__dict__', d
)
177 # we have a new instance dict, so call out __init__ if we have
180 if cls
.__init
__ is not object.__init
__:
181 args
, kw
= object.__getattribute
__(self
, '_local__args')
182 cls
.__init
__(self
, *args
, **kw
)
184 object.__setattr
__(self
, '__dict__', d
)
186 class local(_localbase
):
188 def __getattribute__(self
, name
):
189 lock
= object.__getattribute
__(self
, '_local__lock')
193 return object.__getattribute
__(self
, name
)
197 def __setattr__(self
, name
, value
):
198 lock
= object.__getattribute
__(self
, '_local__lock')
202 return object.__setattr
__(self
, name
, value
)
206 def __delattr__(self
, name
):
207 lock
= object.__getattribute
__(self
, '_local__lock')
211 return object.__delattr
__(self
, name
)
218 key
= object.__getattribute
__(self
, '_local__key')
221 threads
= list(threading
.enumerate())
223 # If enumerate fails, as it seems to do during
224 # shutdown, we'll skip cleanup under the assumption
225 # that there is nothing to clean up.
228 for thread
in threads
:
230 __dict__
= thread
.__dict
__
231 except AttributeError:
232 # Thread is dying, rest in peace.
239 pass # didn't have anything in this thread
241 from threading
import current_thread
, RLock