[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Opposite of initialize

peter.meier998

4/28/2009 4:44:00 PM

Hi,

I'm looking for the opposite function of initialize() as I need to
call something before an object is "destroyed".


Thanks
Peter
8 Answers

James Coglan

4/28/2009 4:53:00 PM

0

[Note: parts of this message were removed to make it a legal post.]

2009/4/28 <peter.meier998@gmail.com>

> Hi,
>
> I'm looking for the opposite function of initialize() as I need to
> call something before an object is "destroyed".



http://ruby-doc.org/core/classes/ObjectSpace.ht...

Eleanor McHugh

4/28/2009 4:56:00 PM

0

On 28 Apr 2009, at 17:45, peter.meier998@gmail.com wrote:
> I'm looking for the opposite function of initialize() as I need to
> call something before an object is "destroyed".

ObjectSpace#define_finalizer allows you to have a proc executed when
an object is about to be destroyed. If I remember rightly this is when
the object is actually garbage collected, which can be some time after
all its references have been released.


Ellie

Eleanor McHugh
Games With Brains
http://slides.games-with-...
----
raise ArgumentError unless @reality.responds_to? :reason



peter.meier998

4/28/2009 5:01:00 PM

0

Thanks. Exacalty what I need. Haven't seen it.

On Apr 28, 5:55 pm, Eleanor McHugh <elea...@games-with-brains.com>
wrote:
> On 28 Apr 2009, at 17:45, peter.meier...@gmail.com wrote:
>
> > I'm looking for the opposite function of initialize() as I need to
> > call something before an object is "destroyed".
>
> ObjectSpace#define_finalizer allows you to have a proc executed when  
> an object is about to be destroyed. If I remember rightly this is when  
> the object is actually garbage collected, which can be some time after  
> all its references have been released.
>
> Ellie
>
> Eleanor McHugh
> Games With Brainshttp://slides.games-with-...
> ----
> raise ArgumentError unless @reality.responds_to? :reason

Robert Klemme

4/28/2009 5:05:00 PM

0

On 28.04.2009 18:55, Eleanor McHugh wrote:
> On 28 Apr 2009, at 17:45, peter.meier998@gmail.com wrote:
>> I'm looking for the opposite function of initialize() as I need to
>> call something before an object is "destroyed".
>
> ObjectSpace#define_finalizer allows you to have a proc executed when
> an object is about to be destroyed. If I remember rightly this is when
> the object is actually garbage collected, which can be some time after
> all its references have been released.

And the finalizer is called *after* the object has gone! Peter, please
do also note that there are some subtle issues lurking. One important
thing to remember is that you must not create the finalizer in an
instance method (such as #initialize) because it will bind "self" and
thusly prevent GC of the instance.

Kind regards

robert

Hassan Schroeder

4/28/2009 5:28:00 PM

0

On Tue, Apr 28, 2009 at 10:10 AM, Robert Klemme
<shortcutter@googlemail.com> wrote:

>>> I'm looking for the opposite function of initialize() as I need to
>>> call something before an object is "destroyed".

> And the finalizer is called *after* the object has gone!

So "before" it's destroyed and "after" it's destroyed are two different
things.

ObjectSpace#finalizer wouldn't seem to fit the original request, if the
OP is looking to actually *do* anything with the object (retrieve some
attribute or whatever).

Curious whether there's something else that would enable that case.

--
Hassan Schroeder ------------------------ hassan.schroeder@gmail.com

Robert Klemme

4/28/2009 9:48:00 PM

0

On 28.04.2009 19:28, Hassan Schroeder wrote:
> On Tue, Apr 28, 2009 at 10:10 AM, Robert Klemme
> <shortcutter@googlemail.com> wrote:
>
>>>> I'm looking for the opposite function of initialize() as I need to
>>>> call something before an object is "destroyed".
>
>> And the finalizer is called *after* the object has gone!
>
> So "before" it's destroyed and "after" it's destroyed are two different
> things.

Absolutely!

> ObjectSpace#finalizer wouldn't seem to fit the original request, if the
> OP is looking to actually *do* anything with the object (retrieve some
> attribute or whatever).
>
> Curious whether there's something else that would enable that case.

You can use the mechanism I wrote about recently[1] which is not exactly
the same as a finalizer but can ensure timely resource deallocation. In
a way it's even better because you get immediate cleanup when the
resource is not used any more and not delayed cleanup (i.e. when the
garbage collector decides that he wants to collect the instance).

Kind regards

robert


[1]
http://blog.rubybestpractices.com/posts/rklemme/002_Writing_Block_Me...

7stud --

4/28/2009 11:42:00 PM

0

Hassan Schroeder wrote:
> On Tue, Apr 28, 2009 at 10:10 AM, Robert Klemme
> <shortcutter@googlemail.com> wrote:
>
>>>> I'm looking for the opposite function of initialize() as I need to
>>>> call something before an object is "destroyed".
>
>> And the finalizer is called *after* the object has gone!
>
> So "before" it's destroyed and "after" it's destroyed are two different
> things.
>

Not only that:

1) "it goes out of scope and there are no more references to the object
so the object is ready to be garbage collected"

and

2) "the object is actually garbage collected and destroyed"

are two different things. The actual destruction may happen only after
your program ends.

--
Posted via http://www.ruby-....

Rick DeNatale

4/29/2009 5:13:00 PM

0

On Tue, Apr 28, 2009 at 7:42 PM, 7stud -- <bbxx789_05ss@yahoo.com> wrote:
> Hassan Schroeder wrote:
>> On Tue, Apr 28, 2009 at 10:10 AM, Robert Klemme
>> <shortcutter@googlemail.com> wrote:
>>
>>>>> I'm looking for the opposite function of initialize() as I need to
>>>>> call something before an object is "destroyed".
>>
>>> And the finalizer is called *after* the object has gone!
>>
>> So "before" it's destroyed and "after" it's destroyed are two different
>> things.
>>
>
> Not only that:
>
> 1) "it goes out of scope and there are no more references to the object
> so the object is ready to be garbage collected"
>
> and
>
> 2) "the object is actually garbage collected and destroyed"
>
> are two different things. =A0The actual destruction may happen only after
> your program ends.

In every GCd language I've used, including Smalltalk, Java and Ruby,
finalization has always turned out to be an unreliable mechanism for
doing resource cleanup.

The role of the GC is actually to make sure that objects don't get
freed prematurely, a GC's primary job is to prevent 'dangling' pointer
problems. Reclaiming memory is a secondary goal. So there's no
guarantee that an object will be freed as soon as it's no longer
reference-able. And as you point out, objects might only be reclaimed
by the OS after the program exits.

Over the past 25 years or so, I've come to regard finalization as an
"attractive nuisance."

--=20
Rick DeNatale

Blog: http://talklikeaduck.denh...
Twitter: http://twitter.com/Ri...
WWR: http://www.workingwithrails.com/person/9021-ric...
LinkedIn: http://www.linkedin.com/in/ri...