I want to pass several parameters, one of which is optional, to a function. The only way to do it that I know is using a list (@) as a parameter. Thus, it contents nothing or 1 element (will never be undef), so that I can use the following code:

sub someFunction($$@) {
    my ( $oblig_param1, $oblig_param2, $option_param ) = @_;
    ...
} 

This code works, but I feel that maybe it's not the best workaround.
Are there any other ways to do it?
Thank you.

link|improve this question

3  
Are you sure you need the prototype? – TLP Nov 14 '11 at 15:52
TLP, we are using prototypes as it is more demonstrative. – evgeny9 Nov 14 '11 at 16:23
4  
In addition to TLP answer take a look at stackoverflow.com/questions/297034/… – Matteo Nov 14 '11 at 16:24
9  
I disagree. Prototypes will only serve to confuse things. If you want clarity, add a comment. – TLP Nov 14 '11 at 16:30
Matteo, thank you for the link: a great explanation there. – evgeny9 Nov 14 '11 at 16:34
show 3 more comments
feedback

3 Answers

up vote 5 down vote accepted

You can use a semicolon in the prototype to indicate the end of the required parameters:

sub someFunction($$;$) {
  my ( $oblig_param1, $oblig_param2, $option_param ) = @_;
  ...
}

The ; is optional before a @ or %, which, according to the docs, "gobbles up everything else".

link|improve this answer
Thank you, it's just what I needed. Somehow, overlooked it in the docs. – evgeny9 Nov 14 '11 at 16:30
Would the downvoter care to explain what was objectionable about this answer? – Ted Hopp Nov 14 '11 at 17:05
7  
@Ted - I didn't DV, but my best guess is that because you omitted the most important sentence required for a good answer involving prototypes: "If you need to write a function that acts like a built-in, use a prototype. Otherwise, don't use prototypes" stackoverflow.com/questions/297034/… – DVK Nov 14 '11 at 17:43
@DVK - fair enough. A downvote without a reason doesn't really help anyone. The reason you offer makes sense. – Ted Hopp Nov 14 '11 at 18:04
feedback

Prototypes (the ($$@) part of your sub declaration) are optional themselves. They have a very specific use, and if you don't know what it is, it is better to not use it. From perlsub:

...the intent of this feature is primarily to let you define subroutines that work like built-in functions

Just remove the prototype from your sub declaration, and you can use whatever arguments you like.

sub someFunction {
    my ( $oblig_param1, $oblig_param2, $option_param ) = @_;
    if (defined $option_param) {
        # do optional things
    }
    $option_param //= "default optional value";
    ....
} 
link|improve this answer
thank you. So, if I'm writing a Perl module, that'll be used by my colleagues, I should use prototypes? – evgeny9 Nov 14 '11 at 16:28
3  
Like I said in my comment, if you want clarity, add a comment instead. Don't use prototypes unless you specifically want the functionality that prototypes provide. – TLP Nov 14 '11 at 16:33
6  
Usually, you shouldn't! See Far More Than Everything You've Ever Wanted to Know about Prototypes in Perl – salva Nov 14 '11 at 16:52
feedback

It is a good idea to group parameters in a $parameter hashref. This is especially useful if several options (mandatory or optional) need to be provided.

To access any parameter, simply use $parameter->{oblig1} or $$parameter{option2}.

Passing hashrefs make it especially convenient when developing, so when the need for $oblig3 comes along, the ordering of the arguments changes neither at the caller nor the sub itself. Compare before and after:


# BEFORE $oblig3

--------------------------+-------------------------
# Caller                  | # Sub
--------------------------+-------------------------
someFunc( $oblig1,        | sub {
          $oblig2,        |   my ( $oblig1,
          $option1 );     |        $oblig2,
                          |        $option1 ) = @_;
                          | }
--------------------------+-------------------------

# AFTER $oblig3

--------------------------+-------------------------
# Caller                  | # Sub
--------------------------+-------------------------
someFunc( $oblig1,        | sub {
          $oblig2,        |   my ( $oblig1,
          $oblig3,        |        $oblig2,
          $option1 );     |        $oblig3,
                          |        $option1 ) = @_;
                          | }
--------------------------+-------------------------

The argument order changes at both caller and sub, so order needs to be maintained and respected.

Using hashrefs, there is no need to worry about argument order:

--------------------------+-------------------------
# Caller                  | # Sub
--------------------------+-------------------------
someFunc({ oblig1  => 1   | sub {
           oblig2  => 2   |   my ( $params ) = @_;
           option1 => 1   |   # No changes to    
           oblig3  => 7   |   # argument passing
         });              |  }    
                          | 
--------------------------+-------------------------

Depending on the design needs of the subroutine, the following subroutine argument patterns could be utilized:

  1. my ( $mandatory_parameters, $optional_parameters ) = @_;

    This pattern is useful if there are several of each. The beauty of this approach is that $optional_parameters is undefined if not passed, so the default case could be executed if ! $optional_parameters;

    Note that the mandatory parameters will need to be checked subsequently:

    die "Missing '$_' parameter\n" unless exists $mandatory_parameters->{$_} for qw/ a b c /;

  2. my ( $parameters ) = @_;

    Useful if there are few or no mandatory parameters.

    It is also extremely effective if parameters are passed to simply modify default behavior. By defining $default_parameters in the scope of the package, the defaults can be loaded by a subsequent one-liner unless a parameter was explicitly passed:

    $parameters = { %$default_parameters, %$parameters };

link|improve this answer
Zaid, thank you, but I think that using hash links is a bit early for me. – evgeny9 Nov 14 '11 at 16:45
1  
@evgeny9 : If you're willing to play around with prototypes, I suggest you take the time to understand hashes in a bit more detail. It's not that difficult, trust me! :) – Zaid Nov 14 '11 at 16:52
I'll do my best! – evgeny9 Nov 14 '11 at 16:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.