Composite now implemented.
[gitmo/MooseX-AttributeHelpers.git] / lib / MooseX / AttributeHelpers / Collection / Hash.pm
index 6fa7bca..5babe6b 100644 (file)
@@ -1,66 +1,19 @@
-
 package MooseX::AttributeHelpers::Collection::Hash;
 use Moose;
-
-our $VERSION   = '0.01';
-our $AUTHORITY = 'cpan:STEVAN';
+use MooseX::AttributeHelpers::MethodProvider::Collection::Hash;
 
 extends 'MooseX::AttributeHelpers::Collection';
 
-sub helper_type { 'HashRef' }
-
-has '+method_constructors' => (
-    default => sub {
-        return +{
-            'exists' => sub {
-                my $attr = shift;
-                return sub { exists $attr->get_value($_[0])->{$_[1]} ? 1 : 0 };
-            },            
-            'get' => sub {
-                my $attr = shift;
-                return sub { $attr->get_value($_[0])->{$_[1]} };
-            },    
-            'set' => sub {
-                my $attr = shift;
-                if ($attr->has_container_type) {
-                    my $container_type_constraint = $attr->container_type_constraint;
-                    return sub { 
-                        ($container_type_constraint->check($_[2])) 
-                            || confess "Value " . ($_[2]||'undef') . " did not pass container type constraint";                        
-                        $attr->get_value($_[0])->{$_[1]} = $_[2] 
-                    };
-                }
-                else {
-                    return sub { $attr->get_value($_[0])->{$_[1]} = $_[2] };
-                }
-            },    
-            'keys' => sub {
-                my $attr = shift;
-                return sub { keys %{$attr->get_value($_[0])} };        
-            },            
-            'values' => sub {
-                my $attr = shift;
-                return sub { values %{$attr->get_value($_[0])} };        
-            },            
-            'count' => sub {
-                my $attr = shift;
-                return sub { scalar keys %{$attr->get_value($_[0])} };        
-            },
-            'empty' => sub {
-                my $attr = shift;
-                return sub { scalar keys %{$attr->get_value($_[0])} ? 1 : 0 };        
-            }
-        }
-    }
+our $VERSION   = '0.02';
+our $AUTHORITY = 'cpan:STEVAN';
+
+__PACKAGE__->sugar(
+    method_provider  => 'Collection::Hash',
+    shortcut         => 'Collection::Hash',
 );
 
 no Moose;
 
-# register the alias ...
-package Moose::Meta::Attribute::Custom::Collection::Hash;
-sub register_implementation { 'MooseX::AttributeHelpers::Collection::Hash' }
-
-
 1;
 
 __END__
@@ -69,11 +22,38 @@ __END__
 
 =head1 NAME
 
+MooseX::AttributeHelpers::Collection::Hash
+
 =head1 SYNOPSIS
 
+  package Stuff;
+  use Moose;
+  use MooseX::AttributeHelpers;
+  
+  has 'options' => (
+      metaclass => 'Collection::Hash',
+      is        => 'ro',
+      isa       => 'HashRef[Str]',
+      default   => sub { {} },
+      provides  => {
+          'set'    => 'set_option',
+          'get'    => 'get_option',            
+          'empty'  => 'has_options',
+          'count'  => 'num_options',
+          'delete' => 'delete_option',
+      }
+  );
+  
 =head1 DESCRIPTION
 
-=head1 METHODS
+This module provides an Hash attribute which provides a number of 
+hash-like operations. See L<MooseX::AttributeHelpers::MethodProvider::Hash>
+for more details.
+
+=head1 PROVIDED METHODS
+
+The methods for this metaclass are provided by
+L<MooseX::AttributeHelpers::MethodProvider::Hash>.
 
 =head1 BUGS
 
@@ -87,11 +67,11 @@ Stevan Little E<lt>stevan@iinteractive.comE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright 2007 by Infinity Interactive, Inc.
+Copyright 2007-2008 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
+=cut