synchronized method

M

Max Ischenko

Hi,

I wrote simple implementation of the "synchronized" methods (a-la Java),
could you please check if it is OK:

def synchronized(method):

"""
Guards method execution, similar to Java's synchronized keyword.

The class which uses this method, is required to have a
L{threading.Lock} primitive as an attribute named 'lock'.
"""

def wrapper(self, *args):
self.lock.acquire()
try:
return method(self, *args)
finally:
self.lock.release()
return wrapper

....I'm no big thread expert

tia.

.... The problem is not that there are problems. The problem is expecting
otherwise and thinking that having problems is a problem.
-- Theodore Rubin
 
A

anton muhin

Max said:
Hi,

I wrote simple implementation of the "synchronized" methods (a-la Java),
could you please check if it is OK:

def synchronized(method):

"""
Guards method execution, similar to Java's synchronized keyword.

The class which uses this method, is required to have a
L{threading.Lock} primitive as an attribute named 'lock'.
"""

def wrapper(self, *args):
self.lock.acquire()
try:
return method(self, *args)
finally:
self.lock.release()
return wrapper

...I'm no big thread expert

tia.

... The problem is not that there are problems. The problem is expecting
otherwise and thinking that having problems is a problem.
-- Theodore Rubin

I'd add **kwargs too.

anton.
 
G

Graham Dumpleton

Max Ischenko said:
Hi,

I wrote simple implementation of the "synchronized" methods (a-la Java),
could you please check if it is OK:

def synchronized(method):

"""
Guards method execution, similar to Java's synchronized keyword.

The class which uses this method, is required to have a
L{threading.Lock} primitive as an attribute named 'lock'.
"""

def wrapper(self, *args):
self.lock.acquire()
try:
return method(self, *args)
finally:
self.lock.release()
return wrapper

Under normal execution the lock will not be released because you return
from the try clause. There is also the case that method isn't defined.

Someone else was asking about this sort of thing back the end of January.
The post is included below. As much as doing this sort of thing may sound
like a good way of handling synchronisation, it still has its problems.

Hello!

I have a number of objects that are not thread-safe - no locking
mechanism was originally provided.
But I want to use them in a thread-safe way. I don't want to analyze
each class details, looking for where and when I must protect the
code. So I wrote this sort-of-brute-force locking mechanism using
threading.RLock() around __getattr__ / __setattr__ / __delattr__.
The idea is that *any* attribute and method access is protected by the
lock. The calling thread may acquire the lock multiple times, but
other threads must wait until it is released.
This may be too much restrictive, and a bottleneck in performance,
since *all* accesses are effectively serialized - but it's the best I
could imagine without deeply analyzing the actual code.
I *think* this works well, but since I'm not an expert in these
things, any comments are welcome. Specially what could go wrong, if
someone could anticipate it.
Note: As written, this only works for old-style classes. I think that
just by adding a similar __getattribute__ would suffice for new-style
classes too - is that true?

A few problems that I can see. First is that this only protects access to
the reference to the data in question. Imagine that the data value
is a dictionary. If I understand it correctly, two different threads
could still get a reference to the same dictionary and then independently
start modifying the dictionary at the same time. This is because you are
then dealing with the dictionary directly and your locks aren't involved
at all.

Second is that it isn't always sufficient to lock at the level of individual
attributes, instead it sometimes necessary to lock on a group of attributes
or even the whole object. This may be because a thread has to be able
to update two attributes at one time and know that another thread will
not change one of them while it is modifying the other.

One hack I have used is always ensuring that access to an object is
through its functional interface and then locking at the level of
function calls. That is provide additional member functions called
lockObject and unlockObject which operate the thread mutex. When
using the class then have:

object.lockObject()
object.someFunc1()
object.someFunc2()
object.etc()
object.unlockObject()

This can sort of be automated a bit by having:

class _SynchronisedMethod:

def __init__(self,object,name):
self._object = object
self._name = name

def __getattr__(self,name):
return _SynchronisedMethod(self._object,"%s.%s"%(self._name,name))

def __call__(self,*args):
try:
self._object.lockObject()
method = getattr(self._object,self._name)
result = apply(method,args)
self._object.unlockObject()
except:
self._object.unlockObject()
raise
return result

class _SynchronisedObject:

def __init__(self,object):
self._object = object

def __getattr__(self,name):
return _SynchronisedMethod(self._object,name)

You can then say:

sync_object = _SynchronisedObject(object)

sync_object.someFunc1()
sync_object.someFunc2()
sync_object.etc()

Although this avoids the explicit calls to lock the object, it still isn't the
same thing. This is because in the first example, the lock was held across
multiple function calls whereas in the second case it is only held for a
single call. Thus something like the following could fail:

if sync_object.dataExists():
sync_object.getData()

This is because something could have taken the data between the time
the check for data was made and when it was obtained.

Thus automating it like this isn't foolproof either. The closest you will
probably get to a quick solution is to have the lock/unlock functions
for the object and change any code to use them around any sections of
code which you don't want another thread operating on the class at
the same time. You may even have to hold locks on multiple objects
at the same time to ensure that things don't get stuffed up.

Thus it isn't necessarily a simple task to add threading support after
the fact. You probably will have no choice but to analyse the use of
everything and work out to correctly implement locking or even change
the functional interface a bit so functions can be atomic in themselves.
Ie., rather than having to check if data exists before first getting it,
you just try and get it and either rely on an exception or have the
thread wait until data is there.
 
M

Max Ischenko

Graham said:
Under normal execution the lock will not be released because you return
from the try clause.

Hmm. I think you must be wrong:
try:
return 1
finally:
print 'ok'

ok
1

There is also the case that method isn't defined.

Indeed, thanks for pointing this out.
Someone else was asking about this sort of thing back the end of January.
The post is included below. As much as doing this sort of thing may sound
like a good way of handling synchronisation, it still has its problems.

[ cut ]

I'll look into it.
 
P

Peter Hansen

Graham said:
Under normal execution the lock will not be released because you return
from the try clause. There is also the case that method isn't defined.

If that were true, the finally clause would be pretty useless in many
cases. (Try it out yourself: it will work properly.)

Also, isn't "method" defined as the argument to the synchronized()
function at the top?

To me, this looks like a pretty reasonable approach to handling
the problem as defined.

-Peter
 
G

Graham Dumpleton

Peter Hansen said:
If that were true, the finally clause would be pretty useless in many
cases. (Try it out yourself: it will work properly.)

Also, isn't "method" defined as the argument to the synchronized()
function at the top?

Hmmm, I stand corrected on both counts. It was one of the days I should
have kept my mouth shut. Too stinking hot here at the moment, my brain
isn't working. :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,581
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top