Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^6: SIG, Modules, and Eval

by kbrannen (Beadle)
on Aug 18, 2014 at 01:31 UTC ( [id://1097773]=note: print w/replies, xml ) Need Help??


in reply to Re^5: SIG, Modules, and Eval
in thread SIG, Modules, and Eval

Right, I should have thought to try a simpler example, so thanks for the prompt. :)

In essesnce, the code in question run during "BEGIN" time (sort of in an implict BEGIN block) because that's when the "use" is run. I suppose that makes sense, but I've never really thought about that and I've certainly never read about it ... hence my surprose. I can show that with:
#!/usr/bin/perl # try.pl use strict; use warnings; use OurCommon; BEGIN { print "BEGIN in try.pl\n"; } CHECK { print "CHECK in try.pl\n"; } INIT { print "INIT in try.pl\n"; } END { print "END in try.pl\n"; } print "try.pl main code running\n";
And with:
#!/usr/bin/perl # OurCommon.pm use strict; use warnings; package OurCommon; BEGIN { print "BEGIN in OurCommon.pm\n"; } CHECK { print "CHECK in OurCommon.pm\n"; } INIT { print "INIT in OurCommon.pm\n"; } END { print "END in OurCommon.pm\n"; } print "OurCommon.pm non-sub code running\n"; sub new { print "new in OurCommon\n" }
Running that with a simple "perl try.pl" I get:
BEGIN in OurCommon.pm
OurCommon.pm non-sub code running
BEGIN in try.pl
CHECK in try.pl
CHECK in OurCommon.pm
INIT in OurCommon.pm
INIT in try.pl
try.pl main code running
END in try.pl
END in OurCommon.pm
So as we can see, the "non-sub" code in the module file is run while the "use" is processed, which is during the BEGIN phase. That also makes it clear why putting the code in an INIT block fixed it. I'm more educated now, but I really wished the docs made that more clear. :) Looking in "perldoc perlmod", I can see this info is implied, sort of if I squint real hard, but it's really not obvious to me at all while reading that.

Thanks to everyone who replied here!

Replies are listed 'Best First'.
Re^7: SIG, Modules, and Eval
by Anonymous Monk on Aug 18, 2014 at 08:08 UTC

    Looking in "perldoc perlmod", I can see this info is implied, sort of if I squint real hard, but it's really not obvious to me at all while reading that

    Well, perlmod says  use Module; is exactly equivalent to   BEGIN { require 'Module.pm'; 'Module'->import; }

    so :)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (3)
As of 2024-04-25 05:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found