tags:

views:

123

answers:

5

How do i get stack traces in perl?

A: 

Try this.

Mark Lewis
+12  A: 

Carp::confess (from use Carp;) will give you a full stack trace as part of the error. If you just need it as part of something failing, confess is all you really need.

Per comments, here's output of various Carp functions:

use strict;
use warnings;
use Carp qw/longmess cluck confess/;

sub foo {
  &bar;
}

sub bar {
   &baz;
}

sub baz {
   shift->();
}

my %tests = (
    'longmess' => sub { print longmess 'longmess' },
    'cluck'    => sub { cluck 'using cluck' },
    'confess'  => sub { confess 'using confess' },
);

while (my ($name, $sub) = each %tests) {
    print "$name - before eval:\n";
    eval {
        foo($sub);
    };
    print "$name - before if:\n";
    if ($@) {
        print "caught: $@";
    }
    print "$name - done\n\n";
}

Running this script, you get:

longmess - before eval:
longmess at - line 14
        main::baz called at - line 10
        main::bar called at - line 6
        main::foo('CODE(0x183a4d0)') called at - line 26
        eval {...} called at - line 25
longmess - before if:
longmess - done

confess - before eval:
confess - before if:
caught: using confess at - line 20
        main::__ANON__() called at - line 14
        main::baz called at - line 10
        main::bar called at - line 6
        main::foo('CODE(0x183a3e0)') called at - line 26
        eval {...} called at - line 25
confess - done

cluck - before eval:
using cluck at - line 19
        main::__ANON__() called at - line 14
        main::baz called at - line 10
        main::bar called at - line 6
        main::foo('CODE(0x183a434)') called at - line 26
        eval {...} called at - line 25
cluck - before if:
cluck - done

Running this script but redirecting STDOUT (thus showing what gets printed on STDERR), you get:

using cluck at - line 19
        main::__ANON__() called at - line 14
        main::baz called at - line 10
        main::bar called at - line 6
        main::foo('CODE(0x183a434)') called at - line 26
        eval {...} called at - line 25
Robert P
That sends the stack trace and error to STDERR; if you need to capture it, directly use the underlying Carp::longmess().And Carp::cluck is like confess but dies afterwards.
ysth
I think that's backwards -- `cluck` is a warn with a stack trace and `confess` is a die.
mobrule
err, yes, that was backwards
ysth
A: 

If you want to roll your own, check out the caller builtin. You can use this to walk down the stack and see exactly what's happening.

Robert P
Uh, or use `Devel::StackTrace`.
jrockway
That's a fine, other option. But it requires an external module, which a may or may not find appealing. Why not just post that as an answer, instead of downvoting?
Robert P
A: 

Try running strace ./yourscript if you have strace installed.

Mark C
strace has nothing to do with stack traces.
jrockway
+6  A: 

For debugging needs, I like Carp::Always.

perl -MCarp::Always my_script.pl
daotoad