File Coverage

blib/lib/Perl/Critic/Policy/Variables/ProtectPrivateVars.pm
Criterion Covered Total %
statement 25 25 100.0
branch 2 2 100.0
condition n/a
subroutine 11 11 100.0
pod 4 5 80.0
total 42 43 97.6


line stmt bran cond sub pod time code
1             package Perl::Critic::Policy::Variables::ProtectPrivateVars;
2              
3 40     40   26946 use 5.010001;
  40         205  
4 40     40   296 use strict;
  40         118  
  40         946  
5 40     40   260 use warnings;
  40         138  
  40         1129  
6 40     40   274 use Readonly;
  40         128  
  40         2270  
7              
8 40     40   375 use Perl::Critic::Utils qw{ :severities };
  40         139  
  40         2201  
9 40     40   5565 use parent 'Perl::Critic::Policy';
  40         181  
  40         248  
10              
11             our $VERSION = '1.146';
12              
13             #-----------------------------------------------------------------------------
14              
15             Readonly::Scalar my $DESC => q{Private variable used};
16             Readonly::Scalar my $EXPL => q{Use published APIs};
17              
18             #-----------------------------------------------------------------------------
19              
20 91     91 0 1629 sub supported_parameters { return () }
21 80     80 1 341 sub default_severity { return $SEVERITY_MEDIUM }
22 74     74 1 324 sub default_themes { return qw(core maintenance certrule ) }
23 32     32 1 121 sub applies_to { return 'PPI::Token::Symbol' }
24              
25             #-----------------------------------------------------------------------------
26              
27             sub violates {
28 184     184 1 398 my ( $self, $elem, undef ) = @_;
29              
30 184 100       406 if ( $elem =~ m{ \w::_\w+ \z }xms ) {
31 6         64 return $self->violation( $DESC, $EXPL, $elem );
32             }
33 178         956 return; #ok!
34             }
35              
36             1;
37              
38             __END__
39              
40             #-----------------------------------------------------------------------------
41              
42             =pod
43              
44             =head1 NAME
45              
46             Perl::Critic::Policy::Variables::ProtectPrivateVars - Prevent access to private vars in other packages.
47              
48              
49             =head1 AFFILIATION
50              
51             This Policy is part of the core L<Perl::Critic|Perl::Critic>
52             distribution.
53              
54              
55             =head1 DESCRIPTION
56              
57             By convention Perl authors (like authors in many other languages)
58             indicate private methods and variables by inserting a leading
59             underscore before the identifier. This policy catches attempts to
60             access private variables from outside the package itself.
61              
62              
63             =head1 CONFIGURATION
64              
65             This Policy is not configurable except for the standard options.
66              
67              
68             =head1 HISTORY
69              
70             This policy is inspired by a similar test in L<B::Lint|B::Lint>
71              
72              
73             =head1 SEE ALSO
74              
75             L<Perl::Critic::Policy::Subroutines::ProtectPrivateSubs|Perl::Critic::Policy::Subroutines::ProtectPrivateSubs>
76              
77              
78             =head1 AUTHOR
79              
80             Chris Dolan <cdolan@cpan.org>
81              
82              
83             =head1 COPYRIGHT
84              
85             Copyright (c) 2006-2011 Chris Dolan.
86              
87             This program is free software; you can redistribute it and/or modify
88             it under the same terms as Perl itself. The full text of this license
89             can be found in the LICENSE file included with this module.
90              
91             =cut
92              
93             # Local Variables:
94             # mode: cperl
95             # cperl-indent-level: 4
96             # fill-column: 78
97             # indent-tabs-mode: nil
98             # c-indentation-style: bsd
99             # End:
100             # ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :