File Coverage

blib/lib/Catmandu/Fix/start_year.pm
Criterion Covered Total %
statement 35 35 100.0
branch 1 2 50.0
condition n/a
subroutine 9 9 100.0
pod 0 1 0.0
total 45 47 95.7


line stmt bran cond sub pod time code
1             package Catmandu::Fix::start_year;
2 2     2   1042 use Catmandu::Sane;
  2         115147  
  2         9  
3 2     2   358 use Moo;
  2         4  
  2         7  
4 2     2   445 use Catmandu::Util qw(:is :check :array);
  2         4  
  2         772  
5 2     2   592 use DateTime::Format::Strptime;
  2         303489  
  2         10  
6 2     2   131 use DateTime::TimeZone;
  2         2  
  2         29  
7 2     2   7 use DateTime;
  2         3  
  2         786  
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 4832 my($self,$fixer) = @_;
55              
56 2         9 my $path = $fixer->split_path($self->path());
57             my $start_year = $fixer->capture(sub{
58 2     2   4958 my $skip = shift;
59             #we need to set the time zone first before doing any math!
60 2         8 my $d = DateTime->now->set_time_zone($self->time_zone)->truncate(to => "day");
61              
62 2         613 $d->set_month(1);
63 2         521 $d->set_day(1);
64              
65 2 50       547 if(is_integer($skip)){
66 2         23 $d->add(years => $skip);
67             }
68              
69 2         676 $d;
70              
71 2         37 });
72              
73             $fixer->emit_create_path($fixer->var,$path,sub{
74              
75 2     2   117 my $var = shift;
76              
77 2         6 my $d = $fixer->generate_var();
78 2         59 my $p = $fixer->emit_declare_vars($d);
79 2         50 $p .= " $d = ${start_year}->(".$self->add().");";
80 2         308 $p .= " ${var} = DateTime::Format::Strptime::strftime('".$self->pattern()."',$d);";
81              
82 2         5 $p;
83              
84 2         118 });
85              
86             }
87              
88             1;
89             __END__
90              
91             =head1 NAME
92              
93             Catmandu::Fix::start_year - Catmandu Fix for retrieving date string for start of the current year
94              
95             =head1 SYNOPSIS
96              
97             #get start of the year in time zone Europe/Brussels
98             start_year('start_year','pattern' => '%Y-%m-%dT%H:%M:SZ','time_zone' => 'Europe/Brussels')
99              
100             #get start of next year in time zone Europe/Brussels
101             start_year('start_year','pattern' => '%Y-%m-%dT%H:%M:SZ','time_zone' => 'Europe/Brussels', 'add' => 1)
102              
103             =head1 AUTHOR
104              
105             Nicolas Franck, C<< <nicolas.franck at ugent.be> >>
106              
107             =head1 SEE ALSO
108              
109             L<Catmandu::Fix>
110              
111             =cut