A Error channel, introducing deterministic delays on even/odd packets. More...
#include "error-channel.h"
Public Member Functions | |
ErrorChannel () | |
void | Add (Ptr< SimpleNetDevice > device) override |
Attached a net device to the channel. | |
Ptr< NetDevice > | GetDevice (std::size_t i) const override |
std::size_t | GetNDevices () const override |
void | Send (Ptr< Packet > p, uint16_t protocol, Mac48Address to, Mac48Address from, Ptr< SimpleNetDevice > sender) override |
A packet is sent by a net device. | |
void | SetDuplicateMode (bool mode) |
Set if the odd packets are duplicated (even ones are not duplicated ever) | |
void | SetDuplicateTime (Time delay) |
Set the delay for the odd duplicate packets (even ones are not duplicated) | |
void | SetJumpingMode (bool mode) |
Set if the odd packets are delayed (even ones are not delayed ever) | |
void | SetJumpingTime (Time delay) |
Set the delay for the odd packets (even ones are not delayed) | |
Public Member Functions inherited from ns3::SimpleChannel | |
SimpleChannel () | |
virtual void | BlackList (Ptr< SimpleNetDevice > from, Ptr< SimpleNetDevice > to) |
Blocks the communications from a NetDevice to another NetDevice. | |
Ptr< NetDevice > | GetDevice (std::size_t i) const override |
std::size_t | GetNDevices () const override |
virtual void | UnBlackList (Ptr< SimpleNetDevice > from, Ptr< SimpleNetDevice > to) |
Un-Blocks the communications from a NetDevice to another NetDevice. | |
Public Member Functions inherited from ns3::Channel | |
Channel () | |
~Channel () override | |
uint32_t | GetId () const |
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::SimpleChannel | |
static TypeId | GetTypeId () |
Get the type ID. | |
Static Public Member Functions inherited from ns3::Channel | |
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 Attributes | |
std::vector< Ptr< SimpleNetDevice > > | m_devices |
devices connected by the channel | |
bool | m_duplicate |
Flag for Duplicate mode. | |
uint8_t | m_duplicateState |
Counter for even/odd packets in Duplicate mode. | |
Time | m_duplicateTime |
Duplicate time in Duplicate mode. | |
bool | m_jumping |
Flag for Jumping mode. | |
uint8_t | m_jumpingState |
Counter for even/odd packets in Jumping mode. | |
Time | m_jumpingTime |
Delay time in Jumping mode. | |
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 Symbols inherited from ns3::ObjectBase | |
static TypeId | GetObjectIid () |
Ensure the TypeId for ObjectBase gets fully configured to anchor the inheritance tree properly. | |
A Error channel, introducing deterministic delays on even/odd packets.
Used for testing
Definition at line 30 of file error-channel.h.
ns3::ErrorChannel::ErrorChannel | ( | ) |
Definition at line 35 of file error-channel.cc.
References m_duplicate, m_duplicateState, m_duplicateTime, m_jumping, m_jumpingState, m_jumpingTime, and ns3::Seconds().
|
overridevirtual |
Attached a net device to the channel.
device | the device to attach to the channel |
Reimplemented from ns3::SimpleChannel.
Definition at line 161 of file error-channel.cc.
References m_devices.
i | index of NetDevice to retrieve |
This method must be implemented by subclasses.
Implements ns3::Channel.
Definition at line 173 of file error-channel.cc.
References m_devices.
|
overridevirtual |
This method must be implemented by subclasses.
Implements ns3::Channel.
Definition at line 167 of file error-channel.cc.
References m_devices.
|
static |
Get the type ID.
Definition at line 26 of file error-channel.cc.
References ns3::TypeId::SetParent().
|
overridevirtual |
A packet is sent by a net device.
A receive event will be scheduled for all net device connected to the channel other than the net device who sent the packet
p | packet to be sent |
protocol | protocol number |
to | address to send packet to |
from | address the packet is coming from |
sender | netdevice who sent the packet |
Reimplemented from ns3::SimpleChannel.
Definition at line 72 of file error-channel.cc.
References m_devices, m_duplicate, m_duplicateState, m_duplicateTime, m_jumping, m_jumpingState, m_jumpingTime, NS_LOG_FUNCTION, ns3::SimpleNetDevice::Receive(), ns3::Simulator::ScheduleWithContext(), and ns3::Seconds().
void ns3::ErrorChannel::SetDuplicateMode | ( | bool | mode | ) |
Set if the odd packets are duplicated (even ones are not duplicated ever)
mode | true if the odd packets should be duplicated. |
Definition at line 65 of file error-channel.cc.
References m_duplicate, and m_duplicateState.
void ns3::ErrorChannel::SetDuplicateTime | ( | Time | delay | ) |
Set the delay for the odd duplicate packets (even ones are not duplicated)
delay | Delay for the odd packets. |
Definition at line 59 of file error-channel.cc.
References m_duplicateTime.
void ns3::ErrorChannel::SetJumpingMode | ( | bool | mode | ) |
Set if the odd packets are delayed (even ones are not delayed ever)
mode | true if the odd packets should be delayed. |
Definition at line 52 of file error-channel.cc.
References m_jumping, and m_jumpingState.
void ns3::ErrorChannel::SetJumpingTime | ( | Time | delay | ) |
Set the delay for the odd packets (even ones are not delayed)
delay | Delay for the odd packets. |
Definition at line 46 of file error-channel.cc.
References m_jumpingTime.
|
private |
devices connected by the channel
Definition at line 78 of file error-channel.h.
Referenced by Add(), GetDevice(), GetNDevices(), and Send().
|
private |
Flag for Duplicate mode.
Definition at line 83 of file error-channel.h.
Referenced by ErrorChannel(), Send(), and SetDuplicateMode().
|
private |
Counter for even/odd packets in Duplicate mode.
Definition at line 84 of file error-channel.h.
Referenced by ErrorChannel(), Send(), and SetDuplicateMode().
|
private |
Duplicate time in Duplicate mode.
Definition at line 82 of file error-channel.h.
Referenced by ErrorChannel(), Send(), and SetDuplicateTime().
|
private |
Flag for Jumping mode.
Definition at line 81 of file error-channel.h.
Referenced by ErrorChannel(), Send(), and SetJumpingMode().
|
private |
Counter for even/odd packets in Jumping mode.
Definition at line 80 of file error-channel.h.
Referenced by ErrorChannel(), Send(), and SetJumpingMode().
|
private |
Delay time in Jumping mode.
Definition at line 79 of file error-channel.h.
Referenced by ErrorChannel(), Send(), and SetJumpingTime().