X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FThingy.pm;h=8b3f3ccef0d6bc6ad75a6f512b8e4101115557c8;hb=4d22d5fd3874e8292d82f84a777b99ff7d10402a;hp=7bbf3edb1568673e265769b36926ea0068dea786;hpb=393e17fd3a08dd94596f1c02d4d20f6f9a44954f;p=spider.git diff --git a/perl/Thingy.pm b/perl/Thingy.pm index 7bbf3edb..8b3f3cce 100644 --- a/perl/Thingy.pm +++ b/perl/Thingy.pm @@ -42,6 +42,8 @@ sub new { my $class = shift; my $thing = {@_}; + + $thing->{origin} ||= $main::mycall; bless $thing, $class; return $thing; @@ -65,15 +67,13 @@ sub send } # generate the line which may (or not) be cached - my @out; - if (my $ref = $thing->{class}) { - push @out, ref $ref ? @$ref : $ref; - } else { + my $ref; + unless ($ref = $thing->{class}) { no strict 'refs'; my $sub = "gen_$class"; - push @out, $thing->$sub($dxchan) if $thing->can($sub); + $ref = $thing->$sub($dxchan) if $thing->can($sub); } - $dxchan->send(@out) if @out; + $dxchan->send(ref $ref ? @$ref : $ref) if $ref; } # broadcast to all except @_ @@ -98,11 +98,21 @@ sub queue push @queue, $thing; } +# # this is the main commutator loop. In due course it will -# become the *only* commutator loop +# become the *only* commutator loop, This can be called in one +# of two ways: either with 2 args or with none. +# +# The two arg form is an immediate "queue and handle" and does +# a full cycle, immediately +# sub process { my $thing; + if (@_ == 2) { + $thing = shift; + $thing->queue(shift); + } while (@queue) { $thing = shift @queue; my $dxchan = DXChannel->get($thing->{dxchan}); @@ -163,5 +173,14 @@ sub ascii $dd->Quotekeys($] < 5.005 ? 1 : 0); return $dd->Dumpxs; } + +sub add_auth +{ + my $thing = shift; + my $s = $thing->{'s'} = sprintf "%X", int(rand() * 100000000); + my $auth = Verify->new("DXSp,$main::mycall,$s,$main::version,$main::build"); + $thing->{auth} = $auth->challenge($main::me->user->passphrase); +} + 1;