Class used to check attributes. More...
Public Types | |
enum | Test_e { TEST_A , TEST_B , TEST_C } |
Test enumerator. More... | |
Public Member Functions | |
AttributeObjectTest () | |
~AttributeObjectTest () override | |
void | AddToMap1 (uint32_t i) |
Adds an object to the first map. | |
void | AddToUnorderedMap (uint64_t i) |
Adds an object to the unordered map. | |
void | AddToVector1 () |
Add an object to the first vector. | |
void | AddToVector2 () |
Add an object to the second vector. | |
void | InvokeCb (double a, int b, float c) |
Invoke the m_cb callback. | |
void | InvokeCbValue (int8_t a) |
Invoke the m_cbValue callback. | |
void | RemoveFromUnorderedMap (uint64_t i) |
Remove an object from the first map. | |
Public Member Functions inherited from ns3::Object | |
Object () | |
Constructor. | |
~Object () override | |
Destructor. | |
void | AggregateObject (Ptr< Object > other) |
Aggregate two Objects together. | |
void | Dispose () |
Dispose of this Object. | |
AggregateIterator | GetAggregateIterator () const |
Get an iterator to the Objects aggregated to this one. | |
TypeId | GetInstanceTypeId () const override |
Get the most derived TypeId for this Object. | |
template<typename T > | |
Ptr< T > | GetObject () const |
Get a pointer to the requested aggregated Object. | |
template<> | |
Ptr< Object > | GetObject () const |
Specialization of () for objects of type ns3::Object. | |
template<typename T > | |
Ptr< T > | GetObject (TypeId tid) const |
Get a pointer to the requested aggregated Object by TypeId. | |
template<> | |
Ptr< Object > | GetObject (TypeId tid) const |
Specialization of (TypeId tid) for objects of type ns3::Object. | |
void | Initialize () |
Invoke DoInitialize on all Objects aggregated to this one. | |
bool | IsInitialized () const |
Check if the object has been initialized. | |
Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter > | |
SimpleRefCount () | |
Default constructor. | |
SimpleRefCount (const SimpleRefCount &o) | |
Copy constructor. | |
uint32_t | GetReferenceCount () const |
Get the reference count of the object. | |
SimpleRefCount & | operator= (const SimpleRefCount &o) |
Assignment operator. | |
void | Ref () const |
Increment the reference count. | |
void | Unref () const |
Decrement the reference count. | |
Public Member Functions inherited from ns3::ObjectBase | |
virtual | ~ObjectBase () |
Virtual destructor. | |
void | GetAttribute (std::string name, AttributeValue &value) const |
Get the value of an attribute, raising fatal errors if unsuccessful. | |
bool | GetAttributeFailSafe (std::string name, AttributeValue &value) const |
Get the value of an attribute without raising errors. | |
virtual TypeId | GetInstanceTypeId () const =0 |
Get the most derived TypeId for this Object. | |
void | SetAttribute (std::string name, const AttributeValue &value) |
Set a single attribute, raising fatal errors if unsuccessful. | |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
Set a single attribute without raising errors. | |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
Connect a TraceSource to a Callback with a context. | |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
Connect a TraceSource to a Callback without a context. | |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected with a context. | |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected without a context. | |
Static Public Member Functions | |
static TypeId | GetTypeId () |
Get the type ID. | |
Static Public Member Functions inherited from ns3::Object | |
static TypeId | GetTypeId () |
Register this type. | |
Static Public Member Functions inherited from ns3::ObjectBase | |
static TypeId | GetTypeId () |
Get the type ID. | |
Private Types | |
typedef void(* | NumericTracedCallback) (double, int, float) |
Traced callbacks for (double, int, float) values. | |
Private Member Functions | |
Test_e | DoGetEnum () const |
Get the m_enumSetGet value. | |
int16_t | DoGetInt16 () const |
Get the m_int16SetGet value. | |
int8_t | DoGetIntSrc () const |
Get the m_intSrc2 value. | |
bool | DoGetTestA () const |
Get the m_boolTestA value. | |
Ptr< Derived > | DoGetVector (std::size_t i) const |
Get the i-th item of m_vector2. | |
std::size_t | DoGetVectorN () const |
Get the length of m_vector2. | |
bool | DoSetEnum (Test_e v) |
Set the m_enumSetGet value. | |
void | DoSetInt16 (int16_t v) |
Set the m_int16SetGet value. | |
bool | DoSetIntSrc (int8_t v) |
Set the m_intSrc2 value. | |
void | DoSetTestA (bool v) |
Set the m_boolTestA value. | |
Private Attributes | |
TracedValue< bool > | m_boolSrc |
bool Traced value. | |
bool | m_boolTest |
Boolean test. | |
bool | m_boolTestA |
Boolean test A. | |
bool | m_boolTestDeprecated |
Boolean test deprecated. | |
TracedCallback< double, int, float > | m_cb |
TracedCallback (double, int, float). | |
Callback< void, int8_t > | m_cbValue |
Callback accepting an integer. | |
TracedValue< double > | m_doubleSrc |
double Traced value. | |
Test_e | m_enum |
Enum. | |
Test_e | m_enumSetGet |
Enum set-get. | |
TracedValue< Test_e > | m_enumSrc |
enum Traced value. | |
float | m_float |
float. | |
int16_t | m_int16 |
16-bit integer. | |
int16_t | m_int16SetGet |
16-bit integer set-get. | |
int16_t | m_int16WithBounds |
16-bit integer with bounds. | |
TracedValue< int8_t > | m_intSrc1 |
First int8_t Traced value. | |
TracedValue< int8_t > | m_intSrc2 |
Second int8_t Traced value. | |
std::map< uint32_t, Ptr< Derived > > | m_map1 |
Map of uint32_t, derived objects. | |
Ptr< Derived > | m_ptr |
Pointer to Derived class. | |
Ptr< Derived > | m_ptrInitialized |
Pointer to Derived class. | |
Ptr< Derived > | m_ptrInitialized2 |
Pointer to Derived class. | |
Ptr< RandomVariableStream > | m_random |
Random number generator. | |
Time | m_timeWithBounds |
Time with bounds. | |
uint8_t | m_uint8 |
8-bit integer. | |
TracedValue< uint8_t > | m_uintSrc |
uint8_t Traced value. | |
std::unordered_map< uint64_t, Ptr< Derived > > | m_unorderedMap |
Unordered map of uint64_t, derived objects. | |
TracedValue< ValueClassTest > | m_valueSrc |
ValueClassTest Traced value. | |
std::vector< Ptr< Derived > > | m_vector1 |
First vector of derived objects. | |
std::vector< Ptr< Derived > > | m_vector2 |
Second vector of derived objects. | |
Additional Inherited Members | |
Protected Member Functions inherited from ns3::Object | |
Object (const Object &o) | |
Copy an Object. | |
virtual void | DoDispose () |
Destructor implementation. | |
virtual void | DoInitialize () |
Initialize() implementation. | |
virtual void | NotifyNewAggregate () |
Notify all Objects aggregated to this one of a new Object being aggregated. | |
Protected Member Functions inherited from ns3::ObjectBase | |
void | ConstructSelf (const AttributeConstructionList &attributes) |
Complete construction of ObjectBase; invoked by derived classes. | |
virtual void | NotifyConstructionCompleted () |
Notifier called once the ObjectBase is fully constructed. | |
Related Functions inherited from ns3::ObjectBase | |
static TypeId | GetObjectIid () |
Ensure the TypeId for ObjectBase gets fully configured to anchor the inheritance tree properly. | |
Class used to check attributes.
Definition at line 149 of file attribute-test-suite.cc.
|
private |
Traced callbacks for (double, int, float) values.
Definition at line 516 of file attribute-test-suite.cc.
Test enumerator.
Enumerator | |
---|---|
TEST_A | Test value A. |
TEST_B | Test value B. |
TEST_C | Test value C. |
Definition at line 153 of file attribute-test-suite.cc.
|
inline |
Definition at line 329 of file attribute-test-suite.cc.
|
inlineoverride |
Definition at line 333 of file attribute-test-suite.cc.
|
inline |
Adds an object to the first map.
i | The index to assign to the object. |
Definition at line 353 of file attribute-test-suite.cc.
References m_map1.
|
inline |
Adds an object to the unordered map.
i | The index to assign to the object. |
Definition at line 362 of file attribute-test-suite.cc.
References m_unorderedMap.
|
inline |
Add an object to the first vector.
Definition at line 338 of file attribute-test-suite.cc.
References m_vector1.
|
inline |
Add an object to the second vector.
Definition at line 344 of file attribute-test-suite.cc.
References m_vector2.
|
inlineprivate |
Get the m_enumSetGet value.
Definition at line 490 of file attribute-test-suite.cc.
References m_enumSetGet.
Referenced by GetTypeId().
|
inlineprivate |
Get the m_int16SetGet value.
Definition at line 422 of file attribute-test-suite.cc.
References m_int16SetGet.
Referenced by GetTypeId().
|
inlineprivate |
Get the m_intSrc2 value.
Definition at line 470 of file attribute-test-suite.cc.
References m_intSrc2.
Referenced by GetTypeId().
|
inlineprivate |
Get the m_boolTestA value.
Definition at line 413 of file attribute-test-suite.cc.
References m_boolTestA.
Referenced by GetTypeId().
Get the i-th item of m_vector2.
i | The index of the element to get. |
Definition at line 450 of file attribute-test-suite.cc.
References m_vector2.
Referenced by GetTypeId().
|
inlineprivate |
Get the length of m_vector2.
Definition at line 440 of file attribute-test-suite.cc.
References m_vector2.
Referenced by GetTypeId().
|
inlineprivate |
Set the m_enumSetGet value.
v | The value to set. |
Definition at line 480 of file attribute-test-suite.cc.
References m_enumSetGet.
Referenced by GetTypeId().
|
inlineprivate |
Set the m_int16SetGet value.
v | The value to set. |
Definition at line 431 of file attribute-test-suite.cc.
References m_int16SetGet.
Referenced by GetTypeId().
|
inlineprivate |
Set the m_intSrc2 value.
v | The value to set. |
Definition at line 460 of file attribute-test-suite.cc.
References m_intSrc2.
Referenced by GetTypeId().
|
inlineprivate |
Set the m_boolTestA value.
v | The value to set. |
Definition at line 404 of file attribute-test-suite.cc.
References m_boolTestA.
Referenced by GetTypeId().
|
inlinestatic |
Get the type ID.
Definition at line 164 of file attribute-test-suite.cc.
References ns3::TypeId::AddConstructor(), ns3::TypeId::DEPRECATED, DoGetEnum(), DoGetInt16(), DoGetIntSrc(), DoGetTestA(), DoGetVector(), DoGetVectorN(), DoSetEnum(), DoSetInt16(), DoSetIntSrc(), DoSetTestA(), m_boolSrc, m_boolTest, m_boolTestDeprecated, m_cb, m_cbValue, m_doubleSrc, m_enum, m_enumSrc, m_float, m_int16, m_int16WithBounds, m_intSrc1, m_map1, m_ptr, m_ptrInitialized, m_ptrInitialized2, m_random, m_timeWithBounds, m_uint8, m_uintSrc, m_unorderedMap, m_valueSrc, m_vector1, ns3::MakeBooleanAccessor(), ns3::MakeBooleanChecker(), ns3::MakeCallbackAccessor(), ns3::MakeCallbackChecker(), ns3::MakeDoubleAccessor(), ns3::MakeEnumAccessor(), ns3::MakeEnumChecker(), ns3::MakeIntegerAccessor(), ns3::MakeObjectMapAccessor(), ns3::MakeObjectVectorAccessor(), ns3::MakePointerAccessor(), ns3::MakeTimeAccessor(), ns3::MakeTimeChecker(), ns3::MakeTraceSourceAccessor(), ns3::MakeUintegerAccessor(), ns3::Seconds(), TEST_A, TEST_B, and TEST_C.
|
inline |
Invoke the m_cb callback.
a | The first argument of the callback. |
b | The second argument of the callback. |
c | The third argument of the callback. |
Definition at line 382 of file attribute-test-suite.cc.
References m_cb.
|
inline |
Invoke the m_cbValue callback.
a | The argument of the callback. |
Definition at line 391 of file attribute-test-suite.cc.
References ns3::Callback< R, UArgs >::IsNull(), and m_cbValue.
|
inline |
Remove an object from the first map.
i | The index to assign to the object. |
Definition at line 371 of file attribute-test-suite.cc.
References m_unorderedMap.
|
private |
bool Traced value.
Definition at line 525 of file attribute-test-suite.cc.
Referenced by GetTypeId().
|
private |
|
private |
Boolean test A.
Definition at line 495 of file attribute-test-suite.cc.
Referenced by DoGetTestA(), and DoSetTestA().
|
private |
Boolean test deprecated.
Definition at line 497 of file attribute-test-suite.cc.
Referenced by GetTypeId().
|
private |
TracedCallback (double, int, float).
Definition at line 517 of file attribute-test-suite.cc.
Referenced by GetTypeId(), and InvokeCb().
Callback accepting an integer.
Definition at line 511 of file attribute-test-suite.cc.
Referenced by GetTypeId(), and InvokeCbValue().
|
private |
double Traced value.
Definition at line 524 of file attribute-test-suite.cc.
Referenced by GetTypeId().
|
private |
|
private |
Enum set-get.
Definition at line 504 of file attribute-test-suite.cc.
Referenced by DoGetEnum(), and DoSetEnum().
|
private |
enum Traced value.
Definition at line 523 of file attribute-test-suite.cc.
Referenced by GetTypeId().
|
private |
|
private |
|
private |
16-bit integer set-get.
Definition at line 500 of file attribute-test-suite.cc.
Referenced by DoGetInt16(), and DoSetInt16().
|
private |
16-bit integer with bounds.
Definition at line 499 of file attribute-test-suite.cc.
Referenced by GetTypeId().
|
private |
First int8_t Traced value.
Definition at line 512 of file attribute-test-suite.cc.
Referenced by GetTypeId().
|
private |
Second int8_t Traced value.
Definition at line 513 of file attribute-test-suite.cc.
Referenced by DoGetIntSrc(), and DoSetIntSrc().
Map of uint32_t, derived objects.
Definition at line 508 of file attribute-test-suite.cc.
Referenced by AddToMap1(), and GetTypeId().
Pointer to Derived class.
Definition at line 519 of file attribute-test-suite.cc.
Referenced by GetTypeId().
Pointer to Derived class.
Definition at line 520 of file attribute-test-suite.cc.
Referenced by GetTypeId().
Pointer to Derived class.
Definition at line 521 of file attribute-test-suite.cc.
Referenced by GetTypeId().
|
private |
Random number generator.
Definition at line 505 of file attribute-test-suite.cc.
Referenced by GetTypeId().
|
private |
Time with bounds.
Definition at line 526 of file attribute-test-suite.cc.
Referenced by GetTypeId().
|
private |
|
private |
uint8_t Traced value.
Definition at line 522 of file attribute-test-suite.cc.
Referenced by GetTypeId().
Unordered map of uint64_t, derived objects.
Definition at line 510 of file attribute-test-suite.cc.
Referenced by AddToUnorderedMap(), GetTypeId(), and RemoveFromUnorderedMap().
|
private |
ValueClassTest Traced value.
Definition at line 518 of file attribute-test-suite.cc.
Referenced by GetTypeId().
First vector of derived objects.
Definition at line 506 of file attribute-test-suite.cc.
Referenced by AddToVector1(), and GetTypeId().
Second vector of derived objects.
Definition at line 507 of file attribute-test-suite.cc.
Referenced by AddToVector2(), DoGetVector(), and DoGetVectorN().