|
|
| "be consistent." | |
| PerlMonks |
Re: Re2: Learning how to use the Error module by exampleby perrin (Chancellor) |
Log inCreate a new userThe Monastery GatesSuper Search Seekers of Perl WisdomMeditationsPerlMonks Discussion ObfuscationReviewsCool Uses For PerlPerl NewsQ&ATutorials PoetryRecent ThreadsNewest NodesDonateWhat's New |
| on Jul 29, 2003 at 17:38 UTC ( #278900=note: print w/ replies, xml ) | Need Help?? |
|
in reply to Re2: Learning how to use the Error module by example I wouldn't just go spreading FUD abour Error.pm. It has very serious problems, and the only reason I didn't describe them is that I thought they were well-known. The try/catch syntax is implemented using sub ref prototypes. Take a look at this code: What value do you think this sub will return if it catches an error? It will always return 1, because the return inside of the catch block just returns from the implicit subroutine that the catch block creates. Nasty. Possibly worse, the nested closure problem can cause memory leaks in a long-running process. The problem is partially described by Matts in this presentation. Here's an example of a sub that will leak memory every time you call it: I hope I've got this code right; it's been a while since I used it. UPDATE: This leak seems to have been fixed in recent versions of Perl. That's a nice thing to see! We used Error in the system we built at eToys, and after having both of the problems I descibe here I have decided never to use the try/catch syntax again. It's dangerous and the problems are hard to see.
|
|
||||||||||||||||