make shared_ptr not use delete - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T00:59:48Zhttp://stackoverflow.com/feeds/question/441306http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/441306/make-sharedptr-not-use-delete5make shared_ptr not use deleteacidzombie242009-01-13T23:26:47Z2009-01-15T14:07:34Z
<p>in my code i would like boost::shared_ptr not to call delete but call ptr->deleteMe() instead.</p>
<p>Also i have a few C styled functions that return a ptr. Can i make it call lib_freeXYZ(ptr); instead of trying to delete?</p>
http://stackoverflow.com/questions/441306/make-sharedptr-not-use-delete/441319#44131911Answer by Doug T. for make shared_ptr not use deleteDoug T.2009-01-13T23:30:18Z2009-01-15T14:07:34Z<p>You can give the shared_ptr template a custom deleter function which has the signature </p>
<pre><code> void Deleter( T* ptr);
</code></pre>
<p>for a boost::shared_ptr</p>
<p>So for Deleter you would do </p>
<pre><code> boost::shared_ptr<T> ptrToT( new T, Deleter );
</code></pre>
<p>then in the body of Deleter:</p>
<pre><code> void Deleter( T* ptr);
{
ptr->deleteMe();
// And make sure YOU ACTUALLY DELETE (or do whatever else you need to
// do to release the resource)
delete ptr;
}
</code></pre>
<p>For your specific case when you need something simple (like ptr->deleteMe) see Greg's solution, its very nice.</p>
http://stackoverflow.com/questions/441306/make-sharedptr-not-use-delete/441327#4413271Answer by Kris Kumler for make shared_ptr not use deleteKris Kumler2009-01-13T23:31:52Z2009-01-13T23:33:31Z<p>For the C-style data, do as @Doug. T suggested.</p>
<p>For your class, why not do cleanup in a destructor? Even if this is including deleteMe() in the destructor.</p>
http://stackoverflow.com/questions/441306/make-sharedptr-not-use-delete/441442#4414423Answer by Johannes Schaub - litb for make shared_ptr not use deleteJohannes Schaub - litb2009-01-14T00:21:51Z2009-01-14T00:21:51Z<p><em>Doug T.</em> answered your question nicely. I'll tell you about intrusive_ptr. Maybe you can use it in your project too. </p>
<p>If you have some C library that has already reference counting, but you have to manually call those functions, you can use <code>boost::intrusive_ptr</code> too, and provide proper definitions for its add_ref and release functions. intrusive_ptr will find and call them. They are responsible to increment the reference count and decrement it, freeing the resource when necassary:</p>
<pre><code>void intrusive_ptr_add_ref(foo *f) {
lib_add_ref(f);
}
void intrusive_ptr_release(foo *f) {
if(lib_dec_ref(f) == 0)
lib_free(f);
}
</code></pre>
<p>Then you can just create objects from raw pointers of type <code>foo*</code>. <a href="http://www.boost.org/doc/libs/1_37_0/libs/smart_ptr/intrusive_ptr.html" rel="nofollow">intrusive_ptr</a> will call your functions when its copied/destructed:</p>
<pre><code>intrusive_ptr<foo> f(lib_alloc());
// can wrap raw pointers too, which already may be referenced somewhere else
foo *p = get_foo_from_somewhere();
function_taking_intrusive_ptr(p);
</code></pre>
http://stackoverflow.com/questions/441306/make-sharedptr-not-use-delete/441810#4418109Answer by Greg for make shared_ptr not use deleteGreg2009-01-14T03:24:17Z2009-01-14T03:24:17Z<p>Or how about using the stl to provide the wrapper functor - Doug T. description but without the custom caller.</p>
<pre><code>boost::shared_ptr<T> ptr( new T, std::mem_fun_ref(&T::deleteMe) );
boost::shared_ptr<S> ptr( new S, std::ptr_fun(lib_freeXYZ) );
</code></pre>