line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Toolforge::MixNMatch::Struct::YearMonth; |
2
|
|
|
|
|
|
|
|
3
|
8
|
|
|
8
|
|
351221
|
use strict; |
|
8
|
|
|
|
|
56
|
|
|
8
|
|
|
|
|
237
|
|
4
|
8
|
|
|
8
|
|
46
|
use warnings; |
|
8
|
|
|
|
|
18
|
|
|
8
|
|
|
|
|
215
|
|
5
|
|
|
|
|
|
|
|
6
|
8
|
|
|
8
|
|
2998
|
use Toolforge::MixNMatch::Object::YearMonth; |
|
8
|
|
|
|
|
52248
|
|
|
8
|
|
|
|
|
1518
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $VERSION = 0.02; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
sub obj2struct { |
11
|
3
|
|
|
3
|
0
|
189
|
my $obj = shift; |
12
|
|
|
|
|
|
|
|
13
|
3
|
|
|
|
|
12
|
my $struct_hr = { |
14
|
|
|
|
|
|
|
'cnt' => $obj->count, |
15
|
|
|
|
|
|
|
'ym' => $obj->year.(sprintf '%02d', $obj->month), |
16
|
|
|
|
|
|
|
}; |
17
|
|
|
|
|
|
|
|
18
|
3
|
|
|
|
|
66
|
return $struct_hr; |
19
|
|
|
|
|
|
|
} |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
sub struct2obj { |
22
|
3
|
|
|
3
|
0
|
98
|
my $struct_hr = shift; |
23
|
|
|
|
|
|
|
|
24
|
3
|
|
|
|
|
62
|
my ($year, $month) = $struct_hr->{'ym'} =~ m/^(\d{4})(\d{2})$/ms; |
25
|
|
|
|
|
|
|
my $obj = Toolforge::MixNMatch::Object::YearMonth->new( |
26
|
3
|
|
|
|
|
33
|
'count' => $struct_hr->{'cnt'}, |
27
|
|
|
|
|
|
|
'month' => int($month), |
28
|
|
|
|
|
|
|
'year' => $year, |
29
|
|
|
|
|
|
|
); |
30
|
|
|
|
|
|
|
|
31
|
3
|
|
|
|
|
225
|
return $obj; |
32
|
|
|
|
|
|
|
} |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
1; |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
__END__ |