Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^5: Preferred technique for named subroutine parameters?

by tilly (Archbishop)
on May 22, 2009 at 21:05 UTC ( [id://765751]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Preferred technique for named subroutine parameters?
in thread Preferred technique for named subroutine parameters?

use strict; Foo::bar(); package Foo; use Carp qw(croak); sub bar { baz(one => 'uno', two => 'dos', three => ); } sub baz { croak "wrong number of arguments for baz(); has to be even" if sca +lar(@_) % 2; my %args = @_; print "func: one translates to $args{one} \n"; } __END__ wrong number of arguments for baz(); has to be even at - line 2
Seems like more typing for a worse result to me. Oh, and if you rename your function, you have to synchronize the function with the error message. A little laziness on that part could lead to all sorts of puzzlement.

Replies are listed 'Best First'.
Re^6: Preferred technique for named subroutine parameters?
by shmem (Chancellor) on May 23, 2009 at 10:22 UTC

    Using Carp::confess solves that and gives an accurate picture:

    wrong number of arguments for baz(); has to be even at - line 12 Foo::baz('one', 'uno', 'two', 'dos', 'three') called at - line 8 Foo::bar() called at - line 2

    ...except where it doesn't ;-) - there are edge cases where Carp fails to backtrace properly.

Re^6: Preferred technique for named subroutine parameters?
by Porculus (Hermit) on May 23, 2009 at 23:07 UTC

    More typing for you, less typing for the poor souls who are actually calling your function. Swings and roundabouts.

    Frankly, all the arguments based on catching odd numbers of arguments ring a bit hollow. The most likely case for this kind of bug is where someone carelessly writes

    some_function(foo => $foo, bar => @bar);

    in which case using an anonymous hashref will only catch the problem if @bar has an even number of elements. That's a pretty marginal gain.

    If you actually want your function to be robust, you still have to validate the parameters, or you're asking for all kinds of interesting fun when @bar is three elements long and $bar[1] eq 'foo' (or any other valid parameter name). So you still have to do extra typing, and you still have to throw runtime errors. In this case, having the parameters as a flat list is actually helpful: it means you can detect and warn about duplicate keys, instead of having them silently swallowed by the conversion to a hash.

    Or you could be lazy and not validate ... but if you're not worried about even-lengthed garbage inputs, why do you care about odd-lengthed garbage inputs?

      ++. If you are going to write verification code, then it's worth verifying with something like Params::Validate. You can always disable it in production level code if performance becomes an issue.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (2)
As of 2024-04-19 01:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found