|
Posts Tagged ‘C++’
Apr
29
2010
Passing Containing Parent to pImpl Idiom Implementation ClassThe pImpl Idiom is a useful technique for hiding implementation details of C++ classes away from being exposed in the header file. A couple of the primary benefits include decoupling of the implementation from the interface of the object (as declared in the header) and reduced compilation time if only the pImpl class is modified. As a rule of thumb, when using pImpl Idiom, there should be clean separation of any implementation details from the containing class. Spreading implementation details across both the containing class and the pImpl class muddies the separation of concerns and can quickly lead to maintenance issues, with unclear direction as to what should go into the parent vs. the pImpl class. Accordingly, public methods declared in the parent should simply act as pass-through methods to pImpl. I’ve seen arguments that any public method which does not require access to the internal state of pImpl may instead be defined on the parent and not require a pass-through; this sounds reasonable while still providing a gauge for cleanly deciding where implementation definitions should reside (i.e., if it’s a public method which doesn’t require access to pImpl state, define it on the parent). To that end, there may be scenarios wherein the pImpl class needs to invoke a method or property on the parent. Accordingly, this post shows how to pass a reference to the parent object to the pImpl object while avoiding a copy of the parent in the process. The first step is in defining the header class which will expose the public methods and properties along with a forward declaration of the pImpl class:
Note that the _pImpl member is stored as a boost::shared_ptr so that _pImpl will be destructed automatically when it loses all references to it. Now that the parent has been declared, we can turn our attention towards the implementation class.
Let’s now look at a few of the interesting points in more detail.
With that, the pImpl class now has access to the parent object’s properties and methods via its Billy McCafferty |
© 2011-2013 Codai, Inc. All Rights Reserved