line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package App::TestOnTap::ParallelGroupManager; |
2
|
|
|
|
|
|
|
|
3
|
19
|
|
|
19
|
|
140
|
use strict; |
|
19
|
|
|
|
|
43
|
|
|
19
|
|
|
|
|
587
|
|
4
|
19
|
|
|
19
|
|
105
|
use warnings; |
|
19
|
|
|
|
|
43
|
|
|
19
|
|
|
|
|
506
|
|
5
|
|
|
|
|
|
|
|
6
|
19
|
|
|
19
|
|
125
|
use Grep::Query; |
|
19
|
|
|
|
|
62
|
|
|
19
|
|
|
|
|
927
|
|
7
|
19
|
|
|
19
|
|
10719
|
use List::MoreUtils qw(singleton); |
|
19
|
|
|
|
|
237625
|
|
|
19
|
|
|
|
|
126
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
# CTOR |
10
|
|
|
|
|
|
|
# |
11
|
|
|
|
|
|
|
sub new |
12
|
|
|
|
|
|
|
{ |
13
|
27
|
|
|
27
|
0
|
397
|
my $class = shift; |
14
|
27
|
|
|
|
|
255
|
my $cfg = shift; |
15
|
|
|
|
|
|
|
|
16
|
27
|
|
|
|
|
161
|
my $self = bless( {}, $class); |
17
|
27
|
|
|
|
|
364
|
$self->__parseParallelGroups($cfg); |
18
|
|
|
|
|
|
|
|
19
|
27
|
|
|
|
|
141
|
return $self; |
20
|
|
|
|
|
|
|
} |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
sub cull |
23
|
|
|
|
|
|
|
{ |
24
|
55
|
|
|
55
|
0
|
203
|
my $self = shift; |
25
|
55
|
|
|
|
|
220
|
my $inprogress = shift; |
26
|
55
|
|
|
|
|
163
|
my $eligible = shift; |
27
|
|
|
|
|
|
|
|
28
|
55
|
100
|
|
|
|
303
|
return () unless @$eligible; |
29
|
|
|
|
|
|
|
|
30
|
2
|
|
|
|
|
6
|
foreach my $pgname (sort(keys(%{$self->{pargroups}}))) |
|
2
|
|
|
|
|
15
|
|
31
|
|
|
|
|
|
|
{ |
32
|
0
|
|
|
|
|
0
|
my $matcher = $self->{pargroups}->{$pgname}->{match}; |
33
|
0
|
|
|
|
|
0
|
my $maxconcurrent = $self->{pargroups}->{$pgname}->{maxconcurrent}; |
34
|
|
|
|
|
|
|
|
35
|
0
|
|
|
|
|
0
|
my @matchingInprogress = $matcher->qgrep(@$inprogress); |
36
|
0
|
|
|
|
|
0
|
my @matchingEligible = $matcher->qgrep(@$eligible); |
37
|
|
|
|
|
|
|
|
38
|
0
|
|
|
|
|
0
|
my @allmatching = (@matchingInprogress, @matchingEligible); |
39
|
0
|
|
|
|
|
0
|
my $leave = scalar(@allmatching) - $maxconcurrent; |
40
|
0
|
0
|
|
|
|
0
|
$leave = 0 if $leave < 0; |
41
|
0
|
|
|
|
|
0
|
shift(@allmatching) while (@allmatching > $leave); |
42
|
0
|
|
|
|
|
0
|
@$eligible = singleton(@allmatching, @$eligible); |
43
|
|
|
|
|
|
|
} |
44
|
|
|
|
|
|
|
|
45
|
2
|
|
|
|
|
10
|
return @$eligible; |
46
|
|
|
|
|
|
|
} |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
sub __parseParallelGroups |
49
|
|
|
|
|
|
|
{ |
50
|
27
|
|
|
27
|
|
100
|
my $self = shift; |
51
|
27
|
|
|
|
|
64
|
my $cfg = shift; |
52
|
|
|
|
|
|
|
|
53
|
27
|
|
|
|
|
60
|
my %parGroups; |
54
|
|
|
|
|
|
|
# find all parallelgroup sections |
55
|
|
|
|
|
|
|
# |
56
|
27
|
|
|
|
|
202
|
my $pgRx = qr(^\s*PARALLELGROUP\s+(.+?)\s*$); |
57
|
27
|
|
|
|
|
303
|
foreach my $pgRuleSectionName (grep(/$pgRx/, keys(%$cfg))) |
58
|
|
|
|
|
|
|
{ |
59
|
0
|
|
|
|
|
0
|
$pgRuleSectionName =~ /$pgRx/; |
60
|
0
|
|
|
|
|
0
|
my $pgRuleName = $1; |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
# all pg sections requires 'match' Grep::Query queries |
63
|
|
|
|
|
|
|
# in case match is written as array, just join using newlines |
64
|
|
|
|
|
|
|
# |
65
|
0
|
|
|
|
|
0
|
my $match = $cfg->{$pgRuleSectionName}->{match}; |
66
|
0
|
0
|
|
|
|
0
|
die("Missing key 'match' in parallel group rule section '$pgRuleName'\n") unless defined($match); |
67
|
0
|
0
|
|
|
|
0
|
$match = join("\n", @$match) if ref($match) eq 'ARRAY'; |
68
|
0
|
|
|
|
|
0
|
$parGroups{$pgRuleName}->{match} = Grep::Query->new($match); |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
# all pg sections requires 'maxconcurrent' positive integer values |
71
|
|
|
|
|
|
|
# |
72
|
0
|
|
|
|
|
0
|
my $maxconcurrent = $cfg->{$pgRuleSectionName}->{maxconcurrent}; |
73
|
0
|
0
|
|
|
|
0
|
die("Missing key 'maxconcurrent' in parallel group rule section '$pgRuleName'\n") unless defined($maxconcurrent); |
74
|
0
|
0
|
|
|
|
0
|
die("Illegal value for 'maxconcurrent' in parallel group rule section '$pgRuleName'\n") unless $maxconcurrent > 1; |
75
|
0
|
|
|
|
|
0
|
$parGroups{$pgRuleName}->{maxconcurrent} = $maxconcurrent; |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
# check for unknown keys... |
78
|
|
|
|
|
|
|
# |
79
|
0
|
|
|
|
|
0
|
my %validSectionKeys = map { $_ => 1 } qw(match maxconcurrent); |
|
0
|
|
|
|
|
0
|
|
80
|
0
|
|
|
|
|
0
|
foreach my $key (keys(%{$cfg->{$pgRuleSectionName}})) |
|
0
|
|
|
|
|
0
|
|
81
|
|
|
|
|
|
|
{ |
82
|
0
|
0
|
|
|
|
0
|
warn("WARNING: Unknown key '$key' in section '[$pgRuleSectionName]'\n") unless exists($validSectionKeys{$key}); |
83
|
|
|
|
|
|
|
} |
84
|
|
|
|
|
|
|
} |
85
|
27
|
|
|
|
|
284
|
$self->{pargroups} = \%parGroups; |
86
|
|
|
|
|
|
|
} |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
1; |