General error model that can be used to corrupt packets. More...
#include <error-model.h>
Public Member Functions | |
ErrorModel () | |
virtual | ~ErrorModel () |
void | Disable (void) |
void | Enable (void) |
bool | IsCorrupt (Ptr< Packet > pkt) |
bool | IsEnabled (void) const |
void | Reset (void) |
![]() | |
Object () | |
virtual | ~Object () |
void | AggregateObject (Ptr< Object > other) |
void | Dispose (void) |
AggregateIterator | GetAggregateIterator (void) const |
virtual TypeId | GetInstanceTypeId (void) const |
template<typename T > | |
Ptr< T > | GetObject (void) const |
template<typename T > | |
Ptr< T > | GetObject (TypeId tid) const |
void | Start (void) |
![]() | |
SimpleRefCount () | |
SimpleRefCount (const SimpleRefCount &o) | |
uint32_t | GetReferenceCount (void) const |
SimpleRefCount & | operator= (const SimpleRefCount &o) |
void | Ref (void) const |
void | Unref (void) const |
![]() | |
virtual | ~ObjectBase () |
void | GetAttribute (std::string name, AttributeValue &value) const |
bool | GetAttributeFailSafe (std::string name, AttributeValue &attribute) const |
void | SetAttribute (std::string name, const AttributeValue &value) |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
Static Public Member Functions | |
static TypeId | GetTypeId (void) |
Private Member Functions | |
virtual bool | DoCorrupt (Ptr< Packet >)=0 |
virtual void | DoReset (void)=0 |
Private Attributes | |
bool | m_enable |
Additional Inherited Members | |
![]() | |
Object (const Object &o) | |
virtual void | DoDispose (void) |
virtual void | DoStart (void) |
virtual void | NotifyNewAggregate (void) |
General error model that can be used to corrupt packets.
This object is used to flag packets as being lost/errored or not. It is part of the Object framework and can be aggregated to other ns3 objects and handled by the Ptr class.
The main method is IsCorrupt(Ptr<Packet> p) which returns true if the packet is to be corrupted according to the underlying model. Depending on the error model, the packet itself may have its packet data buffer errored or not, or side information may be returned to the client in the form of a packet tag. (Note: No such error models that actually error the bits in a packet presently exist). The object can have state (resettable by Reset()). The object can also be enabled and disabled via two public member functions.
Typical code (simplified) to use an ErrorModel may look something like this:
Two practical error models, a ListErrorModel and a RateErrorModel, are currently implemented.
ns3::ErrorModel is accessible through the following paths with Config::Set and Config::Connect:
No TraceSources are defined for this type.
Definition at line 107 of file error-model.h.
ns3::ErrorModel::ErrorModel | ( | ) |
Definition at line 86 of file error-model.cc.
References NS_LOG_FUNCTION.
|
virtual |
Definition at line 92 of file error-model.cc.
References NS_LOG_FUNCTION.
void ns3::ErrorModel::Disable | ( | void | ) |
Disable the error model
Definition at line 123 of file error-model.cc.
References m_enable, and NS_LOG_FUNCTION.
Referenced by Ipv4FragmentationTest::DoRun(), and Ipv6FragmentationTest::DoRun().
|
privatepure virtual |
void ns3::ErrorModel::Enable | ( | void | ) |
Enable the error model
Definition at line 116 of file error-model.cc.
References m_enable, and NS_LOG_FUNCTION.
Referenced by Ipv4FragmentationTest::DoRun(), and Ipv6FragmentationTest::DoRun().
|
static |
Reimplemented from ns3::Object.
Reimplemented in ns3::ReceiveListErrorModel, ns3::ListErrorModel, ns3::RateErrorModel, and ns3::BinaryErrorModel.
Definition at line 74 of file error-model.cc.
References m_enable, and ns3::TypeId::SetParent().
Note: Depending on the error model, this function may or may not alter the contents of the packet upon returning true.
pkt | Packet to apply error model to |
Definition at line 98 of file error-model.cc.
References DoCorrupt(), and NS_LOG_FUNCTION.
Referenced by ns3::ErrorNetDevice::Receive(), ns3::SimpleNetDevice::Receive(), ns3::PointToPointNetDevice::Receive(), and ns3::CsmaNetDevice::Receive().
bool ns3::ErrorModel::IsEnabled | ( | void | ) | const |
Definition at line 130 of file error-model.cc.
References m_enable, and NS_LOG_FUNCTION.
Referenced by ns3::BinaryErrorModel::DoCorrupt(), ns3::RateErrorModel::DoCorrupt(), ns3::ListErrorModel::DoCorrupt(), and ns3::ReceiveListErrorModel::DoCorrupt().
void ns3::ErrorModel::Reset | ( | void | ) |
Reset any state associated with the error model
Reimplemented in ns3::BinaryErrorModel.
Definition at line 109 of file error-model.cc.
References DoReset(), and NS_LOG_FUNCTION.
|
private |
Definition at line 147 of file error-model.h.
Referenced by Disable(), Enable(), GetTypeId(), and IsEnabled().