Tagged Questions

The Pimpl idiom, also known as the compilation firewall or Cheshire Cat technique, is a "private implementation" technique useful in C++ other similar statically compiled languages.

learn more… | top users | synonyms

39
votes
7answers
1k views

Is the pImpl idiom really used in practice?

I am reading the book "Exceptional C++" by Herb Sutter, and in that book I have learned about the pImpl idiom. Basically, the idea is to create an structure for the private objects of a class and ...
27
votes
8answers
4k views

Pimpl idiom vs Pure virtual class interface

I was wondering what would make a programmer to choose either Pimpl idiom or pure virtual class and inheritance. I understand that pimpl idiom comes with one explicit extra indirection for each ...
21
votes
8answers
3k views

The Pimpl Idiom in practice

There have been a few questions on SO about the pimpl idiom, but I'm more curious about how often it is leveraged in practice. I understand there are some trade-offs between performance and ...
15
votes
6answers
2k views

Could C++ have not obviated the pimpl idiom?

As I understand, the pimpl idiom is exists only because C++ forces you to place all the private class members in the header. If the header were to contain only the public interface, theoretically, any ...
13
votes
3answers
1k views

pimpl: shared_ptr or unique_ptr

I've been making some objects using the pimpl idiom, but I'm not sure whether to used shared_ptr or unique_ptr. I understand unique_ptr is more efficient, but this isn't so much of an issue for me, ...
13
votes
13answers
4k views

Why should the “PIMPL” idiom be used?

Backgrounder: The PIMPL Idiom is a technique for implementation hiding in which a public class wraps a structure or class that cannot be seen outside the library the public class is part of. This ...
12
votes
3answers
251 views

delegating into private parts

Sometimes, C++'s notion of privacy just baffles me :-) class Foo { struct Bar; Bar* p; public: Bar* operator->() const { return p; } }; struct Foo::Bar { void ...
9
votes
2answers
243 views

Does the GotW #101 “solution” actually solve anything?

First read Herb's Sutters GotW posts concerning pimpl in C++11: GotW #100: Compilation Firewalls (Difficulty: 6/10) GotW #101: Compilation Firewalls, Part 2 (Difficulty: 8/10) I'm having some ...
9
votes
3answers
661 views

Automate pimpl'ing of C++ classes — is there an easy way?

Pimpl's are a source of boilerplate in a lot of C++ code. They seem like the kind of thing that a combination of macros, templates, and maybe a little external tool help could solve, but I'm not sure ...
8
votes
6answers
467 views

Pimpl idiom without using dynamic memory allocation

we want to use pimpl idiom for certain parts of our project. These parts of the project also happen to be parts where dynamic memory allocation is forbidden and this decision is not in our control. ...
8
votes
7answers
487 views

How does the pimpl idiom reduce dependencies?

Consider the following: PImpl.hpp class Impl; class PImpl { Impl* pimpl; PImpl() : pimpl(new Impl) { } ~PImpl() { delete pimpl; } void DoSomething(); }; PImpl.cpp #include ...
7
votes
3answers
397 views

The pImpl idiom and Testability

The pImpl idiom in c++ aims to hide the implementation details (=private members) of a class from the users of that class. However it also hides some of the dependencies of that class which is usually ...
7
votes
6answers
885 views

What patterns do you use to decouple interfaces and implementation in C++?

One problem in large C++ projects can be build times. There is some class high up in your dependency tree which you would need to work on, but usually you avoid doing so because every build takes a ...
6
votes
4answers
163 views

Putting all methods in class definition

When I use the pimpl idiom, is it a good idea to put all the methods definitions inside the class definition? For example: // in A.h class A { class impl; boost::scoped_ptr<impl> pimpl; ...
6
votes
3answers
327 views

C++: Tool to reduce compile-time dependencies automatically

After reading about the pimpl idiom I was horrified! Isn't there a tool out there that can inspect a .h/.cpp file and deduce what dependencies could be waivered?
6
votes
2answers
489 views

Implementing pImpl with minimal amount of code

