aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/Role
diff options
context:
space:
mode:
authormatthewt <matthewt@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2009-04-20 16:52:33 +0000
committermatthewt <matthewt@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2009-04-20 16:52:33 +0000
commit7f43bb452c417fb80e8af1786b0557d87c5d4a72 (patch)
treeec309f0eae157dc42c60b1e69a4de181b8857e78 /lib/Reaction/Role
parent4d0bacd2bfacba04809dc0943625ad61a6d46b6c (diff)
downloadreaction-7f43bb452c417fb80e8af1786b0557d87c5d4a72.tar.gz
reaction-7f43bb452c417fb80e8af1786b0557d87c5d4a72.zip
factor out metaclass info into roles for compatibility
Diffstat (limited to 'lib/Reaction/Role')
-rw-r--r--lib/Reaction/Role/Meta/Attribute.pm110
-rw-r--r--lib/Reaction/Role/Meta/Class.pm12
2 files changed, 122 insertions, 0 deletions
diff --git a/lib/Reaction/Role/Meta/Attribute.pm b/lib/Reaction/Role/Meta/Attribute.pm
new file mode 100644
index 0000000..512cbbb
--- /dev/null
+++ b/lib/Reaction/Role/Meta/Attribute.pm
@@ -0,0 +1,110 @@
+package Reaction::Role::Meta::Attribute;
+
+use Moose::Role;
+
+#is => 'Bool' ? or leave it open
+has lazy_fail =>
+ (is => 'ro', reader => 'is_lazy_fail', required => 1, default => 0);
+
+around legal_options_for_inheritance => sub {
+ return (shift->(@_), qw/valid_values/);
+};
+
+around _process_options => sub {
+ my $super = shift;
+ my ($class, $name, $options) = @_;
+
+ my $fail = $options->{lazy_fail};
+
+ if ( $fail ) {
+ confess("You may not use both lazy_build and lazy_fail for one attribute")
+ if $fail && $options->{lazy_build};
+
+ $options->{lazy} = 1;
+ $options->{required} = 1;
+ $options->{default} = sub { confess "${name} must be provided before calling reader" };
+ }
+
+ #we are using this everywhere so might as well move it here.
+ $options->{predicate} ||= ($name =~ /^_/) ? "_has${name}" : "has_${name}"
+ if !$options->{required} || $options->{lazy};
+
+ $super->($class, $name, $options);
+};
+
+foreach my $type (qw(clearer predicate)) {
+
+ my $value_meth = do {
+ if ($type eq 'clearer') {
+ 'clear_value'
+ } elsif ($type eq 'predicate') {
+ 'has_value'
+ } else {
+ confess "NOTREACHED";
+ }
+ };
+
+ __PACKAGE__->meta->add_method("get_${type}_method" => sub {
+ my $self = shift;
+ my $info = $self->$type;
+ return $info unless ref $info;
+ my ($name) = %$info;
+ return $name;
+ });
+
+ __PACKAGE__->meta->add_method("get_${type}_method_ref" => sub {
+ my $self = shift;
+ if ((my $name = $self->${\"get_${type}_method"}) && $self->associated_class) {
+ return $self->associated_class->get_method($name);
+ } else {
+ return sub { $self->$value_meth(@_); }
+ }
+ });
+}
+
+1;
+
+__END__;
+
+=head1 NAME
+
+Reaction::Meta::Attribute
+
+=head1 SYNOPSIS
+
+ has description => (is => 'rw', isa => 'Str', lazy_fail => 1);
+
+=head1 Method-naming conventions
+
+Reaction::Meta::Attribute will never override the values you set for method names,
+but if you do not it will follow these basic rules:
+
+Attributes with a name that starts with an underscore will default to using
+builder and predicate method names in the form of the attribute name preceeded by
+either "_has" or "_build". Otherwise the method names will be in the form of the
+attribute names preceeded by "has_" or "build_". e.g.
+
+ #auto generates "_has_description" and expects "_build_description"
+ has _description => (is => 'rw', isa => 'Str', lazy_fail => 1);
+
+ #auto generates "has_description" and expects "build_description"
+ has description => (is => 'rw', isa => 'Str', lazy_fail => 1);
+
+=head2 Predicate generation
+
+All non-required or lazy attributes will have a predicate automatically
+generated for them if one is not already specified.
+
+=head2 lazy_fail
+
+lazy_fail will fail if it is called without first having set the value.
+
+=head1 AUTHORS
+
+See L<Reaction::Class> for authors.
+
+=head1 LICENSE
+
+See L<Reaction::Class> for the license.
+
+=cut
diff --git a/lib/Reaction/Role/Meta/Class.pm b/lib/Reaction/Role/Meta/Class.pm
new file mode 100644
index 0000000..6d91e3f
--- /dev/null
+++ b/lib/Reaction/Role/Meta/Class.pm
@@ -0,0 +1,12 @@
+package Reaction::Role::Meta::Class;
+
+use Moose::Role;
+
+around initialize => sub {
+ my $super = shift;
+ my $class = shift;
+ my $pkg = shift;
+ $super->($class, $pkg, 'attribute_metaclass' => 'Reaction::Meta::Attribute', @_ );
+};
+
+1;