Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Python > weakref and thread safety (in python 2.1)

Reply
Thread Tools

weakref and thread safety (in python 2.1)

 
 
Ames Andreas (MPA/DF)
Guest
Posts: n/a
 
      07-22-2003
Hi all,

I'm using python 2.1 and can't easily upgrade (Zope). I'm using the
Queue module to synchronize/communicate between two threads and
weakref.proxy objects to avoid cycles. Scenario:

thread1:

- is the sole consumer (non-blocking get)
- holds the reference to the queue

thread2:

- is the sole producer (blocking put)
- holds a weak reference to the queue

I've noted that, when thread2 incidentally blocks on the queue
(because it's full), while thread1 deletes the queue, the weak
reference isn't deleted and thread2 keeps blocking forever.

I came up with the following destruction scheme for the queue (within
thread1; q is the 'strong' ref to the queue), which *seems* to solve
my problem (as of some preliminary tests):

qw = weakref.proxy(q) # a second weak reference (this time within
# thread1)
del q
try:
qw.get_nowait() # if thread2 blocks on the (weakrefed) queue,
# qw still exists here; the get_nowait() call
# wakes thread2 up. I *hope* that its
# weakreference will be destroyed when it can
# block again in its next call to put()
# (leading to a weakref.ReferenceError)
except:
pass

Is this thread-safe? I don't know enough about the implementation of
the weakref module to decide if it is guaranteed that thread2's weak
reference to the queue will be destroied *before* thread2 can call
'put()' (or rather before thread2 can block) for the next time. Can
someone more knowledgeable help me out please?


TIA,

andreas

 
Reply With Quote
 
 
 
 
Duncan Booth
Guest
Posts: n/a
 
      07-22-2003
"Ames Andreas (MPA/DF)" <> wrote in
news:mailman.1058872336.14143.python-:
> I've noted that, when thread2 incidentally blocks on the queue
> (because it's full), while thread1 deletes the queue, the weak
> reference isn't deleted and thread2 keeps blocking forever.


That's because when the only way to use a weak reference is to convert it
into a strong reference. So when you call:

myweakref.put(item)

you create a strong reference that exists until the put method returns (and
in fact some more references are created such as the self parameter inside
the put method).

>
> I came up with the following destruction scheme for the queue (within
> thread1; q is the 'strong' ref to the queue), which *seems* to solve
> my problem (as of some preliminary tests):
>
> qw = weakref.proxy(q) # a second weak reference (this time within
> # thread1)
> del q
> try:
> qw.get_nowait() # if thread2 blocks on the (weakrefed) queue,
> # qw still exists here; the get_nowait() call
> # wakes thread2 up. I *hope* that its
> # weakreference will be destroyed when it can
> # block again in its next call to put()
> # (leading to a weakref.ReferenceError)
> except:
> pass
>
> Is this thread-safe? I don't know enough about the implementation of
> the weakref module to decide if it is guaranteed that thread2's weak
> reference to the queue will be destroied *before* thread2 can call
> 'put()' (or rather before thread2 can block) for the next time.


No, this isn't thread safe. You have again got a strong reference while
calling the method, so the only place the weak reference could be destroyed
is outside the method call, and by that time thread2 could have blocked on
the queue again.

However, if you repeatedly try to pull data out of the queue, you should
eventually get somewhere.

qw = weakref.ref(q) # a second weak reference (this time within
# thread1)
del q
while qw:
qw().get_nowait()

There is still a problem though as your code is free-running: if the queue
gets empty before it is released you may use a lot of CPU before it
eventually gets freed. Also you are depending on the memory behaviour of C
Python, if Zope ever gets ported to Jython you will probably find that weak
references don't go away until the garbage collector kicks in.

A much better way to do this would be to make the termination explicit.

e.g. (untested code)

class MyQueue(Queue):
def __init__(self, maxsize=0):
Queue.__init__(self, maxsize)
self.terminated = False

thread2, with queue a normal reference to a MyQueue instance:

while 1:
item = produce()
queue.put(item)
if queue.terminated:
break # Stop processing queue

thread1 can then terminate the queue with:

queue.terminated = True
queue.get_nowait() # Ensure any blocked put completes.

No weak references needed.

--
Duncan Booth
int month(char *p){return(124864/((p[0]+p[1]-p[2]&0x1f)+1)%12)["\5\x8\3"
"\6\7\xb\1\x9\xa\2\0\4"];} // Who said my code was obscure?
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
weakref.proxy behaviour in python 3.0 Nicholas Cole Python 3 08-21-2010 07:45 PM
ASP.net and thread safety =?Utf-8?B?U2ltbw==?= ASP .Net 4 01-13-2006 05:26 PM
Thread-safety and Singleton methods =?Utf-8?B?RGlmZmlkZW50?= ASP .Net 1 01-13-2005 06:07 PM
Re: Re: Is Python/C api thread safety enough? Donnie Leen Python 2 11-25-2004 07:04 AM
Is Python/C api thread safety enough? Casper Python 1 11-20-2004 05:12 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57