separation of concerns is good
John Napiorkowski [Wed, 20 Aug 2008 22:00:57 +0000 (22:00 +0000)]
lib/MooseX/Meta/TypeConstraint/Role/Structured.pm [new file with mode: 0644]
lib/MooseX/Meta/TypeConstraint/Structured/Named.pm [new file with mode: 0644]
lib/MooseX/Meta/TypeConstraint/Structured/Positional.pm [new file with mode: 0644]
t/constraints.t

diff --git a/lib/MooseX/Meta/TypeConstraint/Role/Structured.pm b/lib/MooseX/Meta/TypeConstraint/Role/Structured.pm
new file mode 100644 (file)
index 0000000..55fbb02
--- /dev/null
@@ -0,0 +1,172 @@
+package MooseX::Meta::TypeConstraint::Role::Structured;
+
+use Moose::Role;
+use Moose::Util::TypeConstraints;
+
+=head1 NAME
+
+MooseX::Meta::TypeConstraint::Role::Structured - Structured Type Constraints
+
+=head1 VERSION
+
+0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+=head1 DESCRIPTION
+
+Structured type constraints let you assign an internal pattern of type
+constraints to a 'container' constraint.  The goal is to make it easier to
+declare constraints like "ArrayRef[Int, Int, Str]" where the constraint is an
+ArrayRef of three elements and the internal constraint on the three is Int, Int
+and Str.
+
+To accomplish this, we add an attribute to the base L<Moose::Meta::TypeConstraint>
+to hold a L</signature>, which is a reference to a pattern of type constraints.
+We then override L</constraint> to check our incoming value to the attribute
+against this signature pattern.
+
+=head1 SUBTYPES
+
+The following subtypes and coercions are defined in this class.
+
+=head2 MooseX::Meta::TypeConstraint::Structured::Signature
+
+This is a type constraint to normalize the incoming L</signature>.  We want
+everything as a HashRef in the end.
+
+=cut
+
+subtype 'MooseX::Meta::TypeConstraint::Structured::Signature',
+    as 'HashRef[Object]',
+    where {
+        my %signature = %$_;
+        foreach my $key (keys %signature) {
+            $signature{$key}->isa('Moose::Meta::TypeConstraint');
+        } 1;
+    };
+coerce 'MooseX::Meta::TypeConstraint::Structured::Signature',
+    from 'ArrayRef[Object]',
+    via {
+        my @signature = @$_;
+        my %hashed_signature = map { $_ => $signature[$_] } 0..$#signature;
+        \%hashed_signature;
+    };
+
+=head1 ATTRIBUTES
+
+This class defines the following attributes.
+
+=head2 signature
+
+This is a signature of internal contraints for the contents of the outer
+contraint container.
+
+=cut
+
+has 'signature' => (
+    is=>'ro',
+    isa=>'MooseX::Meta::TypeConstraint::Structured::Signature',
+    coerce=>1,
+    required=>1,
+);
+
+=head1 METHODS
+
+This class defines the following methods.
+
+=head2 _normalize_args
+
+Get arguments into a known state or die trying.  Ideally we try to make this
+into a HashRef so we can match it up with the L</signature> HashRef.
+
+=cut
+
+sub _normalize_args {
+    my ($self, $args) = @_;
+    if(defined $args) {
+        if(ref $args eq 'ARRAY') {
+            return map { $_ => $args->[$_] } (0..$#$args);
+        } elsif (ref $args eq 'HASH') {
+            return %$args;
+        } else {
+            confess 'Signature must be a reference';
+        }
+    } else {
+        confess 'Signature cannot be empty';
+    }
+}
+    
+=head2 constraint
+
+The constraint is basically validating the L</signature> against the incoming
+
+=cut
+
+sub constraint {
+    my $self = shift;
+    return sub {
+        my %args = $self->_normalize_args(shift);
+        foreach my $idx (keys %{$self->signature}) {
+            my $type_constraint = $self->signature->{$idx};
+            if(my $error = $type_constraint->validate($args{$idx})) {
+                confess $error;
+            }
+        } 1;        
+    };
+}
+
+=head2 equals
+
+modifier to make sure equals descends into the L</signature>
+
+=cut
+
+around 'equals' => sub {
+    my ($equals, $self, $compared_type_constraint) = @_;
+    
+    ## Make sure we are comparing typeconstraints of the same base class
+    return unless $compared_type_constraint->isa(__PACKAGE__);
+    
+    ## Make sure the base equals is also good
+    return unless $self->$equals($compared_type_constraint);
+    
+    ## Make sure the signatures match
+    return unless $self->signature_equals($compared_type_constraint);
+   
+    ## If we get this far, the two are equal
+    return 1;
+};
+
+=head2 signature_equals
+
+Check that the signature equals another signature.
+
+=cut
+
+sub signature_equals {
+    my ($self, $compared_type_constraint) = @_;
+    
+   foreach my $idx (keys %{$self->signature}) {
+        my $this = $self->signature->{$idx};
+        my $that = $compared_type_constraint->signature->{$idx};
+        return unless $this->equals($that);
+    }
+   
+    return 1;
+}
+
+=head1 AUTHOR
+
+John James Napiorkowski <jjnapiork@cpan.org>
+
+=head1 LICENSE
+
+You may distribute this code under the same terms as Perl itself.
+
+=cut
+
+no Moose; 1;
diff --git a/lib/MooseX/Meta/TypeConstraint/Structured/Named.pm b/lib/MooseX/Meta/TypeConstraint/Structured/Named.pm
new file mode 100644 (file)
index 0000000..4e6439d
--- /dev/null
@@ -0,0 +1,197 @@
+package MooseX::Meta::TypeConstraint::Structured::Named;
+
+use Moose;
+use Moose::Meta::TypeConstraint ();
+use Moose::Util::TypeConstraints;
+
+extends 'Moose::Meta::TypeConstraint';
+
+=head1 NAME
+
+MooseX::Meta::TypeConstraint::Structured::Named - Structured Type Constraints
+
+=head1 VERSION
+
+0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+=head1 DESCRIPTION
+
+Structured type constraints let you assign an internal pattern of type
+constraints to a 'container' constraint.  The goal is to make it easier to
+declare constraints like "ArrayRef[Int, Int, Str]" where the constraint is an
+ArrayRef of three elements and the internal constraint on the three is Int, Int
+and Str.
+
+To accomplish this, we add an attribute to the base L<Moose::Meta::TypeConstraint>
+to hold a L</signature>, which is a reference to a pattern of type constraints.
+We then override L</constraint> to check our incoming value to the attribute
+against this signature pattern.
+
+Named structured Constraints expect the internal constraints to be in keys or
+fields similar to what we expect in a HashRef.
+
+=head1 TYPES
+
+The following types are defined in this class.
+
+=head2 Moose::Meta::TypeConstraint
+
+Used to make sure we can properly validate incoming signatures.
+
+=cut
+
+class_type 'Moose::Meta::TypeConstraint';
+
+=head1 ATTRIBUTES
+
+This class defines the following attributes.
+
+=head2 signature
+
+This is a signature of internal contraints for the contents of the outer
+contraint container.
+
+=cut
+
+has 'signature' => (
+    is=>'ro',
+    isa=>'HashRef[Moose::Meta::TypeConstraint]',
+    required=>1,
+);
+
+=head2 optional_signature
+
+This is a signature of internal contraints for the contents of the outer
+contraint container.  These are optional constraints.
+
+=cut
+
+has 'optional_signature' => (
+    is=>'ro',
+    isa=>'HashRef[Moose::Meta::TypeConstraint]',
+    predicate=>'has_optional_signature',
+);
+
+=head1 METHODS
+
+This class defines the following methods.
+
+=head2 _normalize_args
+
+Get arguments into a known state or die trying.  Ideally we try to make this
+into a HashRef so we can match it up with the L</signature> HashRef.
+
+=cut
+
+sub _normalize_args {
+    my ($self, $args) = @_;
+    if(defined $args) {
+        if(ref $args eq 'HASH') {
+            %$args
+        } else {
+            confess 'Signature must be an HashRef type';
+        }
+    } else {
+        confess 'Signature cannot be empty';
+    }
+}
+    
+=head2 constraint
+
+The constraint is basically validating the L</signature> against the incoming
+
+=cut
+
+sub constraint {
+    my $self = shift;
+    return sub {
+        my %args = $self->_normalize_args(shift);
+        my @signature = keys %{$self->signature};
+        my @ptional_signature = keys %{$self->optional_signature}
+         if $self->has_optional_signature;
+        
+        ## First make sure all the required type constraints match        
+        while( my $type_constraint_key = shift @signature) {
+            my $type_constraint = $self->signature->{$type_constraint_key};
+            if(my $error = $type_constraint->validate($args{$type_constraint_key})) {
+                confess $error;
+            }
+            delete $args{$type_constraint_key};
+        }
+        
+        ## Now test the option type constraints.
+        while( my $arg_key = keys %args) {
+            my $optional_type_constraint = $self->signature->{$arg_key};
+            if(my $error = $optional_type_constraint->validate($args{$arg_key})) {
+                confess $error;
+            }              
+        }
+        
+        ## If we got this far we passed!
+        return 1;
+    };
+}
+
+=head2 signature_equals
+
+Check that the signature equals another signature.
+
+=cut
+
+sub signature_equals {
+    my ($self, $compared_type_constraint) = @_;
+    
+    foreach my $idx (keys %{$self->signature}) {
+        my $this = $self->signature->{$idx};
+        my $that = $compared_type_constraint->signature->{$idx};
+        return unless $this->equals($that);
+    }
+    
+    if($self->has_optional_signature) {
+        foreach my $idx (keys %{$self->optional_signature}) {
+            my $this = $self->optional_signature->{$idx};
+            my $that = $compared_type_constraint->optional_signature->{$idx};
+            return unless $this->equals($that);
+        }        
+    }
+
+    return 1;
+}
+
+=head2 equals
+
+modifier to make sure equals descends into the L</signature>
+
+=cut
+
+around 'equals' => sub {
+    my ($equals, $self, $compared_type_constraint) = @_;
+    
+    ## Make sure we are comparing typeconstraints of the same base class
+    return unless $compared_type_constraint->isa(__PACKAGE__);
+    
+    ## Make sure the base equals is also good
+    return unless $self->$equals($compared_type_constraint);
+    
+    ## Make sure the signatures match
+    return unless $self->signature_equals($compared_type_constraint);
+   
+    ## If we get this far, the two are equal
+    return 1;
+};
+
+=head1 AUTHOR
+
+John James Napiorkowski <jjnapiork@cpan.org>
+
+=head1 LICENSE
+
+You may distribute this code under the same terms as Perl itself.
+
+=cut
+
+no Moose; 1;
diff --git a/lib/MooseX/Meta/TypeConstraint/Structured/Positional.pm b/lib/MooseX/Meta/TypeConstraint/Structured/Positional.pm
new file mode 100644 (file)
index 0000000..e495372
--- /dev/null
@@ -0,0 +1,195 @@
+package MooseX::Meta::TypeConstraint::Structured::Positional;
+
+use Moose;
+use Moose::Meta::TypeConstraint ();
+use Moose::Util::TypeConstraints;
+
+extends 'Moose::Meta::TypeConstraint';
+
+=head1 NAME
+
+MooseX::Meta::TypeConstraint::Structured::Positional - Structured Type Constraints
+
+=head1 VERSION
+
+0.01
+
+=cut
+
+our $VERSION = '0.01';
+
+=head1 DESCRIPTION
+
+Structured type constraints let you assign an internal pattern of type
+constraints to a 'container' constraint.  The goal is to make it easier to
+declare constraints like "ArrayRef[Int, Int, Str]" where the constraint is an
+ArrayRef of three elements and the internal constraint on the three is Int, Int
+and Str.
+
+To accomplish this, we add an attribute to the base L<Moose::Meta::TypeConstraint>
+to hold a L</signature>, which is a reference to a pattern of type constraints.
+We then override L</constraint> to check our incoming value to the attribute
+against this signature pattern.
+
+Positionally structured Constraints expect the internal constraints to be in
+'positioned' or ArrayRef style order.
+
+=head1 TYPES
+
+The following types are defined in this class.
+
+=head2 Moose::Meta::TypeConstraint
+
+Used to make sure we can properly validate incoming signatures.
+
+=cut
+
+class_type 'Moose::Meta::TypeConstraint';
+
+=head1 ATTRIBUTES
+
+This class defines the following attributes.
+
+=head2 signature
+
+This is a signature of internal contraints for the contents of the outer
+contraint container.
+
+=cut
+
+has 'signature' => (
+    is=>'ro',
+    isa=>'ArrayRef[Moose::Meta::TypeConstraint]',
+    required=>1,
+);
+
+=head2 optional_signature
+
+This is a signature of internal contraints for the contents of the outer
+contraint container.  These are optional constraints.
+
+=cut
+
+has 'optional_signature' => (
+    is=>'ro',
+    isa=>'ArrayRef[Moose::Meta::TypeConstraint]',
+    predicate=>'has_optional_signature',
+);
+
+=head1 METHODS
+
+This class defines the following methods.
+
+=head2 _normalize_args
+
+Get arguments into a known state or die trying.  Ideally we try to make this
+into a HashRef so we can match it up with the L</signature> HashRef.
+
+=cut
+
+sub _normalize_args {
+    my ($self, $args) = @_;
+    if(defined $args) {
+        if(ref $args eq 'ARRAY') {
+            @$args
+        } else {
+            confess 'Signature must be an ArrayRef type';
+        }
+    } else {
+        confess 'Signature cannot be empty';
+    }
+}
+    
+=head2 constraint
+
+The constraint is basically validating the L</signature> against the incoming
+
+=cut
+
+sub constraint {
+    my $self = shift;
+    return sub {
+        my @args = $self->_normalize_args(shift);
+        my @signature = @{$self->signature};
+        my @optional_signature = @{$self->optional_signature}
+         if $self->has_optional_signature;
+        
+        ## First make sure all the required type constraints match        
+        while( my $type_constraint = shift @signature) {
+            if(my $error = $type_constraint->validate(shift @args)) {
+                confess $error;
+            }            
+        }
+        
+        ## Now test the option type constraints.
+        while( my $arg = shift @args) {
+            my $optional_type_constraint = shift @optional_signature;
+            if(my $error = $optional_type_constraint->validate($arg)) {
+                confess $error;
+            }              
+        }
+        
+        ## If we got this far we passed!
+        return 1;
+    };
+}
+
+=head2 signature_equals
+
+Check that the signature equals another signature.
+
+=cut
+
+sub signature_equals {
+    my ($self, $compared_type_constraint) = @_;
+    
+    foreach my $idx (0..$#{$self->signature}) {
+        my $this = $self->signature->[$idx];
+        my $that = $compared_type_constraint->signature->[$idx];
+        return unless $this->equals($that);
+    }
+    
+    if($self->has_optional_signature) {
+        foreach my $idx (0..$#{$self->optional_signature}) {
+            my $this = $self->optional_signature->[$idx];
+            my $that = $compared_type_constraint->optional_signature->[$idx];
+            return unless $this->equals($that);
+        }        
+    }
+
+    return 1;
+}
+
+=head2 equals
+
+modifier to make sure equals descends into the L</signature>
+
+=cut
+
+around 'equals' => sub {
+    my ($equals, $self, $compared_type_constraint) = @_;
+    
+    ## Make sure we are comparing typeconstraints of the same base class
+    return unless $compared_type_constraint->isa(__PACKAGE__);
+    
+    ## Make sure the base equals is also good
+    return unless $self->$equals($compared_type_constraint);
+    
+    ## Make sure the signatures match
+    return unless $self->signature_equals($compared_type_constraint);
+   
+    ## If we get this far, the two are equal
+    return 1;
+};
+
+=head1 AUTHOR
+
+John James Napiorkowski <jjnapiork@cpan.org>
+
+=head1 LICENSE
+
+You may distribute this code under the same terms as Perl itself.
+
+=cut
+
+no Moose; 1;
index 197fdc0..95c9f18 100644 (file)
@@ -10,15 +10,19 @@ BEGIN {
 
     use Moose;
     use Moose::Util::TypeConstraints;
-    use MooseX::Meta::TypeConstraint::Structured;
+    use MooseX::Meta::TypeConstraint::Structured::Named;
+    use MooseX::Meta::TypeConstraint::Structured::Positional;
 
     subtype 'MyString',
      as 'Str',
      where { $_=~m/abc/};
 
     sub Tuple {
-        my @args = @{shift @_};
-        return MooseX::Meta::TypeConstraint::Structured->new(
+        my ($args, $optional) = @_;
+        my @args = @$args;
+        my @optional = ref $optional eq 'ARRAY' ? @$optional : ();
+
+        return MooseX::Meta::TypeConstraint::Structured::Positional->new(
             name => 'Tuple',
             parent => find_type_constraint('ArrayRef'),
             package_defined_in => __PACKAGE__,
@@ -29,8 +33,11 @@ BEGIN {
     }
 
     sub Dict {
-        my %args = @{shift @_};
-        return MooseX::Meta::TypeConstraint::Structured->new(
+        my ($args, $optional) = @_;
+        my %args = @$args;
+        my %optional = ref $optional eq 'HASH' ? @$optional : ();
+        
+        return MooseX::Meta::TypeConstraint::Structured::Named->new(
             name => 'Dict',
             parent => find_type_constraint('HashRef'),
             package_defined_in => __PACKAGE__,