Saya akan menjawab pertanyaan ini (2 tahun kemudian) menggunakan implementasi shared_ptr yang sangat sederhana yang akan dimengerti pengguna.
Pertama saya akan ke beberapa kelas sisi, shared_ptr_base, sp_counted_base sp_counted_impl, dan checked_deleter yang terakhir adalah templat.
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
};
Sekarang saya akan membuat dua fungsi "bebas" bernama make_sp_counted_impl yang akan mengembalikan sebuah pointer ke yang baru dibuat.
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>() );
}
Oke, kedua fungsi ini penting untuk mengetahui apa yang akan terjadi selanjutnya ketika Anda membuat shared_ptr melalui fungsi templated.
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->
};
Perhatikan apa yang terjadi di atas jika T tidak berlaku dan U adalah kelas "tes" Anda. Ini akan memanggil make_sp_counted_impl () dengan sebuah penunjuk ke U, bukan penunjuk ke T. Manajemen penghancuran semua dilakukan melalui sini. Kelas shared_ptr_base mengelola penghitungan referensi berkenaan dengan penyalinan dan penugasan, dll. Kelas shared_ptr itu sendiri mengelola jenis penggunaan yang lebih aman dari kelebihan operator (->, * dll).
Jadi, meskipun Anda memiliki shared_ptr untuk dibatalkan, di bawahnya Anda mengelola pointer dari jenis yang Anda berikan ke yang baru. Perhatikan bahwa jika Anda mengonversi pointer ke void * sebelum meletakkannya ke shared_ptr, itu akan gagal untuk mengkompilasi pada checked_delete sehingga Anda benar-benar aman di sana juga.