File Coverage

blib/lib/MogileFS/ReplicationPolicy.pm
Criterion Covered Total %
statement 80 90 88.8
branch 5 12 41.6
condition 1 15 6.6
subroutine 25 26 96.1
pod 0 2 0.0
total 111 145 76.5


line stmt bran cond sub pod time code
1             package MogileFS::ReplicationPolicy;
2 21     21   175 use strict;
  21         50  
  21         28921  
3              
4             =head1 NAME
5              
6             MogileFS::ReplicationPolicy - base class for file replication policies
7              
8             =head1 DESCRIPTION
9              
10             A MogileFS replication policy class implements policy for how files
11             should be replicated around.
12              
13             ....
14              
15             =cut
16              
17             # parse a policy description string, instantiating object(s) along the way
18             # given $str can be either a scalar, or a scalarref that's eaten away as it's parsed.
19             sub new_from_policy_string {
20 23     23 0 13434 my ($class, $str_a) = @_;
21              
22             # simple case for normal callers: they give us a scalar, but internally
23             # we work with it as a scalarref that we eat away while parsing.
24 23 100       62 my $strref = ref $str_a ? $str_a : \$str_a;
25              
26 23 50       123 $$strref =~ s/^\s*([\w:]+)// or die "Failed to parse policy string: $$strref";
27 23         54 my ($polclass) = ($1);
28 23 50       85 $polclass = "MogileFS::ReplicationPolicy::$polclass" unless $polclass =~ /:/;
29              
30 23     1   1545 my $rv = eval "use $polclass; 1";
  1     1   11  
  1     1   2  
  1     1   23  
  1     1   8  
  1     1   2  
  1     1   14  
  1     1   15301  
  1     1   4  
  1     1   16  
  1     1   7  
  1     1   3  
  1     1   13  
  1     1   5  
  1     1   2  
  1     1   11  
  1     1   6  
  1     1   2  
  1     1   12  
  1     1   6  
  1     1   3  
  1     1   11  
  1     1   5  
  1         2  
  1         11  
  1         6  
  1         2  
  1         11  
  1         6  
  1         4  
  1         27  
  1         6  
  1         3  
  1         12  
  1         7  
  1         2  
  1         12  
  1         7  
  1         3  
  1         12  
  1         6  
  1         2  
  1         11  
  1         10  
  1         2  
  1         17  
  1         6  
  1         2  
  1         13  
  1         6  
  1         2  
  1         12  
  1         6  
  1         2  
  1         11  
  1         7  
  1         2  
  1         10  
  1         6  
  1         2  
  1         11  
  1         6  
  1         2  
  1         11  
  1         6  
  1         1  
  1         12  
  1         5  
  1         2  
  1         10  
31 23 50 33     127 if ($@ || !$rv) {
32 0         0 die "Failed to load replication policy class $polclass: $@\n";
33             }
34              
35 23         90 return $polclass->new_from_policy_args($strref);
36             }
37              
38             # returns:
39             # 0: replication sufficient
40             # undef: no suitable recommendations currently.
41             # >0: devid to replicate to.
42             sub replicate_to {
43 0     0 0 0 my ($self, %args) = @_;
44 0         0 my $fid = delete $args{fid}; # fid scalar to copy
45 0         0 my $on_devs = delete $args{on_devs}; # arrayref of device objects
46 0         0 my $all_devs = delete $args{all_devs}; # hashref of { devid => MogileFS::Device }
47 0         0 my $failed = delete $args{failed}; # hashref of { devid => 1 } of failed attempts this round
48 0         0 my $min = delete $args{min}; # configured min devcount for this class
49              
50 0 0       0 warn "Unknown parameters: " . join(", ", sort keys %args) if %args;
51 0 0 0     0 die "Missing parameters" unless $on_devs && $all_devs && $failed && $fid;
      0        
      0        
52              
53 0   0     0 die "UNIMPLEMENTED 'replicate_to' in " . (ref($self) || $self);
54             }
55              
56              
57              
58             1;