Note: the original answer is below the divider line.
With permission from Howard I (Alf) am amending this answer showing why the presented code has Undefined Behavior, and giving a concrete crash example.
Since this invalidates most of the original answer I am placing this text in front, to avoid people reading just the start of the original answer and being misled. However, buried within the original was this important info:
The sizeof unique_ptr is the same as that for auto_ptr and T* if you default the deleter, or specify a stateless deleter. If you specify a “stateful” deleter (such as a function pointer), then extra memory is stack-allocated to store the state of your deleter.
That said, the issue is
- how to create a
unique_ptr<T> custom deleter that will correctly destroy the referee even after the unique_ptr<T> has been moved to a unique_ptr<BaseOfT>.
This was one important reason for my question, e.g. it pertains to use of unique_ptr for the PIMPL idiom.
First note that an object’s address depends on the type that it’s accessed as:
#include <iostream>
using namespace std;
struct Base { int x; };
struct Derived: Base { virtual ~Derived() {} };
int main()
{
Derived* p1 = new Derived;
Base* p2 = p1;
cout << "As Derived at " << p1 << ", as Base at " << p2 << ".\n";
}
Testing that with Visual C++ 10.0 and MinGW g++ 4.4.1:
d:\dev\test\hh> cl changing_address.cpp /Fe"b"
changing_address.cpp
d:\dev\test\hh> b
As Derived at 00721A50, as Base at 00721A54.
d:\dev\test\hh> g++ changing_address.cpp
d:\dev\test\hh> a
As Derived at 0x351728, as Base at 0x35172c.
d:\dev\test\hh> _
This type-specific address is sometimes surprising even to seasoned C++ professionals.
The change of address occurs because the address as Base object must be the address of the first byte of the Base sub-object in Derived. And both compilers used above placed the Base sub-object somewhere other than at the very start of the Derived object. Apparently they chose to place a vtable pointer at the start, followed by the Base sub-object; anyway, with the Base sub-object not at the very start of the Derived object, and hence with different address.
Because of the address change, when a unique_ptr<Base> passes its owned pointer (of type Base*) to a deleter function taking void* argument, the deleter function can receive a different address, a different void* value, than for an original Derived* pointer value.
The effect of a cast to Derived* can then be different than the original Derived* pointer, and any attempt to use the referred to object, such as via delete, then has Undefined Behavior.
For example, the code below, using the original answer’s apparently simple deleter function scheme, crashes:
#include <iostream>
#include <memory> // std::unique_ptr
#include <utility> // std::forward
struct Base { int x; };
struct Derived: Base { virtual ~Derived() {} };
template< class Type >
void deleteFuncImpl( void* p )
{
delete static_cast< Type* >( p );
}
#if defined( USE_CPP11_ARGUMENT_FORWARDING )
template< class T, class ...Args >
std::unique_ptr< T, void(*)(void*) >
make_ptr( Args&& ...args )
{
return std::unique_ptr< T, void(*)(void*) >(
new T( std::forward<Args>( args )... ),
&deleteFuncImpl< T >
);
}
#endif
template< class T >
std::unique_ptr< T, void(*)(void*) > make_ptr()
{
return std::unique_ptr< T, void(*)(void*) >(
new T(),
&deleteFuncImpl< T >
);
}
int main()
{
std::unique_ptr< Base, void(*)(void*) > p = make_ptr< Derived >();
}
The crash:
d:\dev\test\hh> g++ hh_02.cpp -std=c++0x -o hh_02
d:\dev\test\hh> hh_02
d:\dev\test\hh> _

