Getting a boost::shared_ptr for this - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T23:03:12Zhttp://stackoverflow.com/feeds/question/142391http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/142391/getting-a-boostsharedptr-for-this11Getting a boost::shared_ptr for thisJoe Ludwig2008-09-26T22:42:43Z2008-09-27T14:27:32Z
<p>I am making extensive use of <code>boost:shared_ptr</code> in my code. In fact, most of the objects that are allocated on the heap are held by a <code>shared_ptr</code>. Unfortunately this means that I can't pass <code>this</code> into any function that takes a <code>shared_ptr</code>. Consider this code:</p>
<pre><code>void bar(boost::shared_ptr<Foo> pFoo)
{
...
}
void Foo::someFunction()
{
bar(this);
}
</code></pre>
<p>There are two problems here. First, this won't compile because the T* constructor for <code>shared_ptr</code> is explicit. Second, if I force it to build with <code>bar(boost::shared_ptr<Foo>(this))</code> I will have created a second shared pointer to my object that will eventually lead to a double-delete.</p>
<p>This brings me to my question: Is there any standard pattern for getting a copy of the existing shared pointer you know exists from inside a method on one of those objects? Is using intrusive reference counting my only option here?</p>
http://stackoverflow.com/questions/142391/getting-a-boostsharedptr-for-this/142397#1423973Answer by David Pierre for Getting a boost::shared_ptr for thisDavid Pierre2008-09-26T22:44:53Z2008-09-26T22:44:53Z<p>boost has a solution for this use case, check <a href="http://www.boost.org/doc/libs/1_36_0/libs/smart_ptr/enable_shared_from_this.html" rel="nofollow">enable_shared_from_this</a></p>
http://stackoverflow.com/questions/142391/getting-a-boostsharedptr-for-this/142401#14240126Answer by Brian R. Bondy for Getting a boost::shared_ptr for thisBrian R. Bondy2008-09-26T22:46:57Z2008-09-27T14:27:33Z<p>You can derive from <a href="http://www.boost.org/doc/libs/1_36_0/libs/smart_ptr/enable_shared_from_this.html" rel="nofollow">enable_shared_from_this</a> and then you can use "shared_from_this()" instead of "this" to spawn a shared pointer to your own self object.</p>
<p>Example in the link:</p>
<pre><code>class Y: public enable_shared_from_this<Y>
{
public:
shared_ptr<Y> f()
{
return shared_from_this();
}
}
int main()
{
shared_ptr<Y> p(new Y);
shared_ptr<Y> q = p->f();
assert(p == q);
assert(!(p < q || q < p)); // p and q must share ownership
}
</code></pre>
<p>It's a good idea when spawning threads from a member function to boost::bind to a shared_from_this() instead of this. It will ensure that the object is not released.</p>
http://stackoverflow.com/questions/142391/getting-a-boostsharedptr-for-this/142440#1424402Answer by Greg Rogers for Getting a boost::shared_ptr for thisGreg Rogers2008-09-26T23:07:06Z2008-09-26T23:07:06Z<p>Are you really making more shared copies of pFoo inside bar? If you aren't doing anything crazy inside, just do this:</p>
<pre><code>
void bar(Foo &foo)
{
// ...
}
</code></pre>
http://stackoverflow.com/questions/142391/getting-a-boostsharedptr-for-this/142604#1426040Answer by Tyler for Getting a boost::shared_ptr for thisTyler2008-09-27T00:26:03Z2008-09-27T00:26:03Z<p>The function accepting a pointer wants to do one of two behaviors:</p>
<ul>
<li><strong>Own the object</strong> being passed in, and delete it when it goes out of scope. In this case, you can just accept X* and immediately wrap a scoped_ptr around that object (in the function body). This will work to accept "this" or, in general, any heap-allocated object.</li>
<li><strong>Share a pointer</strong> (don't own it) to the object being passed in. In this case you do <em>not</em> want to use a scoped_ptr at all, since you don't want to delete the object at the end of your function. In this case, what you theoretically want is a shared_ptr (I've seen it called a linked_ptr elsewhere). The boost library has <a href="http://www.boost.org/doc/libs/1_36_0/libs/smart_ptr/shared_ptr.htm" rel="nofollow">a version of shared_ptr</a>, and this is also recommended in Scott Meyers' Effective C++ book (item 18 in the 3rd edition).</li>
</ul>
<p><strong>Edit:</strong> Oops I slightly misread the question, and I now see this answer is not exactly addressing the question. I'll leave it up anyway, in case this might be helpful for anyone working on similar code.</p>
http://stackoverflow.com/questions/142391/getting-a-boostsharedptr-for-this/142945#1429453Answer by Mark Ransom for Getting a boost::shared_ptr for thisMark Ransom2008-09-27T03:59:49Z2008-09-27T03:59:49Z<p>Just use a raw pointer for your function parameter instead of the shared_ptr. The purpose of a smart pointer is to control the lifetime of the object, but the object lifetime is already guaranteed by C++ scoping rules: it will exist for at least as long as the end of your function. That is, the calling code can't possibly delete the object before your function returns; thus the safety of a "dumb" pointer is guaranteed, as long as you don't try to delete the object inside your function.</p>
<p>The only time you need to pass a shared_ptr into a function is when you want to pass ownership of the object to the function, or want the function to make a copy of the pointer.</p>