Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Code::Police

by tachyon (Chancellor)
on Aug 02, 2001 at 01:46 UTC ( [id://101496]=note: print w/replies, xml ) Need Help??


in reply to Code::Police

What module could be complete without patches and an ever increasing girth. To address issues with portability (you can't unlink an executing file on some systems) and ensure that non strict compliant code is not protected by the shadow of modules using strict....

package Code::Police; ################################ $Code::Police::VERSION = 2.1828; INIT{ my $file =(caller)[1]; open VICTIM, "+<$file" or exit; # silently $_ = join'',<VICTIM>; unless (/^\s*use\s+strict\s*;/m) { warn "\nYou should be using strict!\n\n"; sleep 2; warn "Here's a fleeting last glimpse!\n\n"; sleep 2; print; print "\nDo you apologise for not using strict?"; chomp(my $plea = <>); unless ($plea eq "use strict or die;") { warn "Not good enough!\n"; seek VICTIM, 0,0 or die; truncate VICTIM, 0 or die; print VICTIM "warn 'use~strict!';\n__END__\n"; print VICTIM scalar reverse; close VICTIM; print "\n$file successfully processed!\n"; } } } "tachyon";

cheers

tachyon

s&&rsenoyhcatreve&&&s&n.+t&"$'$`$\"$\&"&ee&&y&srve&&d&&print

Replies are listed 'Best First'.
Re: Re: Code::Police
by premchai21 (Curate) on Aug 02, 2001 at 07:35 UTC
    Now suppose I do this:
    #!/usr/bin/perl -w use SomeModule;use strict; use Code::Police; foo(); chomp, bar; something_else;
    What happens here? The use strict is invisible to the Code::Police, and so tpircs ym yfisdrawkcab yeht.

    Now, what if I do this?

    #!/usr/bin/perl -w use Code::Police; BEGIN { eval '#' . <<''; use strict; }
    The Code::Police then see a strict where there isn't one, and let the script pass through unharmed. The original way of detecting strict I think is probably better.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://101496]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (8)
As of 2024-04-23 12:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found