ó V Qc@sÈdZddlZddd„ƒYZd„ZddlmZmZmZdefd„ƒYZd efd „ƒYZ d efd „ƒYZ e d diƒZ d„Z e dkrÄeƒe ƒndS(s`Synchronization metaclass. This metaclass makes it possible to declare synchronized methods. iÿÿÿÿNtLockcBs,eZdZd„Zdd„Zd„ZRS(s Reentrant lock. This is a mutex-like object which can be acquired by the same thread more than once. It keeps a reference count of the number of times it has been acquired by the same thread. Each acquire() call must be matched by a release() call and only the last release() call actually releases the lock for acquisition by another thread. The implementation uses two locks internally: __mutex is a short term lock used to protect the instance variables __wait is the lock for which other threads wait A thread intending to acquire both locks should acquire __wait first. The implementation uses two other instance variables, protected by locking __mutex: __tid is the thread ID of the thread that currently has the lock __count is the number of times the current thread has acquired it When the lock is released, __tid is None and __count is zero. cCs4tjƒ|_tjƒ|_d|_d|_dS(s0Constructor. Initialize all instance variables.iN(tthreadt allocate_lockt _Lock__mutext _Lock__waittNonet _Lock__tidt _Lock__count(tself((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pyt__init__*s icCsÛ|jjƒz-|jtjƒkr9|jd|_dSWd|jjƒX|jj|ƒ}| ro| rodSzW|jjƒ|jdks”t ‚|jdks©t ‚tjƒ|_d|_dSWd|jjƒXdS(s}Acquire the lock. If the optional flag argument is false, returns immediately when it cannot acquire the __wait lock without blocking (it may still block for a little while in order to acquire the __mutex lock). The return value is only relevant when the flag argument is false; it is 1 if the lock is acquired, 0 if not. iNi( RtacquireRRt get_identRtreleaseRRtAssertionError(Rtflagtlocked((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pyR 1s"   cCsŽ|jjƒzl|jtjƒks+t‚|jdks@t‚|jd|_|jdkrxd|_|jj ƒnWd|jj ƒXdS(sìRelease the lock. If this thread doesn't currently have the lock, an assertion error is raised. Only allow another thread to acquire the lock when the count reaches zero after decrementing it. iiN( RR RRR R RRRR (R((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pyR Qs  (t__name__t __module__t__doc__R R R (((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pyR s  cCs÷g}|d„}||d„}tƒ}|jƒ||ƒ|jƒ|jƒtj||fƒtj|||fƒtj||fƒtj||fƒ|jƒddl}x.t|ƒdkrçt|ƒGH|jdƒqºWt|ƒGHdS(NcSs3|jƒdtjƒG|jƒ|jdƒdS(Nsf2 running in thread %d i(R RR R tappend(tlocktdone((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pytf2ks  cSsE|jƒdtjƒGz||ƒWd|jƒX|jdƒdS(Nsf1 running in thread %d i(R RR R R(RRR((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pytf1qs   iÿÿÿÿi gü©ñÒMbP?(RR R Rtstart_new_threadttimetlentsleep(RRRRR((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pyt _testLockgs$         (t MetaClasst MetaHelpertMetaMethodWrappertLockingMethodWrappercBseZd„ZRS(cOsŒ|jd dkrC|jddkrCt|j|jf||ƒS|jjjƒz!t|j|jf||ƒSWd|jjjƒXdS(Nit_(Rtapplytfunctinstt__lock__R R (Rtargstkw((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pyt__call__•s &!(RRR((((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pyR ”st LockingHelpercBseZeZd„ZRS(cCs tj||ƒtƒ|_dS(N(Rt__helperinit__RR%(Rt formalclass((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pyR* s(RRR t__methodwrapper__R*(((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pyR)žstLockingMetaClasscBseZeZRS((RRR)t __helper__(((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pyR-¤stLockingcCsÒdtfd„ƒY}dd„}dd„}tjƒ}|jƒtjƒ}|jƒ|dƒ}d}tj||||fƒtj||||fƒ|jƒdGH|jƒdGHd Gt|jƒGHdS( NtBuffercBs#eZd„Zd„Zd„ZRS(cSsB|dkst‚||_dg|j|_d|_|_dS(Ni(R tsizeRtbuffertfirsttlast(Rt initialsize((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pyR ¬s cSsI|jd|j|jkrH||j|j<|jd|j|_dSdG|jGHd|j|j|jfGH|j|jkrš|j|j|j!}n|j|j|j|j }dG|GH|dg|jd|_d|_|jd|_|jd|_dG|jGHdG|jGHd|j|j|jfGH|j|ƒdS( Nisbuffer =s first = %d, last = %d, size = %dstemp =iisBuffer size doubled tos new buffer =(R4R1R3R2Rtput(Rtitemttemp((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pyR6±s(     cSsF|j|jkrt‚n|j|j}|jd|j|_|S(Ni(R3R4tEOFErrorR2R1(RR7((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pytgetËs  (RRR R6R:(((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pyR0«s  iècSs`ddl}d}x0||krDdG|GH|j|ƒ|d}qWdG|GdGH|jƒdS(NiÿÿÿÿiR6isProducer: done producingtitems(RR6R (R2twaittnRti((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pytproducerÓs    cSs¼ddl}d}d}x†||kr yK|jƒ}||krXtd||f‚ndG|GH|d}d}Wqtk rœ|j|ƒ|d}qXqWdG|Gd GH|jƒdS( Niÿÿÿÿigü©ñÒMbP?sget() returned %s, expected %stgotiisConsumer: done consumingR;(RR:R R9RR (R2R<R=RR>ttouttx((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pytconsumerÝs"         is Producer donesAll donesbuffer size ==(R/RRR RRR2(R0R?RCtpwaittcwaitR2R=((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pyt_test©s (        t__main__(((RRRRtMetaRRRR R)R-R/RFR(((s./usr/lib64/python2.7/Demo/metaclasses/Synch.pyts Z +  U