vote up 5 vote down star
1

I am writing a Perl module Galaxy::SGE::MakeJobSH with OO.

I want to use MakeJobSH->new() instead of Galaxy::SGE::MakeJobSH->new(), or some other shortnames. How can I do that?

flag

6 Answers

vote up 10 vote down check

You can suggest that your users use the aliased module to load yours:

use aliased 'Galaxy::SGE::MakeJobSH';
my $job = MakeJobSH->new();

Or you could export your class name in a variable named $MakeJobSH;

use Galaxy::SGE::MakeJobSH;  # Assume this exports $MakeJobSH = 'Galaxy::SGE::MakeJobSH';
my $job = $MakeJobSH->new();

Or you could export a MakeJobSH function that returns your class name:

use Galaxy::SGE::MakeJobSH;  # Assume this exports the MakeJobSH function
my $job = MakeJobSH->new();

I'm not sure this is all that great an idea, though. People don't usually have to type the class name all that often.

Here's what you'd do in your class for the last two options:

package Galaxy::SGE::MakeJobSH;

use Exporter 'import';
our @EXPORT = qw(MakeJobSH $MakeJobSH);

our $MakeJobSH = __PACKAGE__;
sub MakeJobSH () { __PACKAGE__ };

Of course, you'd probably want to pick just one of those methods. I've just combined them to avoid duplicating examples.

link|flag
I wish aliased was part of the standard distribution. – Chris Lutz Sep 16 at 4:07
using PACKAGE is much smarter. – Galaxy Sep 16 at 4:41
@Chris Lutz: why when constant does absolutely same with same typing? stackoverflow.com/questions/1430548/… – Hynek -Pichi- Vychodil Sep 17 at 8:27
vote up 3 vote down

I don't bother with aliasing. I think it's the wrong way to go. If you're just looking for less to type, it might be the answer (but is a new dependency more benefit than risk?). I don't like the idea of tricking a maintenance programmer by hiding the real name from him since the aliasing happens a long way away from its use and there's no indication that what looks like a class name isn't a real class.

I'm mostly looking for easy subclassing, so I let the class decide for itself which module will implement a part.

For instance, I might start with a class that wants to use Foo to handle part of the job. I know that I might want to subclass Foo later, so I don't hard-code it:

 package Foo::Bar;

 sub foo_class { 'Foo' }

 sub new {
      ....
      eval "require $self->foo_class";
      $self->foo_class->do_something;
      }

In the application, I choose to use 'Foo::Bar':

 #!perl
 use Foo::Bar;

 my $obj = Foo::Bar->new();

Later, I need to specialise Foo, so I create a subclass overrides the parts I need:

 package Foo::Bar::Baz;
 use parent 'Foo::Bar';

 sub foo_class { 'Local::Foo::SomeFeature' }

 1;

Another application uses almost all of the same stuff, but with the small tweak:

 #!perl
 use Foo::Bar::Baz;

 my $obj = Foo::Bar::Baz->new();

You can also do a similar thing at the application level if you want to write one program and let users choose the class through configuration.

link|flag
vote up 1 vote down

Thanks cjm.

I just choose to inline aliased.

require Exporter;

our @ISA = qw(Exporter);
our @EXPORT = qw(MakeJobSH);

sub MakeJobSH() {return 'Galaxy::SGE::MakeJobSH';}
link|flag
1  
That was the third option in my answer. – cjm Sep 16 at 3:15
vote up 1 vote down

aliased works well when you want to only affect calls from packages that explicitly request the aliasing. If you want global aliasing of one namespace to another, use Package::Alias instead.

link|flag
vote up 1 vote down

It is almost exactly same approach as aliased but using standard Perl module:

use constant MakeJobSH => 'Galaxy::SGE::MakeJobSH';
my $job = MakeJobSH->new();
link|flag
vote up 0 vote down

use aliased;

link|flag
You may want to expand upon your answers. This answer was posted 9 minutes before the accepted answer, but the accepted answer has more details. – Brad Gilbert Sep 16 at 3:39
meh, I figured linking staright to the docs was the right thing to do. Usage is obvious and the docs for aliased are excellent. – singingfish Sep 16 at 11:42
I think you missed the point that he's writing the module and wants to provide an alias for it. He's not writing the code that uses the module. So while aliased is a pointer in the right direction, it's not really the answer. – cjm Sep 16 at 21:59

Your Answer

Get an OpenID
or

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