make sure VERSION is numified
[p5sagit/strictures.git] / lib / strictures.pm
CommitLineData
394c3a46 1package strictures;
2
3use strict;
4use warnings FATAL => 'all';
5
500f28df 6BEGIN {
7 *_PERL_LT_5_8_4 = ($] < 5.008004) ? sub(){1} : sub(){0};
8}
084caaf3 9
eab1cefe 10our $VERSION = '1.005005';
20b853bb 11$VERSION = eval $VERSION;
394c3a46 12
13sub VERSION {
91b5f6b6 14 my ($class, $version) = @_;
15 for ($version) {
394c3a46 16 last unless defined && !ref && int != 1;
17 die "Major version specified as $_ - this is strictures version 1";
18 }
91b5f6b6 19 # passing undef here may either warn or die depending on the version of perl.
20 # we can't match the caller's warning state in this case, so just disable the
21 # warning.
0925b84b 22 no warnings 'uninitialized';
394c3a46 23 shift->SUPER::VERSION(@_);
24}
25
a91e95ab 26our $extra_load_states;
ffedb166 27
2da53f4a 28our $Smells_Like_VCS;
12b8f19b 29
394c3a46 30sub import {
31 strict->import;
32 warnings->import(FATAL => 'all');
084caaf3 33
653f4377 34 my $extra_tests = do {
394c3a46 35 if (exists $ENV{PERL_STRICTURES_EXTRA}) {
084caaf3 36 if (_PERL_LT_5_8_4 and $ENV{PERL_STRICTURES_EXTRA}) {
0f96deac 37 die 'PERL_STRICTURES_EXTRA checks are not available on perls older than 5.8.4: '
084caaf3 38 . "please unset \$ENV{PERL_STRICTURES_EXTRA}\n";
39 }
40 $ENV{PERL_STRICTURES_EXTRA};
85ba5ac7 41 } elsif (! _PERL_LT_5_8_4) {
2da53f4a 42 (caller)[1] =~ /^(?:t|xt|lib|blib)[\\\/]/
43 and defined $Smells_Like_VCS ? $Smells_Like_VCS
85ba5ac7 44 : ( $Smells_Like_VCS = !!(
2da53f4a 45 -e '.git' || -e '.svn' || -e '.hg'
46 || (-e '../../dist.ini'
47 && (-e '../../.git' || -e '../../.svn' || -e '../../.hg' ))
48 ))
394c3a46 49 }
50 };
653f4377 51 if ($extra_tests) {
4f219885 52 $extra_load_states ||= do {
53
54 my (%rv, @failed);
488f2966 55 foreach my $mod (qw(indirect multidimensional bareword::filehandles)) {
4f219885 56 eval "require $mod; \$rv{'$mod'} = 1;" or do {
57 push @failed, $mod;
58
59 # courtesy of the 5.8 require bug
488f2966 60 # (we do a copy because 5.16.2 at least uses the same read-only
61 # scalars for the qw() list and it doesn't seem worth a $^V check)
62
63 (my $file = $mod) =~ s|::|/|g;
64 delete $INC{"${file}.pm"};
4f219885 65 };
66 }
67
68 if (@failed) {
69 my $failed = join ' ', @failed;
70 print STDERR <<EOE;
ffedb166 71strictures.pm extra testing active but couldn't load all modules. Missing were:
72
73 $failed
74
0925b84b 75Extra testing is auto-enabled in checkouts only, so if you're the author
624cf8bb 76of a strictures-using module you need to run:
653f4377 77
78 cpan indirect multidimensional bareword::filehandles
79
80but these modules are not required by your users.
084caaf3 81EOE
4f219885 82 }
83
84 \%rv;
85 };
86
87 indirect->unimport(':fatal') if $extra_load_states->{indirect};
88 multidimensional->unimport if $extra_load_states->{multidimensional};
89 bareword::filehandles->unimport if $extra_load_states->{'bareword::filehandles'};
394c3a46 90 }
91}
92
931;
94
95__END__
96=head1 NAME
97
98strictures - turn on strict and make all warnings fatal
99
100=head1 SYNOPSIS
101
102 use strictures 1;
103
104is equivalent to
105
106 use strict;
107 use warnings FATAL => 'all';
108
5ab06a4d 109except when called from a file which matches:
394c3a46 110
5b2a026b 111 (caller)[1] =~ /^(?:t|xt|lib|blib)[\\\/]/
394c3a46 112
00bde08d 113and when either C<.git>, C<.svn>, or C<.hg> is present in the current directory (with
114the intention of only forcing extra tests on the author side) -- or when C<.git>,
115C<.svn>, or C<.hg> is present two directories up along with C<dist.ini> (which would
d8c1c6b2 116indicate we are in a C<dzil test> operation, via L<Dist::Zilla>) --
25877bf2 117or when the C<PERL_STRICTURES_EXTRA> environment variable is set, in which case
394c3a46 118
119 use strictures 1;
120
121is equivalent to
122
123 use strict;
124 use warnings FATAL => 'all';
125 no indirect 'fatal';
653f4377 126 no multidimensional;
127 no bareword::filehandles;
394c3a46 128
25877bf2 129Note that C<PERL_STRICTURES_EXTRA> may at some point add even more tests, with only a minor
130version increase, but any changes to the effect of C<use strictures> in
394c3a46 131normal mode will involve a major version bump.
132
0eb0d037 133If any of the extra testing modules are not present, L<strictures> will
25877bf2 134complain loudly, once, via C<warn()>, and then shut up. But you really
ffedb166 135should consider installing them, they're all great anti-footgun tools.
17b03f2e 136
394c3a46 137=head1 DESCRIPTION
138
139I've been writing the equivalent of this module at the top of my code for
140about a year now. I figured it was time to make it shorter.
141
25877bf2 142Things like the importer in C<use Moose> don't help me because they turn
d8c1c6b2 143warnings on but don't make them fatal -- which from my point of view is
2288278f 144useless because I want an exception to tell me my code isn't warnings-clean.
394c3a46 145
146Any time I see a warning from my code, that indicates a mistake.
147
d8c1c6b2 148Any time my code encounters a mistake, I want a crash -- not spew to STDERR
394c3a46 149and then unknown (and probably undesired) subsequent behaviour.
150
151I also want to ensure that obvious coding mistakes, like indirect object
152syntax (and not so obvious mistakes that cause things to accidentally compile
153as such) get caught, but not at the cost of an XS dependency and not at the
154cost of blowing things up on another machine.
155
0eb0d037 156Therefore, L<strictures> turns on additional checking, but only when it thinks
2288278f 157it's running in a test file in a VCS checkout -- although if this causes
93ae637e 158undesired behaviour this can be overridden by setting the
25877bf2 159C<PERL_STRICTURES_EXTRA> environment variable.
394c3a46 160
161If additional useful author side checks come to mind, I'll add them to the
2288278f 162C<PERL_STRICTURES_EXTRA> code path only -- this will result in a minor version increase (e.g.
394c3a46 1631.000000 to 1.001000 (1.1.0) or similar). Any fixes only to the mechanism of
2288278f 164this code will result in a sub-version increase (e.g. 1.000000 to 1.000001
394c3a46 165(1.0.1)).
166
25877bf2 167If the behaviour of C<use strictures> in normal mode changes in any way, that
d8c1c6b2 168will constitute a major version increase -- and the code already checks
394c3a46 169when its version is tested to ensure that
170
171 use strictures 1;
172
173will continue to only introduce the current set of strictures even if 2.0 is
174installed.
eae006ee 175
176=head1 METHODS
177
178=head2 import
179
180This method does the setup work described above in L</DESCRIPTION>
181
182=head2 VERSION
183
25877bf2 184This method traps the C<< strictures->VERSION(1) >> call produced by a use line
eae006ee 185with a version number on it and does the version check.
186
f9df7e2e 187=head1 EXTRA TESTING RATIONALE
188
25877bf2 189Every so often, somebody complains that they're deploying via C<git pull>
d8c1c6b2 190and that they don't want L<strictures> to enable itself in this case -- and that
f9df7e2e 191setting C<PERL_STRICTURES_EXTRA> to 0 isn't acceptable (additional ways to
192disable extra testing would be welcome but the discussion never seems to get
193that far).
194
195In order to allow us to skip a couple of stages and get straight to a
196productive conversation, here's my current rationale for turning the
197extra testing on via a heuristic:
198
199The extra testing is all stuff that only ever blows up at compile time;
2288278f 200this is intentional. So the oft-raised concern that it's different code being
d8c1c6b2 201tested is only sort of the case -- none of the modules involved affect the
f9df7e2e 202final optree to my knowledge, so the author gets some additional compile
203time crashes which he/she then fixes, and the rest of the testing is
204completely valid for all environments.
205
d8c1c6b2 206The point of the extra testing -- especially C<no indirect> -- is to catch
f9df7e2e 207mistakes that newbie users won't even realise are mistakes without
208help. For example,
209
210 foo { ... };
211
d8c1c6b2 212where foo is an & prototyped sub that you forgot to import -- this is
9a363fed 213pernicious to track down since all I<seems> fine until it gets called
f9df7e2e 214and you get a crash. Worse still, you can fail to have imported it due
215to a circular require, at which point you have a load order dependent
9a363fed 216bug which I've seen before now I<only> show up in production due to tiny
f9df7e2e 217differences between the production and the development environment. I wrote
218L<http://shadow.cat/blog/matt-s-trout/indirect-but-still-fatal/> to explain
219this particular problem before L<strictures> itself existed.
220
2288278f 221As such, in my experience so far L<strictures>' extra testing has
9a363fed 222I<avoided> production versus development differences, not caused them.
f9df7e2e 223
0eb0d037 224Additionally, L<strictures>' policy is very much "try and provide as much
d8c1c6b2 225protection as possible for newbies -- who won't think about whether there's
226an option to turn on or not" -- so having only the environment variable
f9df7e2e 227is not sufficient to achieve that (I get to explain that you need to add
d8c1c6b2 228C<use strict> at least once a week on freenode #perl -- newbies sometimes
f9df7e2e 229completely skip steps because they don't understand that that step
230is important).
231
d8c1c6b2 232I make no claims that the heuristic is perfect -- it's already been evolved
f9df7e2e 233significantly over time, especially for 1.004 where we changed things to
0eb0d037 234ensure it only fires on files in your checkout (rather than L<strictures>-using
f9df7e2e 235modules you happened to have installed, which was just silly). However, I
236hope the above clarifies why a heuristic approach is not only necessary but
2288278f 237desirable from a point of view of providing new users with as much safety as possible,
f9df7e2e 238and will allow any future discussion on the subject to focus on "how do we
239minimise annoyance to people deploying from checkouts intentionally".
240
96c8649b 241=head1 SEE ALSO
242
243=over 4
244
245=item *
246
247L<indirect>
248
249=item *
250
251L<multidimensional>
252
253=item *
254
255L<bareword::filehandles>
256
257=back
258
eae006ee 259=head1 COMMUNITY AND SUPPORT
260
261=head2 IRC channel
262
263irc.perl.org #toolchain
264
265(or bug 'mst' in query on there or freenode)
266
267=head2 Git repository
268
269Gitweb is on http://git.shadowcat.co.uk/ and the clone URL is:
270
271 git clone git://git.shadowcat.co.uk/p5sagit/strictures.git
272
91be28bc 273The web interface to the repository is at:
274
275 http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/strictures.git
276
eae006ee 277=head1 AUTHOR
278
d81f898d 279mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>
eae006ee 280
281=head1 CONTRIBUTORS
282
8190ff5b 283Karen Etheridge (cpan:ETHER) <ether@cpan.org>
eae006ee 284
04b4a35d 285Mithaldu - Christian Walde (cpan:MITHALDU) <walde.christian@gmail.com>
286
a79d1096 287haarg - Graham Knop (cpan:HAARG) <haarg@haarg.org>
288
eae006ee 289=head1 COPYRIGHT
290
291Copyright (c) 2010 the strictures L</AUTHOR> and L</CONTRIBUTORS>
292as listed above.
293
294=head1 LICENSE
295
296This library is free software and may be distributed under the same terms
297as perl itself.
298
299=cut