vote up 7 vote down star
1

Does Perl have an enumeration type that adheres to best practices, or maybe more importantly, does it need one?

The project I am working one uses strings all over the place to denote things that would typically use an Enum in a language like C#. For example, we have a set of phone numbers in an array of hashes, each associated with a phone type ("Home", "Work", "Mobile", etc.):

$phone_number->{type} = 'Home';

Would it be sufficient to use a read-only set of variables here or should an Enum be used? I've found an enum module on CPAN but it appears to use bare words which violates one of the Perl Best Practices. My thinking on using read-only variables goes something like this:

use Readonly;

Readonly my $HOME   => 'Home';
Readonly my $WORK   => 'Work';
Readonly my $MOBILE => 'Mobile';

$phone_number->{type} = $HOME;

Is this a good approach or is there a better way?

flag

I think you mean "enumerated". "Enumerator" sounds like an action and reminds "iterator" while you want something completely static. – JB Jan 23 at 17:00
@JB: you're right. Fixed. – David Schmitt Jan 23 at 17:03
Thanks for understanding my intent and fixing the question. – cowgod Jan 23 at 17:14

5 Answers

vote up 6 vote down check

No, there isn't a enum construct. Perl doesn't do a lot of strict typing, so I think there's actually little need for one.

In my opinion, the Readonly approach you used is solid.

There's also the more traditional constant pragma.

use constant {
    HOME   => 'Home',
    WORK   => 'Work',
    MOBILE => 'Mobile',
};

$phone_number->{type} = HOME;

Behind the scenes, it sets up a function for each constant that returns the value, like so.

sub HOME () { 'Home' }

I'd stick with Readonly unless you want to take advantage of that property, for example:

package Phone::Type;

use constant {
    HOME => 'Home',
    #...
};

package main;

print Phone::Type->HOME, "\n";
link|flag
For strictness, there is sub HOME () {'home'} made behind scene. – Hynek -Pichi- Vychodil Jan 26 at 13:21
You're right, thanks for pointing this out. – Ronald Blaschke Jan 30 at 17:53
When you have a subroutine which take in Phone::Type enum as argument, how do you perform dynamic checking on the subroutine argument is Phone::Type type enum, not string, not number... – Yan Cheng Cheok Jun 25 at 10:13
vote up 0 vote down

You should always remember that PBP is advisory - the book itself as much. You need to interpret the guidelines rather than slavishly adopting them.

link|flag
vote up 1 vote down

Perl does in fact have an enum type like in C. Try this for details.

man 3 enum

For instance:

use enum qw(HOME WORK MOBILE);

Now we have:

HOME == 0
WORK == 1
MOBILE == 2

You can also set the indeces yourself:

use enum qw(HOME=0 WORK MOBILE=10 FAX);

Now we have:

HOME == 0
WORK == 1
MOBILE == 10
FAX == 11

Look here for more details.

Note that this isn't supported in every version of Perl. I know that v5.8.3 doesn't support it, while v5.87 does.

link|flag
vote up 3 vote down

Your way is more than adequate.

You can also create enums with Moose::Util::TypeConstraints, if you happen to be using Moose. (Which you should be.)

link|flag
vote up 3 vote down

Perl doesn't support the concept natively but there are modules to add this functionality

http://linux.maruhn.com/sec/perl-enum.html

link|flag

Your Answer

Get an OpenID
or

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