an implementation of the AARF-CD algorithmThis algorithm was first described in "Efficient Collision Detection for Auto Rate Fallback Algorithm". The implementation available here was done by Federico Maguolo for a very early development version of ns-3. Federico died before merging this work in ns-3 itself so his code was ported to ns-3 later without his supervision. More...
#include <aarfcd-wifi-manager.h>
Public Member Functions | |
AarfcdWifiManager () | |
virtual | ~AarfcdWifiManager () |
![]() | |
WifiRemoteStationManager () | |
virtual | ~WifiRemoteStationManager () |
void | AddBasicMode (WifiMode mode) |
void | AddSupportedMode (Mac48Address address, WifiMode mode) |
WifiMode | GetAckMode (Mac48Address address, WifiMode dataMode) |
WifiMode | GetBasicMode (uint32_t i) const |
WifiMode | GetCtsMode (Mac48Address address, WifiMode rtsMode) |
WifiMode | GetDataMode (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet, uint32_t fullPacketSize) |
WifiMode | GetDefaultMode (void) const |
uint32_t | GetFragmentationThreshold (void) const |
uint32_t | GetFragmentOffset (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet, uint32_t fragmentNumber) |
uint32_t | GetFragmentSize (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet, uint32_t fragmentNumber) |
WifiRemoteStationInfo | GetInfo (Mac48Address address) |
uint32_t | GetMaxSlrc (void) const |
uint32_t | GetMaxSsrc (void) const |
uint32_t | GetNBasicModes (void) const |
WifiMode | GetNonUnicastMode (void) const |
uint32_t | GetRtsCtsThreshold (void) const |
WifiMode | GetRtsMode (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet) |
bool | IsAssociated (Mac48Address address) const |
bool | IsBrandNew (Mac48Address address) const |
bool | IsLastFragment (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet, uint32_t fragmentNumber) |
bool | IsWaitAssocTxOk (Mac48Address address) const |
bool | NeedDataRetransmission (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet) |
bool | NeedFragmentation (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet) |
bool | NeedRts (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet) |
bool | NeedRtsRetransmission (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet) |
void | PrepareForQueue (Mac48Address address, const WifiMacHeader *header, Ptr< const Packet > packet, uint32_t fullPacketSize) |
void | RecordDisassociated (Mac48Address address) |
void | RecordGotAssocTxFailed (Mac48Address address) |
void | RecordGotAssocTxOk (Mac48Address address) |
void | RecordWaitAssocTxOk (Mac48Address address) |
void | ReportDataFailed (Mac48Address address, const WifiMacHeader *header) |
void | ReportDataOk (Mac48Address address, const WifiMacHeader *header, double ackSnr, WifiMode ackMode, double dataSnr) |
void | ReportFinalDataFailed (Mac48Address address, const WifiMacHeader *header) |
void | ReportFinalRtsFailed (Mac48Address address, const WifiMacHeader *header) |
void | ReportRtsFailed (Mac48Address address, const WifiMacHeader *header) |
void | ReportRtsOk (Mac48Address address, const WifiMacHeader *header, double ctsSnr, WifiMode ctsMode, double rtsSnr) |
void | ReportRxOk (Mac48Address address, const WifiMacHeader *header, double rxSnr, WifiMode txMode) |
void | Reset (void) |
void | Reset (Mac48Address address) |
void | SetFragmentationThreshold (uint32_t threshold) |
void | SetMaxSlrc (uint32_t maxSlrc) |
void | SetMaxSsrc (uint32_t maxSsrc) |
void | SetRtsCtsThreshold (uint32_t threshold) |
virtual void | SetupPhy (Ptr< WifiPhy > phy) |
![]() | |
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 | Initialize (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 Attributes | |
uint32_t | m_maxRtsWnd |
uint32_t | m_maxSuccessThreshold |
uint32_t | m_minRtsWnd |
uint32_t | m_minSuccessThreshold |
uint32_t | m_minTimerThreshold |
bool | m_rtsFailsAsDataFails |
double | m_successK |
double | m_timerK |
bool | m_turnOffRtsAfterRateDecrease |
bool | m_turnOnRtsAfterRateIncrease |
Additional Inherited Members | |
![]() | |
virtual void | DoDispose (void) |
uint32_t | GetNSupported (const WifiRemoteStation *station) const |
WifiMode | GetSupported (const WifiRemoteStation *station, uint32_t i) const |
an implementation of the AARF-CD algorithm
This algorithm was first described in "Efficient Collision Detection for Auto Rate Fallback Algorithm". The implementation available here was done by Federico Maguolo for a very early development version of ns-3. Federico died before merging this work in ns-3 itself so his code was ported to ns-3 later without his supervision.
ns3::AarfcdWifiManager is accessible through the following paths with Config::Set and Config::Connect:
No TraceSources are defined for this type.
Definition at line 38 of file aarfcd-wifi-manager.h.
ns3::AarfcdWifiManager::AarfcdWifiManager | ( | ) |
Definition at line 111 of file aarfcd-wifi-manager.cc.
References NS_LOG_FUNCTION.
|
virtual |
Definition at line 116 of file aarfcd-wifi-manager.cc.
References NS_LOG_FUNCTION.
|
private |
Definition at line 333 of file aarfcd-wifi-manager.cc.
References ns3::AarfcdWifiRemoteStation::m_rtsCounter, ns3::AarfcdWifiRemoteStation::m_rtsOn, NS_LOG_FUNCTION, and TurnOffRts().
Referenced by DoReportDataFailed(), and DoReportDataOk().
|
privatevirtual |
Definition at line 121 of file aarfcd-wifi-manager.cc.
References ns3::AarfcdWifiRemoteStation::m_failed, ns3::AarfcdWifiRemoteStation::m_haveASuccess, ns3::AarfcdWifiRemoteStation::m_justModifyRate, m_minRtsWnd, m_minSuccessThreshold, m_minTimerThreshold, ns3::AarfcdWifiRemoteStation::m_rate, ns3::AarfcdWifiRemoteStation::m_recovery, ns3::AarfcdWifiRemoteStation::m_retry, ns3::AarfcdWifiRemoteStation::m_rtsCounter, ns3::AarfcdWifiRemoteStation::m_rtsOn, ns3::AarfcdWifiRemoteStation::m_rtsWnd, ns3::AarfcdWifiRemoteStation::m_success, ns3::AarfcdWifiRemoteStation::m_successThreshold, ns3::AarfcdWifiRemoteStation::m_timer, ns3::AarfcdWifiRemoteStation::m_timerTimeout, and NS_LOG_FUNCTION.
|
privatevirtual |
Definition at line 298 of file aarfcd-wifi-manager.cc.
References ns3::WifiRemoteStationManager::GetSupported(), ns3::AarfcdWifiRemoteStation::m_rate, and NS_LOG_FUNCTION.
|
privatevirtual |
Definition at line 305 of file aarfcd-wifi-manager.cc.
References ns3::WifiRemoteStationManager::GetSupported(), and NS_LOG_FUNCTION.
|
privatevirtual |
Definition at line 315 of file aarfcd-wifi-manager.cc.
References ns3::AarfcdWifiRemoteStation::m_rate, ns3::AarfcdWifiRemoteStation::m_rtsCounter, ns3::AarfcdWifiRemoteStation::m_rtsOn, NS_LOG_FUNCTION, and NS_LOG_INFO.
|
privatevirtual |
It is important to realize that "recovery" mode starts after failure of the first transmission after a rate increase and ends at the first successful transmission. Specifically, recovery mode transcends retransmissions boundaries. Fundamentally, ARF handles each data transmission independently, whether it is the initial transmission of a packet or the retransmission of a packet. The fundamental reason for this is that there is a backoff between each data transmission, be it an initial transmission or a retransmission.
Definition at line 161 of file aarfcd-wifi-manager.cc.
References CheckRts(), IncreaseRtsWnd(), ns3::AarfcdWifiRemoteStation::m_failed, ns3::AarfcdWifiRemoteStation::m_haveASuccess, ns3::AarfcdWifiRemoteStation::m_justModifyRate, m_maxSuccessThreshold, m_minSuccessThreshold, m_minTimerThreshold, ns3::AarfcdWifiRemoteStation::m_rate, ns3::AarfcdWifiRemoteStation::m_recovery, ns3::AarfcdWifiRemoteStation::m_retry, ns3::AarfcdWifiRemoteStation::m_rtsCounter, ns3::AarfcdWifiRemoteStation::m_rtsOn, ns3::AarfcdWifiRemoteStation::m_rtsWnd, ns3::AarfcdWifiRemoteStation::m_success, m_successK, ns3::AarfcdWifiRemoteStation::m_successThreshold, ns3::AarfcdWifiRemoteStation::m_timer, m_timerK, ns3::AarfcdWifiRemoteStation::m_timerTimeout, m_turnOffRtsAfterRateDecrease, ns3::Max(), ns3::Min(), NS_ASSERT, NS_LOG_FUNCTION, ResetRtsWnd(), TurnOffRts(), and TurnOnRts().
|
privatevirtual |
Definition at line 254 of file aarfcd-wifi-manager.cc.
References CheckRts(), ns3::WifiRemoteStationManager::GetNSupported(), ns3::AarfcdWifiRemoteStation::m_failed, ns3::AarfcdWifiRemoteStation::m_haveASuccess, ns3::AarfcdWifiRemoteStation::m_justModifyRate, ns3::AarfcdWifiRemoteStation::m_rate, ns3::AarfcdWifiRemoteStation::m_recovery, ns3::AarfcdWifiRemoteStation::m_retry, ns3::AarfcdWifiRemoteStation::m_rtsCounter, ns3::AarfcdWifiRemoteStation::m_rtsWnd, ns3::AarfcdWifiRemoteStation::m_success, ns3::AarfcdWifiRemoteStation::m_successThreshold, ns3::AarfcdWifiRemoteStation::m_timer, ns3::AarfcdWifiRemoteStation::m_timerTimeout, m_turnOnRtsAfterRateIncrease, NS_LOG_DEBUG, NS_LOG_FUNCTION, ResetRtsWnd(), and TurnOnRts().
|
privatevirtual |
Definition at line 292 of file aarfcd-wifi-manager.cc.
References NS_LOG_FUNCTION.
|
privatevirtual |
Definition at line 287 of file aarfcd-wifi-manager.cc.
References NS_LOG_FUNCTION.
|
privatevirtual |
Definition at line 147 of file aarfcd-wifi-manager.cc.
References NS_LOG_FUNCTION.
|
privatevirtual |
Definition at line 245 of file aarfcd-wifi-manager.cc.
References ns3::AarfcdWifiRemoteStation::m_rtsCounter, NS_LOG_DEBUG, and NS_LOG_FUNCTION.
|
privatevirtual |
Definition at line 239 of file aarfcd-wifi-manager.cc.
References NS_LOG_FUNCTION.
|
static |
Reimplemented from ns3::WifiRemoteStationManager.
Definition at line 59 of file aarfcd-wifi-manager.cc.
References m_maxRtsWnd, m_maxSuccessThreshold, m_minRtsWnd, m_minSuccessThreshold, m_minTimerThreshold, m_successK, m_timerK, m_turnOffRtsAfterRateDecrease, m_turnOnRtsAfterRateIncrease, and ns3::TypeId::SetParent().
|
private |
Definition at line 358 of file aarfcd-wifi-manager.cc.
References m_maxRtsWnd, ns3::AarfcdWifiRemoteStation::m_rtsWnd, and NS_LOG_FUNCTION.
Referenced by DoReportDataFailed().
|
privatevirtual |
Definition at line 326 of file aarfcd-wifi-manager.cc.
References NS_LOG_FUNCTION.
|
private |
Definition at line 374 of file aarfcd-wifi-manager.cc.
References m_minRtsWnd, ns3::AarfcdWifiRemoteStation::m_rtsWnd, and NS_LOG_FUNCTION.
Referenced by DoReportDataFailed(), and DoReportDataOk().
|
private |
Definition at line 343 of file aarfcd-wifi-manager.cc.
References ns3::AarfcdWifiRemoteStation::m_haveASuccess, ns3::AarfcdWifiRemoteStation::m_rtsOn, and NS_LOG_FUNCTION.
Referenced by CheckRts(), and DoReportDataFailed().
|
private |
Definition at line 351 of file aarfcd-wifi-manager.cc.
References ns3::AarfcdWifiRemoteStation::m_rtsOn, and NS_LOG_FUNCTION.
Referenced by DoReportDataFailed(), and DoReportDataOk().
|
private |
Definition at line 79 of file aarfcd-wifi-manager.h.
Referenced by GetTypeId(), and IncreaseRtsWnd().
|
private |
Definition at line 74 of file aarfcd-wifi-manager.h.
Referenced by DoReportDataFailed(), and GetTypeId().
|
private |
Definition at line 78 of file aarfcd-wifi-manager.h.
Referenced by DoCreateStation(), GetTypeId(), and ResetRtsWnd().
|
private |
Definition at line 72 of file aarfcd-wifi-manager.h.
Referenced by DoCreateStation(), DoReportDataFailed(), and GetTypeId().
|
private |
Definition at line 71 of file aarfcd-wifi-manager.h.
Referenced by DoCreateStation(), DoReportDataFailed(), and GetTypeId().
|
private |
Definition at line 80 of file aarfcd-wifi-manager.h.
|
private |
Definition at line 73 of file aarfcd-wifi-manager.h.
Referenced by DoReportDataFailed(), and GetTypeId().
|
private |
Definition at line 75 of file aarfcd-wifi-manager.h.
Referenced by DoReportDataFailed(), and GetTypeId().
|
private |
Definition at line 81 of file aarfcd-wifi-manager.h.
Referenced by DoReportDataFailed(), and GetTypeId().
|
private |
Definition at line 82 of file aarfcd-wifi-manager.h.
Referenced by DoReportDataOk(), and GetTypeId().