⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 parallelsession.pm

📁 视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.
💻 PM
字号:
package TAP::Formatter::Console::ParallelSession;use strict;use File::Spec;use File::Path;use TAP::Formatter::Console::Session;use Carp;use constant WIDTH => 72;    # Because Eric saysuse vars qw($VERSION @ISA);@ISA = qw(TAP::Formatter::Console::Session);my %shared;sub _initialize {    my ( $self, $arg_for ) = @_;    $self->SUPER::_initialize($arg_for);    my $formatter = $self->formatter;    # Horrid bodge. This creates our shared context per harness. Maybe    # TAP::Harness should give us this?    my $context = $shared{$formatter} ||= $self->_create_shared_context;    push @{ $context->{active} }, $self;    return $self;}sub _create_shared_context {    my $self = shift;    return {        active => [],        tests  => 0,        fails  => 0,    };}sub _need_refresh {    my $self      = shift;    my $formatter = $self->formatter;    $shared{$formatter}->{need_refresh}++;}=head1 NAMETAP::Formatter::Console::ParallelSession - Harness output delegate for parallel console output=head1 VERSIONVersion 3.07=cut$VERSION = '3.07';=head1 DESCRIPTIONThis provides console orientated output formatting for L<TAP::Harness::Parallel>.=head1 SYNOPSIS=cut=head1 METHODS=head2 Class Methods=head3 C<header>Output test preamble=cutsub header {    my $self = shift;    $self->_need_refresh;}sub _refresh {}sub _clear_line {    my $self = shift;    $self->formatter->_output( "\r" . ( ' ' x WIDTH ) . "\r" );}sub _output_ruler {    my $self      = shift;    my $formatter = $self->formatter;    return if $formatter->really_quiet;    my $context = $shared{$formatter};    my $ruler = sprintf( "===( %7d )", $context->{tests} );    $ruler .= ( '=' x ( WIDTH - length $ruler ) );    $formatter->_output("\r$ruler");}=head3 C<result>  Called by the harness for each line of TAP it receives .=cutsub result {    my ( $self, $result ) = @_;    my $parser    = $self->parser;    my $formatter = $self->formatter;    my $context   = $shared{$formatter};    $self->_refresh;    # my $really_quiet = $formatter->really_quiet;    # my $show_count   = $self->_should_show_count;    my $planned = $parser->tests_planned;    if ( $result->is_bailout ) {        $formatter->_failure_output(                "Bailout called.  Further testing stopped:  "              . $result->explanation              . "\n" );    }    if ( $result->is_test ) {        $context->{tests}++;        my $test_print_modulus = 1;        my $ceiling            = $context->{tests} / 5;        $test_print_modulus *= 2 while $test_print_modulus < $ceiling;        unless ( $context->{tests} % $test_print_modulus ) {            $self->_output_ruler;        }    }}=head3 C<close_test>=cutsub close_test {    my $self      = shift;    my $name      = $self->name;    my $parser    = $self->parser;    my $formatter = $self->formatter;    my $context   = $shared{$formatter};    unless ( $formatter->really_quiet ) {        $self->_clear_line;        # my $output = $self->_output_method;        $formatter->_output(            $formatter->_format_name( $self->name ),            ' '        );    }    if ( $parser->has_problems ) {        $self->_output_test_failure($parser);    }    else {        $formatter->_output("ok\n")          unless $formatter->really_quiet;    }    $self->_output_ruler;    # $self->SUPER::close_test;    my $active = $context->{active};    my @pos = grep { $active->[$_]->name eq $name } 0 .. $#$active;    die "Can't find myself" unless @pos;    splice @$active, $pos[0], 1;    $self->_need_refresh;    unless (@$active) {        # $self->formatter->_output("\n");        delete $shared{$formatter};    }}1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -