05Nov00=======================================================================
1. 75% speed up on sh/dx !, lower memory usage as well!
2. Fixed problem with clear/spot 0 (how did this one last so long!!!)
-3. add 'on' in accept/reject spots as synonym for 'freq'
+3. add 'on' in accept/reject spots as synonym for 'freq'
+4. add the same speed up to general log printing
+5. fixed help \
04Nov00=======================================================================
1. fix sh/filter so ity now works for any callsign (and not just connected
ones).
my @out;
# this is naff but it will work for now
-$line = "help" unless $line;
my $lang = $self->lang;
$lang = 'en' if !$lang;
}
my $in;
-$line =~ s/![\w\/]//og;
-$line =~ s/\//\.\*\//og;
-$line =~ s/^\s+//og;
-$line =~ s/\s+$//og;
+$line =~ s/[^\w\/]//g;
+$line =~ s/\//\.\*\//g;
+$line =~ s/^\s+//g;
+$line =~ s/\s+$//g;
+$line = "help" if $line =~ /^\s*$/;
# sort out aliases
my $alias = CmdAlias::get_hlp($line);
my @out = ();
my $eval;
my $count;
+ my $hint = "";
$search = '1' unless $pattern || $who;
- $search = "\$ref->[1] =~ /$pattern/i" if $pattern;
- $search .= ' && ' if $pattern && $who;
- $search .= "(\$ref->[2] =~ /$who/i || \$ref->[3] =~ /$who/i)" if $who;
+ if ($pattern) {
+ $search = "\$ref->[1] =~ m{$pattern}i";
+ $hint = "m{$pattern}i";
+ }
+
+ if ($who) {
+ if ($search) {
+ $search .= ' && ';
+ $hint .= ' && ';
+ }
+ $search .= "(\$ref->[2] =~ m{$who}i || \$ref->[3] =~ m{$who}i)";
+ $hint .= 'm{$who}i';
+ }
+ $hint = "next unless $hint" if $hint;
+
$eval = qq(
+ \@in = ();
+ while (<\$fh>) {
+ $hint;
+ chomp;
+ \$ref = [ split '\\^' ];
+ push \@\$ref, "" unless \@\$ref >= 4;
+ push \@in, \$ref;
+ }
my \$c;
- my \$ref;
for (\$c = \$#in; \$c >= 0; \$c--) {
\$ref = \$in[\$c];
if ($search) {
for ($count = 0; $count < $to; ) {
my $ref;
if ($fh) {
- @in = ();
- while (<$fh>) {
- chomp;
- $ref = [ split '\^' ];
- push @{$ref}, "" unless @{$ref} >= 4;
- push @in, $ref;
- }
eval $eval; # do the search on this file
last if $count >= $to; # stop after n
return ("Log search error", $@) if $@;