ž nyMa๒c@sdZddlmZddlmZdgZGdd„dƒZedd„ƒZGd d„dƒZdd l m Z m Z d S( u้ Thread-local objects. (Note that this module provides a Python version of the threading.local class. Depending on the version of Python you're using, there may be a faster one available. You should always import the `local` class from `threading`.) Thread-local objects support the management of thread-local data. If you have data that you want to be local to a thread, simply create a thread-local object and use its attributes: >>> mydata = local() >>> mydata.number = 42 >>> mydata.number 42 You can also access the local-object's dictionary: >>> mydata.__dict__ {'number': 42} >>> mydata.__dict__.setdefault('widgets', []) [] >>> mydata.widgets [] What's important about thread-local objects is that their data are local to a thread. If we access the data in a different thread: >>> log = [] >>> def f(): ... items = sorted(mydata.__dict__.items()) ... log.append(items) ... mydata.number = 11 ... log.append(mydata.number) >>> import threading >>> thread = threading.Thread(target=f) >>> thread.start() >>> thread.join() >>> log [[], 11] we get different data. Furthermore, changes made in the other thread don't affect data seen in this thread: >>> mydata.number 42 Of course, values you get from a local object, including a __dict__ attribute, are for whatever thread was current at the time the attribute was read. For that reason, you generally don't want to save these values across threads, as they apply only to the thread they came from. You can create custom local objects by subclassing the local class: >>> class MyLocal(local): ... number = 2 ... initialized = False ... def __init__(self, **kw): ... if self.initialized: ... raise SystemError('__init__ called too many times') ... self.initialized = True ... self.__dict__.update(kw) ... def squared(self): ... return self.number ** 2 This can be useful to support default values, methods and initialization. Note that if you define an __init__ method, it will be called each time the local object is used in a separate thread. This is necessary to initialize each thread's dictionary. Now if we create a local object: >>> mydata = MyLocal(color='red') Now we have a default number: >>> mydata.number 2 an initial color: >>> mydata.color 'red' >>> del mydata.color And a method that operates on the data: >>> mydata.squared() 4 As before, we can access the data in a separate thread: >>> log = [] >>> thread = threading.Thread(target=f) >>> thread.start() >>> thread.join() >>> log [[('color', 'red'), ('initialized', True)], 11] without affecting this thread's data: >>> mydata.number 2 >>> mydata.color Traceback (most recent call last): ... AttributeError: 'MyLocal' object has no attribute 'color' Note that subclasses can define slots, but they are not thread local. They are shared across threads: >>> class MyLocal(local): ... __slots__ = 'number' >>> mydata = MyLocal() >>> mydata.number = 42 >>> mydata.color = 'red' So, the separate thread: >>> thread = threading.Thread(target=f) >>> thread.start() >>> thread.join() affects what we see: >>> mydata.number 11 >>> del mydata i(uref(ucontextmanagerulocalcBsD|EeZdZdZdZdd„Zd d „Zd d „Zd S(u _localimplu#A class managing thread-local dictsukeyudictsu localargsu locallocku __weakref__cCs&dtt|ƒƒ|_i|_dS(Nu_threading_local._localimpl.(ustruidukeyudicts(uself((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyu__init__šsu_localimpl.__init__cCstƒ}|jt|ƒdS(uPReturn the dict for the current thread. Raises KeyError if none defined.i(ucurrent_threadudictsuid(uselfuthread((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyuget_dictขs u_localimpl.get_dictcsi}|j}tƒ}t|ƒ}|‡fdd†}|‡fdd†}t||ƒ‰t||ƒ‰ˆ|j|<ˆ|f|j|<|S(u8Create a new dict for the current thread, and return it.cs&ˆƒ}|dk r"|j|=ndS(N(uNoneu__dict__(u_ukeyuthread(uwrthread(u5/opt/alt/python33/lib64/python3.3/_threading_local.pyu local_deletedฎs  u-_localimpl.create_dict..local_deletedcs.ˆƒ}|dk r*|jj|ƒ}ndS(N(uNoneudictsupop(u_uidtulocaludct(uwrlocal(u5/opt/alt/python33/lib64/python3.3/_threading_local.pyuthread_deletedณs  u._localimpl.create_dict..thread_deleted(ukeyucurrent_threaduidurefu__dict__udicts(uselfu localdictukeyuthreaduidtu local_deleteduthread_deleted((uwrlocaluwrthreadu5/opt/alt/python33/lib64/python3.3/_threading_local.pyu create_dictจs    u_localimpl.create_dictN(ukeyudictsu localargsu locallocku __weakref__(u__name__u __module__u __qualname__u__doc__u __slots__u__init__uget_dictu create_dict(u __locals__((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyu _localimpl–s   u _localimplccsŽtj|dƒ}y|jƒ}Wn=tk ra|jƒ}|j\}}|j||ŽYnX|jtj|d|ƒdVWdQXdS(Nu _local__implu__dict__( uobjectu__getattribute__uget_dictuKeyErroru create_dictu localargsu__init__u locallocku __setattr__(uselfuimpludctuargsukw((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyu_patchยs   u_patchcBsJ|EeZdZd Zdd„Zdd„Zdd„Zd d „Zd S( ulocalu _local__implu__dict__cOs|s |r-|jtjkr-tdƒ‚ntj|ƒ}tƒ}||f|_tƒ|_tj|d|ƒ|j ƒ|S(Nu*Initialization arguments are not supportedu _local__impl( u__init__uobjectu TypeErroru__new__u _localimplu localargsuRLocku locallocku __setattr__u create_dict(uclsuargsukwuselfuimpl((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyu__new__ำs   u local.__new__c Cs't|ƒtj||ƒSWdQXdS(N(u_patchuobjectu__getattribute__(uselfuname((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyu__getattribute__แs ulocal.__getattribute__c CsO|dkr%td|jjƒ‚nt|ƒtj|||ƒSWdQXdS(Nu__dict__u+%r object attribute '__dict__' is read-only(uAttributeErroru __class__u__name__u_patchuobjectu __setattr__(uselfunameuvalue((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyu __setattr__ๅs   ulocal.__setattr__c CsL|dkr%td|jjƒ‚nt|ƒtj||ƒSWdQXdS(Nu__dict__u+%r object attribute '__dict__' is read-only(uAttributeErroru __class__u__name__u_patchuobjectu __delattr__(uselfuname((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyu __delattr__ํs   ulocal.__delattr__N(u _local__implu__dict__(u__name__u __module__u __qualname__u __slots__u__new__u__getattribute__u __setattr__u __delattr__(u __locals__((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyulocalะs    (ucurrent_threaduRLockN( u__doc__uweakrefurefu contextlibucontextmanageru__all__u _localimplu_patchulocalu threadingucurrent_threaduRLock(((u5/opt/alt/python33/lib64/python3.3/_threading_local.pyu…s ,&