Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Java while I am creating threads and sharing an object there are times when I will want to have threads accessing the same object method, but I don't what them to do it at the same time. So, to avoid this I will define the object method as a Synchronized method as shown below.

Synchronized Instance Method:

class class_name { synchronized type method_name() { \statement block } }

All the statements in the method become the synchronized block, and the instance object is the lock. This means that if I tell a thread to use this method, it will wait till the previous thread has finished using the method. Is there a way to do this in Perl?

share|improve this question

2 Answers

You could use semaphores to signal between the threads, or lock a shared object when the method in question is called, causing any subsequent calls by other threads to block until the locking thread completes that method call.

Before starting threading in perl I can highly recommend reading through perl thread tutorial as perl's threading is different to other languages

share|improve this answer

Create a mutex in the constructor.

sub new {
   ...
   my $mutex :shared;
   $self->{mutex_ref} = \$mutex;
   ...
}

Lock it when you enter the method.

sub method {
   my ($self) = @_;
   lock ${ $self->{mutex_ref} };
   ...
}

Demo:

use strict;
use warnings;
use threads;
use threads::shared;
use feature qw( say );

sub new {
   my ($class, $id) = @_;
   my $mutex :shared;
   return bless({
      mutex_ref => \$mutex,
      id        => $id,
   }, $class);
}

sub method {
   my ($self) = @_;
   lock ${ $self->{mutex_ref} };
   say sprintf "%08X %s %s", threads->tid, $self->{id}, "start";
   sleep(2);
   say sprintf "%08X %s %s", threads->tid, $self->{id}, "end";
}

my $o1 = __PACKAGE__->new('o1');
my $o2 = __PACKAGE__->new('o2');

my @threads;
for (1..3) {
   push @threads, async { my ($o) = @_; $o->method() } $o1;
   push @threads, async { my ($o) = @_; $o->method() } $o2;
}

$_->join for @threads;

Actually, if you're going to share the object anyway —it was done by passing as an argument to async int he above code— you could use the object itself as the lock.

sub new {
   my ($class, ...) = @_;
   return shared_clone(bless({
      ...
   }, $class));
}

Lock it when you enter the method.

sub method {
   my ($self) = @_;
   lock %$self;
   ...
}
share|improve this answer
It was already very simple, but I just added how to make it even simpler. – ikegami May 9 '12 at 22:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.