How do you free a wrapped C++ object when associated Javascript object is garbage collected in V8? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T06:11:39Zhttp://stackoverflow.com/feeds/question/173366http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/173366/how-do-you-free-a-wrapped-c-object-when-associated-javascript-object-is-garbage5How do you free a wrapped C++ object when associated Javascript object is garbage collected in V8?steveth452008-10-06T06:41:32Z2008-12-17T19:25:08Z
<p>V8's documentation explains <a href="http://code.google.com/apis/v8/embed.html#dynamic" rel="nofollow">how to create a Javascript object that wraps a C++ object</a>. The Javascript object holds on to a pointer to a C++ object instance. My question is, let's say you create the C++ object on the heap, how can you get a notification when the Javascript object is collected by the gc, so you can free the heap allocated C++ object?</p>
http://stackoverflow.com/questions/173366/how-do-you-free-a-wrapped-c-object-when-associated-javascript-object-is-garbage/175500#1755001Answer by Javier for How do you free a wrapped C++ object when associated Javascript object is garbage collected in V8?Javier2008-10-06T18:12:48Z2008-10-06T18:12:48Z<p>In general, if a garbage-collected language can hold references to resources outside of the language engine (files, sockets, or in your case C++ objects), you should provide a 'close' method to release that resource ASAP, no point waiting until the GC thinks it's worthwhile to destroy your object.</p>
<p>it gets worse if your C++ object is memory-hungry and the garbage-collected object is just a reference: you might allocate thousands of objects, and the GC only sees a few KB's of tiny objects, not enough to trigger collection; while the C++ side is struggling with tens of megabytes of stale objects.</p>
http://stackoverflow.com/questions/173366/how-do-you-free-a-wrapped-c-object-when-associated-javascript-object-is-garbage/176095#1760950Answer by Thevs for How do you free a wrapped C++ object when associated Javascript object is garbage collected in V8?Thevs2008-10-06T20:38:24Z2008-10-06T20:39:08Z<p>Do all your work in some closed scope (of object or function).
Then you can safely remove the C++ object when you went out of scope. GC doesn't check pointers for existence of pointed objects. </p>
http://stackoverflow.com/questions/173366/how-do-you-free-a-wrapped-c-object-when-associated-javascript-object-is-garbage/176380#1763805Answer by Max Lybbert for How do you free a wrapped C++ object when associated Javascript object is garbage collected in V8?Max Lybbert2008-10-06T22:00:05Z2008-12-17T19:25:08Z<p>The trick is to create a Persistent handle (second bullet point from the linked-to API reference: "Persistent handles are not held on a stack and are deleted only when you specifically remove them. ... Use a persistent handle when you need to keep a reference to an object for more than one function call, or when handle lifetimes do not correspond to C++ scopes."), and call MakeWeak() on it, passing a callback function that will do the necessary cleanup ("A persistent handle can be made weak, using Persistent::MakeWeak, to trigger a callback from the garbage collector when the only references to an object are from weak persistent handles." -- that is, when all "regular" handles have gone out of scope and when the garbage collector is about to delete the object).</p>
<p>The Persistent::MakeWeak method signature is:</p>
<pre><code>void MakeWeak(void* parameters, WeakReferenceCallback callback);
</code></pre>
<p>Where WeakReferenceCallback is defined as a pointer-to-function taking two parameters:</p>
<pre><code>typedef void (*WeakReferenceCallback)(Persistent<Object> object,
void* parameter);
</code></pre>
<p>These are found in the v8.h header file distributed with V8 as the public API.</p>
<p>You would want the function you pass to MakeWeak to clean up the Persistent object parameter that will get passed to it when it's called as a callback. The "void* parameter" parameter can be ignored (or the void* parameter can point to a C++ structure that holds the objects that need cleaning up):</p>
<pre><code>void CleanupV8Point(Persistent<Object> object, void*)
{
// do whatever cleanup on object that you're looking for
object.destroyCppObjects();
}
Parameter<ObjectTemplate> my_obj(ObjectTemplate::New());
// when the Javascript part of my_obj is about to be collected
// we'll have V8 call CleanupV8Point(my_obj)
my_obj.MakeWeak(NULL, &CleanupV8Point);
</code></pre>