line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Catmandu::Fix::start_day; |
2
|
2
|
|
|
2
|
|
741
|
use Catmandu::Sane; |
|
2
|
|
|
|
|
109017
|
|
|
2
|
|
|
|
|
10
|
|
3
|
2
|
|
|
2
|
|
323
|
use Moo; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
8
|
|
4
|
2
|
|
|
2
|
|
392
|
use Catmandu::Util qw(:is :check :array); |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
688
|
|
5
|
2
|
|
|
2
|
|
499
|
use DateTime::Format::Strptime; |
|
2
|
|
|
|
|
77610
|
|
|
2
|
|
|
|
|
9
|
|
6
|
2
|
|
|
2
|
|
132
|
use DateTime::TimeZone; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
29
|
|
7
|
2
|
|
|
2
|
|
5
|
use DateTime; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
760
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
our $VERSION = "0.0130"; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
with 'Catmandu::Fix::Base'; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
has path => ( |
14
|
|
|
|
|
|
|
is => 'ro' , |
15
|
|
|
|
|
|
|
required => 1 |
16
|
|
|
|
|
|
|
); |
17
|
|
|
|
|
|
|
has add => ( |
18
|
|
|
|
|
|
|
is => 'ro', |
19
|
|
|
|
|
|
|
isa => sub { check_integer($_[0]); }, |
20
|
|
|
|
|
|
|
required => 0, |
21
|
|
|
|
|
|
|
lazy => 1, |
22
|
|
|
|
|
|
|
default => sub { 0; } |
23
|
|
|
|
|
|
|
); |
24
|
|
|
|
|
|
|
has time_zone => ( |
25
|
|
|
|
|
|
|
is => 'ro', |
26
|
|
|
|
|
|
|
required => 1, |
27
|
|
|
|
|
|
|
isa => sub { |
28
|
|
|
|
|
|
|
check_string($_[0]); |
29
|
|
|
|
|
|
|
}, |
30
|
|
|
|
|
|
|
default => sub { |
31
|
|
|
|
|
|
|
"UTC" |
32
|
|
|
|
|
|
|
} |
33
|
|
|
|
|
|
|
); |
34
|
|
|
|
|
|
|
has pattern => ( |
35
|
|
|
|
|
|
|
is => 'ro', |
36
|
|
|
|
|
|
|
required => 1, |
37
|
|
|
|
|
|
|
isa => sub { |
38
|
|
|
|
|
|
|
check_string($_[0]); |
39
|
|
|
|
|
|
|
}, |
40
|
|
|
|
|
|
|
default => sub { |
41
|
|
|
|
|
|
|
"%FT%T.%NZ" |
42
|
|
|
|
|
|
|
} |
43
|
|
|
|
|
|
|
); |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
around BUILDARGS => sub { |
46
|
|
|
|
|
|
|
my($orig,$class,$path,%args) = @_; |
47
|
|
|
|
|
|
|
$orig->($class, |
48
|
|
|
|
|
|
|
path => $path, |
49
|
|
|
|
|
|
|
%args |
50
|
|
|
|
|
|
|
); |
51
|
|
|
|
|
|
|
}; |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
sub emit { |
54
|
2
|
|
|
2
|
0
|
5104
|
my($self,$fixer) = @_; |
55
|
|
|
|
|
|
|
|
56
|
2
|
|
|
|
|
7
|
my $path = $fixer->split_path($self->path()); |
57
|
|
|
|
|
|
|
my $start_day = $fixer->capture(sub{ |
58
|
2
|
|
|
2
|
|
4951
|
my $skip = shift; |
59
|
|
|
|
|
|
|
#we need to set the time zone first before doing any math! |
60
|
2
|
|
|
|
|
11
|
my $d = DateTime->now->set_time_zone($self->time_zone)->truncate(to => "day"); |
61
|
2
|
50
|
|
|
|
784
|
if(is_integer($skip)){ |
62
|
2
|
|
|
|
|
23
|
$d->add(days => $skip); |
63
|
|
|
|
|
|
|
} |
64
|
2
|
|
|
|
|
541
|
$d; |
65
|
2
|
|
|
|
|
27
|
}); |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
$fixer->emit_create_path($fixer->var,$path,sub{ |
68
|
|
|
|
|
|
|
|
69
|
2
|
|
|
2
|
|
109
|
my $var = shift; |
70
|
|
|
|
|
|
|
|
71
|
2
|
|
|
|
|
4
|
my $d = $fixer->generate_var(); |
72
|
2
|
|
|
|
|
59
|
my $p = $fixer->emit_declare_vars($d); |
73
|
2
|
|
|
|
|
29
|
$p .= " $d = ${start_day}->(".$self->add().");"; |
74
|
2
|
|
|
|
|
297
|
$p .= " ${var} = DateTime::Format::Strptime::strftime('".$self->pattern()."',$d);"; |
75
|
|
|
|
|
|
|
|
76
|
2
|
|
|
|
|
5
|
$p; |
77
|
|
|
|
|
|
|
|
78
|
2
|
|
|
|
|
120
|
}); |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
} |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
1; |
83
|
|
|
|
|
|
|
__END__ |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
=head1 NAME |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
Catmandu::Fix::start_day - Catmandu Fix for retrieving date string for start of the current day |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
=head1 SYNOPSIS |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
#get start of the day in time zone Europe/Brussels |
92
|
|
|
|
|
|
|
start_day('start_day','pattern' => '%Y-%m-%dT%H:%M:SZ','time_zone' => 'Europe/Brussels') |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
#get start of the day tomorrow in time zone Europe/Brussels |
95
|
|
|
|
|
|
|
start_day('start_day','pattern' => '%Y-%m-%dT%H:%M:SZ','time_zone' => 'Europe/Brussels', 'add' => 2) |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
=head1 AUTHOR |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
Nicolas Franck, C<< <nicolas.franck at ugent.be> >> |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
=head1 SEE ALSO |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
L<Catmandu::Fix> |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
=cut |