22 #include "ns3/packet.h" 26 #define Min(a,b) ((a < b) ? a : b) 27 #define Max(a,b) ((a > b) ? a : b) 63 .SetGroupName (
"Wifi")
65 .AddAttribute (
"SuccessK",
"Multiplication factor for the success threshold in the AARF algorithm.",
68 MakeDoubleChecker<double> ())
69 .AddAttribute (
"TimerK",
70 "Multiplication factor for the timer threshold in the AARF algorithm.",
73 MakeDoubleChecker<double> ())
74 .AddAttribute (
"MaxSuccessThreshold",
75 "Maximum value of the success threshold in the AARF algorithm.",
78 MakeUintegerChecker<uint32_t> ())
79 .AddAttribute (
"MinTimerThreshold",
80 "The minimum value for the 'timer' threshold in the AARF algorithm.",
83 MakeUintegerChecker<uint32_t> ())
84 .AddAttribute (
"MinSuccessThreshold",
85 "The minimum value for the success threshold in the AARF algorithm.",
88 MakeUintegerChecker<uint32_t> ())
89 .AddAttribute (
"MinRtsWnd",
90 "Minimum value for Rts window of Aarf-CD",
93 MakeUintegerChecker<uint32_t> ())
94 .AddAttribute (
"MaxRtsWnd",
95 "Maximum value for Rts window of Aarf-CD",
98 MakeUintegerChecker<uint32_t> ())
99 .AddAttribute (
"TurnOffRtsAfterRateDecrease",
100 "If true the RTS mechanism will be turned off when the rate will be decreased",
104 .AddAttribute (
"TurnOnRtsAfterRateIncrease",
105 "If true the RTS mechanism will be turned on when the rate will be increased",
109 .AddTraceSource (
"Rate",
110 "Traced value for rate changes (b/s)",
112 "ns3::TracedValueCallback::Uint64")
217 if (((station->
m_retry - 1) % 2) == 1)
249 double ctsSnr,
WifiMode ctsMode,
double rtsSnr)
259 double ackSnr,
WifiMode ackMode,
double dataSnr)
309 if (channelWidth > 20 && channelWidth != 22)
320 return WifiTxVector (mode,
GetDefaultTxPowerLevel (),
GetPreambleForTransmission (mode,
GetAddress (station)), 800, 1, 1, 0, channelWidth,
GetAggregation (station),
false);
331 if (channelWidth > 20 && channelWidth != 22)
346 rtsTxVector =
WifiTxVector (mode,
GetDefaultTxPowerLevel (),
GetPreambleForTransmission (mode,
GetAddress (station)), 800, 1, 1, 0, channelWidth,
GetAggregation (station),
false);
421 NS_FATAL_ERROR (
"WifiRemoteStationManager selected does not support HT rates");
431 NS_FATAL_ERROR (
"WifiRemoteStationManager selected does not support VHT rates");
441 NS_FATAL_ERROR (
"WifiRemoteStationManager selected does not support HE rates");
WifiRemoteStation * DoCreateStation(void) const
void DoReportDataFailed(WifiRemoteStation *station)
It is important to realize that "recovery" mode starts after failure of the first transmission after ...
uint32_t m_successThreshold
success threshold
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
WifiTxVector DoGetDataTxVector(WifiRemoteStation *station)
uint8_t GetNSupported(const WifiRemoteStation *station) const
Return the number of modes supported by the given station.
AttributeValue implementation for Boolean.
double m_timerK
Multiplication factor for the timer threshold.
bool IsLowLatency(void) const
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
bool DoNeedRts(WifiRemoteStation *station, Ptr< const Packet > packet, bool normally)
bool m_justModifyRate
just modify rate
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
uint32_t m_rtsCounter
RTS counter.
bool m_haveASuccess
have a success
Ptr< const AttributeAccessor > MakeBooleanAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
uint32_t m_maxSuccessThreshold
maximum success threshold
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file...
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
void DoReportRtsOk(WifiRemoteStation *station, double ctsSnr, WifiMode ctsMode, double rtsSnr)
This method is a pure virtual method that must be implemented by the sub-class.
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
uint32_t m_maxRtsWnd
maximum RTS window
uint32_t m_minRtsWnd
minimum RTS window
bool m_turnOnRtsAfterRateIncrease
turn on RTS after rate increase
WifiMode GetSupported(const WifiRemoteStation *station, uint8_t i) const
Return whether mode associated with the specified station at the specified index. ...
void SetHeSupported(bool enable)
Enable or disable HE capability support.
represent a single transmission modeA WifiMode is implemented by a single integer which is used to lo...
void DoReportFinalDataFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
Create a TraceSourceAccessor which will control access to the underlying trace source.
void DoReportFinalRtsFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
void TurnOnRts(AarfcdWifiRemoteStation *station)
Turn on RTS for the given station.
void TurnOffRts(AarfcdWifiRemoteStation *station)
Turn off RTS for the given station.
int64x64_t Min(const int64x64_t &a, const int64x64_t &b)
Minimum.
Hold an unsigned integer type.
WifiPreamble GetPreambleForTransmission(WifiMode mode, Mac48Address dest)
Return the preamble to be used for the transmission.
int64x64_t Max(const int64x64_t &a, const int64x64_t &b)
Maximum.
TracedValue< uint64_t > m_currentRate
Trace rate changes.
void ResetRtsWnd(AarfcdWifiRemoteStation *station)
Reset the RTS window of the given station.
hold a list of per-remote-station state.
void CheckRts(AarfcdWifiRemoteStation *station)
Check if the use of RTS for the given station can be turned off.
virtual ~AarfcdWifiManager()
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Ptr< const AttributeChecker > MakeBooleanChecker(void)
void SetVhtSupported(bool enable)
Enable or disable VHT capability support.
Mac48Address GetAddress(const WifiRemoteStation *station) const
Return the address of the station.
WifiMode GetNonErpSupported(const WifiRemoteStation *station, uint8_t i) const
Return whether non-ERP mode associated with the specified station at the specified index...
void DoReportRtsFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
bool GetAggregation(const WifiRemoteStation *station) const
Return whether the given station supports A-MPDU.
uint32_t m_minSuccessThreshold
minimum success threshold
Ptr< const AttributeAccessor > MakeDoubleAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
hold per-remote-station state for AARF-CD Wifi manager.
void SetHtSupported(bool enable)
Enable or disable HT capability support.
uint32_t m_minTimerThreshold
minimum timer threshold
bool m_turnOffRtsAfterRateDecrease
turn off RTS after rate decrease
bool GetUseNonErpProtection(void) const
Return whether the device supports protection of non-ERP stations.
double m_successK
Multiplication factor for the success threshold.
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
uint8_t GetDefaultTxPowerLevel(void) const
uint32_t m_rtsWnd
RTS window.
uint32_t m_success
success
static TypeId GetTypeId(void)
Get the type ID.
an implementation of the AARF-CD algorithmThis algorithm was first described in "Efficient Collision ...
void DoReportRxOk(WifiRemoteStation *station, double rxSnr, WifiMode txMode)
This method is a pure virtual method that must be implemented by the sub-class.
void DoReportDataOk(WifiRemoteStation *station, double ackSnr, WifiMode ackMode, double dataSnr)
This method is a pure virtual method that must be implemented by the sub-class.
This class can be used to hold variables of floating point type such as 'double' or 'float'...
void IncreaseRtsWnd(AarfcdWifiRemoteStation *station)
Increase the RTS window size of the given station.
uint32_t m_timerTimeout
timer timeout
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
hold per-remote-station state.
uint64_t GetDataRate(uint16_t channelWidth, uint16_t guardInterval, uint8_t nss) const
uint16_t GetChannelWidth(const WifiRemoteStation *station) const
Return the channel width supported by the station.
WifiTxVector DoGetRtsTxVector(WifiRemoteStation *station)