From: Dave Rolsky Date: Sat, 14 Feb 2009 17:42:38 +0000 (+0000) Subject: Use a trigger in recipe 3, since we want to update the parent for X-Git-Tag: 0.70~8 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0fde185029484e57d409876767ebdcfdafdcb406;p=gitmo%2FMoose.git Use a trigger in recipe 3, since we want to update the parent for trees passed to the constructor, not just the accessor. --- diff --git a/lib/Moose/Cookbook.pod b/lib/Moose/Cookbook.pod index 5b1cabd..030af86 100644 --- a/lib/Moose/Cookbook.pod +++ b/lib/Moose/Cookbook.pod @@ -37,8 +37,8 @@ modifier in a subclass. =item L - A lazy B example Demonstrates several attribute features, including types, weak -references, predicates ("does this object have a foo?"), defaults, and -lazy attribute construction. +references, predicates ("does this object have a foo?"), defaults, +laziness, and triggers. =item L - Subtypes, and modeling a simple B class hierarchy diff --git a/lib/Moose/Cookbook/Basics/Recipe3.pod b/lib/Moose/Cookbook/Basics/Recipe3.pod index 3f00223..a795ff1 100644 --- a/lib/Moose/Cookbook/Basics/Recipe3.pod +++ b/lib/Moose/Cookbook/Basics/Recipe3.pod @@ -25,6 +25,7 @@ Moose::Cookbook::Basics::Recipe3 - A lazy B example predicate => 'has_left', lazy => 1, default => sub { BinaryTree->new( parent => $_[0] ) }, + trigger => \&_set_parent_for_child ); has 'right' => ( @@ -33,21 +34,24 @@ Moose::Cookbook::Basics::Recipe3 - A lazy B example predicate => 'has_right', lazy => 1, default => sub { BinaryTree->new( parent => $_[0] ) }, + trigger => \&_set_parent_for_child ); - before 'right', 'left' => sub { - my ( $self, $tree ) = @_; - if (defined $tree) { - confess "You cannot insert a tree which already has a parent" - if $tree->has_parent; - $tree->parent($self); - } - }; + sub _set_parent_for_child { + my ( $self, $child ) = @_; + + confess "You cannot insert a tree which already has a parent" + if $child->has_parent; + + $child->parent($self); + } =head1 DESCRIPTION This recipe shows how various advanced attribute features can be used -to create complex and powerful behaviors. +to create complex and powerful behaviors. In particular, we introduce +a number of new attribute options, including C, C, +and C. The example class is a classic binary tree. Each node in the tree is itself an instance of C. It has a C, which holds @@ -101,13 +105,15 @@ C: predicate => 'has_left', lazy => 1, default => sub { BinaryTree->new( parent => $_[0] ) }, + trigger => \&_set_parent_for_child ); -There are two new options here, C and C. These two -options are linked, and in fact you cannot have a C attribute -unless it has a C (or a C, but we'll cover that -later). If you try to make an attribute lazy without a default, class -creation will fail with an exception. (2) +There are three new options here, C, C, and +C. The C and C options options are linked. In +fact, you cannot have a C attribute unless it has a C +(or a C, but we'll cover that later). If you try to make an +attribute lazy without a default, class creation will fail with an +exception. (2) In the second recipe the B's C attribute had a default value of C<0>. Given a non-reference, Perl copies the @@ -123,6 +129,7 @@ reference every time the default is called. In fact, using a non-subroutine reference as a default is illegal in Moose. + # will fail has 'foo' => ( is => 'rw', default => [] ); This will blow up, so don't do it. @@ -151,31 +158,28 @@ these is set, we want to make sure that we update the parent of the C or C attribute's tree. We could write our own accessors, but then why use Moose at all? -Instead, we use method modifiers: - - before 'right', 'left' => sub { - my ( $self, $tree ) = @_; - if (defined $tree) { - confess "You cannot insert a tree which already has a parent" - if $tree->has_parent; - $tree->parent($self); - } - }; - -This is a C modifier, just like we saw in the second recipe, -but with two slight differences. First, we are applying the modifier -to more than one method at a time, because both C and C -attributes need the same behavior. The other difference is that we are -not wrapping an inherited method, but rather a method from our own -local class. Wrapping local methods is no different, the only -requirement is that the wrappee must exist before the wrapper is -defined (after all, you cannot wrap something which doesn't exist, -right?). - -We could also get the same outcome by using an attribute trigger. A -trigger is fired whenever the attribute is I. See -L for more information about -triggers. +Instead, we use a C. A C accepts a subroutine +reference, which will be called as a method whenever the attribute is +set. This can happen both during object construction or later by +passing a new object to the attribute's accessor method. However, it +is not called when a value is provided by a C or C. + + sub _set_parent_for_child { + my ( $self, $child ) = @_; + + confess "You cannot insert a tree which already has a parent" + if $child->has_parent; + + $child->parent($self); + } + +This trigger does two things. First, it ensures that the new child +node does not already have a parent. This is done for the sake of +simplifying the example. If we wanted to be more clever, we would +remove the child from its old parent tree and add it to the new one. + +If the child has no parent, we will add it to the current tree, and we +ensure that is has the correct value for its C attribute. As with all the other recipes, B can be used just like any other Perl 5 class. A more detailed example of its usage can be found diff --git a/t/000_recipes/basics/003_binary_tree.t b/t/000_recipes/basics/003_binary_tree.t index d271b62..ea46d18 100644 --- a/t/000_recipes/basics/003_binary_tree.t +++ b/t/000_recipes/basics/003_binary_tree.t @@ -27,6 +27,7 @@ use Scalar::Util 'isweak'; predicate => 'has_left', lazy => 1, default => sub { BinaryTree->new( parent => $_[0] ) }, + trigger => \&_set_parent_for_child ); has 'right' => ( @@ -35,18 +36,17 @@ use Scalar::Util 'isweak'; predicate => 'has_right', lazy => 1, default => sub { BinaryTree->new( parent => $_[0] ) }, + trigger => \&_set_parent_for_child ); - before 'right', 'left' => sub { - my ( $self, $tree ) = @_; - if (defined $tree) { - confess "You cannot insert a tree which already has a parent" - if $tree->has_parent; - $tree->parent($self); - } - }; + sub _set_parent_for_child { + my ( $self, $child ) = @_; - __PACKAGE__->meta->make_immutable( debug => 0 ); + confess "You cannot insert a tree which already has a parent" + if $child->has_parent; + + $child->parent($self); + } } my $root = BinaryTree->new(node => 'root');