Why does this Perl BEGIN block act differently in the debugger? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T07:09:39Z http://stackoverflow.com/feeds/question/322173 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/322173/why-does-this-perl-begin-block-act-differently-in-the-debugger 9 Why does this Perl BEGIN block act differently in the debugger? John Siracusa 2008-11-26T21:08:42Z 2009-11-08T13:40:39Z <p>I have some Perl code that runs fine outside the debugger:</p> <pre><code>% perl somefile.pl </code></pre> <p>but when I run it inside the debugger:</p> <pre><code>% perl -d somefile.pl </code></pre> <p>it behaves differently.</p> <p>The files in question (there are several) are part of the test suite for a large Perl module (~20K lines of code). The tests do a lot of setup work at compile time and use BEGIN blocks. Here's some minimal reproduction code:</p> <pre><code>BEGIN { package MyEx; sub new { bless {}, shift } package main; eval { die MyEx-&gt;new }; if($@) { die "Really die" unless($@-&gt;isa('MyEx')); } } print "OK\n"; </code></pre> <p>If you put that in <code>somefile.pl</code> and run it, it prints "OK" as expected. If you run it in the debugger with <code>perl -d somefile.pl</code>, it dies with this error:</p> <pre><code>Can't call method "isa" without a package or object reference ... </code></pre> <p>The upshot is that <code>$@</code> is not an object when the code runs under the debugger. Instead, it's an unblessed scalar containing this string:</p> <pre><code>" at somefile.pl line 9 eval {...} called at somefile.pl line 9 main::BEGIN() called at somefile.pl line 16 eval {...} called at somefile.pl line 16 " </code></pre> <p>(Internal newlines and spacing preserved. That's the literal text, even the "..."s.)</p> <p>I need code like this to run in the debugger. Using the debugger in the test suite is an important part of my workflow. The module uses exception objects and does a lot of stuff at compile time and expects an object thrown to be an object when caught.</p> <p>My question (finally) is this: How can I get this to work? Is there a workaround? Is this a bug in the perl debugger module? What's the best way to go about getting this resolved? (I know that's several questions, but they're all related.)</p> <p>I'm using perl 5.10.0 on Mac OS X 10.5.5.</p> <p><hr /></p> <p>The dieLevel thing suggested by Adam Bellaire looked promising, and indeed something (can't find out what) is setting it to 1 for me. But I set it to 0 using a <code>~/.perldb</code> file and the problem persists. In fact, I set all three of the related settings to 0. My <code>~/.perldb</code> file:</p> <pre><code>parse_options('dieLevel=0 warnLevel=0 signalLevel=0'); </code></pre> <p>I confirmed that the settings are in effect by running the <code>o</code> command in the debugger. I see them all set to 0 when I run <code>perl -de 0</code> and also when running the actual <code>somefile.pl</code> file.</p> <p><hr /></p> <p>Thanks, brian. I used <code>perlbug</code> to file a bug (<a href="http://rt.perl.org/rt3/Ticket/Display.html?id=60890" rel="nofollow">RT 60890</a>) and I've begun to sprinkle <code>local $SIG{'__DIE__'}</code> in all the appropriate places in my code. (I also noted in the bug that <code>perldoc perldebug</code> still seems to imply that the default <code>dieLevel</code> is 0.)</p> http://stackoverflow.com/questions/322173/why-does-this-perl-begin-block-act-differently-in-the-debugger/322214#322214 3 Answer by Adam Bellaire for Why does this Perl BEGIN block act differently in the debugger? Adam Bellaire 2008-11-26T21:25:06Z 2008-11-26T21:25:06Z <p>Is it possible you have an RC file or environment variable (<code>PERLDB_OPTS</code>) that is modifying the <code>dieLevel</code> option of the debugger? I personally haven't used <code>dieLevel</code> but apparently when it's set to a value greater than zero it can force stack unwinding and "tends to hopelessly destroy any program that takes its exception handling seriously." (<a href="http://www.xav.com/perl/lib/Pod/perldebug.html" rel="nofollow">Quote from here</a>).</p> http://stackoverflow.com/questions/322173/why-does-this-perl-begin-block-act-differently-in-the-debugger/322466#322466 5 Answer by Michael Carman for Why does this Perl BEGIN block act differently in the debugger? Michael Carman 2008-11-26T23:01:19Z 2008-11-26T23:01:19Z <p>I consider it a bug any time code behaves differently in the debugger.</p> <p>Your problem <em>might</em> be related to this: <a href="http://rt.perl.org/rt3/Public/Bug/Display.html?id=48332" rel="nofollow">Debugger corrupts symbol table munging</a>. Essentially, the debugger appears to play some tricks with <code>local</code> -- presumably as part of sandboxing things to provide interactivity. Obviously, messing with the symbol table can have unexpected side-effects. I'd guess that the debugger is localizing <code>$@</code> and thus obscuring your object. I can't think of a work-around.</p> http://stackoverflow.com/questions/322173/why-does-this-perl-begin-block-act-differently-in-the-debugger/323788#323788 11 Answer by brian d foy for Why does this Perl BEGIN block act differently in the debugger? brian d foy 2008-11-27T13:36:15Z 2008-11-27T15:03:50Z <p>This is a problem with perl5db.pl creating <code>__DIE__</code> handlers. If I localize <code>$SIG{__DIE__}</code> in your <code>eval</code>, things work as you expect.</p> <pre> eval { local $SIG{__DIE__}; die MyEx->new }; </pre> <p>If you don't do that, you're getting the handler from DB::dbdie, which uses Carp::longmess. That shouldn't happen if dieLevel is 0, but by default it is 1, and it gets set to 1 if it is not defined. This was a patch to perl5db.pl back in 2001, and previously the default had been 0.</p> <p>You're supposed to turn this off with:</p> <pre><code>PERLDB_OPT="dieLevel=0" perl5.10.0 -d program </code></pre> <p>But there is still a code reference in <code>$SIG{__DIE__}</code> after that, and it's a reference to dbdie. I think this is a bug in handling the global variable <code>$prevdie</code> in perl5db.pl's <code>dieLevel</code>. At the end of that subroutine, there is:</p> <pre> # perl5db.pl dieLevel, around line 7777 elsif ($prevdie) { $SIG{__DIE__} = $prevdie; print $OUT "Default die handler restored.\n"; } </pre> <p>But notice that after restoring <code>$SIG{__DIE__}</code>, it keeps the previous value in <code>$prevdie</code>, meaning whatever is in there leaks to another call. When I run that command line, there are two calls to dieLevel before it handles <code>PERLDB_OPT</code>, so <code>$prevdie</code> is probably dirty.</p> <p>So, that's as far as I got before I didn't want to think about perl5db.pl anymore.</p>