|
Teuchos - Trilinos Tools Package
Version of the Day
|
Array reference-counted pointer class. More...
#include <Teuchos_ArrayRCPDecl.hpp>
Public Types | |
Public types | |
| typedef Teuchos_Ordinal | Ordinal |
| | |
| typedef Ordinal | size_type |
| | |
| typedef Ordinal | difference_type |
| | |
| typedef std::random_access_iterator_tag | iterator_category |
| | |
| typedef T * | iterator_type |
| | |
| typedef T | value_type |
| | |
| typedef T & | reference |
| | |
| typedef const T & | const_reference |
| | |
| typedef T * | pointer |
| | |
| typedef T * | const_pointer |
| | |
| typedef T | element_type |
| | |
| typedef T * | iterator |
| typedef const T * | const_iterator |
Public Member Functions | |
Constructors/Destructors/Initializers | |
| ArrayRCP (ENull null_arg=null) | |
Initialize ArrayRCP<T> to NULL. | |
| ArrayRCP (T *p, size_type lowerOffset, size_type size, bool has_ownership, const ERCPNodeLookup rcpNodeLookup=RCP_ENABLE_NODE_LOOKUP) | |
| Construct from a raw pointer and a valid range. | |
| template<class Dealloc_T > | |
| ArrayRCP (T *p, size_type lowerOffset, size_type size, Dealloc_T dealloc, bool has_ownership) | |
| Construct from a raw pointer, a valid range, and a deallocator. | |
| ArrayRCP (size_type size, const T &val=T()) | |
| Construct allocating an array of size n and filling. | |
| ArrayRCP (const ArrayRCP< T > &r_ptr) | |
Initialize from another ArrayRCP<T> object. | |
| ~ArrayRCP () | |
| Removes a reference to a dynamically allocated array and possibly deletes the array if owned. | |
| ArrayRCP< T > & | operator= (const ArrayRCP< T > &r_ptr) |
| Copy the pointer to the referenced array and increment the reference count. | |
Object/Pointer Access Functions | |
| bool | is_null () const |
| Returns true if the underlying pointer is null. | |
| T * | operator-> () const |
Pointer (->) access to members of underlying object for current position. | |
| T & | operator* () const |
| Dereference the underlying object for the current pointer position. | |
| T * | get () const |
| Get the raw C++ pointer to the underlying object. | |
| T * | getRawPtr () const |
| Get the raw C++ pointer to the underlying object. | |
| T & | operator[] (size_type offset) const |
| Random object access. | |
Pointer Arithmetic Functions | |
| ArrayRCP< T > & | operator++ () |
| Prefix increment of pointer (i.e. ++ptr). | |
| ArrayRCP< T > | operator++ (int) |
| Postfix increment of pointer (i.e. ptr++). | |
| ArrayRCP< T > & | operator-- () |
| Prefix deincrement of pointer (i.e. --ptr). | |
| ArrayRCP< T > | operator-- (int) |
| Postfix deincrement of pointer (i.e. ptr--). | |
| ArrayRCP< T > & | operator+= (size_type offset) |
| Pointer integer increment (i.e. ptr+=offset). | |
| ArrayRCP< T > & | operator-= (size_type offset) |
| Pointer integer increment (i.e. ptr-=offset). | |
| ArrayRCP< T > | operator+ (size_type offset) const |
| Pointer integer increment (i.e. ptr+offset). | |
| ArrayRCP< T > | operator- (size_type offset) const |
| Pointer integer deincrement (i.e. ptr-offset). | |
Standard Container-Like Functions | |
| iterator | begin () const |
| Return an iterator to beginning of the array of data. | |
| iterator | end () const |
| Return an iterator to past the end of the array of data. | |
ArrayRCP Views | |
| ArrayRCP< const T > | getConst () const |
| Return object for only const access to data. | |
| ArrayRCP< T > | persistingView (size_type lowerOffset, size_type size) const |
| Return a persisting view of a contiguous range of elements. | |
Size and extent query functions | |
| size_type | lowerOffset () const |
| Return the lower offset to valid data. | |
| size_type | upperOffset () const |
| Return the upper offset to valid data. | |
| size_type | size () const |
The total number of items in the managed array (i.e. upperOffset()-lowerOffset()+1). | |
ArrayView views | |
| ArrayView< T > | view (size_type lowerOffset, size_type size) const |
| Return view of a contiguous range of elements. | |
| ArrayView< T > | operator() (size_type lowerOffset, size_type size) const |
| Return a view of a contiguous range of elements (calls view(offset,size)). | |
| ArrayView< T > | operator() () const |
| Return an ArrayView of *this. | |
Implicit conversions | |
| operator ArrayRCP< const T > () const | |
| Convert from ArrayRCP<T> to ArrayRCP<const T>. | |
std::vector like and other misc functions | |
| void | assign (size_type n, const T &val) |
| Resize and assign n elements of val. | |
| template<class Iter > | |
| void | assign (Iter first, Iter last) |
| Resize and assign to iterator sequence [first, last) | |
| void | deepCopy (const ArrayView< const T > &av) |
| Deep copy the elements from one ArrayView object into this object. | |
| void | resize (const size_type n, const T &val=T()) |
| Resize and append new elements if enlarging. | |
| void | clear () |
| Resize to zero.. | |
Reference counting | |
| ERCPStrength | strength () const |
| Strength of the pointer. | |
| bool | is_valid_ptr () const |
| Return if the underlying object pointer is still valid or not. | |
| int | strong_count () const |
Return the number of active RCP<> objects that have a "strong" reference to the underlying reference-counted object. | |
| int | weak_count () const |
Return the number of active RCP<> objects that have a "weak" reference to the underlying reference-counted object. | |
| int | total_count () const |
| Total count (strong_count() + weak_count()). | |
| void | set_has_ownership () |
Give this and other ArrayRCP<> objects ownership of the underlying referenced array to delete it. | |
| bool | has_ownership () const |
Returns true if this has ownership of object pointed to by this->get() in order to delete it. | |
| T * | release () |
| Release the ownership of the underlying array. | |
| ArrayRCP< T > | create_weak () const |
| Create a new weak RCP object from another (strong) RCP object. | |
| ArrayRCP< T > | create_strong () const |
| Create a new strong RCP object from another (weak) RCP object. | |
| template<class T2 > | |
| bool | shares_resource (const ArrayRCP< T2 > &r_ptr) const |
| Returns true if the smart pointers share the same underlying reference-counted object. | |
Assertion Functions. | |
| const ArrayRCP< T > & | assert_not_null () const |
Throws NullReferenceError if this->get()==NULL, otherwise returns reference to *this. | |
| const ArrayRCP< T > & | assert_in_range (size_type lowerOffset, size_type size) const |
Throws NullReferenceError if this->get()==NULL orthis->get()!=NULL, throws RangeError if (lowerOffset < this->lowerOffset() || this->upperOffset() < upperOffset, otherwise returns reference to *this | |
| const ArrayRCP< T > & | assert_valid_ptr () const |
| If the object pointer is non-null, assert that it is still valid. | |
Deprecated | |
| TEUCHOS_DEPRECATED int | count () const |
Returns strong_count() [deprecated]. | |
Related Functions | |
(Note that these are not member functions.) | |
| template<class T > | |
| ArrayRCP< T > | arcp (const RCP< Array< T > > &v) |
Wrap an RCP<Array<T> > object as an ArrayRCP<T> object. | |
| template<class T > | |
| ArrayRCP< const T > | arcp (const RCP< const Array< T > > &v) |
Wrap a RCP<const Array<T> > object as an ArrayRCP<const T> object. | |
| template<class T > | |
| ArrayRCP< T > | arcpFromArray (Array< T > &a) |
Wrap an Array<T> object as a non-owning ArrayRCP<T> object. | |
| template<class T > | |
| ArrayRCP< const T > | arcpFromArray (const Array< T > &a) |
Wrap a const Array<T> object as a non-owning ArrayRCP<T> object. | |
| template<class T > | |
| ArrayRCP< T > | arcp (T *p, typename ArrayRCP< T >::size_type lowerOffset, typename ArrayRCP< T >::size_type size, bool owns_mem=true) |
| Wraps a preallocated array of data with the assumption to call the array version of delete. | |
| template<class T , class Dealloc_T > | |
| ArrayRCP< T > | arcp (T *p, typename ArrayRCP< T >::size_type lowerOffset, typename ArrayRCP< T >::size_type size, Dealloc_T dealloc, bool owns_mem) |
| Wraps a preallocated array of data and uses a templated deallocation strategy object to define deletion . | |
| template<class T > | |
| ArrayRCP< T > | arcp (typename ArrayRCP< T >::size_type size) |
| Allocate a new array just given a dimension. | |
| template<class T > | |
| ArrayRCP< T > | arcpCloneNode (const ArrayRCP< T > &a) |
| Allocate a new ArrayRCP object with a new RCPNode with memory pointing to the initial node. | |
| template<class T > | |
| ArrayRCP< T > | arcpClone (const ArrayView< const T > &v) |
| Allocate a new array by cloning data from an input array view. | |
| template<class T , class Embedded > | |
| ArrayRCP< T > | arcpWithEmbeddedObjPreDestroy (T *p, typename ArrayRCP< T >::size_type lowerOffset, typename ArrayRCP< T >::size_type size, const Embedded &embedded, bool owns_mem=true) |
| Create an ArrayRCP with and also put in an embedded object. | |
| template<class T , class Embedded > | |
| ArrayRCP< T > | arcpWithEmbeddedObjPostDestroy (T *p, typename ArrayRCP< T >::size_type lowerOffset, typename ArrayRCP< T >::size_type size, const Embedded &embedded, bool owns_mem=true) |
| Create an ArrayRCP with and also put in an embedded object. | |
| template<class T , class Embedded > | |
| ArrayRCP< T > | arcpWithEmbeddedObj (T *p, typename ArrayRCP< T >::size_type lowerOffset, typename ArrayRCP< T >::size_type size, const Embedded &embedded, bool owns_mem=true) |
| Create an ArrayRCP with and also put in an embedded object. | |
| template<class T > | |
| ArrayRCP< T > | arcp (const RCP< std::vector< T > > &v) |
Wrap an std::vector<T> object as an ArrayRCP<T> object. | |
| template<class T > | |
| ArrayRCP< const T > | arcp (const RCP< const std::vector< T > > &v) |
Wrap a const std::vector<T> object as an ArrayRCP<const T> object. | |
| template<class T > | |
| ArrayRCP< T > | arcpFromArrayView (const ArrayView< T > &av) |
| Get an ArrayRCP object out of an ArrayView object. | |
| template<class T > | |
| RCP< std::vector< T > > | get_std_vector (const ArrayRCP< T > &ptr) |
Get an std::vector<T> object out of an ArrayRCP<T> object that was created using the arcp() above to wrap the std::vector in the first place.. | |
| template<class T > | |
| RCP< const std::vector< T > > | get_std_vector (const ArrayRCP< const T > &ptr) |
Get a const std::vector<T> object out of an ArrayRCP<const T> object that was created using the arcp() above to wrap the std::vector in the first place. | |
| template<class T > | |
| bool | is_null (const ArrayRCP< T > &p) |
Returns true if p.get()==NULL. | |
| template<class T > | |
| bool | nonnull (const ArrayRCP< T > &p) |
Returns true if p.get()!=NULL. | |
| template<class T > | |
| bool | operator== (const ArrayRCP< T > &p, ENull) |
Returns true if p.get()==NULL. | |
| template<class T > | |
| bool | operator!= (const ArrayRCP< T > &p, ENull) |
Returns true if p.get()!=NULL. | |
| template<class T1 , class T2 > | |
| bool | operator== (const ArrayRCP< T1 > &p1, const ArrayRCP< T2 > &p2) |
| | |
| template<class T1 , class T2 > | |
| bool | operator!= (const ArrayRCP< T1 > &p1, const ArrayRCP< T2 > &p2) |
| | |
| template<class T1 , class T2 > | |
| bool | operator< (const ArrayRCP< T1 > &p1, const ArrayRCP< T2 > &p2) |
| | |
| template<class T1 , class T2 > | |
| bool | operator<= (const ArrayRCP< T1 > &p1, const ArrayRCP< T2 > &p2) |
| | |
| template<class T1 , class T2 > | |
| bool | operator> (const ArrayRCP< T1 > &p1, const ArrayRCP< T2 > &p2) |
| | |
| template<class T1 , class T2 > | |
| bool | operator>= (const ArrayRCP< T1 > &p1, const ArrayRCP< T2 > &p2) |
| | |
| template<class T > | |
| ArrayRCP< T >::difference_type | operator- (const ArrayRCP< T > &p1, const ArrayRCP< T > &p2) |
| Returns difference of two ArrayRCP object. | |
| template<class T2 , class T1 > | |
| ArrayRCP< T2 > | arcp_const_cast (const ArrayRCP< T1 > &p1) |
Const cast of underlying ArrayRCP type from const T* to T*. | |
| template<class T2 , class T1 > | |
| ArrayRCP< T2 > | arcp_reinterpret_cast (const ArrayRCP< T1 > &p1) |
Reinterpret cast of underlying ArrayRCP type from T1* to T2*. | |
| template<class T2 , class T1 > | |
| ArrayRCP< T2 > | arcp_reinterpret_cast_nonpod (const ArrayRCP< T1 > &p1, const T2 &val=T2()) |
Reinterpret cast of underlying ArrayRCP type from T1* to T2* where T2 is a non-POD (non-plain-old-data). | |
| template<class T2 , class T1 > | |
| ArrayRCP< T2 > | arcp_implicit_cast (const ArrayRCP< T1 > &p1) |
Implicit case the underlying ArrayRCP type from T1* to T2*. | |
| template<class T1 , class T2 > | |
| void | set_extra_data (const T1 &extra_data, const std::string &name, const Ptr< ArrayRCP< T2 > > &p, EPrePostDestruction destroy_when=POST_DESTROY, bool force_unique=true) |
Set extra data associated with a ArrayRCP object. | |
| template<class T1 , class T2 > | |
| T1 & | get_extra_data (ArrayRCP< T2 > &p, const std::string &name) |
Get a non-const reference to extra data associated with a ArrayRCP object. | |
| template<class T1 , class T2 > | |
| const T1 & | get_extra_data (const ArrayRCP< T2 > &p, const std::string &name) |
Get a const reference to extra data associated with a ArrayRCP object. | |
| template<class T1 , class T2 > | |
| T1 * | get_optional_extra_data (ArrayRCP< T2 > &p, const std::string &name) |
Get a pointer to non-const extra data (if it exists) associated with a ArrayRCP object. | |
| template<class T1 , class T2 > | |
| const T1 * | get_optional_extra_data (const ArrayRCP< T2 > &p, const std::string &name) |
Get a pointer to const extra data (if it exists) associated with a ArrayRCP object. | |
| template<class Dealloc_T , class T > | |
| Dealloc_T & | get_nonconst_dealloc (const ArrayRCP< T > &p) |
Return a non-const reference to the underlying deallocator object. | |
| template<class Dealloc_T , class T > | |
| const Dealloc_T & | get_dealloc (const ArrayRCP< T > &p) |
Return a const reference to the underlying deallocator object. | |
| template<class Dealloc_T , class T > | |
| const Dealloc_T * | get_optional_dealloc (const ArrayRCP< T > &p) |
Return a pointer to the underlying non-const deallocator object if it exists. | |
| template<class Dealloc_T , class T > | |
| Dealloc_T * | get_optional_nonconst_dealloc (const ArrayRCP< T > &p) |
Return a pointer to the underlying const deallocator object if it exists. | |
| template<class TOrig , class Embedded , class T > | |
| const Embedded & | getEmbeddedObj (const ArrayRCP< T > &p) |
Get a const reference to an embedded object that was set by calling arcpWithEmbeddedObjPreDestroy(), arcpWithEmbeddedObjPostDestory(), or arcpWithEmbeddedObj(). | |
| template<class TOrig , class Embedded , class T > | |
| Embedded & | getNonconstEmbeddedObj (const ArrayRCP< T > &p) |
Get a const reference to an embedded object that was set by calling arcpWithEmbeddedObjPreDestroy(), arcpWithEmbeddedObjPostDestory(), or arcpWithEmbeddedObj(). | |
| template<class T > | |
| std::ostream & | operator<< (std::ostream &out, const ArrayRCP< T > &p) |
| Output stream inserter. | |
Array reference-counted pointer class.
This is a reference-counted class similar to RCP except that it is designed to use reference counting to manage an array of objects that use value semantics. Managing an array of objects is very different from managing a pointer to an individual, possibly polymorphic, object. For example, while implicit conversions from derived to base types is a good thing when dealing with pointers to single objects, it is a very bad thing when working with arrays of objects. Therefore, this class contains those capabilities of raw pointers that are good dealing with arrays of objects but excludes those that are bad, such as implicit conversions from derived to base types.
Note that all access will be checked at runtime to avoid reading invalid memory if HAVE_TEUCHOS_ARRAY_BOUNDSCHECK is defined which it is if --enable-teuchos-abc is given to the configure script. In order to be able to check access, every ArrayRCP must be constructed given a range. When HAVE_TEUCHOS_ARRAY_BOUNDSCHECK is defined, this class simply does not give up a raw pointer or raw reference to any internally referenced object if that object does not fall with the range of valid data.
Type T requirements:
Teuchos::TypeNameTraits<T> specialization ToDo: Finish documentation!
Definition at line 85 of file Teuchos_ArrayRCPDecl.hpp.
| typedef Teuchos_Ordinal Teuchos::ArrayRCP< T >::Ordinal |
Definition at line 92 of file Teuchos_ArrayRCPDecl.hpp.
| typedef Ordinal Teuchos::ArrayRCP< T >::size_type |
Definition at line 95 of file Teuchos_ArrayRCPDecl.hpp.
| typedef Ordinal Teuchos::ArrayRCP< T >::difference_type |
Definition at line 97 of file Teuchos_ArrayRCPDecl.hpp.
| typedef std::random_access_iterator_tag Teuchos::ArrayRCP< T >::iterator_category |
Definition at line 99 of file Teuchos_ArrayRCPDecl.hpp.
| typedef T* Teuchos::ArrayRCP< T >::iterator_type |
Definition at line 101 of file Teuchos_ArrayRCPDecl.hpp.
| typedef T Teuchos::ArrayRCP< T >::value_type |
Definition at line 103 of file Teuchos_ArrayRCPDecl.hpp.
| typedef T& Teuchos::ArrayRCP< T >::reference |
Definition at line 105 of file Teuchos_ArrayRCPDecl.hpp.
| typedef const T& Teuchos::ArrayRCP< T >::const_reference |
Definition at line 107 of file Teuchos_ArrayRCPDecl.hpp.
| typedef T* Teuchos::ArrayRCP< T >::pointer |
Definition at line 109 of file Teuchos_ArrayRCPDecl.hpp.
| typedef T* Teuchos::ArrayRCP< T >::const_pointer |
Definition at line 111 of file Teuchos_ArrayRCPDecl.hpp.
| typedef T Teuchos::ArrayRCP< T >::element_type |
Definition at line 113 of file Teuchos_ArrayRCPDecl.hpp.
| Teuchos::ArrayRCP< T >::ArrayRCP | ( | ENull | null_arg = null | ) | [inline] |
Initialize ArrayRCP<T> to NULL.
This allows clients to write code like:
ArrayRCP<int> p = null;
or
ArrayRCP<int> p;
and construct to NULL
Definition at line 118 of file Teuchos_ArrayRCP.hpp.
| Teuchos::ArrayRCP< T >::ArrayRCP | ( | T * | p, |
| size_type | lowerOffset, | ||
| size_type | size, | ||
| bool | has_ownership, | ||
| const ERCPNodeLookup | rcpNodeLookup = RCP_ENABLE_NODE_LOOKUP |
||
| ) | [inline] |
Construct from a raw pointer and a valid range.
Postconditions:
this->get() == p this->lowerOffset() == lowerOffset this->upperOffset() == size + lowerOffset - 1 this->has_ownership() == has_ownership WARNING! You should avoid manipulating raw pointers and use other methods to construct an ArrayRCP object instead!
Definition at line 133 of file Teuchos_ArrayRCP.hpp.
| Teuchos::ArrayRCP< T >::ArrayRCP | ( | T * | p, |
| size_type | lowerOffset, | ||
| size_type | size, | ||
| Dealloc_T | dealloc, | ||
| bool | has_ownership | ||
| ) | [inline] |
Construct from a raw pointer, a valid range, and a deallocator.
Postconditions:
this->get() == p this->lowerOffset() == lowerOffset this->upperOffset() == size + lowerOffset - 1 this->has_ownership() == has_ownership WARNING! You should avoid manipulating raw pointers and use other methods to construct an ArrayRCP object instead!
Definition at line 172 of file Teuchos_ArrayRCP.hpp.
| Teuchos::ArrayRCP< T >::ArrayRCP | ( | size_type | size, |
| const T & | val = T() |
||
| ) | [inline, explicit] |
Construct allocating an array of size n and filling.
Postconditions:
this->lowerOffset() == 0 this->upperOffset() == size-1 this->has_ownership() == true Definition at line 124 of file Teuchos_ArrayRCP.hpp.
| Teuchos::ArrayRCP< T >::ArrayRCP | ( | const ArrayRCP< T > & | r_ptr | ) | [inline] |
Initialize from another ArrayRCP<T> object.
After construction, this and r_ptr will reference the same array.
This form of the copy constructor is required even though the below more general templated version is sufficient since some compilers will generate this function automatically which will give an incorrect implementation.
Postconditions:
this->get() == r_ptr.get() this->count() == r_ptr.count() this->has_ownership() == r_ptr.has_ownership() r_ptr.get() != NULL then r_ptr.count() is incremented by 1 Definition at line 197 of file Teuchos_ArrayRCP.hpp.
| Teuchos::ArrayRCP< T >::~ArrayRCP | ( | ) | [inline] |
Removes a reference to a dynamically allocated array and possibly deletes the array if owned.
Deallocates array if this->has_ownership() == true and this->count() == 1. If this->count() == 1 but this->has_ownership() == false then the array is not deleted (usually using delete []). If this->count() > 1 then the internal reference count shared by all the other related ArrayRCP<...> objects for this shared array is deincremented by one. If this->get() == NULL then nothing happens.
Definition at line 206 of file Teuchos_ArrayRCP.hpp.
| ArrayRCP< T > & Teuchos::ArrayRCP< T >::operator= | ( | const ArrayRCP< T > & | r_ptr | ) | [inline] |
Copy the pointer to the referenced array and increment the reference count.
If this->has_ownership() == true and this->count() == 1 before this operation is called, then the array will be deleted prior to binding to the pointer (possibly NULL) pointed to in r_ptr. Assignment to self (i.e. this->get() == r_ptr.get()) is harmless and this function does nothing.
Postconditions:
this->get() == r_ptr.get() this->count() == r_ptr.count() this->has_ownership() == r_ptr.has_ownership() r_ptr.get() != NULL then r_ptr.count() is incremented by 1 Definition at line 211 of file Teuchos_ArrayRCP.hpp.
| bool Teuchos::ArrayRCP< T >::is_null | ( | ) | const [inline] |
Returns true if the underlying pointer is null.
Definition at line 229 of file Teuchos_ArrayRCP.hpp.
| T * Teuchos::ArrayRCP< T >::operator-> | ( | ) | const [inline] |
Pointer (->) access to members of underlying object for current position.
Preconditions:
this->get() != NULL this->lowerOffset() <= 0 this->upperOffset() >= 0 Definition at line 236 of file Teuchos_ArrayRCP.hpp.
| T & Teuchos::ArrayRCP< T >::operator* | ( | ) | const [inline] |
Dereference the underlying object for the current pointer position.
Preconditions:
this->get() != NULL this->lowerOffset() <= 0 this->upperOffset() >= 0 Definition at line 245 of file Teuchos_ArrayRCP.hpp.
| T * Teuchos::ArrayRCP< T >::get | ( | ) | const [inline] |
Get the raw C++ pointer to the underlying object.
Preconditions:
*this != null] this->lowerOffset() <= 0 *this != null] this->upperOffset() >= 0 Definition at line 254 of file Teuchos_ArrayRCP.hpp.
| T * Teuchos::ArrayRCP< T >::getRawPtr | ( | ) | const [inline] |
Get the raw C++ pointer to the underlying object.
Preconditions:
*this != null] this->lowerOffset() <= 0 *this != null] this->upperOffset() >= 0 Definition at line 265 of file Teuchos_ArrayRCP.hpp.
| T & Teuchos::ArrayRCP< T >::operator[] | ( | size_type | offset | ) | const [inline] |
Random object access.
Preconditions:
this->get() != NULL this->lowerOffset() <= offset && offset <= this->upperOffset() Definition at line 272 of file Teuchos_ArrayRCP.hpp.
| ArrayRCP< T > & Teuchos::ArrayRCP< T >::operator++ | ( | ) | [inline] |
Prefix increment of pointer (i.e. ++ptr).
Does nothing if this->get() == NULL.
Postconditions:
this->get()!=NULL] this->get() is incremented by 1 this->get()!=NULL] this->lowerOffset() is deincremented by 1 this->get()!=NULL] this->upperOffset() is deincremented by 1 Definition at line 284 of file Teuchos_ArrayRCP.hpp.
| ArrayRCP< T > Teuchos::ArrayRCP< T >::operator++ | ( | int | ) | [inline] |
Postfix increment of pointer (i.e. ptr++).
Does nothing if this->get() == NULL.
Postconditions:
this->get() is incremented by 1 this->lowerOffset() is deincremented by 1 this->upperOffset() is deincremented by 1 Definition at line 295 of file Teuchos_ArrayRCP.hpp.
| ArrayRCP< T > & Teuchos::ArrayRCP< T >::operator-- | ( | ) | [inline] |
Prefix deincrement of pointer (i.e. --ptr).
Does nothing if this->get() == NULL.
Postconditions:
this->get()!=NULL] this->get() is deincremented by 1 this->get()!=NULL] this->lowerOffset() is incremented by 1 this->get()!=NULL] this->upperOffset() is incremented by 1 Definition at line 305 of file Teuchos_ArrayRCP.hpp.
| ArrayRCP< T > Teuchos::ArrayRCP< T >::operator-- | ( | int | ) | [inline] |
Postfix deincrement of pointer (i.e. ptr--).
Does nothing if this->get() == NULL.
Postconditions:
this->get() is dincremented by 1 this->lowerOffset() is incremented by 1 this->upperOffset() is incremented by 1 Definition at line 316 of file Teuchos_ArrayRCP.hpp.
| ArrayRCP< T > & Teuchos::ArrayRCP< T >::operator+= | ( | size_type | offset | ) | [inline] |
Pointer integer increment (i.e. ptr+=offset).
Does nothing if this->get() == NULL.
Postconditions:
this->get()!=NULL] this->get() is incremented by offset this->get()!=NULL] this->lowerOffset() is deincremented by offset this->get()!=NULL] this->upperOffset() is deincremented by offset Definition at line 326 of file Teuchos_ArrayRCP.hpp.
| ArrayRCP< T > & Teuchos::ArrayRCP< T >::operator-= | ( | size_type | offset | ) | [inline] |
Pointer integer increment (i.e. ptr-=offset).
Does nothing if this->get() == NULL.
Postconditions:
this->get()!=NULL] this->get() is deincremented by offset this->get()!=NULL] this->lowerOffset() is incremented by offset this->get()!=NULL] this->upperOffset() is incremented by offset Definition at line 337 of file Teuchos_ArrayRCP.hpp.
| ArrayRCP< T > Teuchos::ArrayRCP< T >::operator+ | ( | size_type | offset | ) | const [inline] |
Pointer integer increment (i.e. ptr+offset).
Returns a null pointer if this->get() == NULL.
Postconditions:
this->get()!=NULL] return->get() == this->get() + offset this->get()!=NULL] return->lowerOffset() == this->lowerOffset() - offset this->get()!=NULL] return->upperOffset() == this->upperOffset() - offset Note that since implicit conversion of ArrayRCP<T> objects is not allowed that it does not help at all to make this function into a non-member function.
Definition at line 348 of file Teuchos_ArrayRCP.hpp.
| ArrayRCP< T > Teuchos::ArrayRCP< T >::operator- | ( | size_type | offset | ) | const [inline] |
Pointer integer deincrement (i.e. ptr-offset).
Returns a null pointer if this->get() == NULL.
Postconditions:
this->get()!=NULL] return->get() == this->get() - offset this->get()!=NULL] return->lowerOffset() == this->lowerOffset() + offset this->get()!=NULL] return->upperOffset() == this->upperOffset() + offset Note that since implicit conversion of ArrayRCP<T> objects is not allowed that it does not help at all to make this function into a non-member function.
Definition at line 357 of file Teuchos_ArrayRCP.hpp.
| ArrayRCP< T >::iterator Teuchos::ArrayRCP< T >::begin | ( | ) | const [inline] |
Return an iterator to beginning of the array of data.
If HAVE_TEUCHOS_ARRAY_BOUNDSCHECK is defined then the iterator returned is an ArrayRCP<T> object and all operations are checked at runtime. When HAVE_TEUCHOS_ARRAY_BOUNDSCHECK is not defined, the a raw pointer T* is returned for fast execution.
Postconditions:
Definition at line 369 of file Teuchos_ArrayRCP.hpp.
| ArrayRCP< T >::iterator Teuchos::ArrayRCP< T >::end | ( | ) | const [inline] |
Return an iterator to past the end of the array of data.
If HAVE_TEUCHOS_ARRAY_BOUNDSCHECK is defined then the iterator returned is an ArrayRCP<T> object and all operations are checked at runtime. When HAVE_TEUCHOS_ARRAY_BOUNDSCHECK is not defined, the a raw pointer T* is returned for fast execution.
Postconditions:
this->get()!=NULL] &*end == this->get()+(this->upperOffset()+1) this->get()==NULL] return == (null or NULL) Definition at line 381 of file Teuchos_ArrayRCP.hpp.
| ArrayRCP< const T > Teuchos::ArrayRCP< T >::getConst | ( | ) | const [inline] |
Return object for only const access to data.
This function should only compile successfully if the type T is not already declared const!
Definition at line 396 of file Teuchos_ArrayRCP.hpp.
| ArrayRCP< T > Teuchos::ArrayRCP< T >::persistingView | ( | size_type | lowerOffset, |
| size_type | size | ||
| ) | const [inline] |
Return a persisting view of a contiguous range of elements.
Preconditions:
this->get() != NULL this->lowerOffset() <= lowerOffset lowerOffset + size - 1 <= this->upperOffset() Postconditions:
return->get() == this->get() + lowerOffset return->lowerOffset() == 0 return->upperOffset() == size-1 NOTE: A size==0 view of even a null ArrayRCP is allowed and returns a null view.
Definition at line 409 of file Teuchos_ArrayRCP.hpp.
| ArrayRCP< T >::size_type Teuchos::ArrayRCP< T >::lowerOffset | ( | ) | const [inline] |
Return the lower offset to valid data.
Definition at line 429 of file Teuchos_ArrayRCP.hpp.
| ArrayRCP< T >::size_type Teuchos::ArrayRCP< T >::upperOffset | ( | ) | const [inline] |
Return the upper offset to valid data.
Definition at line 438 of file Teuchos_ArrayRCP.hpp.
| ArrayRCP< T >::size_type Teuchos::ArrayRCP< T >::size | ( | ) | const [inline] |
The total number of items in the managed array (i.e. upperOffset()-lowerOffset()+1).
Definition at line 447 of file Teuchos_ArrayRCP.hpp.
| ArrayView< T > Teuchos::ArrayRCP< T >::view | ( | size_type | lowerOffset, |
| size_type | size | ||
| ) | const [inline] |
Return view of a contiguous range of elements.
Preconditions:
this->get() != NULL this->lowerOffset() <= lowerOffset lowerOffset + size - 1 <= this->upperOffset() Postconditions:
return->get() == this->get() + lowerOffset return->lowerOffset() == 0 return->upperOffset() == size-1 NOTE: A size==0 view of even a null ArrayRCP is allowed and returns a null view.
Definition at line 458 of file Teuchos_ArrayRCP.hpp.
| ArrayView< T > Teuchos::ArrayRCP< T >::operator() | ( | size_type | lowerOffset, |
| size_type | size | ||
| ) | const [inline] |
Return a view of a contiguous range of elements (calls view(offset,size)).
Definition at line 475 of file Teuchos_ArrayRCP.hpp.
| ArrayView< T > Teuchos::ArrayRCP< T >::operator() | ( | ) | const [inline] |
Return an ArrayView of *this.
NOTE: This will return a null ArrayView if this->size() == 0.
Definition at line 482 of file Teuchos_ArrayRCP.hpp.
| Teuchos::ArrayRCP< T >::operator ArrayRCP< const T > | ( | ) | const [inline] |
Convert from ArrayRCP<T> to ArrayRCP<const T>.
Definition at line 495 of file Teuchos_ArrayRCP.hpp.
| void Teuchos::ArrayRCP< T >::assign | ( | size_type | n, |
| const T & | val | ||
| ) | [inline] |
Resize and assign n elements of val.
size() == n
Definition at line 508 of file Teuchos_ArrayRCP.hpp.
| void Teuchos::ArrayRCP< T >::assign | ( | Iter | first, |
| Iter | last | ||
| ) | [inline] |
Resize and assign to iterator sequence [first, last)
size() == std::distance(first, last)
This will not change the underlying pointer array if the size does not change.
Definition at line 518 of file Teuchos_ArrayRCP.hpp.
| void Teuchos::ArrayRCP< T >::deepCopy | ( | const ArrayView< const T > & | av | ) | [inline] |
Deep copy the elements from one ArrayView object into this object.
Simply calls assign(av.begin(), av.end())
Definition at line 561 of file Teuchos_ArrayRCP.hpp.
| void Teuchos::ArrayRCP< T >::resize | ( | const size_type | n, |
| const T & | val = T() |
||
| ) | [inline] |
Resize and append new elements if enlarging.
Definition at line 528 of file Teuchos_ArrayRCP.hpp.
| void Teuchos::ArrayRCP< T >::clear | ( | ) | [inline] |
| ERCPStrength Teuchos::ArrayRCP< T >::strength | ( | ) | const [inline] |
Strength of the pointer.
Return values:
RCP_STRONG: Underlying reference-counted object will be deleted when *this is destroyed if strong_count()==1. RCP_WEAK: Underlying reference-counted object will not be deleted when *this is destroyed if strong_count() > 0. RCP_STRENGTH_INVALID: *this is not strong or weak but is null. Definition at line 575 of file Teuchos_ArrayRCP.hpp.
| bool Teuchos::ArrayRCP< T >::is_valid_ptr | ( | ) | const [inline] |
Return if the underlying object pointer is still valid or not.
The underlying object will not be valid if the strong count has gone to zero but the weak count thas not.
NOTE: Null is a valid object pointer. If you want to know if there is a non-null object and it is valid then !is_null() && is_valid_ptr() will be true.
Definition at line 582 of file Teuchos_ArrayRCP.hpp.
| int Teuchos::ArrayRCP< T >::strong_count | ( | ) | const [inline] |
Return the number of active RCP<> objects that have a "strong" reference to the underlying reference-counted object.
this->get() == NULL then this function returns 0. Definition at line 591 of file Teuchos_ArrayRCP.hpp.
| int Teuchos::ArrayRCP< T >::weak_count | ( | ) | const [inline] |
Return the number of active RCP<> objects that have a "weak" reference to the underlying reference-counted object.
this->get() == NULL then this function returns 0. Definition at line 598 of file Teuchos_ArrayRCP.hpp.
| int Teuchos::ArrayRCP< T >::total_count | ( | ) | const [inline] |
Total count (strong_count() + weak_count()).
Definition at line 605 of file Teuchos_ArrayRCP.hpp.
| void Teuchos::ArrayRCP< T >::set_has_ownership | ( | ) | [inline] |
Give this and other ArrayRCP<> objects ownership of the underlying referenced array to delete it.
See ~ArrayRCP() above. This function does nothing if this->get() == NULL.
Postconditions:
this->get() == NULL then this->has_ownership() == false (always!). this->has_ownership() == true Definition at line 612 of file Teuchos_ArrayRCP.hpp.
| bool Teuchos::ArrayRCP< T >::has_ownership | ( | ) | const [inline] |
Returns true if this has ownership of object pointed to by this->get() in order to delete it.
See ~ArrayRCP() above.
== NULL then this function always returns false. Otherwise the value returned from this function depends on which function was called most recently, if any; set_has_ownership() (true) or release() (false). Definition at line 619 of file Teuchos_ArrayRCP.hpp.
| T * Teuchos::ArrayRCP< T >::release | ( | ) | [inline] |
Release the ownership of the underlying array.
After this function is called then the client is responsible for deleting the returned pointer no matter how many ref_count_ptr<T> objects have a reference to it. If this->get() == NULL, then this call is meaningless.
Note that this function does not have the exact same semantics as does auto_ptr<T>::release(). In auto_ptr<T>::release(), this is set to NULL while here in ArrayRCP<T>:: release() only an ownership flag is set and this still points to the same array. It would be difficult to duplicate the behavior of auto_ptr<T>::release() for this class.
Postconditions:
this->has_ownership() == false this->get() Definition at line 626 of file Teuchos_ArrayRCP.hpp.
| ArrayRCP< T > Teuchos::ArrayRCP< T >::create_weak | ( | ) | const [inline] |
Create a new weak RCP object from another (strong) RCP object.
ToDo: Explain this!
Preconditons:
returnVal.is_valid_ptr()==true Postconditons:
returnVal.get() == this->get() returnVal.strong_count() == this->strong_count() returnVal.weak_count() == this->weak_count()+1 returnVal.strength() == RCP_WEAK returnVal.has_ownership() == this->has_ownership() Definition at line 635 of file Teuchos_ArrayRCP.hpp.
| ArrayRCP< T > Teuchos::ArrayRCP< T >::create_strong | ( | ) | const [inline] |
Create a new strong RCP object from another (weak) RCP object.
ToDo: Explain this!
Preconditons:
returnVal.is_valid_ptr()==true Postconditons:
returnVal.get() == this->get() returnVal.strong_count() == this->strong_count()+1 returnVal.weak_count() == this->weak_count() returnVal.strength() == RCP_STRONG returnVal.has_ownership() == this->has_ownership() Definition at line 643 of file Teuchos_ArrayRCP.hpp.
| bool Teuchos::ArrayRCP< T >::shares_resource | ( | const ArrayRCP< T2 > & | r_ptr | ) | const [inline] |
Returns true if the smart pointers share the same underlying reference-counted object.
This method does more than just check if this->get() == r_ptr.get(). It also checks to see if the underlying reference counting machinery is the same.
Definition at line 653 of file Teuchos_ArrayRCP.hpp.
| const ArrayRCP< T > & Teuchos::ArrayRCP< T >::assert_not_null | ( | ) | const [inline] |
Throws NullReferenceError if this->get()==NULL, otherwise returns reference to *this.
Definition at line 667 of file Teuchos_ArrayRCP.hpp.
| const ArrayRCP< T > & Teuchos::ArrayRCP< T >::assert_in_range | ( | size_type | lowerOffset, |
| size_type | size | ||
| ) | const [inline] |
Throws NullReferenceError if this->get()==NULL orthis->get()!=NULL, throws RangeError if (lowerOffset < this->lowerOffset() || this->upperOffset() < upperOffset, otherwise returns reference to *this
Definition at line 686 of file Teuchos_ArrayRCP.hpp.
| const ArrayRCP< T > & Teuchos::ArrayRCP< T >::assert_valid_ptr | ( | ) | const [inline] |
If the object pointer is non-null, assert that it is still valid.
If is_null()==false && strong_count()==0, this will throw DanglingReferenceErorr with a great error message.
If is_null()==true, then this will not throw any exception.
In this context, null is a valid object.
Definition at line 676 of file Teuchos_ArrayRCP.hpp.
| int Teuchos::ArrayRCP< T >::count | ( | ) | const [inline] |
Returns strong_count() [deprecated].
Definition at line 709 of file Teuchos_ArrayRCP.hpp.
Wrap an RCP<Array<T> > object as an ArrayRCP<T> object.
Definition at line 503 of file Teuchos_Array.hpp.
Wrap a RCP<const Array<T> > object as an ArrayRCP<const T> object.
Definition at line 520 of file Teuchos_Array.hpp.
| ArrayRCP< T > arcpFromArray | ( | Array< T > & | a | ) | [related] |
Wrap an Array<T> object as a non-owning ArrayRCP<T> object.
Definition at line 537 of file Teuchos_Array.hpp.
| ArrayRCP< const T > arcpFromArray | ( | const Array< T > & | a | ) | [related] |
Wrap a const Array<T> object as a non-owning ArrayRCP<T> object.
Definition at line 555 of file Teuchos_Array.hpp.
| ArrayRCP< T > arcp | ( | T * | p, |
| typename ArrayRCP< T >::size_type | lowerOffset, | ||
| typename ArrayRCP< T >::size_type | size, | ||
| bool | owns_mem = true |
||
| ) | [related] |
Wraps a preallocated array of data with the assumption to call the array version of delete.
| ArrayRCP< T > arcp | ( | T * | p, |
| typename ArrayRCP< T >::size_type | lowerOffset, | ||
| typename ArrayRCP< T >::size_type | size, | ||
| Dealloc_T | dealloc, | ||
| bool | owns_mem | ||
| ) | [related] |
Wraps a preallocated array of data and uses a templated deallocation strategy object to define deletion .
Allocate a new array just given a dimension.
Warning! The memory is allocated using new T[size] and is *not* initialized (unless there is a default constructor for a user-defined type).
When called with 'size == 0' it returns a null ArrayRCP object.
| ArrayRCP< T > arcpCloneNode | ( | const ArrayRCP< T > & | a | ) | [related] |
Allocate a new ArrayRCP object with a new RCPNode with memory pointing to the initial node.
The purpose of this function is to create a new "handle" to the array of memory with its own seprate reference count. The new ArrayRCP object will have a new RCPNodeTmpl object that has a copy of the input ArrayRCP object embedded in it. This maintains the correct reference counting behaviors but now gives a private count. One would want to use arcpCloneNode(...) whenever it is important to keep a private reference count which is needed for some types of use cases.
Allocate a new array by cloning data from an input array view.
| ArrayRCP< T > arcpWithEmbeddedObjPreDestroy | ( | T * | p, |
| typename ArrayRCP< T >::size_type | lowerOffset, | ||
| typename ArrayRCP< T >::size_type | size, | ||
| const Embedded & | embedded, | ||
| bool | owns_mem = true |
||
| ) | [related] |
Create an ArrayRCP with and also put in an embedded object.
In this case the embedded object is destroyed (by setting to Embedded()) before the object at *p is destroyed.
The embedded object can be extracted using getEmbeddedObj() and getNonconstEmbeddedObject().
| ArrayRCP< T > arcpWithEmbeddedObjPostDestroy | ( | T * | p, |
| typename ArrayRCP< T >::size_type | lowerOffset, | ||
| typename ArrayRCP< T >::size_type | size, | ||
| const Embedded & | embedded, | ||
| bool | owns_mem = true |
||
| ) | [related] |
Create an ArrayRCP with and also put in an embedded object.
In this case the embedded object is destroyed (by setting to Embedded()) after the object at *p is destroyed.
The embedded object can be extracted using getEmbeddedObj() and getNonconstEmbeddedObject().
| ArrayRCP< T > arcpWithEmbeddedObj | ( | T * | p, |
| typename ArrayRCP< T >::size_type | lowerOffset, | ||
| typename ArrayRCP< T >::size_type | size, | ||
| const Embedded & | embedded, | ||
| bool | owns_mem = true |
||
| ) | [related] |
Create an ArrayRCP with and also put in an embedded object.
This function should be called when it is not important when the embedded object is destroyed (by setting to Embedded()) with respect to when *p is destroyed.
The embedded object can be extracted using getEmbeddedObj() and getNonconstEmbeddedObject().
Wrap an std::vector<T> object as an ArrayRCP<T> object.
Wrap a const std::vector<T> object as an ArrayRCP<const T> object.
| ArrayRCP< T > arcpFromArrayView | ( | const ArrayView< T > & | av | ) | [related] |
| RCP< std::vector< T > > get_std_vector | ( | const ArrayRCP< T > & | ptr | ) | [related] |
Get an std::vector<T> object out of an ArrayRCP<T> object that was created using the arcp() above to wrap the std::vector in the first place..
| RCP< const std::vector< T > > get_std_vector | ( | const ArrayRCP< const T > & | ptr | ) | [related] |
Get a const std::vector<T> object out of an ArrayRCP<const T> object that was created using the arcp() above to wrap the std::vector in the first place.
Returns true if p.get()==NULL.
Returns true if p.get()==NULL.
Returns true if p.get()!=NULL.
| bool operator== | ( | const ArrayRCP< T1 > & | p1, |
| const ArrayRCP< T2 > & | p2 | ||
| ) | [related] |
| bool operator!= | ( | const ArrayRCP< T1 > & | p1, |
| const ArrayRCP< T2 > & | p2 | ||
| ) | [related] |
| bool operator< | ( | const ArrayRCP< T1 > & | p1, |
| const ArrayRCP< T2 > & | p2 | ||
| ) | [related] |
| bool operator<= | ( | const ArrayRCP< T1 > & | p1, |
| const ArrayRCP< T2 > & | p2 | ||
| ) | [related] |
| bool operator> | ( | const ArrayRCP< T1 > & | p1, |
| const ArrayRCP< T2 > & | p2 | ||
| ) | [related] |
| bool operator>= | ( | const ArrayRCP< T1 > & | p1, |
| const ArrayRCP< T2 > & | p2 | ||
| ) | [related] |
| ArrayRCP< T >::difference_type operator- | ( | const ArrayRCP< T > & | p1, |
| const ArrayRCP< T > & | p2 | ||
| ) | [related] |
Returns difference of two ArrayRCP object.
| ArrayRCP< T2 > arcp_const_cast | ( | const ArrayRCP< T1 > & | p1 | ) | [related] |
Const cast of underlying ArrayRCP type from const T* to T*.
The function will compile only if (const_cast<T2*>(p1.get());) compiles.
| ArrayRCP< T2 > arcp_reinterpret_cast | ( | const ArrayRCP< T1 > & | p1 | ) | [related] |
Reinterpret cast of underlying ArrayRCP type from T1* to T2*.
The function will compile only if (reinterpret_cast<T2*>(p1.get());) compiles.
Warning! Do not use this function unless you absolutely know what you are doing. Doing a reinterpret cast is always a tricking thing and must only be done by developers who are 100% comfortable with what they are doing.
| ArrayRCP< T2 > arcp_reinterpret_cast_nonpod | ( | const ArrayRCP< T1 > & | p1, |
| const T2 & | val = T2() |
||
| ) | [related] |
Reinterpret cast of underlying ArrayRCP type from T1* to T2* where T2 is a non-POD (non-plain-old-data).
The function will compile only if (reinterpret_cast<T2*>(p1.get());) compiles.
This function is used to reinterpret cast an array of plain-old-data (POD) (e.g. int or char) into an array of real objects. The constructors will be called on each of the memory locations with placement new and the destructors will get called when the last RCP goes away.
Warning! Do not use this function unless you absolutely know what you are doing. Doing a reinterpret cast is always a tricking thing and must only be done by developers who are 100% comfortable with what they are doing.
| ArrayRCP< T2 > arcp_implicit_cast | ( | const ArrayRCP< T1 > & | p1 | ) | [related] |
Implicit case the underlying ArrayRCP type from T1* to T2*.
The function will compile only if (T2 *p = p1.get();) compiles.
Warning! Do not use this function unless you absolutely know what you are doing. While implicit casting of pointers to single objects is usually 100% safe, implicit casting pointers to arrays of objects can be very dangerous. One std::exception that is always safe is when you are implicit casting an array of pointers to non-const objects to an array of const pointers to const objects. For example, the following implicit conversion from a array pointer objects aptr1 of type ArrayRCP<T*> to
ArrayRCP<const T * const> aptr2 = arcp_implicit_cast<const T * const>(ptr1);
is always legal and safe to do.
| void set_extra_data | ( | const T1 & | extra_data, |
| const std::string & | name, | ||
| const Ptr< ArrayRCP< T2 > > & | p, | ||
| EPrePostDestruction | destroy_when = POST_DESTROY, |
||
| bool | force_unique = true |
||
| ) | [related] |
Set extra data associated with a ArrayRCP object.
| extra_data | [in] Data object that will be set (copied) |
| name | [in] The name given to the extra data. The value of name together with the data type T1 of the extra data must be unique from any other such data or the other data will be overwritten. |
| p | [out] On output, will be updated with the input extra_data |
| destroy_when | [in] Determines when extra_data will be destroyed in relation to the underlying reference-counted object. If destroy_when==PRE_DESTROY then extra_data will be deleted before the underlying reference-counted object. If destroy_when==POST_DESTROY (the default) then extra_data will be deleted after the underlying reference-counted object. |
| force_unique | [in] Determines if this type and name pair must be unique in which case if an object with this same type and name already exists, then an std::exception will be thrown. The default is true for safety. |
If there is a call to this function with the same type of extra data T1 and same arguments p and name has already been made, then the current piece of extra data already set will be overwritten with extra_data. However, if the type of the extra data T1 is different, then the extra data can be added and not overwrite existing extra data. This means that extra data is keyed on both the type and name. This helps to minimize the chance that clients will unexpectedly overwrite data by accident.
When the last RefcountPtr object is removed and the reference-count node is deleted, then objects are deleted in the following order: (1) All of the extra data that where added with destroy_when==PRE_DESTROY are first, (2) then the underlying reference-counted object is deleted, and (3) the rest of the extra data that was added with destroy_when==PRE_DESTROY is then deleted. The order in which the objects are destroyed is not guaranteed. Therefore, clients should be careful not to add extra data that has deletion dependencies (instead consider using nested ArrayRCP objects as extra data which will guarantee the order of deletion).
Preconditions:
p->get() != NULL (throws NullReferenceError) T1 for extra_data and the same std::string name and force_unique==true, then an std::invalid_argument std::exception will be thrown. Note, this function is made a non-member function to be consistent with the non-member get_extra_data() functions.
| T1 & get_extra_data | ( | ArrayRCP< T2 > & | p, |
| const std::string & | name | ||
| ) | [related] |
Get a non-const reference to extra data associated with a ArrayRCP object.
| p | [in] Smart pointer object that extra data is being extracted from. |
| name | [in] Name of the extra data. |
Preconditions:
p.get() != NULL (throws NullReferenceError) name and T1 must have been used in a previous call to set_extra_data() (throws std::invalid_argument). Note, this function must be a non-member function since the client must manually select the first template argument.
| const T1 & get_extra_data | ( | const ArrayRCP< T2 > & | p, |
| const std::string & | name | ||
| ) | [related] |
Get a const reference to extra data associated with a ArrayRCP object.
| p | [in] Smart pointer object that extra data is being extracted from. |
| name | [in] Name of the extra data. |
Preconditions:
p.get() != NULL (throws NullReferenceError) name and T1 must have been used in a previous call to set_extra_data() (throws std::invalid_argument). Note, this function must be a non-member function since the client must manually select the first template argument.
Also note that this const version is a false sense of security since a client can always copy a const ArrayRCP object into a non-const object and then use the non-const version to change the data. However, its presence will help to avoid some types of accidental changes to this extra data.
| T1 * get_optional_extra_data | ( | ArrayRCP< T2 > & | p, |
| const std::string & | name | ||
| ) | [related] |
Get a pointer to non-const extra data (if it exists) associated with a ArrayRCP object.
| p | [in] Smart pointer object that extra data is being extracted from. |
| name | [in] Name of the extra data. |
Preconditions:
p.get() != NULL (throws NullReferenceError) Postconditions:
name and T1 have been used in a previous call to set_extra_data() then return !=NULL and otherwise return == NULL. Note, this function must be a non-member function since the client must manually select the first template argument.
| const T1 * get_optional_extra_data | ( | const ArrayRCP< T2 > & | p, |
| const std::string & | name | ||
| ) | [related] |
Get a pointer to const extra data (if it exists) associated with a ArrayRCP object.
| p | [in] Smart pointer object that extra data is being extracted from. |
| name | [in] Name of the extra data. |
Preconditions:
p.get() != NULL (throws NullReferenceError) Postconditions:
name and T1 have been used in a previous call to set_extra_data() then return !=NULL and otherwise return == NULL. Note, this function must be a non-member function since the client must manually select the first template argument.
Also note that this const version is a false sense of security since a client can always copy a const ArrayRCP object into a non-const object and then use the non-const version to change the data. However, its presence will help to avoid some types of accidental changes to this extra data.
| Dealloc_T & get_nonconst_dealloc | ( | const ArrayRCP< T > & | p | ) | [related] |
Return a non-const reference to the underlying deallocator object.
Preconditions:
p.get() != NULL (throws NullReferenceError) p is same as Dealloc_T (throws NullReferenceError) | const Dealloc_T & get_dealloc | ( | const ArrayRCP< T > & | p | ) | [related] |
Return a const reference to the underlying deallocator object.
Preconditions:
p.get() != NULL (throws NullReferenceError) p is same as Dealloc_T (throws NullReferenceError) Note that the const version of this function provides only a very ineffective attempt to avoid accidental changes to the deallocation object. A client can always just create a new non-const ArrayRCP<T> object from any const ArrayRCP<T> object and then call the non-const version of this function.
| const Dealloc_T * get_optional_dealloc | ( | const ArrayRCP< T > & | p | ) | [related] |
Return a pointer to the underlying non-const deallocator object if it exists.
Preconditions:
p.get() != NULL (throws NullReferenceError) Postconditions:
p is same as Dealloc_T then return!=NULL, otherwise return==NULL | Dealloc_T * get_optional_nonconst_dealloc | ( | const ArrayRCP< T > & | p | ) | [related] |
Return a pointer to the underlying const deallocator object if it exists.
Preconditions:
p.get() != NULL (throws NullReferenceError) Postconditions:
p is same as Dealloc_T then return!=NULL, otherwise return==NULL Note that the const version of this function provides only a very ineffective attempt to avoid accidental changes to the deallocation object. A client can always just create a new non-const ArrayRCP<T> object from any const ArrayRCP<T> object and then call the non-const version of this function.
| const Embedded & getEmbeddedObj | ( | const ArrayRCP< T > & | p | ) | [related] |
Get a const reference to an embedded object that was set by calling arcpWithEmbeddedObjPreDestroy(), arcpWithEmbeddedObjPostDestory(), or arcpWithEmbeddedObj().
| Embedded & getNonconstEmbeddedObj | ( | const ArrayRCP< T > & | p | ) | [related] |
Get a const reference to an embedded object that was set by calling arcpWithEmbeddedObjPreDestroy(), arcpWithEmbeddedObjPostDestory(), or arcpWithEmbeddedObj().
| std::ostream & operator<< | ( | std::ostream & | out, |
| const ArrayRCP< T > & | p | ||
| ) | [related] |
Output stream inserter.
The implementation of this function just print pointer addresses and therefore puts not restrictions on the data types involved.
1.7.6.1