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