|
NAMESub::Signatures - Use proper signatures for subroutines, including dispatching.SYNOPSISuse Sub::Signatures; sub foo($bar) { print "$bar\n"; } sub foo($bar, $baz) { print "$bar, $baz\n"; } foo(1); # prints 1 foo(2,3); # prints 2, 3 foo(2,3,4); # fatal error sub bar($var) { print "$var\n"; } sub bar(fallback) { my ($this, $that) = @_; print "fallback $this, $that\n"; } bar(1); # prints 1 bar(2,3); # prints fallback 2, 3 bar(2,3); ABSTRACTSignature based method overloading in Perl. DESCRIPTIONWARNING: Not backwards-compatible to Sub::Signatures 0.11.One of the strongest complaints about Perl is its poor argument handling. Simply passing everything in the @_ array is a serious limitation. This module aims to rectify that. With this module, we an specify subroutine signatures and automatically dispatch on the number of arguments. We often see things like this in Perl code: sub name { my $self = shift; $self->set_name(@_) if @_; return $self->{name}; } sub set_name { my $self = shift; $self->{name} = shift; return $self; } The intent here is to allow someone to do this: my $name = $person->name; # fetch the name $person->name('Ovid'); # set the name Most modern programming languages have multi-method dispatching. The intent of "Sub::Signatures" is to fix this problem painlessly by allowing signature based method dispatch. Here's how it works: use Sub::Signatures qw/methods/; # ... sub name ($self) { return $self->{name}; } sub name ($self, $name) { $self->{name} = $name; } Later: print $object->name; # prints current name $object->name($name); # sets current name $object->name(qw/Publius Ovidius/); # fatal runtime error NOTE: all arguments in signatures must be scalars. Perl does not handle flattening of hashes or arrays very gracefully. FallbackFor a group of subroutines or methods with the same name but different arguments, calling this subroutine with a different number of arguments from those available in any signature will cause a fatal runtime error. If this is too restrictive, use a 'fallback' subroutine or method.sub name ($self) { return $self->{name}; } sub name ($self, $name) { $self->{name} = $name; } sub name(fallback) { my ($self, @args) = @_; $self->{name} = join ' ', @args; } Later: print $object->name; # prints current name $object->name($name); # sets current name $object->name(qw/Publius Ovidius/); # sets name to 'Publius Ovidius' Note that forcing the programmer to explicitly label a subroutine as a 'fallback' ensures that even if that subroutine is not located near any of the others with the same name, it's still clear to a maintenance programmer that the subroutine may be overloaded. Using MethodsThe default behavior of "Sub::Signatures" is to assume that signatures are on subroutines. If you use this with OO programming and have methods instead of functions, you must specify "methods" mode. This is because we have to be able to dispatch to a parent class if the method isn't found in the current class.package ClassA; use Sub::Signatures qw/methods/; sub new($package, $properties) { bless $properties => $package; } sub foo($class, $bar) { return sprintf "arrayref with %d elements" => scalar @$bar; } sub name($self) { return $self->{name}; } sub name($self, $name) { $self->{name} = $name; return $self; } 1; Anonymous subroutinesWhile multi-dispatch doesn't make much sense in the context of anonymous subroutines, we can still use subroutine signatures with them:sub foo($bar) { return sub ($this) { "$this $bar" } } Also, though there is special handling for "methods", anonymous subroutines can be safely mixed with methods. FEATURESCurrently supported features:
WHAT ABOUT TYPING?The first version of this alpha allowed optional strong typing by letting you specify the exact ref type each argument should be:sub foo (ARRAY $bar, HASH $baz, CGI $query) { ... } Why did this go away? There were several problems. First, specifying the exact data type meant that isa relationships were ignored. However, if we were to check isa relationships, this sometimes leads to problems with ambiguous method resolution. The real nail in the coffin was that "CGI $query" parameter above. What if we actually have a "CGI::Simple" object passed in instead? It almost completely conforms to the "CGI" interface. If it does what we want, the type checking guarantees that that this method will fail for no good reason. However, no argument checking is a bad thing. What we're really interested in is whether or not a given argument is capable of providing what we need, not whether or not it's a given type. This puts your author in a bind. Objects which are unrelated by inheritance but present the same behaviors are known as allomorphic. Allomorphism, despite the funny name, is something Perl programmers use all the time without being aware of what it's called. However, to add allomorphism support to this module would complicate it quite a bit. Thus, to keep things as simple as possible, we restrict ourselves to dispatching on the number of arguments. Thus, you, the programmer, will still need to validate the different types and/or capabilities of the arguments you pass in. If you prefer, you can still list the data type before the argument: sub foo (ARRAY $bar) {...} However, the "ARRAY" will be discarded. Think of it as documentation. BUGS AND LIMITATIONSFor the most part this module just works. If you are having problems, consult this list to see if it's covered here.
HOW THIS WORKSIn a nutshell, each subroutine is renamed with a unique, signature-based name and a sub with its original name figures out how to dispatch to it. It loosely works like this:package Some::Package; sub foo($bar) { return [$bar]; } sub foo($bar, $baz) { return exists $baz->{$bar}; } In loose mode, this becomes: # note that only the number of arguments is checked package Some::Package; sub foo { goto &__foo_1 if 1 == @_; goto &__foo_2 if 2 == @_; # die with a useful error message unless we have a fallback subroutine } sub __foo_1 { my ($bar) = @_; return [$bar]; } sub __foo_2 { my ($bar, $baz) = @_; return exists $baz->{$bar}; } There's a bit more magic involved when it comes to methods, particulary with trying to call an inherited method if one is not found in the current package. However, this should give you a rough idea of what's going on and also give you fair warning that deliberately naming subs things like "_subname_$digit" is a bad thing. EXPORTNone.BETA CODEThis is beta code. Many people understandably do not wish to use beta code in production. To get this code robust enough for production use, send me bug reports. Send me patches. Send me requests. Send me feedback.Naturally, since this is beta code, the interface is probably stable. I have no intention of changing it unless I need to. Hopefully I've not made any boneheaded mistakes that necessitate this, but I will not guarantee that I am not, in fact, boneheaded. However, if you use this module, please let me know. If things do change, I'd like to give folks a heads up. SEE ALSOFilter::SimpleYes, this is based on a source filter. If you can't stand that, don't use this module. However, before you ignore it, read <http://use.perl.org/~Ovid/journal/22152>. Attribute::Signature Perl6::Subs Perl6::Parameters AUTHORCurtis "Ovid" Poe, <moc tod oohay ta eop_divo_sitruc>Reverse the name to email me. COPYRIGHT AND LICENSECopyright 2004-2005 by Curtis "Ovid" PoeThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |