X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fisolate.pl;h=3c0939c9cdf6f9d5c3281573d5027004055b232d;hb=201dedf3e4325faab5c34b38135790012142286b;hp=daa77f42eb01be26fe65c8d454aaa01025d77167;hpb=ab811a0c902225075a9bd69749f65594079433a9;p=spider.git diff --git a/cmd/show/isolate.pl b/cmd/show/isolate.pl index daa77f42..3c0939c9 100644 --- a/cmd/show/isolate.pl +++ b/cmd/show/isolate.pl @@ -15,17 +15,40 @@ my @out; use DB_File; -my ($action, $count, $key, $data) = (0,0,0,0); -for ($action = DXUser::R_FIRST, $count=0; !$DXUser::dbm->seq($key, $data, $action); $action = DXUser::R_NEXT) { - if ($data =~ m{isolate}) { - my $u = DXUser::get_current($key); - if ($u && $u->isolate) { - push @out, $key; - ++$count; - } - } -} - -return (1, @out, $self->msg('rec', $count)); +@out = $self->spawn_cmd("show/isolate $line", sub { + my @out; + my @val; + + my ($action, $count, $key, $data) = (0,0,0,0); + + for ($action = DXUser::R_FIRST, $count=0; !$DXUser::dbm->seq($key, $data, $action); $action = DXUser::R_NEXT) { + if ($data =~ m{isolate}) { + my $u = DXUser::get_current($key); + if ($u && $u->isolate) { + push @val, $key; + ++$count; + } + } + } + + my @l; + foreach my $call (@val) { + if (@l >= 5) { + push @out, sprintf "%-12s %-12s %-12s %-12s %-12s", @l; + @l = (); + } + push @l, $call; + } + if (@l) { + push @l, "" while @l < 5; + push @out, sprintf "%-12s %-12s %-12s %-12s %-12s", @l; + } + + push @out, , $self->msg('rec', $count); + return @out; + }); + + +return (1, @out);