Container for a set of ns3::Object pointers. More...
#include "object-ptr-container.h"
Public Types | |
typedef std::map< std::size_t, Ptr< Object > >::const_iterator | Iterator |
Iterator type for traversing this container. More... | |
Public Member Functions | |
ObjectPtrContainerValue () | |
Default constructor. More... | |
Iterator | Begin () const |
Get an iterator to the first Object. More... | |
Ptr< AttributeValue > | Copy () const override |
Get a copy of this container. More... | |
bool | DeserializeFromString (std::string value, Ptr< const AttributeChecker > checker) override |
Deserialize from a string. More... | |
Iterator | End () const |
Get an iterator to the past-the-end Object. More... | |
Ptr< Object > | Get (std::size_t i) const |
Get a specific Object. More... | |
std::size_t | GetN () const |
Get the number of Objects. More... | |
std::string | SerializeToString (Ptr< const AttributeChecker > checker) const override |
Serialize each of the Object pointers to a string. More... | |
Public Member Functions inherited from ns3::AttributeValue | |
AttributeValue () | |
virtual | ~AttributeValue () |
Public Member Functions inherited from ns3::SimpleRefCount< AttributeValue > | |
SimpleRefCount () | |
Default constructor. More... | |
SimpleRefCount (const SimpleRefCount &o[[maybe_unused]]) | |
Copy constructor. More... | |
uint32_t | GetReferenceCount () const |
Get the reference count of the object. More... | |
SimpleRefCount & | operator= (const SimpleRefCount &o[[maybe_unused]]) |
Assignment operator. More... | |
void | Ref () const |
Increment the reference count. More... | |
void | Unref () const |
Decrement the reference count. More... | |
Private Attributes | |
std::map< std::size_t, Ptr< Object > > | m_objects |
The container implementation. More... | |
Friends | |
class | ObjectPtrContainerAccessor |
ObjectPtrContainerAccessor::Get() needs access. More... | |
Container for a set of ns3::Object pointers.
This class it used to get attribute access to an array of ns3::Object pointers.
Definition at line 45 of file object-ptr-container.h.
typedef std::map<std::size_t, Ptr<Object> >::const_iterator ns3::ObjectPtrContainerValue::Iterator |
Iterator type for traversing this container.
Definition at line 49 of file object-ptr-container.h.
ns3::ObjectPtrContainerValue::ObjectPtrContainerValue | ( | ) |
Default constructor.
Definition at line 34 of file object-ptr-container.cc.
References NS_LOG_FUNCTION.
ObjectPtrContainerValue::Iterator ns3::ObjectPtrContainerValue::Begin | ( | ) | const |
Get an iterator to the first Object.
Definition at line 40 of file object-ptr-container.cc.
References m_objects, and NS_LOG_FUNCTION.
Referenced by LteRadioLinkFailureTestCase::CheckConnected(), LteRrcConnectionEstablishmentTestCase::CheckConnected(), LteX2HandoverMeasuresTestCase::CheckConnected(), LteX2HandoverTestCase::CheckConnected(), ns3::AttributeIterator::DoIterate(), ObjectMapAttributeTestCase::DoRun(), and SerializeToString().
|
overridevirtual |
Get a copy of this container.
Implements ns3::AttributeValue.
Definition at line 74 of file object-ptr-container.cc.
References NS_LOG_FUNCTION.
|
overridevirtual |
Deserialize from a string.
(Not implemented; raises a fatal error.)
[in] | value | The serialized string form. |
[in] | checker | The checker to use. |
true
. Implements ns3::AttributeValue.
Definition at line 98 of file object-ptr-container.cc.
References NS_FATAL_ERROR, and NS_LOG_FUNCTION.
ObjectPtrContainerValue::Iterator ns3::ObjectPtrContainerValue::End | ( | ) | const |
Get an iterator to the past-the-end Object.
Definition at line 47 of file object-ptr-container.cc.
References m_objects, and NS_LOG_FUNCTION.
Referenced by LteRadioLinkFailureTestCase::CheckConnected(), LteRrcConnectionEstablishmentTestCase::CheckConnected(), LteX2HandoverMeasuresTestCase::CheckConnected(), LteX2HandoverTestCase::CheckConnected(), ns3::AttributeIterator::DoIterate(), and SerializeToString().
Get a specific Object.
[in] | i | The index of the requested object. |
Definition at line 61 of file object-ptr-container.cc.
References m_objects, and NS_LOG_FUNCTION.
Referenced by ObjectVectorAttributeTestCase::DoRun(), and ObjectMapAttributeTestCase::DoRun().
std::size_t ns3::ObjectPtrContainerValue::GetN | ( | ) | const |
Get the number of Objects.
Definition at line 54 of file object-ptr-container.cc.
References m_objects, and NS_LOG_FUNCTION.
Referenced by LteRadioLinkFailureTestCase::CheckConnected(), LteRrcConnectionEstablishmentTestCase::CheckConnected(), LteX2HandoverMeasuresTestCase::CheckConnected(), LteX2HandoverTestCase::CheckConnected(), ObjectVectorAttributeTestCase::DoRun(), and ObjectMapAttributeTestCase::DoRun().
|
overridevirtual |
Serialize each of the Object pointers to a string.
Note this serializes the Ptr values, not the Objects themselves.
[in] | checker | The checker to use (currently not used.) |
Implements ns3::AttributeValue.
Definition at line 81 of file object-ptr-container.cc.
References Begin(), End(), and NS_LOG_FUNCTION.
|
friend |
ObjectPtrContainerAccessor::Get() needs access.
Definition at line 106 of file object-ptr-container.h.
The container implementation.
Definition at line 108 of file object-ptr-container.h.
Referenced by Begin(), End(), ns3::ObjectPtrContainerAccessor::Get(), Get(), and GetN().