This class implements a testing RRC entity. More...
#include "lte-test-entities.h"
Public Member Functions | |
LteTestRrc () | |
~LteTestRrc () override | |
void | DoDispose () override |
Destructor implementation. | |
std::string | GetDataReceived () |
Get data received function. | |
LtePdcpSapUser * | GetLtePdcpSapUser () |
Get the PDCP SAP user. | |
uint32_t | GetRxBytes () |
Get the receive bytes. | |
Time | GetRxLastTime () |
Get the last receive time. | |
uint32_t | GetRxPdus () |
Get the receive PDUs. | |
uint32_t | GetTxBytes () |
Get the transmit bytes. | |
Time | GetTxLastTime () |
Get the last transmit time. | |
uint32_t | GetTxPdus () |
Get the transmit PDUs. | |
void | SendData (Time at, std::string dataToSend) |
Send data function. | |
void | SetArrivalTime (Time arrivalTime) |
Set the arrival time. | |
void | SetDevice (Ptr< NetDevice > device) |
Set the device. | |
void | SetLtePdcpSapProvider (LtePdcpSapProvider *s) |
Set the PDCP SAP provider. | |
void | SetPduSize (uint32_t pduSize) |
Set the PDU size. | |
void | Start () |
Start function. | |
void | Stop () |
Stop function. | |
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. | |
void | UnidirectionalAggregateObject (Ptr< Object > other) |
Aggregate an Object to another Object. | |
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, bool permissive=false) 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. | |
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 Member Functions | |
virtual void | DoReceivePdcpSdu (LtePdcpSapUser::ReceivePdcpSduParameters params) |
Interface forwarded by LtePdcpSapUser. | |
Private Attributes | |
Time | m_arrivalTime |
next arrival time | |
Ptr< NetDevice > | m_device |
the device | |
EventId | m_nextPdu |
next PDU event | |
LtePdcpSapProvider * | m_pdcpSapProvider |
PDCP SAP provider. | |
LtePdcpSapUser * | m_pdcpSapUser |
PDCP SAP user. | |
uint32_t | m_pduSize |
PDU size. | |
std::string | m_receivedData |
the received data | |
uint32_t | m_rxBytes |
number of receive bytes | |
Time | m_rxLastTime |
last reeive time | |
uint32_t | m_rxPdus |
number of receive PDUs | |
uint32_t | m_txBytes |
number of transmit bytes | |
Time | m_txLastTime |
last transmit time | |
uint32_t | m_txPdus |
number of transmit PDUs | |
Friends | |
class | LtePdcpSpecificLtePdcpSapUser< LteTestRrc > |
allow LtePdcpSpecificLtePdcpSapUser<LteTestRrc> class friend access | |
Additional Inherited Members | |
Protected Member Functions inherited from ns3::Object | |
Object (const Object &o) | |
Copy an Object. | |
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 Symbols inherited from ns3::ObjectBase | |
static TypeId | GetObjectIid () |
Ensure the TypeId for ObjectBase gets fully configured to anchor the inheritance tree properly. | |
This class implements a testing RRC entity.
Definition at line 28 of file lte-test-entities.h.
ns3::LteTestRrc::LteTestRrc | ( | ) |
Definition at line 33 of file lte-test-entities.cc.
References LtePdcpSpecificLtePdcpSapUser< LteTestRrc >, m_pdcpSapUser, m_rxBytes, m_rxLastTime, m_rxPdus, m_txBytes, m_txLastTime, m_txPdus, and NS_LOG_FUNCTION.
|
override |
Definition at line 48 of file lte-test-entities.cc.
References NS_LOG_FUNCTION.
|
overridevirtual |
Destructor implementation.
This method is called by Dispose() or by the Object's destructor, whichever comes first.
Subclasses are expected to implement their real destruction code in an overridden version of this method and chain up to their parent's implementation once they are done. i.e, for simplicity, the destructor of every subclass should be empty and its content should be moved to the associated DoDispose() method.
It is safe to call GetObject() from within this method.
Reimplemented from ns3::Object.
Definition at line 54 of file lte-test-entities.cc.
References m_pdcpSapUser, and NS_LOG_FUNCTION.
|
privatevirtual |
Interface forwarded by LtePdcpSapUser.
PDCP SAP.
params | the LtePdcpSapUser::ReceivePdcpSduParameters |
Definition at line 147 of file lte-test-entities.cc.
References m_receivedData, m_rxBytes, m_rxLastTime, m_rxPdus, ns3::Simulator::Now(), and NS_LOG_FUNCTION.
std::string ns3::LteTestRrc::GetDataReceived | ( | ) |
Get data received function.
Definition at line 79 of file lte-test-entities.cc.
References m_receivedData, and NS_LOG_FUNCTION.
LtePdcpSapUser * ns3::LteTestRrc::GetLtePdcpSapUser | ( | ) |
Get the PDCP SAP user.
Definition at line 73 of file lte-test-entities.cc.
References m_pdcpSapUser.
uint32_t ns3::LteTestRrc::GetRxBytes | ( | ) |
Get the receive bytes.
Definition at line 108 of file lte-test-entities.cc.
References m_rxBytes, and NS_LOG_FUNCTION.
Time ns3::LteTestRrc::GetRxLastTime | ( | ) |
Get the last receive time.
Definition at line 122 of file lte-test-entities.cc.
References m_rxLastTime, and NS_LOG_FUNCTION.
uint32_t ns3::LteTestRrc::GetRxPdus | ( | ) |
Get the receive PDUs.
Definition at line 101 of file lte-test-entities.cc.
References m_rxPdus, and NS_LOG_FUNCTION.
uint32_t ns3::LteTestRrc::GetTxBytes | ( | ) |
Get the transmit bytes.
Definition at line 94 of file lte-test-entities.cc.
References m_txBytes, and NS_LOG_FUNCTION.
Time ns3::LteTestRrc::GetTxLastTime | ( | ) |
Get the last transmit time.
Definition at line 115 of file lte-test-entities.cc.
References m_txLastTime, and NS_LOG_FUNCTION.
uint32_t ns3::LteTestRrc::GetTxPdus | ( | ) |
Get the transmit PDUs.
Definition at line 87 of file lte-test-entities.cc.
References m_txPdus, and NS_LOG_FUNCTION.
|
static |
Get the type ID.
Definition at line 26 of file lte-test-entities.cc.
References ns3::TypeId::SetParent().
void ns3::LteTestRrc::SendData | ( | Time | at, |
std::string | dataToSend ) |
Send data function.
at | the time to send |
dataToSend | the data to send |
Definition at line 224 of file lte-test-entities.cc.
References ns3::Create(), ns3::Packet::GetSize(), ns3::LtePdcpSapProvider::TransmitPdcpSduParameters::lcid, m_pdcpSapProvider, m_txBytes, m_txPdus, NS_LOG_FUNCTION, NS_LOG_LOGIC, ns3::LtePdcpSapProvider::TransmitPdcpSduParameters::pdcpSdu, ns3::LtePdcpSapProvider::TransmitPdcpSduParameters::rnti, ns3::Simulator::Schedule(), and ns3::LtePdcpSapProvider::TransmitPdcpSdu().
void ns3::LteTestRrc::SetArrivalTime | ( | Time | arrivalTime | ) |
Set the arrival time.
arrivalTime | the arrival time |
Definition at line 129 of file lte-test-entities.cc.
References m_arrivalTime, and NS_LOG_FUNCTION.
Set the device.
device | the device |
Definition at line 61 of file lte-test-entities.cc.
References m_device.
void ns3::LteTestRrc::SetLtePdcpSapProvider | ( | LtePdcpSapProvider * | s | ) |
Set the PDCP SAP provider.
s | a pointer to the PDCP SAP provider |
Definition at line 67 of file lte-test-entities.cc.
References m_pdcpSapProvider.
void ns3::LteTestRrc::SetPduSize | ( | uint32_t | pduSize | ) |
Set the PDU size.
pduSize | the PDU size |
Definition at line 136 of file lte-test-entities.cc.
References m_pduSize, and NS_LOG_FUNCTION.
void ns3::LteTestRrc::Start | ( | ) |
Start function.
START.
Definition at line 174 of file lte-test-entities.cc.
References ns3::Create(), ns3::LtePdcpSapProvider::TransmitPdcpSduParameters::lcid, m_arrivalTime, m_device, m_nextPdu, m_pdcpSapProvider, m_pduSize, m_txBytes, m_txLastTime, m_txPdus, ns3::Simulator::Now(), NS_ASSERT_MSG, NS_LOG_FUNCTION, ns3::LtePdcpSapProvider::TransmitPdcpSduParameters::pdcpSdu, ns3::LtePdcpSapProvider::TransmitPdcpSduParameters::rnti, ns3::Simulator::Schedule(), ns3::Simulator::ScheduleWithContext(), ns3::Seconds(), Start(), and ns3::LtePdcpSapProvider::TransmitPdcpSdu().
Referenced by LteRlcAmE2eTestCase::DoRun(), LteRlcUmE2eTestCase::DoRun(), and Start().
void ns3::LteTestRrc::Stop | ( | ) |
Stop function.
Definition at line 217 of file lte-test-entities.cc.
References ns3::EventId::Cancel(), m_nextPdu, and NS_LOG_FUNCTION.
Referenced by LteRlcAmE2eTestCase::DoRun(), and LteRlcUmE2eTestCase::DoRun().
|
friend |
allow LtePdcpSpecificLtePdcpSapUser<LteTestRrc> class friend access
Definition at line 1 of file lte-test-entities.h.
Referenced by LteTestRrc().
|
private |
next arrival time
Definition at line 147 of file lte-test-entities.h.
Referenced by SetArrivalTime(), and Start().
the device
Definition at line 150 of file lte-test-entities.h.
Referenced by SetDevice(), and Start().
|
private |
next PDU event
Definition at line 146 of file lte-test-entities.h.
|
private |
PDCP SAP provider.
Definition at line 135 of file lte-test-entities.h.
Referenced by SendData(), SetLtePdcpSapProvider(), and Start().
|
private |
PDCP SAP user.
Definition at line 134 of file lte-test-entities.h.
Referenced by LteTestRrc(), DoDispose(), and GetLtePdcpSapUser().
|
private |
PDU size.
Definition at line 148 of file lte-test-entities.h.
Referenced by SetPduSize(), and Start().
|
private |
the received data
Definition at line 137 of file lte-test-entities.h.
Referenced by DoReceivePdcpSdu(), and GetDataReceived().
|
private |
number of receive bytes
Definition at line 142 of file lte-test-entities.h.
Referenced by LteTestRrc(), DoReceivePdcpSdu(), and GetRxBytes().
|
private |
last reeive time
Definition at line 144 of file lte-test-entities.h.
Referenced by LteTestRrc(), DoReceivePdcpSdu(), and GetRxLastTime().
|
private |
number of receive PDUs
Definition at line 141 of file lte-test-entities.h.
Referenced by LteTestRrc(), DoReceivePdcpSdu(), and GetRxPdus().
|
private |
number of transmit bytes
Definition at line 140 of file lte-test-entities.h.
Referenced by LteTestRrc(), GetTxBytes(), SendData(), and Start().
|
private |
last transmit time
Definition at line 143 of file lte-test-entities.h.
Referenced by LteTestRrc(), GetTxLastTime(), and Start().
|
private |
number of transmit PDUs
Definition at line 139 of file lte-test-entities.h.
Referenced by LteTestRrc(), GetTxPdus(), SendData(), and Start().