X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FMeta%2FTypeConstraint%2FEnum.pm;h=b19c59b8092c9d38d7f747b419ed1ac96a755075;hb=477a812e8edd6ee5ebee1a3b7b90cfeac3b2b9f7;hp=29f3f2620e68d162428da82db98c43732fb7a17e;hpb=e462f6f3d260687b8f7372b112a50c5c2a2c431c;p=gitmo%2FMoose.git diff --git a/lib/Moose/Meta/TypeConstraint/Enum.pm b/lib/Moose/Meta/TypeConstraint/Enum.pm index 29f3f26..b19c59b 100644 --- a/lib/Moose/Meta/TypeConstraint/Enum.pm +++ b/lib/Moose/Meta/TypeConstraint/Enum.pm @@ -4,22 +4,57 @@ use strict; use warnings; use metaclass; +use B; use Moose::Util::TypeConstraints (); -our $VERSION = '1.05'; -$VERSION = eval $VERSION; -our $AUTHORITY = 'cpan:STEVAN'; - use base 'Moose::Meta::TypeConstraint'; __PACKAGE__->meta->add_attribute('values' => ( accessor => 'values', )); +our %ENUMS; + +my $inliner = sub { + my $self = shift; + my $val = shift; + + my $name = $self->name(); + $ENUMS{$name} ||= { map { $_ => 1 } @{ $self->values() } }; + + return + "defined $val" + . "&& ! ref $val" . '&& $' + . __PACKAGE__ + . '::ENUMS{' + . B::perlstring($name) + . "}{ $val }"; +}; + sub new { my ( $class, %args ) = @_; $args{parent} = Moose::Util::TypeConstraints::find_type_constraint('Str'); + $args{inlined} = $inliner; + + if ( scalar @{ $args{values} } < 2 ) { + require Moose; + Moose->throw_error("You must have at least two values to enumerate through"); + } + + for (@{ $args{values} }) { + if (!defined($_)) { + require Moose; + Moose->throw_error("Enum values must be strings, not undef"); + } + elsif (ref($_)) { + require Moose; + Moose->throw_error("Enum values must be strings, not '$_'"); + } + } + + my %values = map { $_ => 1 } @{ $args{values} }; + $args{constraint} = sub { $values{ $_[0] } }; my $self = $class->_new(\%args); @@ -59,14 +94,6 @@ sub constraint { return sub { exists $values{$_[0]} }; } -sub _compile_hand_optimized_type_constraint { - my $self = shift; - - my %values = map { $_ => undef } @{ $self->values }; - - sub { defined($_[0]) && !ref($_[0]) && exists $values{$_[0]} }; -} - sub create_child_type { my ($self, @args) = @_; return Moose::Meta::TypeConstraint->new(@args, parent => $self); @@ -74,14 +101,12 @@ sub create_child_type { 1; +# ABSTRACT: Type constraint for enumerated values. + __END__ =pod -=head1 NAME - -Moose::Meta::TypeConstraint::Enum - Type constraint for enumerated values. - =head1 DESCRIPTION This class represents type constraints based on an enumerated list of @@ -128,19 +153,6 @@ object! See L for details on reporting bugs. -=head1 AUTHOR - -Yuval Kogman Enothingmuch@cpan.orgE - -=head1 COPYRIGHT AND LICENSE - -Copyright 2006-2010 by Infinity Interactive, Inc. - -L - -This library is free software; you can redistribute it and/or modify -it under the same terms as Perl itself. - =cut