I gave a simple fix in my comment-as-answer, which this original answer from Howard was a response to.
Original answer including update:
Had your question contained your answer, or some code that at least attempted your answer, I (or someone else) might have offered the code below as a far simpler, clearer, and less obfuscated alternative:
// Your Base and Derived
// ..
template< class Type >
void deleteFuncImpl( void* p )
{
delete static_cast< Type* >( p );
}
int main()
{
unique_ptr< Base, void(*)(void*) > p( new Derived, deleteFuncImpl<Derived> );
cout << p->message() << endl;
}
Base:<init>
Derived::<init>
Message from Derived!
Derived::<destroy>
Base::<destroy>
Among those familiar with unique_ptr, it is well known that one can get many of the benefits of a dynamic deleter by using a function pointer as the static deleter type, with no need whatsoever to wrap the function pointer nor the deleter up in auxiliary classes.
And note that this is functionality that you pay for only if you use it. The sizeof unique_ptr is the same as that for auto_ptr and T* if you default the deleter, or specify a stateless deleter. If you specify a "stateful" deleter (such as a function pointer), then extra memory is stack-allocated to store the state of your deleter.
Naturally it should be emphasized that the default_deleteer, used with unique_ptr<Base> is stateless (adds no overhead), should you choose to follow the time-tested design of making ~Base virtual.
...
virtual ~Base() { cout << "Base::<destroy>" << endl; }
...
int main()
{
unique_ptr< Base > p( new Derived );
cout << p->message() << endl;
assert(sizeof(unique_ptr< Base >) == sizeof(Base*));
}
Base:<init>
Derived::<init>
Message from Derived!
Derived::<destroy>
Base::<destroy>
The above is truly the zero-overhead solution since Base already has a virtual function (message) and thus making ~Base() virtual does not add significant additional overhead to Base.
A dynamic deleter (like shared_ptr's) was suggested for unique_ptr several times during standardization. And while a unique-owning smart pointer with a dynamic deleter does have use cases, it is overkill for the use cases unique_ptr was designed for. One of the chief use cases for unique_ptr is to safely replace auto_ptr. If unique_ptr had a dynamic deleter, it would have overhead above that of auto_ptr, and thus not been capable of completely replacing auto_ptr. And we subsequently would have been unable to deprecate auto_ptr and its attendant error-prone use in generic code (moving with copy syntax).
Update
There is some concern of the use of void* in the function that does the deleting. One way to correct this is to make the parameter Type*:
template< class Type >
void deleteFuncImpl( Type* p )
{
delete p;
}
This doesn't work in the OP's code because the unique_ptr<Derived> is cast to a unique_ptr<Base> and subsequently will be passing a Base* to a Derived* at destruction time, which won't implicitly convert.
Another solution would be to give deleteFuncImpl two parameters:
template<class Base, class Type >
void deleteFuncImpl( Base* p )
{
delete static_cast< Type* >( p );
}
But that's ridiculously awkward, and really no better than the original void* solution.
Finally one may note that one can not possibly have undefined behavior if in this statement:
unique_ptr< Base, void(*)(void*) > p( new Derived, deleteFuncImpl<Derived> );
^^^^^^^ ^^^^^^^
the two underlined types are the same. The best way to enforce this is to create a factory function:
template <class T, class ...Args>
std::unique_ptr< T, void(*)(void*) >
make_ptr(Args&& ...args)
{
return std::unique_ptr<T, void(*)(void*)>
(new T(std::forward<Args>(args)...),
deleteFuncImpl<T>);
}
which can be used like this:
std::unique_ptr< Base, void(*)(void*) > p = make_ptr<Derived>();
Now, even though deleteFuncImpl takes its parameter by void*, we know a-priori that the run time type of deleteFuncImpl<T> argument is a T*, thus eliminating the possibility of a mismatch between the run time type of the held object, and the static_cast within the deleter function.
In this updated solution, the sizeof unique_ptr is two words. I would like to emphasize once more though that the optimal solution, both in space, and clarity of coding, is to give Base a virtual destructor. In this optimal solution the sizeof unique_ptr is one word, the same as for a raw pointer.
The function-pointer-deleter solution should be reserved for cases where making a virtual ~Base() is not meaningful. Examples include the use of std::free and std::close as the deleter.
Finally, on the suggestion that one use std::function<void(something-I'm-not-sure-what)>:
A std::function<void(something-I'm-not-sure-what)> can be "null". And so can a function pointer. However unique_ptr is specifically formulated to make accidentally assigning a null function pointer unlikely, whereas it does not have such safety protocols in place to protect against a null std::function. This compiles and crashes at run time:
std::unique_ptr<int, std::function<void(void*)>> p(new int(3));
terminate called without an active exception
Abort trap: 6
But this catches the error at compile time:
std::unique_ptr<int, void(*)(void*)> p(new int(3));
error: static_assert failed "unique_ptr constructed with null function pointer deleter"
Additionally std::function adds expense over a function pointer as noted by Johannes Schaub in the comments of this answer.
std::function not only adds a speed and likely size overhead compared to a function pointer, but in this case is also more error prone.
unique_ptrupcasted to a base classunique_ptrdoes work if written properly. Not to mention other things you demand in your "question". Strange how ~20K rep all of a sudden removes the "requirement" of "what have you tried so far" and "post your code and result, and your expected result". – rubenvb Nov 26 '11 at 11:55