=pod =head1 NAME MooseX::Role::Parameterized::Tutorial - why and how =head1 MOTIVATION Roles are composable units of behavior. They are useful for factoring out functionality common to many classes from any part of your class hierarchy. See L for an introduction to L. While combining roles affords you a great deal of flexibility, individual roles have very little in the way of configurability. Core Moose provides C for renaming methods and C for ignoring methods. These options are primarily (perhaps solely) for disambiguating role conflicts. See L for more about C and C. Because roles serve many different masters, they usually provide only the least common denominator of functionality. To empower roles further, more configurability than C and C is required. Perhaps your role needs to know which method to call when it is done. Or what default value to use for its C attribute. Parameterized roles offer exactly this solution. =head1 USAGE =head3 C The syntax of a class consuming a parameterized role has not changed from the standard C. You pass in parameters just like you pass in C and C to ordinary roles: with 'MyRole::InstrumentMethod' => { method_name => 'dbh_do', log_to => 'query.log', }; You can still combine parameterized roles. You just need to specify parameters immediately after the role they belong to: with ( 'My::Parameterized::Role' => { needs_better_example => 1, }, 'My::Other::Role', ); =head3 C Inside your parameterized role, you specify a set of parameters. This is exactly like specifying the attributes of a class. Instead of C you use the keyword C, but your parameters can use any options to C. parameter 'delegation' => ( isa => 'HashRef|ArrayRef|RegexpRef', predicate => 'has_delegation', ); You do have to declare what parameters you accept, just like you have to declare what attributes you accept for regular Moose objects. =head3 C C takes a block of code that will be used to generate your role with its parameters bound. Here is where you declare parameterized components: use C, method modifiers, and so on. The C block receives an argument, which contains the parameters specified by C. You can access the parameters just like regular attributes on that object. Each time you compose this parameterized role, the role {} block will be executed. It will receive a new parameter object and produce an entirely new role. That's the whole point, after all. Due to limitations inherent in Perl, you must declare methods with C<< method name => sub { ... } >> instead of the usual C. Your methods may, of course, close over the parameter object. This means that your methods may use parameters however they wish! =head1 USES Ideally these will become fully-explained examples in something resembling L. But for now, only a braindump. =over 4 =item Configure a role's attributes You can rename methods with core Moose, but now you can rename attributes. You can now also choose type, default value, whether it's required, B, etc. parameter traits => ( isa => 'ArrayRef', default => sub { [] }, ); parameter type => ( isa => 'Str', default => 'Any', ); role { my $p = shift; has action => ( traits => $p->traits, isa => $p->type, ... ); } =item Inform a role of your class' attributes and methods Core roles can require only methods with specific names. Now your roles can require that you specify a method name you wish the role to instrument, or which attributes to dump to a file. parameter instrument_method => ( isa => 'Str', required => 1, ); role { my $p = shift; around $p->instrument_method => sub { ... }; } =item Arbitrary execution choices Your role may be able to provide configuration in how the role's methods operate. For example, you can tell the role whether to save intermediate states. parameter save_intermediate => ( isa => 'Bool', default => 0, ); role { my $p = shift; method process => sub { ... if ($p->save_intermediate) { ... } ... }; } =item Deciding a backend Your role may be able to freeze and thaw your instances using L, L, L. Which backend to use can be a parameter. parameter format => ( isa => (enum ['Storable', 'YAML', 'JSON']), default => 'Storable', ); role { my $p = shift; if ($p->format eq 'Storable') { method freeze => \&Storable::freeze; method thaw => \&Storable::thaw; } elsif ($p->format eq 'YAML') { method freeze => \&YAML::Dump; method thaw => \&YAML::Load; } ... } =item Additional validation Ordinary roles can require that its consumers have a particular list of method names. Since parameterized roles have direct access to its consumer, you can inspect it and throw errors if the consumer does not meet your needs. role { my $p = shift; my %args = @_; my $consumer = $args{consumer}; $consumer->find_attribute_by_name('stack') or confess "You must have a 'stack' attribute"; my $push = $consumer->find_method_by_name('push') or confess "You must have a 'push' method"; my $params = $push->parsed_signature->positional_params->params; @$params == 1 or confess "Your push method must take a single parameter"; $params->[0]->sigil eq '$' or confess "Your push parameter must be a scalar"; ... } =back =cut