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?
|
1
|
|
|
|
|
|
You can suggest that your users use the aliased module to load yours:
Or you could export your class name in a variable named
Or you could export a MakeJobSH function that returns your class name:
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:
Of course, you'd probably want to pick just one of those methods. I've just combined them to avoid duplicating examples. |
||||||
|
|
|
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
In the application, I choose to use 'Foo::Bar':
Later, I need to specialise Foo, so I create a subclass overrides the parts I need:
Another application uses almost all of the same stuff, but with the small tweak:
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. |
||
|
|
|
|
Thanks cjm. I just choose to inline aliased.
|
||||
|
|
|
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. |
||
|
|
|
|
It is almost exactly same approach as
|
||
|
|
|
|
use aliased; |
||||||
|