make shared_ptr not use delete - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T00:59:48Z http://stackoverflow.com/feeds/question/441306 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/441306/make-sharedptr-not-use-delete 5 make shared_ptr not use delete acidzombie24 2009-01-13T23:26:47Z 2009-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#441319 11 Answer by Doug T. for make shared_ptr not use delete Doug T. 2009-01-13T23:30:18Z 2009-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&lt;T&gt; ptrToT( new T, Deleter ); </code></pre> <p>then in the body of Deleter:</p> <pre><code> void Deleter( T* ptr); { ptr-&gt;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#441327 1 Answer by Kris Kumler for make shared_ptr not use delete Kris Kumler 2009-01-13T23:31:52Z 2009-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#441442 3 Answer by Johannes Schaub - litb for make shared_ptr not use delete Johannes Schaub - litb 2009-01-14T00:21:51Z 2009-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&lt;foo&gt; 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#441810 9 Answer by Greg for make shared_ptr not use delete Greg 2009-01-14T03:24:17Z 2009-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&lt;T&gt; ptr( new T, std::mem_fun_ref(&amp;T::deleteMe) ); boost::shared_ptr&lt;S&gt; ptr( new S, std::ptr_fun(lib_freeXYZ) ); </code></pre>