Kids, don't do this at home:
// set smarty to point to nothing
// returns old(smarty.get())
// caller is responsible for the returned pointer (careful)
template <typename T>
T* release (shared_ptr<T>& smarty) {
// sanity check:
assert (smarty.unique());
// only one owner (please don't play games with weak_ptr in another thread)
// would want to check the total count (shared+weak) here
// save the pointer:
T *raw = &*smarty;
// at this point smarty owns raw, can't return it
try {
// an exception here would be quite unpleasant
// now smash smarty:
new (&smarty) shared_ptr<T> ();
// REALLY: don't do it!
// the behaviour is not defined!
// in practice: at least a memory leak!
} catch (...) {
// there is no shared_ptr<T> in smarty zombie now
// can't fix it at this point:
// the only fix would be to retry, and it would probably throw again
// sorry, can't do anything
abort ();
}
// smarty is a fresh shared_ptr<T> that doesn't own raw
// at this point, nobody owns raw, can return it
return raw;
}
Now, is there a way to check if total count of owners for the ref count is > 1?
auto_ptr? If they're unique, it must mean they never get copied around (as multiple references would then exist, if only temporarily), and thenauto_ptrshould work just fine. Or, if you don't plan on using the smart pointer-supplied lifetime management anyway, use a raw pointer. – jalf Nov 5 '09 at 14:48shared_ptrfrom factories, since there is a case for that being the best way pre-C++11. A throwingshared_ptr->unique_ptrconversion might be useful, it's a pain when you can't break rules even when you really want to! – Zero Nov 26 '12 at 1:28