Teuchos - Trilinos Tools Package
Version of the Day
|
Handle class that manages the RCPNode's reference counting. More...
#include <Teuchos_RCPNode.hpp>
Public Member Functions | |
RCPNodeHandle (ENull null_arg=null) | |
Default constructor. More... | |
RCPNodeHandle (RCPNode *node, ERCPStrength strength_in=RCP_STRONG, bool newNode=true) | |
Constructor that takes a pointer to an RCPNode. More... | |
RCPNodeHandle (const RCPNodeHandle &node_ref) | |
Copy constructor. More... | |
RCPNodeHandle (RCPNodeHandle &&node_ref) | |
Move constructor. More... | |
void | swap (RCPNodeHandle &node_ref) |
Swap the contents of node_ref with *this . More... | |
RCPNodeHandle & | operator= (ENull) |
Null assignment. More... | |
RCPNodeHandle & | operator= (const RCPNodeHandle &node_ref) |
Copy assignment operator. More... | |
RCPNodeHandle & | operator= (RCPNodeHandle &&node_ref) |
Move assignment operator. More... | |
~RCPNodeHandle () | |
Destructor. More... | |
RCPNodeHandle | create_strong_lock () const |
Return a strong handle if possible using thread safe atomics. More... | |
RCPNodeHandle | create_weak () const |
Return a weak handle. More... | |
RCPNodeHandle | create_strong () const |
Return a strong handle. More... | |
RCPNode * | node_ptr () const |
Return a pointer to the underlying RCPNode. More... | |
bool | is_node_null () const |
Whether the underlying RCPNode is NULL. More... | |
bool | is_valid_ptr () const |
Whether the underlying pointer is valid. More... | |
bool | same_node (const RCPNodeHandle &node2) const |
Whether the RCPNode for which node2 is a handle is the same RCPNode as this object's RCPNode. More... | |
int | strong_count () const |
The strong count for this RCPNode, or 0 if the node is NULL. More... | |
int | weak_count () const |
The weak count for this RCPNode, or 0 if the node is NULL. More... | |
int | total_count () const |
The sum of the weak and string counts. More... | |
int | count () const |
The strong count; retained for backwards compatibility. More... | |
ERCPStrength | strength () const |
The strength of this handle. More... | |
void | has_ownership (bool has_ownership_in) |
bool | has_ownership () const |
void | set_extra_data (const any &extra_data, const std::string &name, EPrePostDestruction destroy_when, bool force_unique) |
any & | get_extra_data (const std::string &type_name, const std::string &name) |
const any & | get_extra_data (const std::string &type_name, const std::string &name) const |
any * | get_optional_extra_data (const std::string &type_name, const std::string &name) |
const any * | get_optional_extra_data (const std::string &type_name, const std::string &name) const |
void | debug_assert_not_null () const |
template<class RCPType > | |
void | assert_valid_ptr (const RCPType &rcp_obj) const |
template<class RCPType > | |
void | debug_assert_valid_ptr (const RCPType &rcp_obj) const |
Related Functions | |
(Note that these are not member functions.) | |
std::ostream & | operator<< (std::ostream &out, const RCPNodeHandle &node) |
Ouput stream operator for RCPNodeHandle. More... | |
Handle class that manages the RCPNode's reference counting.
NOTE: I (Ross Bartlett) am not generally a big fan of handle classes and greatly prefer smart pointers. However, this is one case where a handle class makes sense. First, I want special behavior in some functions when the wrapped RCPNode pointer is null. Second, I can't use one of the smart-pointer classes because this class is used to implement all of those smart-pointer classes!
Definition at line 748 of file Teuchos_RCPNode.hpp.
|
inline |
Default constructor.
Definition at line 751 of file Teuchos_RCPNode.hpp.
|
inline |
Constructor that takes a pointer to an RCPNode.
Definition at line 758 of file Teuchos_RCPNode.hpp.
|
inline |
Copy constructor.
Definition at line 807 of file Teuchos_RCPNode.hpp.
|
inline |
Move constructor.
Definition at line 814 of file Teuchos_RCPNode.hpp.
|
inline |
Destructor.
Definition at line 873 of file Teuchos_RCPNode.hpp.
|
inline |
Swap the contents of node_ref
with *this
.
Definition at line 822 of file Teuchos_RCPNode.hpp.
|
inline |
Null assignment.
This method satisfies the strong exception guarantee: It either returns successfully, or throws an exception without modifying any user-visible state.
Definition at line 834 of file Teuchos_RCPNode.hpp.
|
inline |
Copy assignment operator.
This method satisfies the strong exception guarantee: It either returns successfully, or throws an exception without modifying any user-visible state.
Definition at line 846 of file Teuchos_RCPNode.hpp.
|
inline |
Move assignment operator.
This method satisfies the strong exception guarantee: It either returns successfully, or throws an exception without modifying any user-visible state.
Definition at line 861 of file Teuchos_RCPNode.hpp.
|
inline |
Return a strong handle if possible using thread safe atomics.
Definition at line 879 of file Teuchos_RCPNode.hpp.
|
inline |
Return a weak handle.
Definition at line 889 of file Teuchos_RCPNode.hpp.
|
inline |
Return a strong handle.
Definition at line 896 of file Teuchos_RCPNode.hpp.
|
inline |
Return a pointer to the underlying RCPNode.
Definition at line 903 of file Teuchos_RCPNode.hpp.
|
inline |
Whether the underlying RCPNode is NULL.
Definition at line 907 of file Teuchos_RCPNode.hpp.
|
inline |
Whether the underlying pointer is valid.
Definition at line 913 of file Teuchos_RCPNode.hpp.
|
inline |
Whether the RCPNode for which node2
is a handle is the same RCPNode as this object's RCPNode.
Definition at line 921 of file Teuchos_RCPNode.hpp.
|
inline |
The strong count for this RCPNode, or 0 if the node is NULL.
Definition at line 925 of file Teuchos_RCPNode.hpp.
|
inline |
The weak count for this RCPNode, or 0 if the node is NULL.
Definition at line 932 of file Teuchos_RCPNode.hpp.
|
inline |
The sum of the weak and string counts.
Definition at line 939 of file Teuchos_RCPNode.hpp.
|
inline |
The strong count; retained for backwards compatibility.
Definition at line 946 of file Teuchos_RCPNode.hpp.
|
inline |
The strength of this handle.
Definition at line 953 of file Teuchos_RCPNode.hpp.
|
inline |
Definition at line 957 of file Teuchos_RCPNode.hpp.
|
inline |
Definition at line 963 of file Teuchos_RCPNode.hpp.
|
inline |
Definition at line 970 of file Teuchos_RCPNode.hpp.
|
inline |
Definition at line 979 of file Teuchos_RCPNode.hpp.
|
inline |
Definition at line 987 of file Teuchos_RCPNode.hpp.
|
inline |
Definition at line 994 of file Teuchos_RCPNode.hpp.
|
inline |
Definition at line 1002 of file Teuchos_RCPNode.hpp.
|
inline |
Definition at line 1009 of file Teuchos_RCPNode.hpp.
|
inline |
Definition at line 1018 of file Teuchos_RCPNode.hpp.
|
inline |
Definition at line 1029 of file Teuchos_RCPNode.hpp.
|
related |
Ouput stream operator for RCPNodeHandle.
Definition at line 1092 of file Teuchos_RCPNode.hpp.