I need a class attribute in Moose. Right now I am saying:
#!/usr/bin/perl
use 5.010;
use strict;
use warnings;
use MooseX::Declare;
class User {
has id => (isa => "Str", is => 'ro', builder => '_get_id');
has name => (isa => "Str", is => 'ro');
has balance => (isa => "Num", is => 'rw', default => 0);
#FIXME: this should use a database
method _get_id {
state $id = 0; #I would like this to be a class attribute
return $id++;
}
}
my @users;
for my $name (qw/alice bob charlie/) {
push @users, User->new(name => $name);
};
for my $user (@users) {
print $user->name, " has an id of ", $user->id, "\n";
}
I found MooseX::ClassAttribute, but it looks ugly. Is this the cleanest way?
#!/usr/bin/perl
use 5.010;
use strict;
use warnings;
use MooseX::Declare;
class User {
use MooseX::ClassAttribute;
class_has id_pool => (isa => "Int", is => 'rw', default => 0);
has id => (isa => "Str", is => 'ro', builder => '_get_id');
has name => (isa => "Str", is => 'ro');
has balance => (isa => "Num", is => 'rw', default => 0);
#FIXME: this should use a database
method _get_id {
return __PACKAGE__->id_pool(__PACKAGE__->id_pool+1);
}
}
my @users;
for my $name (qw/alice bob charlie/) {
push @users, User->new(name => $name);
};
for my $user (@users) {
print $user->name, " has an id of ", $user->id, "\n";
}
Honestly, I don't think it's necessary to all that trouble for class attributes. For read-only class attributes, I just use a sub that returns a constant. For read-write attributes, a simple state variable in the package usually does the trick (I haven't yet run into any scenarios where I needed something more complicated.)
state $count = 0;
method _get_id {
return ++$count;
}
A private block with a lexical can be used if you need pre-5.10 compatibility.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With