package MooseX::Meta::Attribute::Lvalue; our $VERSION = '0.05'; our $AUTHORITY = 'cpan:CTBROWN'; use Moose::Role; sub BUILD { } # This is a dummy version to support after. # It gets overwritten if the major class has # a BUILD method after BUILD => sub { $_[0]->_install_lvalue_writer; }; # INSTALLS a _lvalue_writer for the attribute all lvalue attributes # This is done after the build statement sub _install_lvalue_writer { my ( $self, @args ) = @_; my %attributes = %{ $self->meta->get_attribute_map }; while ( my ($name, $attribute) = each %attributes) { if ( $attribute->does( 'MooseX::Meta::Attribute::Trait::Lvalue' ) # removed in version 0.04 # and $attribute->{ lvalue } and $attribute->_is_metadata eq 'rw' ) { $self->meta->add_method( $name, sub :lvalue { $_[0]->{ $name } } ); } } } package MooseX::Meta::Attribute::Trait::Lvalue; use Moose::Role; has 'lvalue' => ( is => 'rw' , isa => 'Bool' , predicate => 'has_lvalue' , ); package Moose::Meta::Attribute::Custom::Trait::Lvalue; sub register_implementation { 'MooseX::Meta::Attribute::Trait::Lvalue' ; }; 1; __END__ =pod =head1 NAME MooseX::Meta::Attribute::Lvalue - Immplements lvalue attributes via meta-attribute trait =head1 VERSION Version 0.04 =head1 SYNOPSIS package App; use Moose; with 'MooseX::Meta::Attribute::Lvalue'; has 'name' => ( is => 'rw' , isa => 'Str' , required => 1 , traits => [ 'Lvalue' ] , # REQUIRED ); package main; my $app = App->new( name => 'Foo' ); $app->name = "Bar"; print $app->name; # Bar =head1 DESCRIPTION WARNING: This module provides syntactic sugar at the expense of some Moose's encapsulation. The Moose framework does not support type checking of Lvalue attributes. You should only use this role when the convenience of the Lvalue attributes outweighs the need to type checking. This package provides a Moose meta attribute via a role/trait that provides Lvalue accessors to your Moose attributes. Which means that instead of writing: $myclass->name( "Foo" ); You can use the more functional and natural appearing: $myclass->name = "Foo"; For details of Lvalue implementation in Perl, please see: L =head1 INTERNAL METHODS =over =item _install_lvalue_writer This method does the work of installing lvalue writers for attributes that are: 1) read-write 2) the attribute does MooseX::Meta::Attribute::Trait::Lvalue =item BUILD This is a dummy sub that does nothing. It allows the method modifier 'after BUILD' which installs the lvalue writer subs. =back =head1 EXPORT None by default. =head1 AUTHOR Christopher Brown, C<< >> =head1 BUGS Please report any bugs or feature requests to C, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. =head1 SUPPORT You can find documentation for this module with the perldoc command. perldoc MooseX::Meta::Attribute::Lvalue You can also look for information at: =over 4 =item * RT: CPAN's request tracker L =item * AnnoCPAN: Annotated CPAN documentation L =item * CPAN Ratings L =item * Search CPAN L =back =head1 ACKNOWLEDGEMENTS =head1 COPYRIGHT & LICENSE Copyright 2008 Christopher Brown, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut 1; # End of MooseX::Attribute::Lvalue