File Coverage

lib/Crypt/Perl/X/Base.pm
Criterion Covered Total %
statement 29 31 93.5
branch 5 6 83.3
condition 2 3 66.6
subroutine 8 9 88.8
pod 0 3 0.0
total 44 52 84.6


line stmt bran cond sub pod time code
1             package Crypt::Perl::X::Base;
2              
3 19     19   4085 use strict;
  19         67  
  19         490  
4 11     11   49 use warnings;
  11         28  
  11         239  
5              
6 11     11   57 use Carp ();
  11         22  
  11         3726  
7              
8             sub new {
9 1232     1232 0 3334 my ( $class, $string, $props_hr ) = @_;
10              
11 1232         3824 $class->_check_overload();
12              
13 1232 100       4442 my %attrs = $props_hr ? %$props_hr : ();
14              
15 1232         15302 return bless [ $string, \%attrs ], $class;
16             }
17              
18             sub get {
19 0     0 0 0 my ( $self, $attr ) = @_;
20              
21             #Do we need to clone this? Could JSON suffice, or do we need Clone?
22 0         0 return $self->[1]{$attr};
23             }
24              
25             sub to_string {
26 325     325 0 21810 my ($self) = @_;
27              
28 325         4852 return sprintf '%s: %s', ref($self), $self->[0];
29             }
30              
31             #----------------------------------------------------------------------
32              
33             my %_OVERLOADED;
34              
35             sub _check_overload {
36 1232     1232   2240 my ( $class, $str ) = @_;
37              
38             #cf. eval_bug.readme
39 1232         1857 my $eval_err = $@;
40              
41 11   66 11   66 $_OVERLOADED{$class} ||= eval qq{
  11         21  
  11         196  
  1232         4582  
42             package $class;
43             use overload (q<""> => __PACKAGE__->can('__spew'));
44             1;
45             };
46              
47             #Should never happen as long as overload.pm is available.
48 1232 50       3657 warn if !$_OVERLOADED{$class};
49              
50 1232         1843 $@ = $eval_err;
51              
52 1232         1973 return;
53             }
54              
55             sub __spew {
56 43     43   144 my ($self) = @_;
57              
58 43         126 my $spew = $self->to_string();
59              
60 43 100       145 if ( substr( $spew, -1 ) ne "\n" ) {
61 1         11 $spew .= Carp::longmess();
62             }
63              
64 43         802 return $spew;
65             }
66              
67             1;