Risponderò a questa domanda (2 anni dopo) usando un'implementazione molto semplicistica di shared_ptr che l'utente capirà.
In primo luogo vado ad alcune classi secondarie, shared_ptr_base, sp_counted_base sp_counted_impl e controllato_deleter l'ultimo dei quali è un modello.
class sp_counted_base
{
public:
sp_counted_base() : refCount( 1 )
{
}
virtual ~sp_deleter_base() {};
virtual void destruct() = 0;
void incref(); // increases reference count
void decref(); // decreases refCount atomically and calls destruct if it hits zero
private:
long refCount; // in a real implementation use an atomic int
};
template< typename T > class sp_counted_impl : public sp_counted_base
{
public:
typedef function< void( T* ) > func_type;
void destruct()
{
func(ptr); // or is it (*func)(ptr); ?
delete this; // self-destructs after destroying its pointer
}
template< typename F >
sp_counted_impl( T* t, F f ) :
ptr( t ), func( f )
private:
T* ptr;
func_type func;
};
template< typename T > struct checked_deleter
{
public:
template< typename T > operator()( T* t )
{
size_t z = sizeof( T );
delete t;
}
};
class shared_ptr_base
{
private:
sp_counted_base * counter;
protected:
shared_ptr_base() : counter( 0 ) {}
explicit shared_ptr_base( sp_counter_base * c ) : counter( c ) {}
~shared_ptr_base()
{
if( counter )
counter->decref();
}
shared_ptr_base( shared_ptr_base const& other )
: counter( other.counter )
{
if( counter )
counter->addref();
}
shared_ptr_base& operator=( shared_ptr_base& const other )
{
shared_ptr_base temp( other );
std::swap( counter, temp.counter );
}
// other methods such as reset
};
Ora ho intenzione di creare due funzioni "gratuite" chiamate make_sp_counted_impl che restituiranno un puntatore a uno appena creato.
template< typename T, typename F >
sp_counted_impl<T> * make_sp_counted_impl( T* ptr, F func )
{
try
{
return new sp_counted_impl( ptr, func );
}
catch( ... ) // in case the new above fails
{
func( ptr ); // we have to clean up the pointer now and rethrow
throw;
}
}
template< typename T >
sp_counted_impl<T> * make_sp_counted_impl( T* ptr )
{
return make_sp_counted_impl( ptr, checked_deleter<T>() );
}
Ok, queste due funzioni sono essenziali per quello che succederà dopo quando crei shared_ptr attraverso una funzione basata su modelli.
template< typename T >
class shared_ptr : public shared_ptr_base
{
public:
template < typename U >
explicit shared_ptr( U * ptr ) :
shared_ptr_base( make_sp_counted_impl( ptr ) )
{
}
// implement the rest of shared_ptr, e.g. operator*, operator->
};
Nota cosa succede sopra se T è nullo e U è la tua classe "test". Chiamerà make_sp_counted_impl () con un puntatore a U, non un puntatore a T. La gestione della distruzione è fatta da qui. La classe shared_ptr_base gestisce il conteggio dei riferimenti per quanto riguarda la copia e l'assegnazione, ecc. La stessa classe shared_ptr gestisce l'uso tipico dei sovraccarichi dell'operatore (->, * ecc.).
Quindi anche se hai un shared_ptr da annullare, sotto stai gestendo un puntatore del tipo che hai passato in nuovo. Si noti che se si converte il puntatore in un vuoto * prima di inserirlo in shared_ptr, non verrà compilato su checked_delete in modo da essere effettivamente al sicuro anche lì.