What to do with an object that should no longer be used in Perl - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T18:34:34Zhttp://stackoverflow.com/feeds/question/813266http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/813266/what-to-do-with-an-object-that-should-no-longer-be-used-in-perl2What to do with an object that should no longer be used in PerlChas. Owens2009-05-01T21:01:03Z2009-05-03T18:20:58Z
<p>I am writing a class that is linked to an external resource. One of the methods is a delete method that destroys the external resource. No further method calls should be made on that object. I was thinking of setting a flag and die'ing inside of all of the methods if the flag is set, but is there a better, easier way? Something involving DESTROY maybe?</p>
<p>So far, I am really liking Axeman's suggestion, but using AUTOLOAD because I am too lazy to recreate all of the methods:</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
my $er = ExternalResource->new;
$er->meth1;
$er->meth2;
$er->delete;
$er->meth1;
$er->meth2;
$er->undelete;
$er->meth1;
$er->meth2;
$er->delete;
$er->meth1;
$er->meth2;
$er->meth3;
package ExternalResource;
use strict;
use warnings;
sub new {
my $class = shift;
return bless {}, $class;
}
sub meth1 {
my $self = shift;
print "in meth1\n";
}
sub meth2 {
my $self = shift;
print "in meth2\n";
}
sub delete {
my $self = shift;
$self->{orig_class} = ref $self;
return bless $self, "ExternalResource::Dead";
}
package ExternalResource::Dead;
use strict;
use Carp;
our $AUTOLOAD;
BEGIN {
our %methods = map { $_ => 1 } qw/meth1 meth2 delete new/;
}
our %methods;
sub undelete {
my $self = shift;
#do whatever needs to be done to undelete resource
return bless $self, $self->{orig_class};
}
sub AUTOLOAD {
my $meth = (split /::/, $AUTOLOAD)[-1];
croak "$meth is not a method for this object"
unless $methods{$meth};
carp "can't call $meth on object because it has been deleted";
return 0;
}
</code></pre>
http://stackoverflow.com/questions/813266/what-to-do-with-an-object-that-should-no-longer-be-used-in-perl/813303#8133036Answer by Axeman for What to do with an object that should no longer be used in PerlAxeman2009-05-01T21:10:25Z2009-05-01T21:50:25Z<p>Is there a problem with simply considering the object in an invalid state. If the users hang on to it, isn't that <em>their</em> problem? </p>
<p>Here are some considerations: </p>
<ul>
<li><p>Have you already decided whether it's worth dying over? </p></li>
<li><p>Chances are that if you have a function that is encapsulated enough, you really don't want to have the users parse through your code. For that purpose, you probably wouldn't like to use what I call the Go-ahead-and-let-it-fail pattern. <code>'Can't call method "do_your_stuff" on an undefined value'</code> probably won't work as well for encapsulation purposes. Unless you tell them "Hey you deleted the object!</p></li>
</ul>
<p>Here are some suggestions: </p>
<ul>
<li><p>You could <em>rebless</em> the object into a class whose only job is to indicate an invalid state. It has the same basic form, but all symbols in the table point to a sub that just says "Sorry can't do it, I've been shut down (You shut me down, remember?)."</p></li>
<li><p>You could undef <code>$_[0]</code> in the delete. Then they get a nice <code>'Can't call method "read_from_thing" on an undefined value'</code> from a line in <em>their</em> code--provided that they aren't going through an elaborate decorating or delegation process. But as pointed out by chaos, this doesn't clear up more than one reference (as I've adapted by example code below to show).</p></li>
</ul>
<p><hr/></p>
<p>Some proof of concept stuff: </p>
<pre><code>use feature 'say';
package A;
sub speak { say 'Meow!'; }
sub done { undef $_[0]; }
package B;
sub new { return bless {}, shift; }
sub speak { say 'Ruff!' }
sub done { bless shift, 'A'; }
package main;
my $a = B->new();
my $b = $a;
$a->speak(); # Ruff!
$b->speak(); # Ruff!
$a->done();
$a->speak(); # Meow!
$b->speak(); # Meow! <- $b made the switch
$a->done();
$b->speak(); # Meow!
$a->speak(); # Can't call method "speak" on an undefined value at - line 28
</code></pre>
http://stackoverflow.com/questions/813266/what-to-do-with-an-object-that-should-no-longer-be-used-in-perl/813319#8133192Answer by Anonymous for What to do with an object that should no longer be used in PerlAnonymous2009-05-01T21:13:31Z2009-05-01T21:13:31Z<p>Ideally, it should fall out of scope. If, for some reason, a proper scope can't be deliniated, and you're worried about references accidentally keeping the resource active, might consider weak references (Scalar::Util is core in at least 5.10).</p>
http://stackoverflow.com/questions/813266/what-to-do-with-an-object-that-should-no-longer-be-used-in-perl/813328#8133282Answer by chaos for What to do with an object that should no longer be used in Perlchaos2009-05-01T21:14:50Z2009-05-01T21:14:50Z<p>You could make the users only get <a href="http://search.cpan.org/~lukka/WeakRef-0.01/WeakRef.pm" rel="nofollow">weakrefs</a> to the object, with the single strong reference kept inside your module. Then when the resource is destroyed, delete the strong reference and poof, no more objects.</p>
http://stackoverflow.com/questions/813266/what-to-do-with-an-object-that-should-no-longer-be-used-in-perl/816810#8168100Answer by draegtun for What to do with an object that should no longer be used in Perldraegtun2009-05-03T11:15:18Z2009-05-03T11:15:18Z<p>With <a href="http://moose.perl.org" rel="nofollow">Moose</a> you can alter the class using its <a href="http://search.cpan.org/dist/Class-MOP/" rel="nofollow">MOP</a> underpinnings:</p>
<pre><code>package ExternalResource;
use Moose;
use Carp;
sub meth1 {
my $self = shift;
print "in meth1\n";
}
sub meth2 {
my $self = shift;
print "in meth2\n";
}
sub delete {
my $self = shift;
my %copy; # keeps copy of original subref
my @methods = grep { $_ ne 'meta' } $self->meta->get_method_list;
for my $meth (@methods) {
$copy{ $meth } = \&$meth;
$self->meta->remove_method( $meth );
$self->meta->add_method( $meth => sub {
carp "can't call $meth on object because it has been deleted";
return 0;
});
}
$self->meta->add_method( undelete => sub {
my $self = shift;
for my $meth (@methods) {
$self->meta->remove_method( $meth );
$self->meta->add_method( $meth => $copy{ $meth } );
}
$self->meta->remove_method( 'undelete' );
});
}
</code></pre>
<p>Now all current and new instances of ExternalResource will reflect whatever the current state is.</p>
<p>/I3az/</p>
http://stackoverflow.com/questions/813266/what-to-do-with-an-object-that-should-no-longer-be-used-in-perl/817666#8176661Answer by draegtun for What to do with an object that should no longer be used in Perldraegtun2009-05-03T18:20:58Z2009-05-03T18:20:58Z<p>Following on from the comments in my first answer here is "one way" to amend an object behaviour with <a href="http://moose.perl.org" rel="nofollow">Moose</a>.</p>
<pre><code>{
package ExternalResource;
use Moose;
with 'DefaultState';
no Moose;
}
{
package DefaultState;
use Moose::Role;
sub meth1 {
my $self = shift;
print "in meth1\n";
}
sub meth2 {
my $self = shift;
print "in meth2\n";
}
no Moose::Role;
}
{
package DeletedState;
use Moose::Role;
sub meth1 { print "meth1 no longer available!\n" }
sub meth2 { print "meth2 no longer available!\n" }
no Moose::Role;
}
my $er = ExternalResource->new;
$er->meth1; # => "in meth1"
$er->meth2; # => "in meth2"
DeletedState->meta->apply( $er );
my $er2 = ExternalResource->new;
$er2->meth1; # => "in meth1" (role not applied to $er2 object)
$er->meth1; # => "meth1 no longer available!"
$er->meth2; # => "meth2 no longer available!"
DefaultState->meta->apply( $er );
$er2->meth1; # => "in meth1"
$er->meth1; # => "in meth1"
$er->meth2; # => "in meth2"
</code></pre>
<p>There are other ways to probably achieve what you after in Moose. However I do like this <a href="http://search.cpan.org/dist/Moose/lib/Moose/Cookbook/Roles/Recipe3.pod" rel="nofollow">roles</a> approach.</p>
<p>Certainly food for thought.</p>
<p>/I3az/</p>