What kind of tricks can be used to minimize the workload of implementing pImpl classes? Header: class Foo { struct Impl; boost::scoped_ptr<Impl> self; public: Foo(int arg); ...
5
votes
5answers
224 views

C++ advice from Code Complete on encapsulation?

In the section on "Good Encapsulation" in Code Complete, it is recommended to hide private implementation details. An example is given in C++. The idea is basically to completely separate the ...
5
votes
3answers
367 views

Is this a good place to use PIMPL pattern?

I'm working on a library that defines a client interface for some service. Under the hood I have to validate the data provided by users and then pass it to "engine" process using Connection class from ...
5
votes
5answers
359 views

C++ pimpl idiom wastes an instruction vs. C style?

(Yes, I know that one machine instruction usually doesn't matter. I'm asking this question because I want to understand the pimpl idiom, and use it in the best possible way; and because sometimes I ...
4
votes
4answers
210 views

C++: Creating a shared object rather than a shared pointer to an object

boost::shared_ptr really bothers me. Certainly, I understand the utility of such a thing, but I wish that I could use the shared_ptr<A> as an A*. Consider the following code class A { public: ...
4
votes
1answer
165 views

Pimpl idiom used with a class member variable

Whats the correct way of implementing this class? //Header #include <boost/shared_ptr.hh> class MyClass { public: static foo() static foobar(); private: class pimpl; static ...
4
votes
7answers
409 views

Private members in pimpl class?

Is there any reason for the implementation class as used in the pimpl idiom to have any private members at all? The only reason I can really think of is to protect yourself from yourself -- i.e. the ...
4
votes
5answers
1k views

Pimpl idiom with inheritance

I want to use pimpl idiom with inheritance. Here is the base public class and its implementation class: class A { public: A(){pAImpl = new AImpl;}; void foo(){pAImpl->foo();}; ...
3
votes
2answers
112 views

pimpl-idiom in template; which smart pointer?

I usually use a boost::scoped_ptr for pimpl's (for one reason because then I don't get surprises if I forget to deal with the copy constructor) With templates however I can't just put the destructor ...
3
votes
3answers
100 views

pimpl for a templated class

I want to use the pimpl idiom to avoid having users of my library need our external dependencies (like boost, etc) however when my class is templated that seems to be impossible because the methods ...
3
votes
3answers
96 views

How do you exchange private data with Pimpl without exposing your internals?

If you have an object B that needs a copy of a private member of an object A, and the private member is hidden by a Pimpl, how do you make it happen without exposing your internals? // Foo.h class ...
3
votes
3answers
441 views

What are the pros and cons of using d-pointers?

d-pointers are heavily used in Qt, they are an implementation of pimpl idiom. I know advantages and disadvantages of pimpl idiom. But I have missed the advantages of d-pointers implementation. Here ...
3
votes
2answers
314 views

keeping private parts outside c++ headers: pure virtual base class vs pimpl

I recently switched back from Java and Ruby to C++, and much to my surprise I have to recompile files that use the public interface when I change the method signature of a private method, because also ...
2
votes
1answer
62 views

How do I use unique_ptr for pimpl?

Here is a simplification of what I'm seeing when I try to use unique_ptr for pimpl. I chose unique_ptr because I really want the class to own the pointer - I want the lifetimes of the pimpl pointer ...
2
votes
1answer
64 views

Must provide destructor in the PIMPL

// main_pimpl_sample.cpp #include "pimpl_sample.hpp" using namespace std; int main() { pimpl_sample p; return 0; } // pimpl_sample.cpp #include "pimpl_sample.hpp" struct pimpl_sample::impl ...
2
votes
5answers
95 views

Is there any advantage to the pimpl idiom with a templated class?

It is my understanding that the primary benefit of the pimpl idiom is to hide the data members in the implementation file instead of the header. However, templates need to be fully defined in the ...
2
votes
4answers
171 views

Pimpl idiom and internal object collaboration without friend declaration

I'm implementing several classes using the pimpl idiom and am coming across some design issues. Firstly, I've always seen pimpl done like this class Object { public: Visible(); ~Visible(); ...
2
votes
4answers
176 views

Is pimpl compatible with anonymous namespaces?

I am trying to use the pimpl pattern and define the implementation class in an anonymous namespace. Is this possible in C++? My failed attempt is described below. Is it possible to fix this without ...
2
votes
1answer
222 views

Pimpl framework comments/suggestions requested

I've basically implemented a proposal, my question is, has it been done, and if so, where? And/or is there a better way to do what I'm doing? Sorry about the length of this post, I didn't know a ...
2
votes
6answers
196 views

How to omit private non-virtual methods from class definition?

Lets say I have something like the following: a.hpp: class B; class A { private: std::unique_ptr<B> b_; } a.cpp: #include <something_complicated.hpp> struct B { ...
2
votes
2answers
331 views

Inner class depending on a template argument

Consider next example : #include <iostream> #include <typeinfo> template< int N, typename T > struct B { struct C; }; template< typename T > struct B< 0, T >::C { ...
2
votes
1answer
576 views

Pimpl with smart pointers in a class with a template constructor: weird incomplete type issue

When using smart pointers with the pImpl idiom, as in struct Foo { private: struct Impl; boost::scoped_ptr<Impl> pImpl; }; the obvious problem is that Foo::Impl is incomplete at the ...
2
votes
3answers
170 views

C++: Creating a templated Shared<T> object rather than a shared_ptr<T> object

Per my previous question, I wish that a boost::shared_ptr<A> was actually a subclass of A (or perhaps A*) so that it could be used in methods that took A* as their argument. Consider the ...
2
votes
2answers
237 views

PIMPL and stack allocation

So I've been thinking about PIMPL and stack allocation. I've been writing a library and decided to use PIMPL to hide the private member of the class. That means I would have a class declared like this ...
2
votes
2answers
234 views

How to get debug information for an abstract(?) pimpl in C++?

I have a wrapper class that delegates its work to a pimpl, and the pimpl is a pointer to a baseclass/interface with no data that is specialized in several different ways. Like this: class Base { ...
1
vote
1answer
111 views

pimpl helper ambiguous with inheritance

I'm playing around with creating a utility class for the pimpl idiom, however I have some problem I hoped to get some help with: This is what I've got: [sehe: see also rev.1 here: ...
1
vote
3answers
96 views

portable c++ alignment?

I want to apply the Pimpl idiom with local storage idiom: mytype.h class mytype { struct Impl; enum{ storage = 20; } char m_storage[ storage ]; Impl* PImpl() { return (Impl*)m_storage; } ...
1
vote
2answers
66 views

Typecasting structs to hide implementation vs pimpl-idiom

I know about the pimpl-idiom which in C would look something like this: // foobar.h struct FooBar { char *someString; struct FooBarImpl *pImpl; }; // foobar.c struct FooBarImpl { char ...
1
vote
2answers
120 views

Are methods in the pimpl inlined?

Considering next simple example: The header: // a.hpp #ifndef A_HPP #define A_HPP #include <memory> class A { public: A(); int foo(); private: struct Imp; std::auto_ptr< Imp ...
1
vote
2answers
134 views

Creating library using pimpl-idiom

I am trying to define interfaces for a library which will be using pimpl-idiom. Following is a typical interface class which I define. struct A { public: void func1(); void func2(); virtual ...
1
vote
6answers
337 views

Hiding a C++ class in a header without using the unnamed namespace

I am writing a C++ header in which I define a class A { // ... }; that I would like to hide from the outside world (because it may change or even be removed in future versions of this header). ...
1
vote
2answers
148 views

pimpl idiom struct memory leak

We are using the pimpl idiom in our classes. The pimpl struct is declared in the class which contains the pimpl pointer like so: struct MyClassImpl; friend struct MyClassImpl; ...
1
vote
2answers
216 views

Pimpl not working

This is a very noobish mistake, but I dont know whats happening here. There are loads of pimpl examples but I dont understand why this isn't working (this was one of the examples more or less but I ...
1
vote
4answers
257 views

Pimpl idiom: What size_type to use if implementation is unknown?

I have a class that holds an array of elements, and I want to give it a GetSize member function. But what return type should I give that function? I'm using the pimpl idiom, and so in the header ...
1
vote
2answers
513 views

STL-friendly pImpl class?

I am maintaining a project that can take a considerable time to build so am trying to reduce dependencies where possible. Some of the classes could make use if the pImpl idiom and I want to make sure ...

1 2