line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Beam::Runner::Command::minion; |
2
|
|
|
|
|
|
|
our $VERSION = '0.015'; |
3
|
|
|
|
|
|
|
# ABSTRACT: Command for L to run distributed tasks |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
#pod =head1 SYNOPSIS |
6
|
|
|
|
|
|
|
#pod |
7
|
|
|
|
|
|
|
#pod exit Beam::Runner::Command::minion->run( $cmd => @args ); |
8
|
|
|
|
|
|
|
#pod |
9
|
|
|
|
|
|
|
#pod =head1 DESCRIPTION |
10
|
|
|
|
|
|
|
#pod |
11
|
|
|
|
|
|
|
#pod This is the entry point for the L command to delegate to |
12
|
|
|
|
|
|
|
#pod the appropriate L subclass. |
13
|
|
|
|
|
|
|
#pod |
14
|
|
|
|
|
|
|
#pod =head1 SEE ALSO |
15
|
|
|
|
|
|
|
#pod |
16
|
|
|
|
|
|
|
#pod The L commands: L, |
17
|
|
|
|
|
|
|
#pod L |
18
|
|
|
|
|
|
|
#pod |
19
|
|
|
|
|
|
|
#pod =cut |
20
|
|
|
|
|
|
|
|
21
|
1
|
|
|
1
|
|
1899
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
29
|
|
22
|
1
|
|
|
1
|
|
5
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
28
|
|
23
|
1
|
|
|
1
|
|
5
|
use Module::Runtime qw( use_module compose_module_name ); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
sub run { |
26
|
3
|
|
|
3
|
0
|
6365
|
my ( $class, $cmd, @args ) = @_; |
27
|
3
|
100
|
|
|
|
11
|
if ( !$cmd ) { |
28
|
1
|
|
|
|
|
9
|
die "ERROR: No 'beam minion' sub-command specified\n"; |
29
|
|
|
|
|
|
|
} |
30
|
2
|
|
|
|
|
5
|
my $cmd_class = compose_module_name( 'Beam::Minion::Command', $cmd ); |
31
|
2
|
|
|
|
|
75
|
eval { use_module( $cmd_class ) }; |
|
2
|
|
|
|
|
6
|
|
32
|
2
|
100
|
|
|
|
680
|
if ( $@ ) { |
33
|
1
|
50
|
|
|
|
7
|
if ( $@ =~ m{^Can't locate Beam/Minion/Command/} ) { |
34
|
1
|
|
|
|
|
8
|
die "ERROR: No such sub-command: $cmd\n"; |
35
|
|
|
|
|
|
|
} |
36
|
0
|
|
|
|
|
0
|
die "Error loading module '$cmd_class': $@\n"; |
37
|
|
|
|
|
|
|
} |
38
|
1
|
|
|
|
|
6
|
return $cmd_class->run( @args ); |
39
|
|
|
|
|
|
|
} |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
1; |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
__END__ |