package MooseX::AttributeHelpers::Base;
use Moose;
+use Moose::Util::TypeConstraints;
our $VERSION = '0.01';
our $AUTHORITY = 'cpan:STEVAN';
has '+$!default' => (required => 1);
has '+type_constraint' => (required => 1);
-# this confirms that provides has
-# all valid possibilities in it
-sub _check_provides {
- my $self = shift;
- my $method_constructors = $self->method_constructors;
- foreach my $key (keys %{$self->provides}) {
- (exists $method_constructors->{$key})
- || confess "$key is an unsupported method type";
- }
-}
+## Methods called prior to instantiation
+
+sub helper_type { () }
-# this provides an opportunity to
-# manipulate the %options to handle
-# some of the provides features
-# correctly.
-sub _process_options_for_provides {
+sub process_options_for_provides {
my ($self, $options) = @_;
- # ...
+ if (my $type = $self->helper_type) {
+ (exists $options->{isa})
+ || confess "You must define a type with the $type metaclass";
+
+ my $isa = $options->{isa};
+
+ unless (blessed($isa) && $isa->isa('Moose::Meta::TypeConstraint')) {
+ $isa = find_type_constraint($isa);
+ }
+
+ ($isa->is_a_type_of($type))
+ || confess "The type constraint for a $type ($options->{isa}) must be a subtype of $type";
+ }
+
+ # this can be augmented by subclasses ..
+ inner();
}
before '_process_options' => sub {
my ($self, $name, $options) = @_;
if (exists $options->{provides}) {
- $self->_process_options_for_provides($options);
+ $self->process_options_for_provides($options);
}
};
+## methods called after instantiation
+
+# this confirms that provides has
+# all valid possibilities in it
+sub check_provides_values {
+ my $self = shift;
+ my $method_constructors = $self->method_constructors;
+ foreach my $key (keys %{$self->provides}) {
+ (exists $method_constructors->{$key})
+ || confess "$key is an unsupported method type";
+ }
+}
+
after 'install_accessors' => sub {
my $attr = shift;
my $class = $attr->associated_class;
# before we install them, lets
# make sure they are valid
- $attr->_check_provides;
+ $attr->check_provides_values;
my $method_constructors = $attr->method_constructors;
};
no Moose;
+no Moose::Util::TypeConstraints;
1;
+++ /dev/null
-
-package MooseX::AttributeHelpers::Collection;
-
-our $VERSION = '0.01';
-our $AUTHORITY = 'cpan:STEVAN';
-
-1;
-
-__END__
-
-=pod
-
-=head1 NAME
-
-=head1 SYNOPSIS
-
-=head1 DESCRIPTION
-
-=head1 METHODS
-
-=head1 BUGS
-
-All complex software has bugs lurking in it, and this module is no
-exception. If you find a bug please either email me, or add the bug
-to cpan-RT.
-
-=head1 AUTHOR
-
-Stevan Little E<lt>stevan@iinteractive.comE<gt>
-
-=head1 COPYRIGHT AND LICENSE
-
-Copyright 2007 by Infinity Interactive, Inc.
-
-L<http://www.iinteractive.com>
-
-This library is free software; you can redistribute it and/or modify
-it under the same terms as Perl itself.
-
-=cut
\ No newline at end of file
package MooseX::AttributeHelpers::Collection::Array;
use Moose;
-use Moose::Util::TypeConstraints;
our $VERSION = '0.01';
our $AUTHORITY = 'cpan:STEVAN';
extends 'MooseX::AttributeHelpers::Base';
+sub helper_type { 'ArrayRef' }
+
has '+method_constructors' => (
default => sub {
return +{
}
);
-sub _process_options_for_provides {
- my ($self, $options) = @_;
- (exists $options->{isa})
- || confess "You must define a type with the Array metaclass";
-
- my $isa = $options->{isa};
-
- unless (blessed($isa) && $isa->isa('Moose::Meta::TypeConstraint')) {
- $isa = find_type_constraint($isa);
- }
-
- ($isa->is_a_type_of('ArrayRef'))
- || confess "The type constraint for a Array ($options->{isa}) must be a subtype of ArrayRef";
-}
-
no Moose;
-no Moose::Util::TypeConstraints;;
# register the alias ...
package Moose::Meta::Attribute::Custom::Collection::Array;
package MooseX::AttributeHelpers::Collection::Hash;
use Moose;
-use Moose::Util::TypeConstraints;
our $VERSION = '0.01';
our $AUTHORITY = 'cpan:STEVAN';
extends 'MooseX::AttributeHelpers::Base';
+sub helper_type { 'HashRef' }
+
has '+method_constructors' => (
default => sub {
return +{
}
);
-sub _process_options_for_provides {
- my ($self, $options) = @_;
- (exists $options->{isa})
- || confess "You must define a type with the Hash metaclass";
-
- my $isa = $options->{isa};
-
- unless (blessed($isa) && $isa->isa('Moose::Meta::TypeConstraint')) {
- $isa = find_type_constraint($isa);
- }
-
- ($isa->is_a_type_of('HashRef'))
- || confess "The type constraint for a Hash ($options->{isa}) must be a subtype of HashRef";
-}
-
no Moose;
-no Moose::Util::TypeConstraints;
# register the alias ...
package Moose::Meta::Attribute::Custom::Collection::Hash;
extends 'MooseX::AttributeHelpers::Base';
+sub helper_type { 'Num' }
+
has '+method_constructors' => (
default => sub {
return +{
}
}
);
-
-sub _process_options_for_provides {
- my ($self, $options) = @_;
- (exists $options->{isa})
- || confess "You must define a type with the Counter metaclass";
-
- my $isa = $options->{isa};
-
- unless (blessed($isa) && $isa->isa('Moose::Meta::TypeConstraint')) {
- $isa = find_type_constraint($isa);
- }
-
- ($isa->is_a_type_of('Num'))
- || confess "The type constraint for a Counter ($options->{isa}) must be a subtype of Num";
-}
no Moose;
no Moose::Util::TypeConstraints;