Support before and after triggers in the setter
Shawn M Moore [Wed, 16 Jul 2008 05:44:36 +0000 (05:44 +0000)]
lib/Mouse/Meta/Attribute.pm

index 023ab4d..1c46633 100644 (file)
@@ -56,11 +56,15 @@ sub generate_accessor {
     my $name       = $attribute->name;
     my $key        = $name;
     my $default    = $attribute->default;
-    my $trigger    = $attribute->trigger;
     my $type       = $attribute->type_constraint;
     my $constraint = $attribute->find_type_constraint;
     my $builder    = $attribute->builder;
 
+    my $trigger = $attribute->trigger;
+    my $before  = $trigger->{before};
+    my $after   = $trigger->{after};
+    my $around  = $trigger->{around};
+
     my $accessor = 'sub {
         my $self = shift;';
 
@@ -68,6 +72,10 @@ sub generate_accessor {
         $accessor .= 'if (@_) {
             local $_ = $_[0];';
 
+        if ($before) {
+            $accessor .= '$before->($self, $_, $attribute);';
+        }
+
         if ($constraint) {
             $accessor .= 'do {
                 my $display = defined($_) ? overload::StrVal($_) : "undef";
@@ -81,8 +89,8 @@ sub generate_accessor {
             $accessor .= 'Scalar::Util::weaken($self->{$key}) if ref($self->{$key});';
         }
 
-        if ($trigger) {
-            $accessor .= '$trigger->($self, $_, $attribute);';
+        if ($after) {
+            $accessor .= '$after->($self, $_, $attribute);';
         }
 
         $accessor .= '}';