From 9704e8d29489c2db3a0051f58ea1e40e76b7f843 Mon Sep 17 00:00:00 2001 From: Dirk Koopman Date: Fri, 20 Jun 2014 12:49:27 +0100 Subject: [PATCH] a few changes after profiling --- perl/DXChannel.pm | 60 ++++++++++++++++++++++++------------------- perl/DXCommandmode.pm | 5 +++- perl/cluster.pl | 26 ++++++++----------- 3 files changed, 47 insertions(+), 44 deletions(-) diff --git a/perl/DXChannel.pm b/perl/DXChannel.pm index a000e17a..895a47b1 100644 --- a/perl/DXChannel.pm +++ b/perl/DXChannel.pm @@ -696,40 +696,46 @@ sub broadcast_list } } -sub process +sub process_one { - foreach my $dxchan (get_all()) { - next if $dxchan->{disconnecting}; + my $self = shift; + + while (my $data = shift @{$self->{inqueue}}) { + my ($sort, $call, $line) = $self->decode_input($data); + next unless defined $sort; + + # do the really sexy console interface bit! (Who is going to do the TK interface then?) + dbg("<- $sort $call $line") if $sort ne 'D' && isdbg('chan'); - while (my $data = shift @{$dxchan->{inqueue}}) { - my ($sort, $call, $line) = $dxchan->decode_input($data); - next unless defined $sort; - - # do the really sexy console interface bit! (Who is going to do the TK interface then?) - dbg("<- $sort $call $line") if $sort ne 'D' && isdbg('chan'); - - # handle A records - my $user = $dxchan->user; - if ($sort eq 'A' || $sort eq 'O') { - $dxchan->start($line, $sort); - } elsif ($sort eq 'I') { - die "\$user not defined for $call" if !defined $user; + # handle A records + my $user = $self->user; + if ($sort eq 'A' || $sort eq 'O') { + $self->start($line, $sort); + } elsif ($sort eq 'I') { + die "\$user not defined for $call" if !defined $user; - # normal input - $dxchan->normal($line); - } elsif ($sort eq 'Z') { - $dxchan->disconnect; - } elsif ($sort eq 'D') { - ; # ignored (an echo) - } elsif ($sort eq 'G') { - $dxchan->enhanced($line); - } else { - print STDERR atime, " Unknown command letter ($sort) received from $call\n"; - } + # normal input + $self->normal($line); + } elsif ($sort eq 'Z') { + $self->disconnect; + } elsif ($sort eq 'D') { + ; # ignored (an echo) + } elsif ($sort eq 'G') { + $self->enhanced($line); + } else { + dbg atime . " Unknown command letter ($sort) received from $call\n"; } } } +sub process +{ + foreach my $dxchan (get_all()) { + next if $dxchan->{disconnecting}; + $dxchan->process_one; + } +} + sub handle_xml { my $self = shift; diff --git a/perl/DXCommandmode.pm b/perl/DXCommandmode.pm index 1e3efc47..6f01eb57 100644 --- a/perl/DXCommandmode.pm +++ b/perl/DXCommandmode.pm @@ -564,7 +564,7 @@ sub process my $dxchan; foreach $dxchan (@dxchan) { - next if $dxchan->sort ne 'U'; + next if $dxchan->{sort} ne 'U'; # send a outstanding message prompt if required if ($t >= $dxchan->lastmsgpoll + $msgpolltime) { @@ -1166,6 +1166,9 @@ sub import_cmd my @names = readdir(DIR); closedir(DIR); my $name; + + return unless @names; + foreach $name (@names) { next if $name =~ /^\./; diff --git a/perl/cluster.pl b/perl/cluster.pl index f100d407..c13d93a1 100755 --- a/perl/cluster.pl +++ b/perl/cluster.pl @@ -341,6 +341,7 @@ sub idle_loop { my $timenow = time; + BPQMsg::process(); DXChannel::process(); # $DB::trace = 0; @@ -364,23 +365,16 @@ sub idle_loop DXDb::process(); DXUser::process(); DXDupe::process(); - $systime_days = $days; - $systime_daystart = $days * 86400; - } - IsoTime::update($systime); - DXCron::process(); # do cron jobs - DXCommandmode::process(); # process ongoing command mode stuff - DXXml::process(); - DXProt::process(); # process ongoing ak1a pcxx stuff - DXConnect::process(); - DXMsg::process(); - DXDb::process(); - DXUser::process(); - DXDupe::process(); - AGWMsg::process(); - BPQMsg::process(); + DXCron::process(); # do cron jobs + IsoTime::update($systime); + DXProt::process(); # process ongoing ak1a pcxx stuff + DXConnect::process(); + DXUser::process(); + AGWMsg::process(); + + Timer::handler(); - Timer::handler(); + } if (defined &Local::process) { eval { -- 2.34.1