maintain list of DsrRreqTable entry More...
#include "dsr-rreq-table.h"
Classes | |
struct | IsExpired |
Check if the entry is expired or not. More... | |
Public Member Functions | |
DsrRreqTable () | |
virtual | ~DsrRreqTable () |
uint32_t | CheckUniqueRreqId (Ipv4Address dst) |
The following code generates new request id for each destination. More... | |
void | FindAndUpdate (Ipv4Address dst) |
Find the entry in the route request queue to see if already exists. More... | |
bool | FindSourceEntry (Ipv4Address src, Ipv4Address dst, uint16_t id) |
Find the source request entry in the route request queue, return false if not found. More... | |
BlackList * | FindUnidirectional (Ipv4Address neighbor) |
Verify if entry is unidirectional or not(e.g. More... | |
uint32_t | GetInitHopLimit () const |
Return the initial discovert hop limit. More... | |
uint32_t | GetRreqCnt (Ipv4Address dst) |
Get the request count number for one destination address. More... | |
uint32_t | GetRreqIdSize () const |
Return the maximum number of request source Ids in the request table. More... | |
uint32_t | GetRreqSize () |
Get the request id size. More... | |
uint32_t | GetRreqTableSize () const |
Return the maximum number of request entries in the request table. More... | |
uint32_t | GetUniqueRreqIdSize () const |
Return the maximum number of request Ids in the request table for a single destination. More... | |
void | Invalidate () |
set the unidirectional entry as QUESTIONABLE state More... | |
bool | MarkLinkAsUnidirectional (Ipv4Address neighbor, Time blacklistTimeout) |
Mark entry as unidirectional (e.g. More... | |
void | PurgeNeighbor () |
Remove all expired black list entries. More... | |
void | RemoveLeastExpire () |
Remove the least used entry. More... | |
void | RemoveRreqEntry (Ipv4Address dst) |
Remove route request entry for dst. More... | |
void | SetInitHopLimit (uint32_t hl) |
Set the initial discovert hop limit. More... | |
void | SetRreqIdSize (uint32_t id) |
Set the maximum number of request source Ids in the request table. More... | |
void | SetRreqTableSize (uint32_t rt) |
Set the maximum number of request entries in the request table. More... | |
void | SetUniqueRreqIdSize (uint32_t uid) |
Set the maximum number of request Ids in the request table for a single destination. More... | |
Public Member Functions inherited from ns3::Object | |
Object () | |
Constructor. More... | |
virtual | ~Object () |
Destructor. More... | |
void | AggregateObject (Ptr< Object > other) |
Aggregate two Objects together. More... | |
void | Dispose (void) |
Dispose of this Object. More... | |
AggregateIterator | GetAggregateIterator (void) const |
Get an iterator to the Objects aggregated to this one. More... | |
virtual TypeId | GetInstanceTypeId (void) const |
Get the most derived TypeId for this Object. More... | |
template<> | |
Ptr< Object > | GetObject () const |
Specialization of () for objects of type ns3::Object. More... | |
template<typename T > | |
Ptr< T > | GetObject (TypeId tid) const |
Get a pointer to the requested aggregated Object by TypeId. More... | |
template<> | |
Ptr< Object > | GetObject (TypeId tid) const |
Specialization of (TypeId tid) for objects of type ns3::Object. More... | |
template<typename T > | |
Ptr< T > | GetObject (void) const |
Get a pointer to the requested aggregated Object. More... | |
void | Initialize (void) |
Invoke DoInitialize on all Objects aggregated to this one. More... | |
bool | IsInitialized (void) const |
Check if the object has been initialized. More... | |
Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter > | |
SimpleRefCount () | |
Default constructor. More... | |
SimpleRefCount (const SimpleRefCount &o[[maybe_unused]]) | |
Copy constructor. More... | |
uint32_t | GetReferenceCount (void) const |
Get the reference count of the object. More... | |
SimpleRefCount & | operator= ([[maybe_unused]] const SimpleRefCount &o) |
Assignment operator. More... | |
void | Ref (void) const |
Increment the reference count. More... | |
void | Unref (void) const |
Decrement the reference count. More... | |
Public Member Functions inherited from ns3::ObjectBase | |
virtual | ~ObjectBase () |
Virtual destructor. More... | |
void | GetAttribute (std::string name, AttributeValue &value) const |
Get the value of an attribute, raising fatal errors if unsuccessful. More... | |
bool | GetAttributeFailSafe (std::string name, AttributeValue &value) const |
Get the value of an attribute without raising erros. More... | |
void | SetAttribute (std::string name, const AttributeValue &value) |
Set a single attribute, raising fatal errors if unsuccessful. More... | |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
Set a single attribute without raising errors. More... | |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
Connect a TraceSource to a Callback with a context. More... | |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
Connect a TraceSource to a Callback without a context. More... | |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected with a context. More... | |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected without a context. More... | |
Static Public Member Functions | |
static TypeId | GetTypeId () |
Get the type ID. More... | |
Static Public Member Functions inherited from ns3::Object | |
static TypeId | GetTypeId (void) |
Register this type. More... | |
Static Public Member Functions inherited from ns3::ObjectBase | |
static TypeId | GetTypeId (void) |
Get the type ID. More... | |
Private Attributes | |
std::vector< BlackList > | m_blackList |
The Black list. More... | |
uint32_t | m_initHopLimit |
The initial hop limit. More... | |
LinkStates | m_linkStates |
The state of the unidirectional link. More... | |
uint32_t | m_maxRreqId |
The unique request id for any destination. More... | |
uint32_t | m_requestIdSize |
The request source id size. More... | |
uint32_t | m_requestTableSize |
The request table size. More... | |
std::map< Ipv4Address, RreqTableEntry > | m_rreqDstMap |
The cache to save route request table entries indexed with destination address. More... | |
Time | m_rreqEntryExpire |
The source route entry expire time. More... | |
std::map< Ipv4Address, uint32_t > | m_rreqIdCache |
The id cache to ensure all the ids are unique, it is used when sending out route request. More... | |
std::list< DsrReceivedRreqEntry > | m_sourceRequests |
Map of entries. More... | |
std::map< Ipv4Address, std::list< DsrReceivedRreqEntry > > | m_sourceRreqMap |
The cache to ensure all the route request from unique source. More... | |
Time | MaxRequestPeriod |
The max request period among requests. More... | |
Time | NonpropRequestTimeout |
The non-propagaton request timeout. More... | |
Time | RequestPeriod |
The original request period. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from ns3::Object | |
Object (const Object &o) | |
Copy an Object. More... | |
virtual void | DoDispose (void) |
Destructor implementation. More... | |
virtual void | DoInitialize (void) |
Initialize() implementation. More... | |
virtual void | NotifyNewAggregate (void) |
Notify all Objects aggregated to this one of a new Object being aggregated. More... | |
Protected Member Functions inherited from ns3::ObjectBase | |
void | ConstructSelf (const AttributeConstructionList &attributes) |
Complete construction of ObjectBase; invoked by derived classes. More... | |
virtual void | NotifyConstructionCompleted (void) |
Notifier called once the ObjectBase is fully constructed. More... | |
Related Functions inherited from ns3::ObjectBase | |
static TypeId | GetObjectIid (void) |
Ensure the TypeId for ObjectBase gets fully configured to anchor the inheritance tree properly. More... | |
maintain list of DsrRreqTable entry
ns3::dsr::DsrRreqTable is accessible through the following paths with Config::Set and Config::Connect:
No Attributes are defined for this type.
No TraceSources are defined for this type.
Size of this type is 280 bytes (on a 64-bit architecture).
Definition at line 199 of file dsr-rreq-table.h.
ns3::dsr::DsrRreqTable::DsrRreqTable | ( | ) |
Definition at line 55 of file dsr-rreq-table.cc.
|
virtual |
Definition at line 60 of file dsr-rreq-table.cc.
References NS_LOG_FUNCTION_NOARGS.
uint32_t ns3::dsr::DsrRreqTable::CheckUniqueRreqId | ( | Ipv4Address | dst | ) |
The following code generates new request id for each destination.
Check for duplicate ids and save new entries if the id is not present in the table.
dst | IPv4 address of the destination |
Definition at line 159 of file dsr-rreq-table.cc.
References m_maxRreqId, m_rreqIdCache, NS_LOG_DEBUG, NS_LOG_INFO, and NS_LOG_LOGIC.
void ns3::dsr::DsrRreqTable::FindAndUpdate | ( | Ipv4Address | dst | ) |
Find the entry in the route request queue to see if already exists.
dst | Destination IP |
Definition at line 86 of file dsr-rreq-table.cc.
References ns3::dsr::RreqTableEntry::m_expire, ns3::dsr::RreqTableEntry::m_reqNo, m_requestTableSize, m_rreqDstMap, ns3::Simulator::Now(), NS_LOG_FUNCTION, NS_LOG_INFO, NS_LOG_LOGIC, and RemoveLeastExpire().
bool ns3::dsr::DsrRreqTable::FindSourceEntry | ( | Ipv4Address | src, |
Ipv4Address | dst, | ||
uint16_t | id | ||
) |
Find the source request entry in the route request queue, return false if not found.
src | the source address we just received the source request |
dst | the destination address the request is targeted at |
id | the identification number for this request |
Clear the received source request entry
Check if we have found one duplication entry or not
if this entry is not found, we need to save the entry in the cache, and then return false for the check
Definition at line 256 of file dsr-rreq-table.cc.
References m_requestIdSize, m_sourceRreqMap, NS_LOG_FUNCTION, NS_LOG_LOGIC, ns3::dsr::DsrReceivedRreqEntry::SetDestination(), and ns3::dsr::DsrReceivedRreqEntry::SetIdentification().
BlackList * ns3::dsr::DsrRreqTable::FindUnidirectional | ( | Ipv4Address | neighbor | ) |
Verify if entry is unidirectional or not(e.g.
add this neighbor to "blacklist" for blacklistTimeout period)
neighbor | neighbor address link to which assumed to be unidirectional |
Definition at line 212 of file dsr-rreq-table.cc.
References m_blackList, and PurgeNeighbor().
|
inline |
Return the initial discovert hop limit.
Definition at line 225 of file dsr-rreq-table.h.
References m_initHopLimit.
uint32_t ns3::dsr::DsrRreqTable::GetRreqCnt | ( | Ipv4Address | dst | ) |
Get the request count number for one destination address.
dst | Destination IP |
Definition at line 136 of file dsr-rreq-table.cc.
References ns3::dsr::RreqTableEntry::m_reqNo, m_rreqDstMap, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
|
inline |
Return the maximum number of request source Ids in the request table.
Definition at line 265 of file dsr-rreq-table.h.
References m_requestIdSize.
uint32_t ns3::dsr::DsrRreqTable::GetRreqSize | ( | ) |
Get the request id size.
Definition at line 191 of file dsr-rreq-table.cc.
References m_rreqIdCache.
|
inline |
Return the maximum number of request entries in the request table.
Definition at line 245 of file dsr-rreq-table.h.
References m_requestTableSize.
|
static |
Get the type ID.
Definition at line 45 of file dsr-rreq-table.cc.
References ns3::TypeId::SetParent().
|
inline |
Return the maximum number of request Ids in the request table for a single destination.
Definition at line 285 of file dsr-rreq-table.h.
References m_maxRreqId.
void ns3::dsr::DsrRreqTable::Invalidate | ( | ) |
set the unidirectional entry as QUESTIONABLE state
Definition at line 202 of file dsr-rreq-table.cc.
References m_linkStates, and ns3::dsr::QUESTIONABLE.
bool ns3::dsr::DsrRreqTable::MarkLinkAsUnidirectional | ( | Ipv4Address | neighbor, |
Time | blacklistTimeout | ||
) |
Mark entry as unidirectional (e.g.
add this neighbor to "blacklist" for blacklistTimeout period)
neighbor | - neighbor address link to which assumed to be unidirectional |
blacklistTimeout | - time for which the neighboring node is put into the blacklist |
Definition at line 227 of file dsr-rreq-table.cc.
References m_blackList, max, ns3::Simulator::Now(), NS_LOG_DEBUG, NS_LOG_LOGIC, and PurgeNeighbor().
void ns3::dsr::DsrRreqTable::PurgeNeighbor | ( | ) |
Remove all expired black list entries.
Definition at line 246 of file dsr-rreq-table.cc.
References m_blackList.
Referenced by FindUnidirectional(), and MarkLinkAsUnidirectional().
void ns3::dsr::DsrRreqTable::RemoveLeastExpire | ( | ) |
Remove the least used entry.
Definition at line 66 of file dsr-rreq-table.cc.
References ns3::dsr::RreqTableEntry::m_expire, m_rreqDstMap, max, NS_LOG_FUNCTION, and ns3::Seconds().
Referenced by FindAndUpdate().
void ns3::dsr::DsrRreqTable::RemoveRreqEntry | ( | Ipv4Address | dst | ) |
Remove route request entry for dst.
dst | Destination IP |
Definition at line 119 of file dsr-rreq-table.cc.
References m_rreqDstMap, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
|
inline |
Set the initial discovert hop limit.
hl | the initial discovert hop limit |
Definition at line 216 of file dsr-rreq-table.h.
References m_initHopLimit.
|
inline |
Set the maximum number of request source Ids in the request table.
id | the maximum number of request source Ids |
Definition at line 255 of file dsr-rreq-table.h.
References m_requestIdSize.
|
inline |
Set the maximum number of request entries in the request table.
rt | the maximum number of request entries |
Definition at line 235 of file dsr-rreq-table.h.
References m_requestTableSize.
|
inline |
Set the maximum number of request Ids in the request table for a single destination.
uid | the maximum number of request Ids |
Definition at line 275 of file dsr-rreq-table.h.
References m_maxRreqId.
|
private |
The Black list.
Definition at line 378 of file dsr-rreq-table.h.
Referenced by FindUnidirectional(), MarkLinkAsUnidirectional(), and PurgeNeighbor().
|
private |
The initial hop limit.
Definition at line 359 of file dsr-rreq-table.h.
Referenced by GetInitHopLimit(), and SetInitHopLimit().
|
private |
The state of the unidirectional link.
Definition at line 367 of file dsr-rreq-table.h.
Referenced by Invalidate().
|
private |
The unique request id for any destination.
Definition at line 365 of file dsr-rreq-table.h.
Referenced by CheckUniqueRreqId(), GetUniqueRreqIdSize(), and SetUniqueRreqIdSize().
|
private |
The request source id size.
Definition at line 363 of file dsr-rreq-table.h.
Referenced by FindSourceEntry(), GetRreqIdSize(), and SetRreqIdSize().
|
private |
The request table size.
Definition at line 361 of file dsr-rreq-table.h.
Referenced by FindAndUpdate(), GetRreqTableSize(), and SetRreqTableSize().
|
private |
The cache to save route request table entries indexed with destination address.
Definition at line 373 of file dsr-rreq-table.h.
Referenced by FindAndUpdate(), GetRreqCnt(), RemoveLeastExpire(), and RemoveRreqEntry().
|
private |
The source route entry expire time.
Definition at line 357 of file dsr-rreq-table.h.
|
private |
The id cache to ensure all the ids are unique, it is used when sending out route request.
Definition at line 371 of file dsr-rreq-table.h.
Referenced by CheckUniqueRreqId(), and GetRreqSize().
|
private |
Map of entries.
Definition at line 369 of file dsr-rreq-table.h.
|
private |
The cache to ensure all the route request from unique source.
Definition at line 375 of file dsr-rreq-table.h.
Referenced by FindSourceEntry().
|
private |
The max request period among requests.
Definition at line 351 of file dsr-rreq-table.h.
|
private |
The non-propagaton request timeout.
Definition at line 355 of file dsr-rreq-table.h.
|
private |
The original request period.
Definition at line 353 of file dsr-rreq-table.h.