File Coverage

blib/lib/Algorithm/CheckDigits/M11_010.pm
Criterion Covered Total %
statement 41 45 91.1
branch 8 16 50.0
condition 1 3 33.3
subroutine 11 11 100.0
pod 4 5 80.0
total 65 80 81.2


line stmt bran cond sub pod time code
1             package Algorithm::CheckDigits::M11_010;
2              
3 1     1   18 use 5.006;
  1         4  
4 1     1   5 use strict;
  1         2  
  1         20  
5 1     1   5 use warnings;
  1         2  
  1         36  
6 1     1   7 use integer;
  1         2  
  1         6  
7              
8 1     1   22 use version; our $VERSION = 'v1.3.5';
  1         1  
  1         5  
9              
10             our @ISA = qw(Algorithm::CheckDigits);
11              
12             my @weight = ( 5, 4, 3, 2, 7, 6, 5, 4, 3, 2 );
13              
14             sub new {
15 1     1 0 2 my $proto = shift;
16 1         3 my $type = shift;
17 1   33     6 my $class = ref($proto) || $proto;
18 1         3 my $self = bless({}, $class);
19 1         7 $self->{type} = lc($type);
20 1         7 return $self;
21             } # new()
22              
23             sub is_valid {
24 2     2 1 9 my ($self,$number) = @_;
25 2 50       13 if ($number =~ /^([0-9.]+)(\d)$/) {
26 2         4 return $2 == $self->_compute_checkdigits($1);
27             }
28 0         0 return ''
29             } # is_valid()
30              
31             sub complete {
32 1     1 1 96 my ($self,$number) = @_;
33 1 50       7 if ($number =~ /^([0-9.]+)$/) {
34 1         3 return "$1" . $self->_compute_checkdigits($1);
35             }
36 0         0 return '';
37             } # complete()
38              
39             sub basenumber {
40 1     1 1 4 my ($self,$number) = @_;
41 1 50       6 if ($number =~ /^([0-9.]+)(\d)$/) {
42 1 50       3 return $1 if ($2 == $self->_compute_checkdigits($1));
43             }
44 0         0 return '';
45             } # basenumber()
46              
47             sub checkdigit {
48 1     1 1 3 my ($self,$number) = @_;
49 1 50       6 if ($number =~ /^([0-9.]+)(\d)$/) {
50 1 50       4 return $2 if ($2 == $self->_compute_checkdigits($1));
51             }
52 0         0 return '';
53             } # checkdigit()
54              
55             sub _compute_checkdigits {
56 5     5   10 my $self = shift;
57 5         11 my $number = shift;
58              
59 5         21 $number =~ s/\.//g;
60              
61 5         23 my @digits = split(//,$number);
62 5         7 my $sum = 0;
63 5         16 for (my $i = 0; $i <= $#digits; $i++) {
64 50         98 $sum += $weight[$i] * $digits[$i];
65             }
66 5         11 $sum %= 11;
67 5 50       39 return $sum == 0 ? 0 : ($sum == 1 ? '' : 11 - $sum);
    50          
68             } # _compute_checkdigit()
69              
70             # Preloaded methods go here.
71              
72             1;
73             __END__