Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

So I created a library that contains the 'tests' I need to preform on different systems. It uses a thread pool and dissected versions of queue and semaphore. Anyhow I need some help with calling the sub from the thread as a library class. This was all working until I updated the library to use an object. Thank you for any help or insight.

COMMAND

Orginal non-OO: &{\&{$testname}}($system); updated as OO: $self->{&{\&{$testname}}}->($system); #system is hashr +ef

ERROR

=pod Nov 17 12:27:47, tests.pm , executetest , 128: + processing executetest Nov 17 12:27:47, tests.pm , executetest , 132: + Starting test [cleanupConfig] Nov 17 12:27:47, tests.pm , cleanupConfig , 1568: + Called from [tests::executetest] at [133] with options [] Nov 17 12:27:47, tests.pm , cleanupConfig , 1571, + WARNING: Use of uninitialized value $self in concatenation (.) or st +ring SELF: Nov 17 12:27:47, tests.pm , cleanupConfig , 1572, + FATAL WARNING: Can't call method "_idown" on an undefined value =cut

EXAMPLE CODE

use XML::Simple; my @xmlOptsO = (KeepRoot=>1, KeyAttr=>[]); use tests; my ($tests, @workers) = tests->new(); $tests->enqueue(XMLout("<system><job><step name='cleanup'><nextjob>0:1 +</nextjob></job></system>", @xmlOptsO)); #start my $system = $test->dequeue(); #complete
package tests; #constructor sub new { my $class = shift; #queues my @testStartQueue :shared; my $testStartLock :shared; my @testDoneQueue :shared; my $testDoneLock :shared; my %self :shared = ( 'testStartQueue' => \@testStartQueue, 'testStartLock' => \$testStartLock, 'testDoneQueue' => \@testDoneQueue, 'testDoneLock' => \$testDoneLock, ); bless(\%self, $class); my @workers; for (my $x = 0; $x < 5; $x++) { push(@workers, threads->create("executetest", \%self)); #testi +ng workers } return (\%self, @workers); } #TEST START----------------------------------------------------------- +-- sub enqueue { my $self = shift; return $self->_enqueue('testStartLock', 'testStartQueue', @_); } sub _tsdequeue { my $self = shift; return $self->_dequeue('testStartLock', 'testStartQueue', @_); } #TEST START----------------------------------------------------------- +-- #TEST DONE------------------------------------------------------------ +- sub _tdenqueue { my $self = shift; return $self->_enqueue('testDoneLock', 'testDoneQueue', @_); } sub dequeue { my $self = shift; return $self->_dequeue('testDoneLock', 'testDoneQueue', @_); } #TEST DONE------------------------------------------------------------ +- #Methods sub end { my $self = shift; lock ${$self->{'testStartLock'}}; lock(${$self->{'testDoneLock'}}); # No more data is coming $$self{'ENDED'} = 1; # Try to release at least one blocked thread cond_signal(${$self->{'testStartLock'}}); cond_signal(${$self->{'testDoneLock'}}); return; } sub _enqueue { my $self = shift; my $lock = shift; my $queue = shift; unless ($$self{'ENDED'}) { lock(${$self->{$lock}}); push(@{$self->{$queue}}, map { shared_clone($_) } @_) and cond +_signal(${$self->{$lock}}); } return } sub _dequeue { my $self = shift; my $lock = shift; my $queue = shift; lock(${$self->{$lock}}); my $count = @_ ? $self->_validate_count(shift) : 1; cond_wait(${$self->{$lock}}) while ((@{$self->{$queue}} < $count) +&& ! $$self{'ENDED'}); cond_signal(${$self->{$lock}}) if ((@{$self->{$queue}} > $count) | +| $$self{'ENDED'}); # Return single item return shift(@{$self->{$queue}}) if ($count == 1); # Return multiple items my @items; for (1..$count) { last if (! @{$self->{$queue}}); #this should only happen in th +e event there are either enough values or end has been called. push(@items, shift(@{$self->{$queue}})); } return @items; } #THREAD sub executetest { local *__ANON__ = 'executetest'; my $self = shift; print "SELF: $self\n"; logLine("Thread executetest [".threads->self->tid()."] start"); while (defined(my $system = $self->_tsdequeue())) { #test start qu +eue logLine("processing executetest"); my $test = (split(":",$system->{job}->[0]->{nextjob}->[0]))[0] +; #test number my $testname = $system->{job}->[0]->{step}->[$test]->{name}; # +test name logLine("Starting test [$testname]"); $system = $self->{&{\&{$testname}}}->($system); #test logLine("Completed test [$testname]"); $self->_tdenqueue($system); #test done queue } croak("Thread executetest [".threads->self->tid(). "] end\n"); return "executetest"; } sub logLine { print $_[0]."\n"; } #example test sub cleanup { $self = shift; #fails print "SELF: $self\n"; my $system = $_[0]; $self->logLine("MESSAGE"); #here there are actually semaphore call +s which fail b/c '$self' is "". return $system; }

In reply to how to call a sub via variable in library by glenn

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (4)
As of 2024-04-18 03:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found