memoized the VCS check into a global variable
[p5sagit/strictures.git] / lib / strictures.pm
CommitLineData
394c3a46 1package strictures;
2
3use strict;
4use warnings FATAL => 'all';
5
084caaf3 6use constant _PERL_LT_5_8_4 => ($] < 5.008004) ? 1 : 0;
7
4b6c11e3 8our $VERSION = '1.004000'; # 1.4.0
394c3a46 9
10sub VERSION {
11 for ($_[1]) {
12 last unless defined && !ref && int != 1;
13 die "Major version specified as $_ - this is strictures version 1";
14 }
0925b84b 15 # disable this since Foo->VERSION(undef) correctly returns the version
16 # and that can happen either if our caller passes undef explicitly or
17 # because the for above autovivified $_[1] - I could make it stop but
18 # it's pointless since we don't want to blow up if the caller does
19 # something valid either.
20 no warnings 'uninitialized';
394c3a46 21 shift->SUPER::VERSION(@_);
22}
23
ffedb166 24my $extras_load_warned;
25
12b8f19b 26our $Smells_Like_VCS = -e '.git' || -e '.svn';
27
394c3a46 28sub import {
29 strict->import;
30 warnings->import(FATAL => 'all');
084caaf3 31
653f4377 32 my $extra_tests = do {
394c3a46 33 if (exists $ENV{PERL_STRICTURES_EXTRA}) {
084caaf3 34 if (_PERL_LT_5_8_4 and $ENV{PERL_STRICTURES_EXTRA}) {
0f96deac 35 die 'PERL_STRICTURES_EXTRA checks are not available on perls older than 5.8.4: '
084caaf3 36 . "please unset \$ENV{PERL_STRICTURES_EXTRA}\n";
37 }
38 $ENV{PERL_STRICTURES_EXTRA};
39 } elsif (! _PERL_LT_5_8_4) {
5ab06a4d 40 !!((caller)[1] =~ /^(?:t|xt|lib|blib)/
12b8f19b 41 and $Smells_Like_VCS)
394c3a46 42 }
43 };
653f4377 44 if ($extra_tests) {
ffedb166 45 my @failed;
46 if (eval { require indirect; 1 }) {
eae006ee 47 indirect->unimport(':fatal');
ffedb166 48 } else {
49 push @failed, 'indirect';
50 }
51 if (eval { require multidimensional; 1 }) {
653f4377 52 multidimensional->unimport;
ffedb166 53 } else {
54 push @failed, 'multidimensional';
55 }
56 if (eval { require bareword::filehandles; 1 }) {
653f4377 57 bareword::filehandles->unimport;
394c3a46 58 } else {
ffedb166 59 push @failed, 'bareword::filehandles';
60 }
61 if (@failed and not $extras_load_warned++) {
62 my $failed = join ' ', @failed;
63 warn <<EOE;
64strictures.pm extra testing active but couldn't load all modules. Missing were:
65
66 $failed
67
0925b84b 68Extra testing is auto-enabled in checkouts only, so if you're the author
653f4377 69of a strictures using module you need to run:
70
71 cpan indirect multidimensional bareword::filehandles
72
73but these modules are not required by your users.
084caaf3 74EOE
394c3a46 75 }
76 }
77}
78
791;
80
81__END__
82=head1 NAME
83
84strictures - turn on strict and make all warnings fatal
85
86=head1 SYNOPSIS
87
88 use strictures 1;
89
90is equivalent to
91
92 use strict;
93 use warnings FATAL => 'all';
94
5ab06a4d 95except when called from a file which matches:
394c3a46 96
5ab06a4d 97 (caller)[1] =~ /^(?:t|xt|lib|blib)/
394c3a46 98
dca7f184 99and when either '.git' or '.svn' is present in the current directory (with
100the intention of only forcing extra tests on the author side) - or when the
101PERL_STRICTURES_EXTRA environment variable is set, in which case
394c3a46 102
103 use strictures 1;
104
105is equivalent to
106
107 use strict;
108 use warnings FATAL => 'all';
109 no indirect 'fatal';
653f4377 110 no multidimensional;
111 no bareword::filehandles;
394c3a46 112
113Note that _EXTRA may at some point add even more tests, with only a minor
114version increase, but any changes to the effect of 'use strictures' in
115normal mode will involve a major version bump.
116
ffedb166 117If any of the extra testing modules are not present, strictures will
118complain loudly, once, via warn(), and then shut up. But you really
119should consider installing them, they're all great anti-footgun tools.
17b03f2e 120
394c3a46 121=head1 DESCRIPTION
122
123I've been writing the equivalent of this module at the top of my code for
124about a year now. I figured it was time to make it shorter.
125
126Things like the importer in 'use Moose' don't help me because they turn
127warnings on but don't make them fatal - which from my point of view is
128useless because I want an exception to tell me my code isn't warnings clean.
129
130Any time I see a warning from my code, that indicates a mistake.
131
132Any time my code encounters a mistake, I want a crash - not spew to STDERR
133and then unknown (and probably undesired) subsequent behaviour.
134
135I also want to ensure that obvious coding mistakes, like indirect object
136syntax (and not so obvious mistakes that cause things to accidentally compile
137as such) get caught, but not at the cost of an XS dependency and not at the
138cost of blowing things up on another machine.
139
0e8766d0 140Therefore, strictures turns on additional checking, but only when it thinks
141it's running in a test file in a VCS checkout - though if this causes
93ae637e 142undesired behaviour this can be overridden by setting the
394c3a46 143PERL_STRICTURES_EXTRA environment variable.
144
145If additional useful author side checks come to mind, I'll add them to the
146_EXTRA code path only - this will result in a minor version increase (i.e.
1471.000000 to 1.001000 (1.1.0) or similar). Any fixes only to the mechanism of
148this code will result in a subversion increas (i.e. 1.000000 to 1.000001
149(1.0.1)).
150
151If the behaviour of 'use strictures' in normal mode changes in any way, that
152will constitute a major version increase - and the code already checks
153when its version is tested to ensure that
154
155 use strictures 1;
156
157will continue to only introduce the current set of strictures even if 2.0 is
158installed.
eae006ee 159
160=head1 METHODS
161
162=head2 import
163
164This method does the setup work described above in L</DESCRIPTION>
165
166=head2 VERSION
167
168This method traps the strictures->VERSION(1) call produced by a use line
169with a version number on it and does the version check.
170
171=head1 COMMUNITY AND SUPPORT
172
173=head2 IRC channel
174
175irc.perl.org #toolchain
176
177(or bug 'mst' in query on there or freenode)
178
179=head2 Git repository
180
181Gitweb is on http://git.shadowcat.co.uk/ and the clone URL is:
182
183 git clone git://git.shadowcat.co.uk/p5sagit/strictures.git
184
185=head1 AUTHOR
186
d81f898d 187mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>
eae006ee 188
189=head1 CONTRIBUTORS
190
191None required yet. Maybe this module is perfect (hahahahaha ...).
192
193=head1 COPYRIGHT
194
195Copyright (c) 2010 the strictures L</AUTHOR> and L</CONTRIBUTORS>
196as listed above.
197
198=head1 LICENSE
199
200This library is free software and may be distributed under the same terms
201as perl itself.
202
203=cut