File Coverage

blib/lib/Catmandu/Fix/start_day.pm
Criterion Covered Total %
statement 33 33 100.0
branch 1 2 50.0
condition n/a
subroutine 9 9 100.0
pod 0 1 0.0
total 43 45 95.5


line stmt bran cond sub pod time code
1             package Catmandu::Fix::start_day;
2 2     2   1015 use Catmandu::Sane;
  2         118263  
  2         9  
3 2     2   346 use Moo;
  2         2  
  2         8  
4 2     2   469 use Catmandu::Util qw(:is :check :array);
  2         2  
  2         834  
5 2     2   610 use DateTime::Format::Strptime;
  2         308737  
  2         13  
6 2     2   173 use DateTime::TimeZone;
  2         3  
  2         33  
7 2     2   7 use DateTime;
  2         2  
  2         766  
8              
9             our $VERSION = "0.0131";
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 5085 my($self,$fixer) = @_;
55              
56 2         10 my $path = $fixer->split_path($self->path());
57             my $start_day = $fixer->capture(sub{
58 2     2   5577 my $skip = shift;
59             #we need to set the time zone first before doing any math!
60 2         13 my $d = DateTime->now->set_time_zone($self->time_zone)->truncate(to => "day");
61 2 50       934 if(is_integer($skip)){
62 2         25 $d->add(days => $skip);
63             }
64 2         896 $d;
65 2         46 });
66              
67             $fixer->emit_create_path($fixer->var,$path,sub{
68              
69 2     2   137 my $var = shift;
70              
71 2         4 my $d = $fixer->generate_var();
72 2         63 my $p = $fixer->emit_declare_vars($d);
73 2         27 $p .= " $d = ${start_day}->(".$self->add().");";
74 2         311 $p .= " ${var} = DateTime::Format::Strptime::strftime('".$self->pattern()."',$d);";
75              
76 2         7 $p;
77              
78 2         123 });
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