Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^2: RFC: "Best Practices" code review section

by merlyn (Sage)
on Aug 15, 2005 at 20:21 UTC ( [id://483972]=note: print w/replies, xml ) Need Help??


in reply to Re: RFC: "Best Practices" code review section
in thread RFC: "Best Practices" code review section

Was Fatal too complicated, or something? After all, that's core now.

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.

  • Comment on Re^2: RFC: "Best Practices" code review section

Replies are listed 'Best First'.
Re^3: RFC: "Best Practices" code review section
by radiantmatrix (Parson) on Aug 16, 2005 at 15:16 UTC

    No.

    Fatal overrides open; overriding I/O functions has been prohibited by coding standards nearly everywhere I've worked.

    Also, the above is very much simplified from the live module I use (NDA and all that, can't be too careful): my actual code calls out to Log::Log4Perl and optionally calls out to Carp's croak or carp functions, falling back to warn if these can't be found.

    AFAIK, Fatal doesn't do those things. Besides, even if I didn't have those requirements, most code I write falls under requirements such that CPAN modules must be used as-installed (no modification): since the functionality I require is so easy to duplicate, better to have it in a module I can actually extend later.

    <-radiant.matrix->
    Larry Wall is Yoda: there is no try{} (ok, except in Perl6; way to ruin a joke, Larry! ;P)
    The Code that can be seen is not the true Code
    "In any sufficiently large group of people, most are idiots" - Kaa's Law
Re^3: RFC: "Best Practices" code review section
by adrianh (Chancellor) on Aug 16, 2005 at 08:06 UTC
    Was Fatal too complicated, or something? After all, that's core now.

    I've worked places where something like this was the preferred style. The argument went (and I think it's at least vaguely reasonable) that by using a different subroutine you could tell by looking at the code in question whether an exception would be thrown - rather than having to look at the top of the file for the use Fatal. It also had the advantage of breaking at runtime if you forgot to load the 'safe' module - whereas forgetting to load Fatal.pm meant the code continued to 'work'.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://483972]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (9)
As of 2024-04-23 09:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found