1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714
|
#
# This file is part of MooseX-AttributeShortcuts
#
# This software is Copyright (c) 2011 by Chris Weyl.
#
# This is free software, licensed under:
#
# The GNU Lesser General Public License, Version 2.1, February 1999
#
package MooseX::AttributeShortcuts;
BEGIN {
$MooseX::AttributeShortcuts::AUTHORITY = 'cpan:RSRCHBOY';
}
# git description: 0.023-5-gff63e05
$MooseX::AttributeShortcuts::VERSION = '0.024';
# ABSTRACT: Shorthand for common attribute options
use strict;
use warnings;
use namespace::autoclean;
use Moose ();
use Moose::Exporter;
use Moose::Util::MetaRole;
use Moose::Util::TypeConstraints;
{
package MooseX::AttributeShortcuts::Trait::Attribute;
BEGIN {
$MooseX::AttributeShortcuts::Trait::Attribute::AUTHORITY = 'cpan:RSRCHBOY';
}
# git description: 0.023-5-gff63e05
$MooseX::AttributeShortcuts::Trait::Attribute::VERSION = '0.024';
use namespace::autoclean;
use MooseX::Role::Parameterized;
use Moose::Util::TypeConstraints ':all';
use MooseX::Types::Moose ':all';
use MooseX::Types::Common::String ':all';
use autobox::Core;
use autobox::Junctions;
use List::AllUtils 'any';
use Package::DeprecationManager -deprecations => {
'undocumented-isa-constraints' => '0.23',
};
sub _acquire_isa_tc { goto \&Moose::Util::TypeConstraints::find_or_create_isa_type_constraint }
parameter writer_prefix => (isa => NonEmptySimpleStr, default => '_set_');
parameter builder_prefix => (isa => NonEmptySimpleStr, default => '_build_');
# I'm not going to document the following for the moment, as I'm not sure I
# want to do it this way.
parameter prefixes => (
isa => HashRef[NonEmptySimpleStr],
default => sub { { } },
);
role {
my $p = shift @_;
my $wprefix = $p->writer_prefix;
my $bprefix = $p->builder_prefix;
my %prefix = (
predicate => 'has',
clearer => 'clear',
trigger => '_trigger_',
%{ $p->prefixes },
);
has anon_builder => (
reader => 'anon_builder',
writer => '_set_anon_builder',
isa => 'CodeRef',
predicate => 'has_anon_builder',
init_arg => '_anon_builder',
);
has constraint => (
is => 'ro',
isa => 'CodeRef',
predicate => 'has_constraint',
);
has original_isa => (
is => 'ro',
predicate => 'has_original_isa',
);
# TODO coerce via, transform ?
# has original_isa, original_coerce ?
my $_process_options = sub {
my ($class, $name, $options) = @_;
my $_has = sub { defined $options->{$_[0]} };
my $_opt = sub { $_has->(@_) ? $options->{$_[0]} : q{} };
my $_ref = sub { ref $_opt->(@_) || q{} };
if ($options->{is}) {
if ($options->{is} eq 'rwp') {
$options->{is} = 'ro';
$options->{writer} = "$wprefix$name";
}
if ($options->{is} eq 'lazy') {
$options->{is} = 'ro';
$options->{lazy} = 1;
$options->{builder} = 1
unless $_has->('builder') || $_has->('default');
}
}
if (any { $options->keys->any eq $_ } (qw{ isa_class isa_role isa_enum })) {
# (more than) fair warning...
deprecated(
feature => 'undocumented-isa-constraints',
message => 'Naughty! isa_class, isa_role, and isa_enum will be removed on or after 01 July 2014!',
);
# XXX undocumented -- not sure this is a great idea
$options->{isa} = class_type(delete $options->{isa_class})
if $_has->('isa_class');
$options->{isa} = role_type(delete $options->{isa_role})
if $_has->('isa_role');
$options->{isa} = enum(delete $options->{isa_enum})
if $_has->('isa_enum');
}
# aka: isa => class_type(...)
if ($_has->('isa_instance_of')) {
if ($_has->('isa')) {
$class->throw_error(
q{Cannot use 'isa_instance_of' and 'isa' together for attribute }
. $_opt->('definition_context')->{package} . '::' . $name
);
}
$options->{isa} = class_type(delete $options->{isa_instance_of});
}
### the pretty business of on-the-fly subtyping...
my $our_type;
if ($_has->('constraint')) {
# check for errors...
$class->throw_error('You must specify an "isa" when declaring a "constraint"')
if !$_has->('isa');
$class->throw_error('"constraint" must be a CODE reference')
if $_ref->('constraint') ne 'CODE';
# constraint checking! XXX message, etc?
push my @opts, constraint => $_opt->('constraint')
if $_ref->('constraint') eq 'CODE';
# stash our original option away and construct our new one
my $isa = $options->{original_isa} = $_opt->('isa');
$our_type ||= _acquire_isa_tc($isa)->create_child_type(@opts);
}
# "fix" the case of the hashref.... *sigh*
# FIXME TODO check for potential conflicts and warn!
$options->{coerce} = [ %{ $options->{coerce} } ]
if $_ref->('coerce') eq 'HASH';
if ($_ref->('coerce') eq 'ARRAY') {
### must be type => sub { ... } pairs...
my @coercions = @{ $_opt->('coerce') };
confess 'You must specify an "isa" when declaring "coercion"'
unless $_has->('isa');
confess 'coercion array must be in pairs!'
if @coercions % 2;
confess 'must define at least one coercion pair!'
unless @coercions > 0;
my $our_coercion = Moose::Meta::TypeCoercion->new;
$our_type ||= _acquire_isa_tc($_opt->('isa'))->create_child_type;
$our_coercion->add_type_coercions(@coercions);
$our_type->coercion($our_coercion);
$options->{coerce} = 1;
}
if ($our_type && !$our_type->has_coercion) {
my $isa_type = _acquire_isa_tc($_opt->('isa'));
if ($isa_type->has_coercion && !$_ref->('coerce') && $_opt->('coerce') eq "1") {
# create our coercion as a copy of the parent
$our_type->coercion(Moose::Meta::TypeCoercion->new(
type_constraint => $our_type,
type_coercion_map => [ @{ $isa_type->coercion->type_coercion_map } ],
));
}
}
# fin constraint mucking....
do { $options->{original_isa} = $_opt->('isa'); $options->{isa} = $our_type }
if $our_type;
if ($options->{lazy_build} && $options->{lazy_build} eq 'private') {
$options->{lazy_build} = 1;
$options->{clearer} = "_clear_$name";
$options->{predicate} = "_has_$name";
}
my $is_private = sub { $name =~ /^_/ ? $_[0] : $_[1] };
my $default_for = sub {
my ($opt) = @_;
return unless $_has->($opt);
my $opt_val = $_opt->($opt);
my ($head, $mid)
= $opt_val eq '1' ? ($is_private->('_', q{}), $is_private->(q{}, '_'))
: $opt_val eq '-1' ? ($is_private->(q{}, '_'), $is_private->(q{}, '_'))
: return;
$options->{$opt} = $head . $prefix{$opt} . $mid . $name;
return;
};
# XXX install builder here if a coderef
if (defined $options->{builder}) {
#if (ref $_opt->('builder') eq 'CODE') {
if ((ref $options->{builder} || q{}) eq 'CODE') {
$options->{_anon_builder} = $options->{builder};
$options->{builder} = 1;
}
$options->{builder} = "$bprefix$name"
if $options->{builder} eq '1';
}
### set our other defaults, if requested...
$default_for->($_) for qw{ predicate clearer };
my $trigger = "$prefix{trigger}$name";
$options->{trigger} = sub { shift->$trigger(@_) }
if $options->{trigger} && $options->{trigger} eq '1';
return;
};
# here we wrap _process_options() instead of the newer _process_is_option(),
# as that makes our life easier from a 1.x/2.x compatibility
# perspective -- and that we're potentially altering more than just
# the 'is' option at one time.
before _process_options => $_process_options;
# this feels... bad. But I'm not sure there's any way to ensure we
# process options on a clone/extends without wrapping new().
around new => sub {
my ($orig, $self) = (shift, shift);
my ($name, %options) = @_;
$self->$_process_options($name, \%options)
if $options{__hack_no_process_options};
return $self->$orig($name, %options);
};
# we hijack attach_to_class in order to install our anon_builder, if
# we have one. Note that we don't go the normal
# associate_method/install_accessor/etc route as this is kinda...
# different.
after attach_to_class => sub {
my ($self, $class) = @_;
return unless $self->has_anon_builder;
$class->add_method($self->builder => $self->anon_builder);
return;
};
};
}
my ($import, $unimport, $init_meta) = Moose::Exporter->build_import_methods(
install => [ 'unimport' ],
trait_aliases => [
[ 'MooseX::AttributeShortcuts::Trait::Attribute' => 'Shortcuts' ],
],
);
my $role_params;
sub import {
my ($class, %args) = @_;
$role_params = {};
do { $role_params->{$_} = delete $args{"-$_"} if exists $args{"-$_"} }
for qw{ writer_prefix builder_prefix prefixes };
@_ = ($class, %args);
goto &$import;
}
sub init_meta {
my ($class_name, %args) = @_;
my $params = delete $args{role_params} || $role_params || undef;
undef $role_params;
# Just in case we do ever start to get an $init_meta from ME
$init_meta->($class_name, %args)
if $init_meta;
# make sure we have a metaclass instance kicking around
my $for_class = $args{for_class};
die "Class $for_class has no metaclass!"
unless Class::MOP::class_of($for_class);
# If we're given parameters to pass on to construct a role with, we build
# it out here rather than pass them on and allowing apply_metaroles() to
# handle it, as there are Very Loud Warnings about how parameterized roles
# are non-cacheable when generated on the fly.
### $params
my $role
= ($params && scalar keys %$params)
? MooseX::AttributeShortcuts::Trait::Attribute
->meta
->generate_role(parameters => $params)
: 'MooseX::AttributeShortcuts::Trait::Attribute'
;
Moose::Util::MetaRole::apply_metaroles(
# TODO add attribute trait here to create builder method if found
for => $for_class,
class_metaroles => { attribute => [ $role ] },
role_metaroles => { applied_attribute => [ $role ] },
parameter_metaroles => { applied_attribute => [ $role ] },
parameterized_role_metaroles => { applied_attribute => [ $role ] },
);
return Class::MOP::class_of($for_class);
}
1;
__END__
=pod
=encoding UTF-8
=for :stopwords Chris Weyl David Steinbrunner GitHub attribute's isa one's rwp SUBTYPING
foo
=for :stopwords Wishlist flattr flattr'ed gittip gittip'ed
=head1 NAME
MooseX::AttributeShortcuts - Shorthand for common attribute options
=head1 VERSION
This document describes version 0.024 of MooseX::AttributeShortcuts - released May 02, 2014 as part of MooseX-AttributeShortcuts.
=head1 SYNOPSIS
package Some::Class;
use Moose;
use MooseX::AttributeShortcuts;
# same as:
# is => 'ro', lazy => 1, builder => '_build_foo'
has foo => (is => 'lazy');
# same as: is => 'ro', writer => '_set_foo'
has foo => (is => 'rwp');
# same as: is => 'ro', builder => '_build_bar'
has bar => (is => 'ro', builder => 1);
# same as: is => 'ro', clearer => 'clear_bar'
has bar => (is => 'ro', clearer => 1);
# same as: is => 'ro', predicate => 'has_bar'
has bar => (is => 'ro', predicate => 1);
# works as you'd expect for "private": predicate => '_has_bar'
has _bar => (is => 'ro', predicate => 1);
# extending? Use the "Shortcuts" trait alias
extends 'Some::OtherClass';
has '+bar' => (traits => [Shortcuts], builder => 1, ...);
# or...
package Some::Other::Class;
use Moose;
use MooseX::AttributeShortcuts -writer_prefix => '_';
# same as: is => 'ro', writer => '_foo'
has foo => (is => 'rwp');
=head1 DESCRIPTION
Ever find yourself repeatedly specifying writers and builders, because there's
no good shortcut to specifying them? Sometimes you want an attribute to have
a read-only public interface, but a private writer. And wouldn't it be easier
to just say "builder => 1" and have the attribute construct the canonical
"_build_$name" builder name for you?
This package causes an attribute trait to be applied to all attributes defined
to the using class. This trait extends the attribute option processing to
handle the above variations.
=for Pod::Coverage init_meta
=head1 USAGE
This package automatically applies an attribute metaclass trait. Unless you
want to change the defaults, you can ignore the talk about "prefixes" below.
=head1 EXTENDING A CLASS
If you're extending a class and trying to extend its attributes as well,
you'll find out that the trait is only applied to attributes defined locally
in the class. This package exports a trait shortcut function "Shortcuts" that
will help you apply this to the extended attribute:
has '+something' => (traits => [Shortcuts], ...);
=head1 PREFIXES
We accept two parameters on the use of this module; they impact how builders
and writers are named.
=head2 -writer_prefix
use MooseX::::AttributeShortcuts -writer_prefix => 'prefix';
The default writer prefix is '_set_'. If you'd prefer it to be something
else (say, '_'), this is where you'd do that.
=head2 -builder_prefix
use MooseX::::AttributeShortcuts -builder_prefix => 'prefix';
The default builder prefix is '_build_', as this is what lazy_build does, and
what people in general recognize as build methods.
=head1 NEW ATTRIBUTE OPTIONS
Unless specified here, all options defined by L<Moose::Meta::Attribute> and
L<Class::MOP::Attribute> remain unchanged.
Want to see additional options? Ask, or better yet, fork on GitHub and send
a pull request. If the shortcuts you're asking for already exist in L<Moo> or
L<Mouse> or elsewhere, please note that as it will carry significant weight.
For the following, "$name" should be read as the attribute name; and the
various prefixes should be read using the defaults.
=head2 is => 'rwp'
Specifying C<is =E<gt> 'rwp'> will cause the following options to be set:
is => 'ro'
writer => "_set_$name"
=head2 is => 'lazy'
Specifying C<is =E<gt> 'lazy'> will cause the following options to be set:
is => 'ro'
builder => "_build_$name"
lazy => 1
B<NOTE:> Since 0.009 we no longer set C<init_arg =E<gt> undef> if no C<init_arg>
is explicitly provided. This is a change made in parallel with L<Moo>, based
on a large number of people surprised that lazy also made one's C<init_def>
undefined.
=head2 is => 'lazy', default => ...
Specifying C<is =E<gt> 'lazy'> and a default will cause the following options to be
set:
is => 'ro'
lazy => 1
default => ... # as provided
That is, if you specify C<is =E<gt> 'lazy'> and also provide a C<default>, then
we won't try to set a builder, as well.
=head2 builder => 1
Specifying C<builder =E<gt> 1> will cause the following options to be set:
builder => "_build_$name"
=head2 clearer => 1
Specifying C<clearer =E<gt> 1> will cause the following options to be set:
clearer => "clear_$name"
or, if your attribute name begins with an underscore:
clearer => "_clear$name"
(that is, an attribute named "_foo" would get "_clear_foo")
=head2 predicate => 1
Specifying C<predicate =E<gt> 1> will cause the following options to be set:
predicate => "has_$name"
or, if your attribute name begins with an underscore:
predicate => "_has$name"
(that is, an attribute named "_foo" would get "_has_foo")
=head2 trigger => 1
Specifying C<trigger =E<gt> 1> will cause the attribute to be created with a trigger
that calls a named method in the class with the options passed to the trigger.
By default, the method name the trigger calls is the name of the attribute
prefixed with "_trigger_".
e.g., for an attribute named "foo" this would be equivalent to:
trigger => sub { shift->_trigger_foo(@_) }
For an attribute named "_foo":
trigger => sub { shift->_trigger__foo(@_) }
This naming scheme, in which the trigger is always private, is the same as the
builder naming scheme (just with a different prefix).
=head2 builder => sub { ... }
Passing a coderef to builder will cause that coderef to be installed in the
class this attribute is associated with the name you'd expect, and
C<builder =E<gt> 1> to be set.
e.g., in your class,
has foo => (is => 'ro', builder => sub { 'bar!' });
...is effectively the same as...
has foo => (is => 'ro', builder => '_build_foo');
sub _build_foo { 'bar!' }
=head2 isa_instance_of => ...
Given a package name, this option will create an C<isa> type constraint that
requires the value of the attribute be an instance of the class (or a
descendant class) given. That is,
has foo => (is => 'ro', isa_instance_of => 'SomeThing');
...is effectively the same as:
use Moose::TypeConstraints 'class_type';
has foo => (
is => 'ro',
isa => class_type('SomeThing'),
);
...but a touch less awkward.
=head2 isa => ..., constraint => sub { ... }
Specifying the constraint option with a coderef will cause a new subtype
constraint to be created, with the parent type being the type specified in the
C<isa> option and the constraint being the coderef supplied here.
For example, only integers greater than 10 will pass this attribute's type
constraint:
# value must be an integer greater than 10 to pass the constraint
has thinger => (
isa => 'Int',
constraint => sub { $_ > 10 },
# ...
);
Note that if you supply a constraint, you must also provide an C<isa>.
=head2 isa => ..., constraint => sub { ... }, coerce => 1
Supplying a constraint and asking for coercion will "Just Work", that is, any
coercions that the C<isa> type has will still work.
For example, let's say that you're using the C<File> type constraint from
L<MooseX::Types::Path::Class>, and you want an additional constraint that the
file must exist:
has thinger => (
is => 'ro',
isa => File,
constraint => sub { !! $_->stat },
coerce => 1,
);
C<thinger> will correctly coerce the string "/etc/passwd" to a
C<Path::Class:File>, and will only accept the coerced result as a value if
the file exists.
=head2 coerce => [ Type => sub { ...coerce... }, ... ]
Specifying the coerce option with a hashref will cause a new subtype to be
created and used (just as with the constraint option, above), with the
specified coercions added to the list. In the passed hashref, the keys are
Moose types (well, strings resolvable to Moose types), and the values are
coderefs that will coerce a given type to our type.
has bar => (
is => 'ro',
isa => 'Str',
coerce => [
Int => sub { "$_" },
Object => sub { 'An instance of ' . ref $_ },
],
);
=head1 ANONYMOUS SUBTYPING AND COERCION
"Abusus non tollit usum."
Note that we create new, anonymous subtypes whenever the constraint or
coercion options are specified in such a way that the Shortcuts trait (this
one) is invoked. It's fully supported to use both constraint and coerce
options at the same time.
This facility is intended to assist with the creation of one-off type
constraints and coercions. It is not possible to deliberately reuse the
subtypes we create, and if you find yourself using a particular isa /
constraint / coerce option triplet in more than one place you should really
think about creating a type that you can reuse. L<MooseX::Types> provides
the facilities to easily do this, or even a simple L<constant> definition at
the package level with an anonymous type stashed away for local use.
=head1 SEE ALSO
Please see those modules/websites for more information related to this module.
=over 4
=item *
L<MooseX::Types|MooseX::Types>
=back
=head1 SOURCE
The development version is on github at L<http://https://github.com/RsrchBoy/moosex-attributeshortcuts>
and may be cloned from L<git://https://github.com/RsrchBoy/moosex-attributeshortcuts.git>
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website
https://github.com/RsrchBoy/moosex-attributeshortcuts/issues
When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.
=head1 AUTHOR
Chris Weyl <cweyl@alumni.drew.edu>
=head2 SAYING THANKS IN A MATERIALISTIC WAY
Please note B<I do not expect to be gittip'ed or flattr'ed for this work>,
rather B<it is simply a very pleasant surprise>. I largely create and release
works like this because I need them or I find it enjoyable; however, don't let
that stop you giving me money if you feel like it ;)
L<flattr this!|https://flattr.com/submit/auto?user_id=RsrchBoy&url=https%3A%2F%2Fgithub.com%2FRsrchBoy%2Fmoosex-attributeshortcuts&title=RsrchBoy's%20CPAN%20MooseX-AttributeShortcuts&tags=%22RsrchBoy's%20MooseX-AttributeShortcuts%20in%20the%20CPAN%22>
L<gittip me!|https://www.gittip.com/RsrchBoy/>
L<Amazon Wishlist|http://www.amazon.com/gp/registry/wishlist/3G2DQFPBA57L6>
=head1 CONTRIBUTOR
David Steinbrunner <dsteinbrunner@pobox.com>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2011 by Chris Weyl.
This is free software, licensed under:
The GNU Lesser General Public License, Version 2.1, February 1999
=cut
|