(
Edit: I don't believe _dbh goes away before $self does, I think DBI is unloaded before the global cleanup happens; that's why I'm suggesting this END{} fix...)
Hmmm, you don't need the total encapsulation features of the FlyweightWrapper, either...
I'm betting packages get unloaded correctly. What happens if you add a hash at the package level in your class called instances, and do this:
# private hash of instances
my %instances;
#...
sub new {
# ... build up $self, bless it, do whatever
$instances{$self}=1;
# ... whatever else you need to do...
}
#...
sub DESTROY {
# don't double-destroy
return unless $instances{$self};
#... do whatever
$instances{$self}=0;
}
END {
foreach my $instance(keys %instances) {
$instance->DESTROY() if $instances{$instance};
}
}
Offhand, I can't remember whether calling DESTROY directly is ok or not, but if not, you could get the same effect with a helper sub that DESTROY calls.
--
Mike
Edit: I forgot to check $instances{$self}
at the top of DESTROY
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.