line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Mojar::Cron; |
2
|
5
|
|
|
5
|
|
83546
|
use Mojo::Base -base; |
|
5
|
|
|
|
|
12
|
|
|
5
|
|
|
|
|
44
|
|
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
our $VERSION = 0.401; |
5
|
|
|
|
|
|
|
|
6
|
5
|
|
|
5
|
|
955
|
use Carp 'croak'; |
|
5
|
|
|
|
|
11
|
|
|
5
|
|
|
|
|
305
|
|
7
|
5
|
|
|
5
|
|
1698
|
use Mojar::Cron::Datetime; |
|
5
|
|
|
|
|
12
|
|
|
5
|
|
|
|
|
154
|
|
8
|
5
|
|
|
5
|
|
28
|
use POSIX qw(mktime strftime setlocale LC_TIME); |
|
5
|
|
|
|
|
10
|
|
|
5
|
|
|
|
|
19
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
# Fields of a cron pattern |
11
|
|
|
|
|
|
|
our @Fields = qw(sec min hour day month weekday); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
# Soft limits for defining ranges |
14
|
|
|
|
|
|
|
my %Max; @Max{@Fields} = (59, 59, 23, 30, 11, 6); |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
# Array indices of a datetime record |
17
|
|
|
|
|
|
|
use constant { |
18
|
5
|
|
|
|
|
6242
|
SEC => 0, |
19
|
|
|
|
|
|
|
MIN => 1, |
20
|
|
|
|
|
|
|
HOUR => 2, |
21
|
|
|
|
|
|
|
DAY => 3, |
22
|
|
|
|
|
|
|
MONTH => 4, |
23
|
|
|
|
|
|
|
YEAR => 5, |
24
|
|
|
|
|
|
|
WEEKDAY => 6 |
25
|
5
|
|
|
5
|
|
486
|
}; |
|
5
|
|
|
|
|
10
|
|
26
|
|
|
|
|
|
|
# NB the distinction (YEAR) between this and @Fields |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
# Canonical names |
29
|
|
|
|
|
|
|
my (%Month, %Weekday); |
30
|
|
|
|
|
|
|
{ |
31
|
|
|
|
|
|
|
my $old_locale = setlocale(LC_TIME); |
32
|
|
|
|
|
|
|
setlocale(LC_TIME, 'C'); |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
%Month = map +(lc(strftime '%b', 0,0,0,1,$_,70) => $_), 0 .. 11; |
35
|
|
|
|
|
|
|
%Weekday = map +(lc(strftime '%a', 0,0,0,$_,5,70) => $_), 0 .. 6; |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
setlocale(LC_TIME, $old_locale); |
38
|
|
|
|
|
|
|
} |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
# Attributes |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
# Object has these seven attributes |
43
|
|
|
|
|
|
|
has \@Fields; |
44
|
|
|
|
|
|
|
has 'is_local'; |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
# Public methods |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
sub new { |
49
|
25
|
|
|
25
|
1
|
25688
|
my ($class, %param) = @_; |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
# Exclude is_local from expansion |
52
|
25
|
|
|
|
|
59
|
my $is_local = delete $param{is_local}; |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
# Identify time pattern attributes |
55
|
25
|
|
|
|
|
43
|
my @values; |
56
|
25
|
100
|
|
|
|
64
|
if (exists $param{pattern}) { |
|
|
100
|
|
|
|
|
|
57
|
23
|
|
|
|
|
177
|
@values = split /\s+/, delete $param{pattern}; |
58
|
|
|
|
|
|
|
} |
59
|
|
|
|
|
|
|
elsif (exists $param{parts}) { |
60
|
1
|
|
|
|
|
2
|
@values = @{ delete $param{parts} }; |
|
1
|
|
|
|
|
5
|
|
61
|
|
|
|
|
|
|
} |
62
|
|
|
|
|
|
|
else { |
63
|
1
|
50
|
|
|
|
4
|
my $given_sec = exists $param{sec} ? 1 : undef; |
64
|
1
|
|
|
|
|
7
|
@values = map $param{$_}, @Fields; |
65
|
1
|
50
|
|
|
|
5
|
$values[0] = 0 unless $given_sec; # Do not expand sec more than requested |
66
|
1
|
|
|
|
|
4
|
delete @param{@Fields}; |
67
|
|
|
|
|
|
|
} |
68
|
|
|
|
|
|
|
# Apply default 'sec' |
69
|
25
|
100
|
|
|
|
107
|
unshift @values, '0' if @values < 6; # Vivify sec |
70
|
|
|
|
|
|
|
|
71
|
25
|
50
|
|
|
|
72
|
croak(sprintf 'Unrecognised parameter (%s)', join ',', keys %param) if %param; |
72
|
25
|
|
|
|
|
63
|
%param = (); |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
# Expand parameter values |
75
|
25
|
|
|
|
|
98
|
$param{$Fields[$_]} = expand($Fields[$_] => $values[$_]) for 0 .. 5; |
76
|
|
|
|
|
|
|
|
77
|
25
|
|
|
|
|
160
|
return $class->SUPER::new(%param, is_local => $is_local); |
78
|
|
|
|
|
|
|
} |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
sub expand { |
81
|
|
|
|
|
|
|
# Function; not method |
82
|
174
|
|
|
174
|
1
|
1339
|
my ($field, $spec) = @_; |
83
|
|
|
|
|
|
|
|
84
|
174
|
100
|
100
|
|
|
778
|
return undef if not defined $spec or $spec eq '*'; |
85
|
|
|
|
|
|
|
|
86
|
110
|
|
|
|
|
161
|
my @vals; |
87
|
110
|
|
|
|
|
262
|
for my $val (split /,/, $spec) { |
88
|
114
|
|
|
|
|
174
|
my $step = 1; |
89
|
114
|
|
|
|
|
147
|
my $end; |
90
|
|
|
|
|
|
|
|
91
|
114
|
100
|
|
|
|
303
|
$val =~ s|/(\d+)$|| and $step = $1; |
92
|
|
|
|
|
|
|
|
93
|
114
|
100
|
|
|
|
313
|
$val =~ /^(.+)-(.+)$/ and ($val, $end) = ($1, $2); |
94
|
|
|
|
|
|
|
|
95
|
114
|
100
|
|
|
|
399
|
if ($val eq '*') { |
|
|
100
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
96
|
8
|
|
|
|
|
28
|
($val, $end) = (0, $Max{$field}); |
97
|
|
|
|
|
|
|
} |
98
|
|
|
|
|
|
|
elsif ($field eq 'day') { |
99
|
|
|
|
|
|
|
# Externally 1-31; internally 0-30 |
100
|
11
|
|
66
|
|
|
149
|
defined and /^\d+$/ and --$_ for $val, $end; |
|
|
|
66
|
|
|
|
|
101
|
|
|
|
|
|
|
} |
102
|
|
|
|
|
|
|
elsif ($field eq 'month') { |
103
|
|
|
|
|
|
|
# Externally 1-12; internally 0-11 |
104
|
13
|
|
100
|
|
|
118
|
defined and /^\d+$/ and --$_ for $val, $end; |
|
|
|
66
|
|
|
|
|
105
|
|
|
|
|
|
|
# Convert symbolics |
106
|
13
|
|
100
|
|
|
106
|
defined and exists $Month{lc $_} and $_ = $Month{lc $_} for $val, $end; |
|
|
|
66
|
|
|
|
|
107
|
|
|
|
|
|
|
} |
108
|
|
|
|
|
|
|
elsif ($field eq 'weekday') { |
109
|
|
|
|
|
|
|
# Convert symbolics |
110
|
|
|
|
|
|
|
defined and exists $Weekday{lc $_} and $_ = $Weekday{lc $_} |
111
|
20
|
|
100
|
|
|
187
|
for $val, $end; |
|
|
|
66
|
|
|
|
|
112
|
20
|
100
|
100
|
|
|
88
|
$end = 7 if defined $end and $end == 0 and $val > 0; |
|
|
|
66
|
|
|
|
|
113
|
|
|
|
|
|
|
} |
114
|
|
|
|
|
|
|
|
115
|
114
|
|
|
|
|
219
|
push @vals, $val; |
116
|
114
|
|
100
|
|
|
438
|
push @vals, $val while defined $end and ($val += $step) <= $end; |
117
|
|
|
|
|
|
|
|
118
|
114
|
100
|
100
|
|
|
358
|
if ($field eq 'weekday' and $vals[-1] == 7) { |
119
|
4
|
50
|
|
|
|
14
|
unshift @vals, 0 unless $vals[0] == 0; |
120
|
4
|
|
|
|
|
9
|
pop @vals; |
121
|
|
|
|
|
|
|
} |
122
|
|
|
|
|
|
|
} |
123
|
110
|
|
|
|
|
485
|
return [ sort {$a <=> $b} @vals ]; |
|
99
|
|
|
|
|
227
|
|
124
|
|
|
|
|
|
|
} |
125
|
|
|
|
|
|
|
|
126
|
|
|
|
|
|
|
sub next { |
127
|
84
|
|
|
84
|
1
|
663
|
my ($self, $previous) = @_; |
128
|
|
|
|
|
|
|
# Increment to the next possible time and convert to datetime |
129
|
84
|
|
|
|
|
229
|
my $dt = Mojar::Cron::Datetime->from_timestamp( |
130
|
|
|
|
|
|
|
$previous + 1, $self->is_local); |
131
|
|
|
|
|
|
|
|
132
|
|
|
|
|
|
|
{ |
133
|
84
|
100
|
|
|
|
141
|
redo unless $self->satisfiable(MONTH, $dt); |
|
271
|
|
|
|
|
546
|
|
134
|
|
|
|
|
|
|
|
135
|
266
|
100
|
100
|
|
|
1045
|
if (defined $self->{day} and defined $self->{weekday}) { |
|
|
100
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
136
|
|
|
|
|
|
|
# Both day and weekday are defined, so the cron entry should trigger as |
137
|
|
|
|
|
|
|
# soon as _either_ of them is satisfied. Therefore need to determine |
138
|
|
|
|
|
|
|
# which is satisfied sooner. |
139
|
|
|
|
|
|
|
|
140
|
34
|
|
|
|
|
81
|
my $weekday_dt = $dt->new; |
141
|
34
|
|
|
|
|
71
|
my $weekday_restart = not $self->satisfiable(WEEKDAY, $weekday_dt); |
142
|
34
|
|
|
|
|
96
|
my $next_by_weekday = $weekday_dt->to_timestamp($self->is_local); |
143
|
|
|
|
|
|
|
|
144
|
34
|
|
|
|
|
756
|
my $day_dt = $dt->new; |
145
|
34
|
|
|
|
|
68
|
my $day_restart = not $self->satisfiable(DAY, $day_dt); |
146
|
34
|
|
|
|
|
85
|
my $next_by_day = $day_dt->to_timestamp($self->is_local); |
147
|
|
|
|
|
|
|
|
148
|
34
|
100
|
|
|
|
801
|
if ($next_by_day <= $next_by_weekday) { |
149
|
5
|
|
|
|
|
18
|
$dt->copy($day_dt); |
150
|
5
|
50
|
|
|
|
26
|
redo if $day_restart; |
151
|
|
|
|
|
|
|
} |
152
|
|
|
|
|
|
|
else { |
153
|
29
|
|
|
|
|
86
|
$dt->copy($weekday_dt); |
154
|
29
|
100
|
|
|
|
83
|
redo if $weekday_restart; |
155
|
|
|
|
|
|
|
} |
156
|
|
|
|
|
|
|
} |
157
|
|
|
|
|
|
|
elsif (defined $self->{day}) { |
158
|
75
|
100
|
|
|
|
142
|
redo unless $self->satisfiable(DAY, $dt); |
159
|
|
|
|
|
|
|
} |
160
|
|
|
|
|
|
|
elsif (defined $self->{weekday}) { |
161
|
114
|
100
|
|
|
|
200
|
redo unless $self->satisfiable(WEEKDAY, $dt); |
162
|
|
|
|
|
|
|
} |
163
|
|
|
|
|
|
|
|
164
|
243
|
100
|
|
|
|
461
|
redo unless $self->satisfiable(HOUR, $dt); |
165
|
195
|
100
|
|
|
|
375
|
redo unless $self->satisfiable(MIN, $dt); |
166
|
146
|
100
|
|
|
|
281
|
redo unless $self->satisfiable(SEC, $dt); |
167
|
|
|
|
|
|
|
} |
168
|
|
|
|
|
|
|
|
169
|
84
|
|
|
|
|
230
|
return $dt->to_timestamp($self->is_local); |
170
|
|
|
|
|
|
|
} |
171
|
|
|
|
|
|
|
|
172
|
|
|
|
|
|
|
sub satisfiable { |
173
|
1144
|
|
|
1144
|
1
|
3903
|
my ($self, $component, $dt) = @_; |
174
|
|
|
|
|
|
|
|
175
|
|
|
|
|
|
|
# The given $component of $self is a sequence of numeric slots. Test whether |
176
|
|
|
|
|
|
|
# those slots can satisfy the corresponding component of $dt. Shortcircuit |
177
|
|
|
|
|
|
|
# 'true' if slot is a wildcard. |
178
|
1144
|
100
|
|
|
|
2141
|
my $field = ($component == WEEKDAY) ? 'weekday' : $Fields[$component]; |
179
|
1144
|
|
100
|
|
|
2641
|
my $slots = $self->{$field} // return 1; |
180
|
|
|
|
|
|
|
|
181
|
|
|
|
|
|
|
# $old : existing value; $new : same or next value satisfying cron |
182
|
894
|
100
|
|
|
|
1783
|
my $old = ($component == WEEKDAY) ? $dt->weekday : $dt->[$component]; |
183
|
894
|
|
|
|
|
1172
|
my $new; |
184
|
|
|
|
|
|
|
# Grab first slot at least big enough |
185
|
894
|
100
|
|
|
|
1434
|
for (@$slots) { $new = $_, last if $_ >= $old } |
|
1037
|
|
|
|
|
2228
|
|
186
|
|
|
|
|
|
|
|
187
|
|
|
|
|
|
|
# Can't manipulate WEEKDAY directly since it is tied to DAY. Instead |
188
|
|
|
|
|
|
|
# manipulate DAY until goal is achieved. |
189
|
894
|
100
|
|
|
|
2256
|
if ($component == WEEKDAY) { |
|
|
100
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
190
|
154
|
|
|
|
|
209
|
$component = DAY; |
191
|
154
|
100
|
|
|
|
340
|
$new = $dt->[DAY] + $new - $old if defined $new; # adjust by the same delta |
192
|
154
|
|
|
|
|
222
|
$old = $dt->[DAY]; |
193
|
|
|
|
|
|
|
|
194
|
154
|
100
|
|
|
|
379
|
if (not defined $new) { |
|
|
100
|
|
|
|
|
|
195
|
|
|
|
|
|
|
# Rollover (into following week) |
196
|
17
|
|
|
|
|
52
|
$dt->reset_parts(DAY - 1); |
197
|
|
|
|
|
|
|
# Add more days till we hit next occurrance of $slots->[0] |
198
|
|
|
|
|
|
|
# We know $dt->weekday is greater than all @$slots, so the following will |
199
|
|
|
|
|
|
|
# add less than a week to $dt->[DAY]. |
200
|
17
|
|
|
|
|
46
|
$dt->[DAY] += $slots->[0] + 7 - $dt->weekday; |
201
|
|
|
|
|
|
|
|
202
|
17
|
|
|
|
|
45
|
$dt->normalise; |
203
|
17
|
|
|
|
|
41
|
return undef; |
204
|
|
|
|
|
|
|
} |
205
|
|
|
|
|
|
|
elsif ($new > $old) { |
206
|
|
|
|
|
|
|
# Component has moved up a slot |
207
|
24
|
|
|
|
|
64
|
$dt->reset_parts($component - 1); |
208
|
|
|
|
|
|
|
} |
209
|
|
|
|
|
|
|
} |
210
|
|
|
|
|
|
|
elsif (not defined $new) { |
211
|
|
|
|
|
|
|
# Rollover |
212
|
186
|
|
|
|
|
477
|
$dt->reset_parts($component - 1); |
213
|
186
|
|
|
|
|
331
|
$dt->[$component] = $slots->[0]; |
214
|
186
|
|
|
|
|
283
|
$dt->[$component + 1]++; |
215
|
|
|
|
|
|
|
|
216
|
186
|
|
|
|
|
435
|
$dt->normalise; |
217
|
186
|
|
|
|
|
473
|
return undef; |
218
|
|
|
|
|
|
|
} |
219
|
|
|
|
|
|
|
elsif ($new > $old) { |
220
|
|
|
|
|
|
|
# Component has moved up a slot |
221
|
119
|
|
|
|
|
298
|
$dt->reset_parts($component - 1); |
222
|
|
|
|
|
|
|
} |
223
|
|
|
|
|
|
|
|
224
|
691
|
|
|
|
|
1150
|
$dt->[$component] = $new; |
225
|
|
|
|
|
|
|
|
226
|
|
|
|
|
|
|
# Detect rollover of month and reset to next month |
227
|
691
|
|
|
|
|
964
|
my $was_month = $dt->[MONTH]; |
228
|
691
|
|
|
|
|
1684
|
$dt->normalise; |
229
|
|
|
|
|
|
|
|
230
|
691
|
100
|
100
|
|
|
1952
|
if ($component == DAY and $was_month != $dt->[MONTH]) { |
231
|
8
|
|
|
|
|
27
|
$dt->reset_parts(DAY); |
232
|
8
|
|
|
|
|
22
|
return undef; |
233
|
|
|
|
|
|
|
} |
234
|
|
|
|
|
|
|
|
235
|
683
|
|
|
|
|
1557
|
return 1; |
236
|
|
|
|
|
|
|
} |
237
|
|
|
|
|
|
|
|
238
|
|
|
|
|
|
|
1; |
239
|
|
|
|
|
|
|
__END__ |