What are some ways you can shoot yourself in the foot when using boost::shared_ptr? In other words, what pitfalls do I have to avoid when I use boost::shared_ptr?
| ||||
|
feedback
|
|
Cyclic references: a I add the following as an example of what I am talking about in the comments.
In this example, you have a tree of nodes, each of which holds a pointer to its parent. The frob() member function, for whatever reason, ripples upwards through the tree. (This is not entirely outlandish; some GUI frameworks work this way). The problem is that, if you lose reference to the topmost node, then the topmost node still holds strong references to its children, and all its children also hold a strong reference to their parents. This means that there are circular references keeping all the instances from cleaning themselves up, while there is no way of actually reaching the tree from the code, this memory leaks.
Here, the parent node has been replaced by a weak pointer. It no longer has a say in the lifetime of the node to which it refers. Thus, if the topmost node goes out of scope as in the previous example, then while it holds strong references to its children, its children don't hold strong references to their parents. Thus there are no strong references to the object, and it cleans itself up. In turn, this causes the children to lose their one strong reference, which causes them to clean up, and so on. In short, this wont leak. And just by strategically replacing a shared_ptr<> with a weak_ptr<>. | |||||||||||||||||||
feedback
|
|
Creating multiple unrelated
| |||||||||||
feedback
|
|
Constructing an anonymous temporary shared pointer, for instance inside the arguments to a function call:
This is because it is permissible for the | |||
|
feedback
|
|
Here are two things to avoid:
| |||||||
feedback
|
|
Be careful making two pointers to the same object.
instead use this
Also, any classes holding shared_ptrs should define copy constructors and assignment operators. Don't try to use shared_from_this() in the constructor--it won't work. Instead create a static method to create the class and have it return a shared_ptr. I've passed references to shared_ptrs without trouble. Just make sure it's copied before it's saved (i.e., no references as class members). | |||||
feedback
|
|
We debug several weeks strange behavior. The reason was: | |||
|
feedback
|
|
Not precisely a footgun, but certainly a source of frustration until you wrap your head around how to do it the C++0x way: most of the predicates you know and love from This DDJ article touches on the subject, with lots of example code. I also blogged about it a few years ago when I first had to figure out how to do it. | |||
|
feedback
|
|
Giving out a shared_ptr< T > to this inside a class definition is also dangerous. Use enabled_shared_from_this instead. See the following post here | |||
|
feedback
|
|
You need to be careful when you use | |||
|
feedback
|
|
Using
| |||||
feedback
|
|
The popular widespread use of shared_ptr will almost inevitably cause unwanted and unseen memory occupation. Cyclic references are a well known cause and some of them can be indirect and difficult to spot especially in complex code that is worked on by more than one programmer; a programmer may decide than one object needs a reference to another as a quick fix and doesn't have time to examine all the code to see if he is closing a cycle. This hazard is hugely underestimated. Less well understood is the problem of unreleased references. If an object is shared out to many shared_ptrs then it will not be destroyed until every one of them is zeroed or goes out of scope. It is very easy to overlook one of these references and end up with objects lurking unseen in memory that you thought you had finished with. Although strictly speaking these are not memory leaks (it will all be released before the program exits) they are just as harmful and harder to detect. These problems are the consequences of expedient false declarations: 1. Declaring what you really want to be single ownership as shared_ptr. scoped_ptr would be correct but then any other reference to that object will have to be a raw pointer, which could be left dangling. 2. Declaring what you really want to be a passive observing reference as shared_ptr. weak_ptr would be correct but then you have the hassle of converting it to share_ptr every time you want to use it. I suspect that your project is a fine example of the kind of trouble that this practice can get you into. If you have a memory intensive application you really need single ownership so that your design can explicitly control object lifetimes. With single ownership opObject=NULL; will definitely delete the object and it will do it now. With shared ownership spObject=NULL; ........who knows?...... | |||||
feedback
|
|
If you have a registry of the shared objects (a list of all active instances, for example), the objects will never be freed. Solution: as in the case of circular dependency structures (see Kaz Dragon's answer), use weak_ptr as appropriate. | |||
|
feedback
|
Smart pointers are not for everything, and raw pointers cannot be eliminatedProbably the worst danger is that since This is not only probably the worst danger, it may be the only serious danger. All the worst abuses of Of course the mere fact that a smart pointer needs to be converted to a raw pointer to be used refutes this claim of the smart pointer cult, but the fact that the raw pointer access is "implicit" in C++ cannot be made a "safe language", and no useful subset of C++ is "safe"Of course the pursuit of a safe subset ("safe" in the strict sense of "memory safe", as LISP, Haskell, Java...) of C++ is doomed to be endless and unsatisfying, as the safe subset of C++ is tiny and almost useless, as unsafe primitives are the rule rather than the exception. Strict memory safety in C++ would mean no pointers and only references with automatic storage class. But in a language where the programmer is trusted by definition, some people will insist on using some (in principle) idiot-proof "smart pointer", even where there is no other advantage over raw pointers that one specific way to screw the program state is avoided. | |||||||||||||
feedback
|