For the below program I'm getting this error message:
Thread 2 terminated abnormally: Invalid value for shared scalar at reader Foo::bar (defined at ... line 9) line 10.
The program consists of a pipeline where the first thread creates some Moose-based objects and puts them in the queue, which are then picked up in the second thread. The problem seems to be that the attribute is lazy because the error disappears if I remove the lazy setting.
package Foo;
use Moose;
has 'bar' => (
is => 'ro',
isa => 'HashRef', # the error doesn't happen with simpler datatypes
lazy => 1, # this line causes the error
default => sub { return { map {$_ => $_} (1 .. 10) } },
);
package main;
use threads;
use Thread::Queue;
my $threadq = Thread::Queue->new;
sub create {
# $_ doesn't seem to be thread-safe
# this resolved another problem I had with a custom Moose type constraint
# where the 'where' clause used $_
local $_;
$threadq->enqueue( Foo->new ) foreach 1 .. 5;
$threadq->enqueue( undef );
return;
}
sub process {
local $_;
while (my $f = $threadq->dequeue) {
print keys %{$f->bar}, "\n";
}
return;
}
threads->create( \&create )->join;
threads->create( \&process )->join;
Can anyone shed some light on this problem? Is Moose itself thread-safe (I couldn't find much in the documentation about this)?
defaultto the new thread. – Brad Gilbert Jan 29 at 19:03defaultto abuilderwhich I wouldn't expect to have issues with coderef copying – stevenl Jan 30 at 1:21