c++-gtk-utils
|
This is a smart pointer for managing the lifetime of objects allocated on freestore. More...
#include <c++-gtk-utils/shared_ptr.h>
Public Member Functions | |
SharedPtr (T *ptr=0) | |
SharedPtr (T *ptr, Cgu::SharedPtrAllocFail::Leave tag) | |
void | reset (T *ptr=0) |
void | reset (T *ptr, Cgu::SharedPtrAllocFail::Leave tag) |
SharedPtr (const SharedPtr &sh_ptr) | |
template<class U > | |
SharedPtr (const SharedPtr< U > &sh_ptr) | |
SharedPtr & | operator= (SharedPtr sh_ptr) |
template<class U > | |
SharedPtr & | operator= (const SharedPtr< U > &sh_ptr) |
T * | get () const |
T & | operator* () const |
T * | operator-> () const |
unsigned int | get_refcount () const |
~SharedPtr () | |
Friends | |
template<class U > | |
class | SharedPtr |
This is a smart pointer for managing the lifetime of objects allocated on freestore.
This is a smart pointer for managing the lifetime of objects allocated on freestore with the new expression. A managed object will be deleted when the last SharedPtr referencing it is destroyed.
From version 1.2.12, the library provides ==, != and < comparison operators for SharedPtr, but only if the library is compiled with the --with-smart-ptr-comp option, or if the user code defines the symbol CGU_USE_SMART_PTR_COMPARISON before shared_ptr.h is first parsed. This is because, if user code has provided such operators for these smart pointers itself, a duplicated function definition would arise.
If the library is compiled with the --with-glib-memory-slices-no-compat configuration option, Cgu::SharedPtr constructs its reference counting internals using glib memory slices. Although it is safe in a multi-threaded program if glib < 2.32 is installed to construct a static SharedPtr object in global namespace (that is, prior to g_thread_init() being called) by means of the default constructor and/or a pointer argument of NULL, it is not safe if constructed with a non-NULL pointer value. If glib >= 2.32 is installed, global objects with memory slices are safe in all circumstances. (Having said that, it would be highly unusual to have global SharedPtr objects.)
|
inlineexplicit |
Constructor taking an unmanaged object.
ptr | The object which the SharedPtr is to manage (if any). |
std::bad_alloc | This constructor will not throw if the 'ptr' argument has a NULL value (the default), otherwise it might throw std::bad_alloc if memory is exhausted and the system throws in that case. If such an exception is thrown, this constructor is exception safe (it does not leak resources), but as well as cleaning itself up this constructor will also delete the managed object passed to it to avoid a memory leak. If such automatic deletion is not wanted in that case, use the version of this constructor taking a Cgu::SharedPtrAllocFail::Leave tag argument. |
|
inline |
Constructor taking an unmanaged object.
ptr | The object which the SharedPtr is to manage. |
tag | Passing the tag emumerator Cgu::SharedPtrAllocFail::leave causes this constructor not to delete the new managed object passed as the 'ptr' argument in the event of internal allocation in this method failing because of memory exhaustion (in that event, Cgu::SharedPtrError will be thrown). |
Cgu::SharedPtrError | This constructor might throw Cgu::SharedPtrError if memory is exhausted and the system would otherwise throw std::bad_alloc in that case. This constructor is exception safe (it does not leak resources), and if such an exception is thrown it will clean itself up, but it will not attempt to delete the new managed object passed to it. Access to the object passed to the 'ptr' argument can be obtained via the thrown Cgu::SharedPtrError object. |
Since 0.9.1
|
inline |
This copy constructor does not throw.
sh_ptr | The shared pointer to be copied. |
|
inline |
A version of the copy constructor which enables pointer type conversion (assuming the type passed is implicitly type convertible to the managed type, such as a derived type). This copy constructor does not throw.
sh_ptr | The shared pointer to be copied. |
|
inline |
The destructor does not throw unless the destructor of a managed object throws - that should never happen.
|
inline |
This method does not throw.
|
inline |
|
inline |
This method does not throw.
|
inline |
This method does not throw.
|
inline |
A version of the assignment operator which enables pointer type conversion (assuming the type passed is implicitly type convertible to the managed type, such as a derived type). This method does not throw unless the destructor of a managed object throws.
sh_ptr | the assignor. |
|
inline |
This method does not throw unless the destructor of a managed object throws.
sh_ptr | the assignor. |
|
inline |
Causes the SharedPtr to cease to manage its managed object (if any), deleting it if this is the last SharedPtr object managing it. The SharedPtr object will manage the new object passed (which must not be managed by any other SharedPtr object). This method is exception safe, but see the comments below on Cgu::SharedPtrError.
ptr | A new unmanaged object to manage (if no new object is to be managed, use the version of reset() taking a default value of NULL). |
tag | Passing the tag emumerator Cgu::SharedPtrAllocFail::leave causes this method not to delete the new managed object passed as the 'ptr' argument in the event of internal allocation in this method failing because of memory exhaustion (in that event, Cgu::SharedPtrError will be thrown). |
Cgu::SharedPtrError | This method might throw Cgu::SharedPtrError if memory is exhausted and the system would otherwise throw std::bad_alloc in that case. Note that if such an exception is thrown then this method will do nothing (it is strongly exception safe and will continue to manage the object it was managing prior to the call), and it will not attempt to delete the new managed object passed to it. Access to the object passed to the 'ptr' argument can be obtained via the thrown Cgu::SharedPtrError object. |
Since 0.9.1
|
inline |
Causes the SharedPtr to cease to manage its managed object (if any), deleting it if this is the last SharedPtr object managing it. If the argument passed is not NULL, the SharedPtr object will manage the new object passed (which must not be managed by any other SharedPtr object). This method is exception safe, but see the comments below on std::bad_alloc.
ptr | NULL (the default), or a new unmanaged object to manage. |
std::bad_alloc | This method will not throw if the 'ptr' argument has a NULL value (the default) and the destructor of a managed object does not throw, otherwise it might throw std::bad_alloc if memory is exhausted and the system throws in that case. Note that if such an exception is thrown then this method will do nothing (it is strongly exception safe and will continue to manage the object it was managing prior to the call), except that it will delete the new managed object passed to it to avoid a memory leak. If such automatic deletion in the event of such an exception is not wanted, use the reset() method taking a Cgu::SharedPtrAllocFail::Leave tag type as its second argument. |
Since 0.9.1