| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package App::bif::show; |
|
2
|
6
|
|
|
6
|
|
5803
|
use strict; |
|
|
6
|
|
|
|
|
18
|
|
|
|
6
|
|
|
|
|
199
|
|
|
3
|
6
|
|
|
6
|
|
34
|
use warnings; |
|
|
6
|
|
|
|
|
13
|
|
|
|
6
|
|
|
|
|
180
|
|
|
4
|
6
|
|
|
6
|
|
31
|
use Bif::Mo; |
|
|
6
|
|
|
|
|
14
|
|
|
|
6
|
|
|
|
|
49
|
|
|
5
|
6
|
|
|
6
|
|
34
|
use OptArgs 'class_optargs'; |
|
|
6
|
|
|
|
|
13
|
|
|
|
6
|
|
|
|
|
56
|
|
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.1.5_6'; |
|
8
|
|
|
|
|
|
|
extends 'App::bif'; |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
sub run { |
|
11
|
1
|
|
|
1
|
1
|
3
|
my $self = shift; |
|
12
|
1
|
|
|
|
|
5
|
my $opts = $self->opts; |
|
13
|
1
|
|
|
|
|
12
|
my $info = $self->get_node( $self->uuid2id( $opts->{id} ) ); |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
my ( $class, $newopts ) = |
|
16
|
|
|
|
|
|
|
class_optargs( 'App::bif', 'show', $info->{kind}, $info->{id}, |
|
17
|
0
|
0
|
|
|
|
|
{ $opts->{log} ? ( log => undef ) : (), } ); |
|
18
|
|
|
|
|
|
|
|
|
19
|
0
|
|
|
|
|
|
return $self->dispatch( $class, opts => $newopts ); |
|
20
|
|
|
|
|
|
|
} |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
1; |
|
23
|
|
|
|
|
|
|
__END__ |