-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProhibitFileSize.pm
146 lines (100 loc) · 2.81 KB
/
ProhibitFileSize.pm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
package Perl::Critic::Policy::Mardem::ProhibitFileSize;
use utf8;
use 5.010;
use strict;
use warnings;
our $VERSION = '0.06';
use Readonly;
use Perl::Critic::Utils qw{:severities :data_conversion :classification};
use base 'Perl::Critic::Policy';
Readonly::Scalar my $EXPL => q{Consider refactoring};
sub default_severity
{
return $SEVERITY_LOW;
}
sub default_themes
{
return qw(maintenance);
}
sub applies_to
{
return 'PPI::Document';
}
sub supported_parameters
{
return (
{ 'name' => 'size_count_limit',
'description' => 'The maximum bytes (or chars) allowed.',
'default_string' => '102400', # 100 KB
'behavior' => 'integer',
'integer_minimum' => 1,
},
);
}
sub violates
{
my ( $self, $elem, undef ) = @_;
my $filename = undef;
{
local $@;
eval { $filename = $elem->filename() || undef; };
if ( $@ ) {
# Note: warn ?
}
}
my $count = 0;
my $mode = '';
if ( defined $filename && q{} ne $filename && -e -f -r $filename ) {
$mode = 'byte';
# if file available use byte size
$count = -s _;
}
else {
$filename = '__UNKNOWN__';
$mode = 'char';
# no file = use char length
my $s = $elem->serialize();
# error ?
if ( !defined $s ) {
return;
}
$count = length $s;
}
# empty
if ( 0 >= $count ) {
return;
}
if ( $count <= $self->{ '_size_count_limit' } ) {
return;
}
my $desc = qq<File "$filename" with high $mode count ($count)>;
return $self->violation( $desc, $EXPL, $elem );
}
1;
__END__
#-----------------------------------------------------------------------------
=pod
=encoding utf8
=head1 NAME
Perl::Critic::Policy::Mardem::ProhibitFileSize - large files as byte or char count
=head1 DESCRIPTION
This Policy checks the Perl-File Size in Bytes or the Content-Length (string)
if no file given. (more precise the PPI::Document's)
=head1 CONFIGURATION
The maximum acceptable size can be set with the C<size_count_limit>
configuration item. Any file (or given string) with higher size "count"
will generate a policy violation. The default is 102400.
An example section for a F<.perlcriticrc>:
[Mardem::ProhibitFileSize]
size_count_limit = 65536
=head1 AFFILIATION
This policy is part of L<Perl::Critic::Mardem>.
=head1 AUTHOR
Markus Demml, [email protected]
=head1 LICENSE AND COPYRIGHT
Copyright (c) 2024, Markus Demml
This library is free software; you can redistribute it and/or modify it
under the same terms as the Perl 5 programming language system itself.
The full text of this license can be found in the LICENSE file included
with this module.
=cut