NAME
Glib::Ex::FreezeNotify -- freeze notifies in scope guard style
SYNOPSIS
use Glib::Ex::FreezeNotify;
{ my $freezer = Glib::Ex::FreezeNotify->new ($obj);
$obj->set (foo => 123);
$obj->set (bar => 456);
# notify signals emitted when $freezer goes out of scope
}
# or multiple objects in one FreezeNotify
{
my $freezer = Glib::Ex::FreezeNotify->new ($obj1, $obj2);
$obj1->set (foo => 999);
$obj2->set (bar => 666);
}
DESCRIPTION
Glib::Ex::FreezeNotify
helps you freeze_notify
on given objects, with automatic corresponding thaw_notify
at the end of a block, no matter how it's exited, whether a goto
, early return
, die
, etc.
This protects against an error throw leaving the object permanently frozen. Even in a simple bit of code an error can be thrown for a bad property name in a set
, or whle calculating a value. (As of Glib-Perl 1.222 an invalid argument type to set
generally only provokes warnings though.)
Operation
FreezeNotify works by having thaw_notify
in the destroy code of the FreezeNotify object.
FreezeNotify only holds weak references to its objects, so the mere fact they're due for later thawing doesn't keep them alive once nothing else cares if they live or die. The effect of this is that frozen objects can be garbage collected within a freeze block, at the same point they would be without any freezing, instead of extending their life to the end of the block.
It works to nest freeze/thaws, done either with FreezeNotify or with other freeze_notify
calls. Glib::Object
simply counts outstanding freezes and this means they don't have to nest -- multiple freezes can overlap in any fashion. If you're freezing for an extended time then a FreezeNotify object is a good way not to lose track of your thaws, although anything except a short freeze for a handful of set()
calls would be unusual.
FUNCTIONS
$freezer = Glib::Ex::FreezeNotify->new ($object,...)
-
Do a
$object->freeze_notify
on each given object and return a FreezeNotify object which, when it's destroyed, will$object->thaw_notify
each. So if you were thinking of$obj->freeze_notify; $obj->set (foo => 1); $obj->set (bar => 1); $obj->thaw_notify;
you instead use
{ my $freezer = Glib::Ex::FreezeNotify->new ($obj); $obj->set (foo => 1); $obj->set (bar => 1); } # automatic thaw when $freezer goes out of scope
$freezer->add ($object,...)
-
Add additional objects to the freezer, calling
$object->freeze_notify
on each, and setting up forthaw_notify
the same as innew
above.
OTHER NOTES
When there's multiple objects in a freezer it's unspecified what order the thaw_notify
calls are made. What would be good? First-in first-out, or a stack? You can create multiple FreezeNotify objects and arrange your blocks to destroyed them in a particular order if it matters.
There's quite a few general purpose block-scope cleanup systems if you want more than just thaws. Scope::Guard, AtExit, Sub::ScopeFinalizer and Guard use the destructor style. Hook::Scope and B::Hooks::EndOfScope manipulate the code in a block.
SEE ALSO
HOME PAGE
http://user42.tuxfamily.org/glib-ex-objectbits/index.html
LICENSE
Copyright 2008, 2009 Kevin Ryde
Glib-Ex-ObjectBits is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version.
Glib-Ex-ObjectBits is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Glib-Ex-ObjectBits. If not, see http://www.gnu.org/licenses/.