File Coverage

blib/lib/Mail/Box/Tie/ARRAY.pm
Criterion Covered Total %
statement 23 32 71.8
branch 2 6 33.3
condition 1 3 33.3
subroutine 9 11 81.8
pod n/a
total 35 52 67.3


line stmt bran cond sub pod time code
1             # Copyrights 2001-2020 by [Mark Overmeer].
2             # For other contributors see ChangeLog.
3             # See the manual pages for details on the licensing terms.
4             # Pod stripped from pm file by OODoc 2.02.
5             # This code is part of distribution Mail-Box. Meta-POD processed with
6             # OODoc into POD and HTML manual-pages. See README.md
7             # Copyright Mark Overmeer. Licensed under the same terms as Perl itself.
8              
9             package Mail::Box::Tie::ARRAY;
10 2     2   1832 use vars '$VERSION';
  2         107  
  2         110  
11             $VERSION = '3.009';
12              
13              
14 2     2   15 use strict;
  2         4  
  2         41  
15 2     2   81 use warnings;
  2         7  
  2         85  
16              
17 2     2   12 use Carp;
  2         3  
  2         846  
18              
19              
20             sub TIEARRAY(@)
21 1     1   4 { my ($class, $folder) = @_;
22 1 50 33     15 croak "No folder specified to tie to."
23             unless ref $folder && $folder->isa('Mail::Box');
24              
25 1         5 bless { MBT_folder => $folder }, $class;
26             }
27              
28             #-------------------------------------------
29              
30              
31             sub FETCH($)
32 3     3   29 { my ($self, $index) = @_;
33 3         11 my $msg = $self->{MBT_folder}->message($index);
34 3 50       21 $msg->isDeleted ? undef : $msg;
35             }
36              
37             #-------------------------------------------
38              
39              
40             sub STORE($$)
41 0     0   0 { my ($self, $index, $msg) = @_;
42 0         0 my $folder = $self->{MBT_folder};
43              
44 0 0       0 croak "Cannot simply replace messages in a folder: use delete old, then push new."
45             unless $index == $folder->messages;
46              
47 0         0 $folder->addMessages($msg);
48 0         0 $msg;
49             }
50              
51              
52 4     4   86 sub FETCHSIZE() { scalar shift->{MBT_folder}->messages }
53              
54              
55             sub PUSH(@)
56 2     2   75501 { my $folder = shift->{MBT_folder};
57 2         23 $folder->addMessages(@_);
58 2         8 scalar $folder->messages;
59             }
60            
61              
62 1     1   8 sub DELETE($) { shift->{MBT_folder}->message(shift)->delete }
63              
64              
65             sub STORESIZE($)
66 0     0     { my $folder = shift->{MBT_folder};
67 0           my $length = shift;
68 0           $folder->message($_) foreach $length..$folder->messages;
69 0           $length;
70             }
71              
72             # DESTROY is implemented in Mail::Box
73              
74             #-------------------------------------------
75              
76              
77             1;