General error model that can be used to corrupt packets. More...
#include <error-model.h>
Public Member Functions | |
ErrorModel () | |
virtual | ~ErrorModel () |
void | Disable (void) |
Disable the error model. More... | |
void | Enable (void) |
Enable the error model. More... | |
bool | IsCorrupt (Ptr< Packet > pkt) |
Note: Depending on the error model, this function may or may not alter the contents of the packet upon returning true. More... | |
bool | IsEnabled (void) const |
void | Reset (void) |
Reset any state associated with the error model. More... | |
![]() | |
Object () | |
virtual | ~Object () |
void | AggregateObject (Ptr< Object > other) |
void | Dispose (void) |
Run the DoDispose methods of this object and all the objects aggregated to it. More... | |
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 | Initialize (void) |
This method calls the virtual DoInitialize method on all the objects aggregated to this object. More... | |
![]() | |
SimpleRefCount () | |
Constructor. More... | |
SimpleRefCount (const SimpleRefCount &o) | |
Copy constructor. More... | |
uint32_t | GetReferenceCount (void) const |
Get the reference count of the object. More... | |
SimpleRefCount & | operator= (const SimpleRefCount &o) |
Assignment. More... | |
void | Ref (void) const |
Increment the reference count. More... | |
void | Unref (void) const |
Decrement the reference count. More... | |
![]() | |
virtual | ~ObjectBase () |
Virtual destructor. More... | |
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) |
Get the type ID. More... | |
![]() | |
static TypeId | GetTypeId (void) |
Register this type. More... | |
![]() | |
static void | Cleanup (void) |
Noop. More... | |
![]() | |
static TypeId | GetTypeId (void) |
Get the type ID. More... | |
Private Member Functions | |
virtual bool | DoCorrupt (Ptr< Packet > p)=0 |
Corrupt a packet according to the specified model. More... | |
virtual void | DoReset (void)=0 |
Re-initialize any state. More... | |
Private Attributes | |
bool | m_enable |
True if the error model is enabled. More... | |
Additional Inherited Members | |
![]() | |
Object (const Object &o) | |
virtual void | DoDispose (void) |
This method is called by Object::Dispose or by the object's destructor, whichever comes first. More... | |
virtual void | DoInitialize (void) |
This method is called only once by Object::Initialize. More... | |
virtual void | NotifyNewAggregate (void) |
This method is invoked whenever two sets of objects are aggregated together. More... | |
![]() | |
void | ConstructSelf (const AttributeConstructionList &attributes) |
virtual void | NotifyConstructionCompleted (void) |
This method is invoked once all member attributes have been initialized. More... | |
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:
Four practical error models, a RateErrorModel, a BurstErrorModel, a ListErrorModel, and a ReceiveListErrorModel, 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 115 of file error-model.h.
ns3::ErrorModel::ErrorModel | ( | ) |
Definition at line 94 of file error-model.cc.
References NS_LOG_FUNCTION.
|
virtual |
Definition at line 100 of file error-model.cc.
References NS_LOG_FUNCTION.
void ns3::ErrorModel::Disable | ( | void | ) |
Disable the error model.
Definition at line 131 of file error-model.cc.
References m_enable, and NS_LOG_FUNCTION.
Referenced by Ipv4FragmentationTest::DoRun(), SixlowpanFragmentationTest::DoRun(), and Ipv6FragmentationTest::DoRun().
Corrupt a packet according to the specified model.
p | the packet to corrupt |
Implemented in ns3::ReceiveListErrorModel, ns3::ListErrorModel, ns3::BurstErrorModel, ns3::RateErrorModel, ns3::BinaryErrorSixlowModel, and ns3::BinaryErrorModel.
Referenced by IsCorrupt().
|
privatepure virtual |
Re-initialize any state.
Implemented in ns3::ReceiveListErrorModel, ns3::ListErrorModel, ns3::BurstErrorModel, ns3::RateErrorModel, ns3::BinaryErrorSixlowModel, and ns3::BinaryErrorModel.
Referenced by Reset().
void ns3::ErrorModel::Enable | ( | void | ) |
Enable the error model.
Definition at line 124 of file error-model.cc.
References m_enable, and NS_LOG_FUNCTION.
Referenced by Ipv4FragmentationTest::DoRun(), SixlowpanFragmentationTest::DoRun(), and Ipv6FragmentationTest::DoRun().
|
static |
Get the type ID.
Definition at line 82 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 106 of file error-model.cc.
References DoCorrupt(), and NS_LOG_FUNCTION.
bool ns3::ErrorModel::IsEnabled | ( | void | ) | const |
Definition at line 138 of file error-model.cc.
References m_enable, and NS_LOG_FUNCTION.
Referenced by ns3::BinaryErrorModel::DoCorrupt(), ns3::BinaryErrorSixlowModel::DoCorrupt(), ns3::RateErrorModel::DoCorrupt(), ns3::BurstErrorModel::DoCorrupt(), ns3::ListErrorModel::DoCorrupt(), and ns3::ReceiveListErrorModel::DoCorrupt().
void ns3::ErrorModel::Reset | ( | void | ) |
Reset any state associated with the error model.
Definition at line 117 of file error-model.cc.
References DoReset(), and NS_LOG_FUNCTION.
|
private |
True if the error model is enabled.
Definition at line 164 of file error-model.h.
Referenced by Disable(), Enable(), GetTypeId(), and IsEnabled().