X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FConnection.pm;h=f3cc3d6bfc1a6a14a766c136f226398212d12aa9;hb=0ccf62ac59a4ce292d6296abde96af8abff121c0;hp=79238932794fc633755bf4618e1cffc289750b69;hpb=03aecbc2f35399498bb43a579a0ac33bfbf16a20;p=irspy-moved-to-github.git diff --git a/lib/ZOOM/IRSpy/Connection.pm b/lib/ZOOM/IRSpy/Connection.pm index 7923893..f3cc3d6 100644 --- a/lib/ZOOM/IRSpy/Connection.pm +++ b/lib/ZOOM/IRSpy/Connection.pm @@ -1,4 +1,4 @@ -# $Id: Connection.pm,v 1.2 2006-10-11 16:46:01 mike Exp $ +# $Id: Connection.pm,v 1.5 2006-10-25 10:52:04 mike Exp $ package ZOOM::IRSpy::Connection; @@ -73,7 +73,7 @@ sub current_task { my $old = $this->{current_task}; if (defined $new) { $this->{current_task} = $new; - $this->log("irspy_debug", "set current task to $new"); + $this->log("irspy_task", "set current task to $new"); } return $old; @@ -87,7 +87,7 @@ sub next_task { my $old = $this->{next_task}; if (defined $new) { $this->{next_task} = $new; - $this->log("irspy_debug", "set next task to $new"); + $this->log("irspy_task", "set next task to $new"); } return $old; @@ -104,19 +104,19 @@ sub log { sub irspy_connect { my $this = shift(); - my(%cb) = @_; + my($udata, $options, %cb) = @_; - $this->add_task(new ZOOM::IRSpy::Task::Connect($this, %cb)); - $this->log("irspy", "registered connect()"); + my $task = new ZOOM::IRSpy::Task::Connect($this, $udata, $options, %cb); + $this->add_task($task); } sub irspy_search_pqf { my $this = shift(); - my($query, %cb) = @_; + my($query, $udata, $options, %cb) = @_; - $this->add_task(new ZOOM::IRSpy::Task::Search($query, $this, %cb)); - $this->log("irspy", "registered search_pqf($query)"); + my $task = new ZOOM::IRSpy::Task::Search($query, $this, $udata, $options, %cb); + $this->add_task($task); } @@ -127,7 +127,7 @@ sub add_task { my $tasks = $this->{tasks}; $tasks->[-1]->{next} = $task if @$tasks > 0; push @$tasks, $task; - $this->log("irspy", "added task $task"); + $this->log("irspy_task", "added task $task"); }