如何在Perl子例程中处理捕获和未捕获的错误?

时间:2009-03-25 21:57:53

标签: perl error-handling die

这是"How can I get around a ‘die’ call in a Perl library I can’t modify?"的后续内容。

我有一个子程序,它会调用一个库 - 崩溃 - 有时多次。而不是使用eval {}在这个子例程中调用每个调用,我只是让它死掉,并在调用我的子例程的级别上使用eval {}:

my $status=eval{function($param);};
unless($status){print $@; next;}; # print error and go to
                                  # next file if function() fails

但是,我可以在函数()中捕获错误条件。在子例程和调用例程中设计错误捕获的最恰当/优雅的方法是什么,以便我捕获和捕获的错误都得到正确的行为?

2 个答案:

答案 0 :(得分:8)

可以嵌套块eval:

sub function {
    eval {
        die "error that can be handled\n";
        1;
    } or do {
        #propagate the error if it isn't the one we expect
        die $@ unless $@ eq "error that can be handled\n"; 
        #handle the error
    };
    die "uncaught error";
}

eval { function(); 1 } or do {
    warn "caught error $@";
};

答案 1 :(得分:0)

我不完全确定你想做什么,但我认为你可以用处理程序来做。

$SIG{__DIE__} = sub { print $@ } ;

eval{ function($param); 1 } or next;