1 package Moose::Meta::Attribute::Native;
4 $VERSION = eval $VERSION;
5 our $AUTHORITY = 'cpan:STEVAN';
7 my @trait_names = qw(Bool Counter Number String Array Hash Code);
9 for my $trait_name (@trait_names) {
10 my $trait_class = "Moose::Meta::Attribute::Native::Trait::$trait_name";
11 my $meta = Class::MOP::Class->initialize(
12 "Moose::Meta::Attribute::Custom::Trait::$trait_name"
14 if ($meta->find_method_by_name('register_implementation')) {
15 my $class = $meta->name->register_implementation;
17 "An implementation for $trait_name already exists " .
18 "(found '$class' when trying to register '$trait_class')"
21 $meta->add_method(register_implementation => sub {
22 # resolve_metatrait_alias will load classes anyway, but throws away
23 # their error message; we WANT to die if there's a problem
24 Class::MOP::load_class($trait_class);
37 Moose::Meta::Attribute::Native - Delegate to native Perl types
47 isa => 'HashRef[Str]',
48 default => sub { {} },
50 exists_in_mapping => 'exists',
51 ids_in_mapping => 'keys',
54 set_quantity => [ set => 'quantity' ],
58 my $obj = MyClass->new;
59 $obj->set_quantity(10); # quantity => 10
60 $obj->set_mapping('foo', 4); # foo => 4
61 $obj->set_mapping('bar', 5); # bar => 5
62 $obj->set_mapping('baz', 6); # baz => 6
65 print $obj->get_mapping('bar') if $obj->exists_in_mapping('bar');
67 # prints 'quantity, foo, bar, baz'
68 print join ', ', $obj->ids_in_mapping;
72 Native delegations allow you to delegate to native Perl data
73 structures as if they were objects. For example, in the L</SYNOPSIS> you can
74 see a hash reference being treated as if it has methods named C<exists()>,
75 C<keys()>, C<get()>, and C<set()>.
77 The delegation methods (mostly) map to Perl builtins and operators. The return
78 values of these delegations should be the same as the corresponding Perl
79 operation. Any deviations will be explicitly documented.
83 Native delegations are enabled by passing certain options to C<has> when
84 creating an attribute.
88 To enable this feature, pass the appropriate name in the C<traits> array
89 reference for the attribute. For example, to enable this feature for hash
90 reference, we include C<'Hash'> in the list of traits.
94 You will need to make sure that the attribute has an appropriate type. For
95 example, to use this with a Hash you must specify that your attribute is some
98 If you I<don't> specify a type, each trait has a default type it will use.
102 This is just like any other delegation, but only a hash reference is allowed
103 when defining native delegations. The keys are the methods to be created in
104 the class which contains the attribute. The values are the methods provided by
105 the associated trait. Currying works the same way as it does with any other
108 See the docs for each native trait for details on what methods are available.
112 Some traits provide a default C<is> for historical reasons. This behavior is
113 deprecated, and you are strongly encouraged to provide a value. If you don't
114 plan to read and write the attribute value directly, you can set C<< is =>
115 'bare' >> to prevent standard accessor generation.
117 =head2 default or builder
119 Some traits provide a default C<default> for historical reasons. This behavior
120 is deprecated, and you are strongly encouraged to provide a default value or
121 make the attribute required.
123 =head1 TRAITS FOR NATIVE DELEGATIONS
127 =item L<Array|Moose::Meta::Attribute::Native::Trait::Array>
132 isa => 'ArrayRef[Str]',
133 default => sub { [] },
136 next_item => 'shift',
141 =item L<Bool|Moose::Meta::Attribute::Native::Trait::Bool>
151 flip_switch => 'toggle',
157 =item L<Code|Moose::Meta::Attribute::Native::Trait::Code>
172 =item L<Counter|Moose::Meta::Attribute::Native::Trait::Counter>
175 traits => ['Counter'],
180 inc_counter => 'inc',
181 dec_counter => 'dec',
182 reset_counter => 'reset',
187 =item L<Hash|Moose::Meta::Attribute::Native::Trait::Hash>
192 isa => 'HashRef[Str]',
193 default => sub { {} },
197 has_option => 'exists',
202 =item L<Number|Moose::Meta::Attribute::Native::Trait::Number>
205 traits => ['Number'],
221 =item L<String|Moose::Meta::Attribute::Native::Trait::String>
224 traits => ['String'],
229 add_text => 'append',
230 replace_text => 'replace',
237 =head1 COMPATIBILITY WITH MooseX::AttributeHelpers
239 This feature used to be a separated CPAN distribution called
240 L<MooseX::AttributeHelpers>.
242 When the feature was incorporated into the Moose core, some of the API details
243 were changed. The underlying capabilities are the same, but some details of
244 the API were changed.
248 See L<Moose/BUGS> for details on reporting bugs.
252 Stevan Little E<lt>stevan@iinteractive.comE<gt>
254 B<with contributions from:>
258 Paul (frodwith) Driver
262 Chris (perigrin) Prather
264 Robert (phaylon) Sedlacek
274 Florian (rafl) Ragwitz
284 =head1 COPYRIGHT AND LICENSE
286 Copyright 2007-2009 by Infinity Interactive, Inc.
288 L<http://www.iinteractive.com>
290 This library is free software; you can redistribute it and/or modify
291 it under the same terms as Perl itself.