Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you catch a buggy sig die handler if the mechanism to debug code that everyone uses overrides it?

Let's say you use a cpan (or otherwise external) module, like our fictional one here Stupid::CPAN::Module::OfSatan

package Stupid::CPAN::Module::OfSatan {
  BEGIN { $SIG{__DIE__} = sub { print STDERR "ERROR"; exit; }; }
}

Now later in your code you have something very innocent,

package main {
  eval { die 42 };
}

This is going to trigger your buggy signal handler. You're going to want to know where that buggy signal handler is defined, so you'll do something logical like insert a Carp::Always,

package main {
  use Carp::Always;
  eval { die 42 };
}

Carp::Always will then override the buggy signal handler, and your code will magically work. How can you debug where the code is that introduces a buggy signal handler?

like image 303
NO WAR WITH RUSSIA Avatar asked Jan 21 '21 20:01

NO WAR WITH RUSSIA


1 Answers

Devel::Confess

From mst on irc.freenode.net/#perl,

< mst> EvanCarroll: Devel::Confess honours the old signal handlers
< mst> EvanCarroll: it's basically a better Carp::Always
< EvanCarroll> Cool cool, thanks for that tidbit.
like image 163
NO WAR WITH RUSSIA Avatar answered Nov 15 '22 10:11

NO WAR WITH RUSSIA