5a4ee228bccca52609684db7c66d42d9d3fffc9b
[spider.git] / perl / DXChannel.pm
1 #
2 # module to manage channel lists & data
3 #
4 # This is the base class for all channel operations, which is everything to do 
5 # with input and output really.
6 #
7 # The instance variable in the outside world will be generally be called $dxchan
8 #
9 # This class is 'inherited' (if that is the goobledegook for what I am doing)
10 # by various other modules. The point to understand is that the 'instance variable'
11 # is in fact what normal people would call the state vector and all useful info
12 # about a connection goes in there.
13 #
14 # Another point to note is that a vector may contain a list of other vectors. 
15 # I have simply added another variable to the vector for 'simplicity' (or laziness
16 # as it is more commonly called)
17 #
18 # PLEASE NOTE - I am a C programmer using this as a method of learning perl
19 # firstly and OO about ninthly (if you don't like the design and you can't 
20 # improve it with better OO and thus make it smaller and more efficient, then tough). 
21 #
22 # Copyright (c) 1998-2016 - Dirk Koopman G1TLH
23 #
24 #
25 #
26 package DXChannel;
27
28 use Msg;
29 use DXM;
30 use DXUtil;
31 use DXVars;
32 use DXDebug;
33 use Filter;
34 use Prefix;
35 use Route;
36
37 use strict;
38 use vars qw(%channels %valid @ISA $count $maxerrors);
39
40 %channels = ();
41 $count = 0;
42
43 %valid = (
44                   'sort' => '5,Type of Channel',
45                   ann => '0,Want Announce,yesno',
46                   ann_talk => '0,Suppress Talk Anns,yesno',
47                   annfilter => '5,Ann Filt-out',
48                   badcount => '1,Bad Word Count',
49                   badip => '9,BAD IP address',
50                   beep => '0,Want Beeps,yesno',
51                   build => '1,Node Build',
52                   call => '0,Callsign',
53                   cluster => '5,Cluster data',
54                   conf => '0,In Conference?,yesno',
55                   conn => '9,Msg Conn ref',
56                   consort => '5,Connection Type',
57                   cq => '0,CQ Zone',
58                   delayed => '5,Delayed messages,parray',
59                   disconnecting => '9,Disconnecting,yesno',
60                   do_pc9x => '9,Handles PC9x,yesno',
61                   dx => '0,DX Spots,yesno',
62                   dxcc => '0,Country Code',
63                   edit => '7,Edit Function',
64                   enhanced => '5,Enhanced Client,yesno',
65                   errors => '9,Errors',
66                   func => '5,Function',
67                   group => '0,Access Group,parray',     # used to create a group of users/nodes for some purpose or other
68                   handle_xml => '9,Handles XML,yesno',
69                   here => '0,Here?,yesno',
70                   hostname => '0,Hostname',
71                   inannfilter => '5,Ann Filt-inp',
72                   inpc92filter => '5,PC92 Route Filt-inp',
73                   inqueue => '9,Input Queue,parray',
74                   inrbnfilter => '5,RBN Filt-inp',
75                   inroutefilter => '5,Route Filt-inp',
76                   inscript => '9,In a script,yesno',
77                   inspotsfilter => '5,Spot Filt-inp',
78                   inwcyfilter => '5,WCY Filt-inp',
79                   inwwvfilter => '5,WWV Filt-inp',
80                   isolate => '5,Isolate network,yesno',
81                   isslugged => '9,Still Slugged,yesno',
82                   itu => '0,ITU Zone',
83                   lang => '0,Language',
84                   lastmsgpoll => '0,Last Msg Poll,atime',
85                   lastping => '5,Ping last sent,atime',
86                   lastread => '5,Last Msg Read',
87                   list => '9,Dep Chan List',
88                   loc => '9,Local Vars', # used by func to store local variables in
89                   logininfo => '9,Login info req,yesno',
90                   metric => '1,Route metric',
91                   name => '0,User Name',
92                   newroute => '1,New Style Routing,yesno',
93                   next_pc92_keepalive => '9,Next PC92 KeepAlive,atime',
94                   next_pc92_update => '9,Next PC92 Update,atime',
95                   nopings => '5,Ping Obs Count',
96                   oldstate => '5,Last State',
97                   outbound => '5,outbound?,yesno',
98                   pagedata => '9,Page Data Store',
99                   pagelth => '0,Page Length',
100                   passwd => '9,Passwd List,yesno',
101                   pc50_t => '5,Last PC50 Time,atime',
102                   pc92filter => '5,PC92 Route Filt-out',
103                   pingave => '0,Ping ave time',
104                   pingint => '5,Ping Interval ',
105                   pingtime => '5,Ping totaltime,parray',
106                   priv => '9,Privilege',
107                   prompt => '0,Required Prompt',
108                   rbnfilter => '5,RBN Filt-out',
109                   redirect => '0,Redirect messages to',
110                   registered => '9,Registered?,yesno',
111                   remotecmd => '9,doing rcmd,yesno',
112                   route => '9,Route Data',
113                   routefilter => '5,Route Filt-out',
114                   senddbg => '8,Sending Debug,yesno',
115                   sluggedpcs => '9,Slugged PCxx Queue,parray',
116                   spotsfilter => '5,Spot Filt-out',
117                   startt => '0,Start Time,atime',
118                   state => '0,Current State',
119                   t => '9,Time,atime',
120                   talk => '0,Want Talk,yesno',
121                   talklist => '0,Talk List,parray',
122                   user => '9,DXUser ref',
123                   ve7cc => '0,VE7CC program special,yesno',
124                   verified => '9,Verified?,yesno',
125                   version => '1,Node Version',
126                   wcy => '0,Want WCY,yesno',
127                   wcyfilter => '5,WCY Filt-out',
128                   width => '0,Column Width',
129                   wwv => '0,Want WWV,yesno',
130                   wwvfilter => '5,WWV Filt-out',
131                   wx => '0,Want WX,yesno',                
132                  );
133
134 $maxerrors = 20;                                # the maximum number of concurrent errors allowed before disconnection
135
136 # object destruction
137 sub DESTROY
138 {
139         my $self = shift;
140         for (keys %$self) {
141                 if (ref($self->{$_})) {
142                         delete $self->{$_};
143                 }
144         }
145         dbg("DXChannel $self->{call} destroyed ($count)") if isdbg('chan');
146         $count--;
147 }
148
149 # create a new channel object [$obj = DXChannel->new($call, $msg_conn_obj, $user_obj)]
150 sub alloc
151 {
152         my ($pkg, $call, $conn, $user) = @_;
153         my $self = {};
154   
155         die "trying to create a duplicate channel for $call" if $channels{$call};
156         $self->{call} = $call;
157         $self->{priv} = 0;
158         $self->{conn} = $conn if defined $conn; # if this isn't defined then it must be a list
159         if (defined $user) {
160                 $self->{user} = $user;
161                 $self->{lang} = $user->lang;
162                 $user->new_group unless $user->group;
163                 $user->new_buddies unless $user->buddies;
164                 $self->{group} = $user->group;
165                 $self->{sort} = $user->sort;
166                 $self->{width} = $user->width;
167         }
168         $self->{startt} = $self->{t} = $main::systime;
169         $self->{state} = 0;
170         $self->{oldstate} = 0;
171         $self->{lang} = $main::lang if !$self->{lang};
172         $self->{func} = "";
173         $self->{width} ||=  80;
174
175         # add in all the dxcc, itu, zone info
176         my @dxcc = Prefix::extract($call);
177         if (@dxcc > 0) {
178                 $self->{dxcc} = $dxcc[1]->dxcc;
179                 $self->{itu} = $dxcc[1]->itu;
180                 $self->{cq} = $dxcc[1]->cq;
181         }
182         $self->{inqueue} = [];
183
184         $count++;
185         dbg("DXChannel $self->{call} created ($count)") if isdbg('chan');
186         bless $self, $pkg; 
187         return $channels{$call} = $self;
188 }
189
190 # count errors and disconnect if too many
191 # this has to be here because it can come from rcmd (DXProt) as
192 # well as DXCommandmode.
193 sub _error_out
194 {
195         my $self = shift;
196         my $e = shift;
197         if (++$self->{errors} > $maxerrors) {
198                 $self->send($self->msg('e26'));
199                 $self->disconnect;
200                 return ();
201         } else {
202                 return ($self->msg($e));
203         }
204 }
205
206 # rebless this channel as something else
207 sub rebless
208 {
209         my $self = shift;
210         my $class = shift;
211         return $channels{$self->{call}} = bless $self, $class;
212 }
213
214 sub rec 
215 {
216         my ($self, $msg) = @_;
217         
218         # queue the message and the channel object for later processing
219         if (defined $msg) {
220                 push @{$self->{inqueue}}, $msg;
221         }
222         $self->process_one;
223 }
224
225 # obtain a channel object by callsign [$obj = DXChannel::get($call)]
226 sub get
227 {
228         my $call = shift;
229         return $channels{$call};
230 }
231
232 # obtain all the channel objects
233 sub get_all
234 {
235         return values(%channels);
236 }
237
238 #
239 # gimme all the ak1a nodes
240 #
241 sub get_all_nodes
242 {
243         my $ref;
244         my @out;
245         foreach $ref (values %channels) {
246                 push @out, $ref if $ref->is_node;
247         }
248         return @out;
249 }
250
251 # return a list of node calls
252 sub get_all_node_calls
253 {
254         my $ref;
255         my @out;
256         foreach $ref (values %channels) {
257                 push @out, $ref->{call} if $ref->is_node;
258         }
259         return @out;
260 }
261
262 # return a list of all users
263 sub get_all_users
264 {
265         my $ref;
266         my @out;
267         foreach $ref (values %channels) {
268                 push @out, $ref if $ref->is_user;
269         }
270         return @out;
271 }
272
273 # return a list of all user callsigns
274 sub get_all_user_calls
275 {
276         my $ref;
277         my @out;
278         foreach $ref (values %channels) {
279                 push @out, $ref->{call} if $ref->is_user;
280         }
281         return @out;
282 }
283
284 # obtain a channel object by searching for its connection reference
285 sub get_by_cnum
286 {
287         my ($pkg, $conn) = @_;
288         my $self;
289   
290         foreach $self (values(%channels)) {
291                 return $self if ($self->{conn} == $conn);
292         }
293         return undef;
294 }
295
296 # get rid of a channel object [$obj->del()]
297 sub del
298 {
299         my $self = shift;
300
301         $self->{group} = undef;         # belt and braces
302         delete $channels{$self->{call}};
303 }
304
305 # is it a bbs
306 sub is_bbs
307 {
308         return $_[0]->{sort} eq 'B';
309 }
310
311 sub is_node
312 {
313         return $_[0]->{sort} =~ /^[ACRSX]$/;
314 }
315 # is it an ak1a node ?
316 sub is_ak1a
317 {
318         return $_[0]->{sort} eq 'A';
319 }
320
321 # is it a user?
322 sub is_user
323 {
324         return $_[0]->{sort} =~ /^[UW]$/;
325 }
326
327 # is it a clx node
328 sub is_clx
329 {
330         return $_[0]->{sort} eq 'C';
331 }
332
333 # it is a Web connected user
334 sub is_web
335 {
336         return $_[0]->{sort} eq 'W';
337 }
338
339 # is it a spider node
340 sub is_spider
341 {
342         return $_[0]->{sort} eq 'S';
343 }
344
345 # is it a DXNet node
346 sub is_dxnet
347 {
348         return $_[0]->{sort} eq 'X';
349 }
350
351 # is it a ar-cluster node
352 sub is_arcluster
353 {
354         return $_[0]->{sort} eq 'R';
355 }
356
357 sub is_rbn
358 {
359         return $_[0]->{sort} eq 'N';
360 }
361
362 sub is_dslink
363 {
364         return $_[0]->{sort} eq 'L';
365 }
366
367 # for perl 5.004's benefit
368 sub sort
369 {
370         my $self = shift;
371         return @_ ? $self->{sort} = shift : $self->{sort} ;
372 }
373
374 # find out whether we are prepared to believe this callsign on this interface
375 sub is_believed
376 {
377         my $self = shift;
378         my $call = shift;
379         
380         return grep $call eq $_, $self->user->believe;
381 }
382
383 # handle out going messages, immediately without waiting for the select to drop
384 # this could, in theory, block
385 sub send_now
386 {
387         my $self = shift;
388         my $conn = $self->{conn};
389         return unless $conn;
390         my $sort = shift;
391         my $call = $self->{call};
392         
393         for (@_) {
394 #               chomp;
395         my @lines = split /\n/;
396                 for (@lines) {
397                         $conn->send_now("$sort$call|$_");
398                         # debug log it, but not if it is a log message
399                         dbg("-> $sort $call $_") if $sort ne 'L' && isdbg('chan');
400                 }
401         }
402         $self->{t} = time;
403 }
404
405 #
406 # send later with letter (more control)
407 #
408
409 sub send_later
410 {
411         my $self = shift;
412         my $conn = $self->{conn};
413         return unless $conn;
414         my $sort = shift;
415         my $call = $self->{call};
416         
417         for (@_) {
418 #               chomp;
419         my @lines = split /\n/;
420                 for (@lines) {
421                         $conn->send_later("$sort$call|$_");
422                         # debug log it, but not if it is a log message
423                         dbg("-> $sort $call $_") if $sort ne 'L' && isdbg('chan');
424                 }
425         }
426         $self->{t} = time;
427 }
428
429 #
430 # the normal output routine
431 #
432 sub send                                                # this is always later and always data
433 {
434         my $self = shift;
435         my $conn = $self->{conn};
436         return unless $conn;
437         my $call = $self->{call};
438
439         foreach my $l (@_) {
440                 for (ref $l ? @$l : $l) {
441                         my @lines = split /\n/;
442                         for (@lines) {
443                                 $conn->send_later("D$call|$_");
444                                 dbg("-> D $call $_") if isdbg('chan');
445                         }
446                 }
447         }
448         $self->{t} = $main::systime;
449 }
450
451 # send a file (always later)
452 sub send_file
453 {
454         my ($self, $fn) = @_;
455         my $call = $self->{call};
456         my $conn = $self->{conn};
457         my @buf;
458   
459         open(F, $fn) or die "can't open $fn for sending file ($!)";
460         @buf = <F>;
461         close(F);
462         $self->send(@buf);
463 }
464
465 # this will implement language independence (in time)
466 sub msg
467 {
468         my $self = shift;
469         return DXM::msg($self->{lang}, @_);
470 }
471
472 # stick a broadcast on the delayed queue (but only up to 20 items)
473 sub delay
474 {
475         my $self = shift;
476         my $s = shift;
477         
478         $self->{delayed} = [] unless $self->{delayed};
479         push @{$self->{delayed}}, $s;
480         if (@{$self->{delayed}} >= 20) {
481                 shift @{$self->{delayed}};   # lose oldest one
482         }
483 }
484
485 # change the state of the channel - lots of scope for debugging here :-)
486 sub state
487 {
488         my $self = shift;
489         if (@_) {
490                 $self->{oldstate} = $self->{state};
491                 $self->{state} = shift;
492                 $self->{func} = '' unless defined $self->{func};
493                 dbg("$self->{call} channel func $self->{func} state $self->{oldstate} -> $self->{state}\n") if isdbg('state');
494
495                 # if there is any queued up broadcasts then splurge them out here
496                 if ($self->{delayed} && ($self->{state} eq 'prompt' || $self->{state} eq 'talk')) {
497                         $self->send (@{$self->{delayed}});
498                         delete $self->{delayed};
499                 }
500         }
501         return $self->{state};
502 }
503
504 # disconnect this channel
505 sub disconnect
506 {
507         my $self = shift;
508         my $user = $self->{user};
509         
510         $user->close($self->{startt}, $self->{hostname}) if defined $user;
511         $self->{conn}->disconnect if $self->{conn};
512         $self->del();
513 }
514
515 #
516 # just close all the socket connections down without any fiddling about, cleaning, being
517 # nice to other processes and otherwise telling them what is going on.
518 #
519 # This is for the benefit of forked processes to prepare for starting new programs, they
520 # don't want or need all this baggage.
521 #
522
523 sub closeall
524 {
525         my $ref;
526         foreach $ref (values %channels) {
527                 $ref->{conn}->disconnect() if $ref->{conn};
528         }
529 }
530
531 #
532 # Tell all the users that we have come in or out (if they want to know)
533 #
534 sub tell_login
535 {
536         my ($self, $m, $call) = @_;
537         
538         $call ||= $self->{call};
539         
540         # send info to all logged in thingies
541         my @dxchan = get_all_users();
542         my $dxchan;
543         foreach $dxchan (@dxchan) {
544                 next if $dxchan == $self;
545                 next if $dxchan->{call} eq $main::mycall;
546                 $dxchan->send($dxchan->msg($m, $call)) if $dxchan->{logininfo};
547         }
548 }
549
550 #
551 # Tell all the users if a buddy is logged or out
552 #
553 sub tell_buddies
554 {
555         my ($self, $m, $call, $node) = @_;
556         
557         $call ||= $self->{call};
558         $call =~ s/-\d+$//;
559         $m .= 'n' if $node;
560         
561         # send info to all logged in thingies
562         my @dxchan = get_all_users();
563         my $dxchan;
564         foreach $dxchan (@dxchan) {
565                 next if $dxchan == $self;
566                 next if $dxchan->{call} eq $main::mycall;
567                 $dxchan->send($dxchan->msg($m, $call, $node)) if grep $_ eq $call, @{$dxchan->{user}->{buddies}} ;
568         }
569 }
570
571 # various access routines
572
573 #
574 # return a list of valid elements 
575
576
577 sub fields
578 {
579         return keys(%valid);
580 }
581
582 #
583 # return a prompt for a field
584 #
585
586 sub field_prompt
587
588         my ($self, $ele) = @_;
589         return $valid{$ele};
590 }
591
592 # take a standard input message and decode it into its standard parts
593 sub decode_input
594 {
595         my $dxchan = shift;
596         my $data = shift;
597         my ($sort, $call, $line) = $data =~ /^([A-Z])(#?[A-Z0-9\/\-]{3,25})\|(.*)$/;
598
599         my $chcall = (ref $dxchan) ? $dxchan->call : "UN.KNOWN";
600         
601         # the above regexp must work
602         unless (defined $sort && defined $call && defined $line) {
603 #               $data =~ s/([\x00-\x1f\x7f-\xff])/uc sprintf("%%%02x",ord($1))/eg;
604                 dbg("DUFF Line on $chcall: $data");
605                 return ();
606         }
607
608         if(ref($dxchan) && $call ne $chcall) {
609                 dbg("DUFF Line come in for $call on wrong channel $chcall");
610                 return();
611         }
612         
613         return ($sort, $call, $line);
614 }
615
616 # broadcast a message to all clusters taking into account isolation
617 # [except those mentioned after buffer]
618 sub broadcast_nodes
619 {
620         my $s = shift;                          # the line to be rebroadcast
621         my @except = @_;                        # to all channels EXCEPT these (dxchannel refs)
622         my @dxchan = get_all_nodes();
623         my $dxchan;
624         
625         # send it if it isn't the except list and isn't isolated and still has a hop count
626         foreach $dxchan (@dxchan) {
627                 next if grep $dxchan == $_, @except;
628                 next if $dxchan == $main::me;
629                 
630                 my $routeit = $dxchan->can('adjust_hops') ? $dxchan->adjust_hops($s) : $s;      # adjust its hop count by node name
631
632                 $dxchan->send($routeit) unless $dxchan->{isolate} || !$routeit;
633         }
634 }
635
636 # broadcast a message to all clusters ignoring isolation
637 # [except those mentioned after buffer]
638 sub broadcast_all_nodes
639 {
640         my $s = shift;                          # the line to be rebroadcast
641         my @except = @_;                        # to all channels EXCEPT these (dxchannel refs)
642         my @dxchan = get_all_nodes();
643         my $dxchan;
644         
645         # send it if it isn't the except list and isn't isolated and still has a hop count
646         foreach $dxchan (@dxchan) {
647                 next if grep $dxchan == $_, @except;
648                 next if $dxchan == $main::me;
649
650                 my $routeit = $dxchan->can('adjust_hops') ? $dxchan->adjust_hops($s) : $s;      # adjust its hop count by node name
651                 $dxchan->send($routeit);
652         }
653 }
654
655 # broadcast to all users
656 # storing the spot or whatever until it is in a state to receive it
657 sub broadcast_users
658 {
659         my $s = shift;                          # the line to be rebroadcast
660         my $sort = shift;           # the type of transmission
661         my $fref = shift;           # a reference to an object to filter on
662         my @except = @_;                        # to all channels EXCEPT these (dxchannel refs)
663         my @dxchan = get_all_users();
664         my $dxchan;
665         my @out;
666         
667         foreach $dxchan (@dxchan) {
668                 next if grep $dxchan == $_, @except;
669                 push @out, $dxchan;
670         }
671         broadcast_list($s, $sort, $fref, @out);
672 }
673
674
675 # broadcast to a list of users
676 sub broadcast_list
677 {
678         my $s = shift;
679         my $sort = shift;
680         my $fref = shift;
681         my $dxchan;
682         
683         foreach $dxchan (@_) {
684                 my $filter = 1;
685                 next if $dxchan == $main::me;
686                 
687                 if ($sort eq 'dx') {
688                     next unless $dxchan->{dx};
689                         ($filter) = $dxchan->{spotsfilter}->it($fref) if $dxchan->{spotsfilter} && ref $fref;
690                         next unless $filter;
691                 }
692                 next if $sort eq 'ann' && !$dxchan->{ann} && $s !~ /^To\s+LOCAL\s+de\s+(?:$main::myalias|$main::mycall)/i;
693                 next if $sort eq 'wwv' && !$dxchan->{wwv};
694                 next if $sort eq 'wcy' && !$dxchan->{wcy};
695                 next if $sort eq 'wx' && !$dxchan->{wx};
696
697                 $s =~ s/\a//og unless $dxchan->{beep};
698
699                 if ($dxchan->{state} eq 'prompt' || $dxchan->{state} eq 'talk') {
700                         $dxchan->send($s);      
701                 } else {
702                         $dxchan->delay($s);
703                 }
704         }
705 }
706
707 sub process_one
708 {
709         my $self = shift;
710
711         while (my $data = shift @{$self->{inqueue}}) {
712                 my ($sort, $call, $line) = $self->decode_input($data);
713                 next unless defined $sort;
714                 
715                 # do the really sexy console interface bit! (Who is going to do the TK interface then?)
716                 dbg("<- $sort $call $line") if $sort ne 'D' && isdbg('chan');
717                 
718                 # handle A records
719                 my $user = $self->user;
720                 if ($sort eq 'I') {
721                         die "\$user not defined for $call" unless defined $user;
722                         
723                         # normal input
724                         $self->normal($line);
725                 } elsif ($sort eq 'G') {
726                         $self->enhanced($line);
727                 } elsif ($sort eq 'A' || $sort eq 'O' || $sort eq 'W') {
728                         $self->start($line, $sort);
729                 } elsif ($sort eq 'C') {
730                         $self->width($line); # change number of columns
731                 } elsif ($sort eq 'Z') {
732                         $self->disconnect;
733                 } elsif ($sort eq 'D') {
734                         ;                               # ignored (an echo)
735                 } else {
736                         dbg atime . " DXChannel::process_one: Unknown command letter ($sort) received from $call\n";
737                 }
738         }
739 }
740
741 sub process
742 {
743         foreach my $dxchan (values %channels) {
744                 next if $dxchan->{disconnecting};
745                 $dxchan->process_one;
746         }
747 }
748
749 sub handle_xml
750 {
751         my $self = shift;
752         my $r = 0;
753         
754         if (DXXml::available()) {
755                 $r = $self->{handle_xml} || 0;
756         } else {
757                 delete $self->{handle_xml} if exists $self->{handle_xml};
758         }
759         return $r;
760 }
761
762 sub error_handler
763 {
764         my $self = shift;
765         my $error = shift || '';
766         dbg("$self->{call} ERROR '$error', closing") if isdbg('chan');
767         $self->{conn}->set_error(undef) if exists $self->{conn};
768         $self->disconnect(1);
769 }
770
771
772 sub isregistered
773 {
774         my $self = shift;
775
776         # the sysop is registered!
777         return 1 if $self->{call} eq $main::myalias || $self->{call} eq $main::mycall;
778         
779         if ($main::reqreg) {
780                 return $self->{registered};
781         } else {
782                 return 1;
783         }
784 }
785
786 #no strict;
787 sub AUTOLOAD
788 {
789         no strict;
790         my $name = $AUTOLOAD;
791         return if $name =~ /::DESTROY$/;
792         $name =~ s/^.*:://o;
793   
794         confess "Non-existant field '$AUTOLOAD'" if !$valid{$name};
795
796         # this clever line of code creates a subroutine which takes over from autoload
797         # from OO Perl - Conway
798         *$AUTOLOAD = sub {@_ > 1 ? $_[0]->{$name} = $_[1] : $_[0]->{$name}};
799         goto &$AUTOLOAD;
800 }
801
802
803 1;
804 __END__;