A Discrete-Event Network Simulator
API
aarfcd-wifi-manager.cc
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2004,2005,2006 INRIA
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Federico Maguolo <maguolof@dei.unipd.it>
19  */
20 
21 #include "aarfcd-wifi-manager.h"
22 #include "ns3/log.h"
23 #include "ns3/boolean.h"
24 #include "ns3/double.h"
25 #include "ns3/uinteger.h"
26 
27 #define Min(a,b) ((a < b) ? a : b)
28 #define Max(a,b) ((a > b) ? a : b)
29 
30 namespace ns3 {
31 
32 NS_LOG_COMPONENT_DEFINE ("AarfcdWifiManager");
33 
41 {
42  uint32_t m_timer;
43  uint32_t m_success;
44  uint32_t m_failed;
45  bool m_recovery;
47  uint32_t m_retry;
48  uint32_t m_successThreshold;
49  uint32_t m_timerTimeout;
50  uint8_t m_rate;
51  bool m_rtsOn;
52  uint32_t m_rtsWnd;
53  uint32_t m_rtsCounter;
55 };
56 
58 
59 TypeId
61 {
62  static TypeId tid = TypeId ("ns3::AarfcdWifiManager")
64  .SetGroupName ("Wifi")
65  .AddConstructor<AarfcdWifiManager> ()
66  .AddAttribute ("SuccessK", "Multiplication factor for the success threshold in the AARF algorithm.",
67  DoubleValue (2.0),
69  MakeDoubleChecker<double> ())
70  .AddAttribute ("TimerK",
71  "Multiplication factor for the timer threshold in the AARF algorithm.",
72  DoubleValue (2.0),
74  MakeDoubleChecker<double> ())
75  .AddAttribute ("MaxSuccessThreshold",
76  "Maximum value of the success threshold in the AARF algorithm.",
77  UintegerValue (60),
79  MakeUintegerChecker<uint32_t> ())
80  .AddAttribute ("MinTimerThreshold",
81  "The minimum value for the 'timer' threshold in the AARF algorithm.",
82  UintegerValue (15),
84  MakeUintegerChecker<uint32_t> ())
85  .AddAttribute ("MinSuccessThreshold",
86  "The minimum value for the success threshold in the AARF algorithm.",
87  UintegerValue (10),
89  MakeUintegerChecker<uint32_t> ())
90  .AddAttribute ("MinRtsWnd",
91  "Minimum value for Rts window of Aarf-CD",
92  UintegerValue (1),
94  MakeUintegerChecker<uint32_t> ())
95  .AddAttribute ("MaxRtsWnd",
96  "Maximum value for Rts window of Aarf-CD",
97  UintegerValue (40),
99  MakeUintegerChecker<uint32_t> ())
100  .AddAttribute ("TurnOffRtsAfterRateDecrease",
101  "If true the RTS mechanism will be turned off when the rate will be decreased",
102  BooleanValue (true),
105  .AddAttribute ("TurnOnRtsAfterRateIncrease",
106  "If true the RTS mechanism will be turned on when the rate will be increased",
107  BooleanValue (true),
110  .AddTraceSource ("Rate",
111  "Traced value for rate changes (b/s)",
113  "ns3::TracedValueCallback::Uint64")
114  ;
115  return tid;
116 }
117 
120  m_currentRate (0)
121 {
122  NS_LOG_FUNCTION (this);
123 }
124 
126 {
127  NS_LOG_FUNCTION (this);
128 }
129 
132 {
133  NS_LOG_FUNCTION (this);
135 
136  //aarf fields below
139  station->m_rate = 0;
140  station->m_success = 0;
141  station->m_failed = 0;
142  station->m_recovery = false;
143  station->m_retry = 0;
144  station->m_timer = 0;
145 
146  //aarf-cd specific fields below
147  station->m_rtsOn = false;
148  station->m_rtsWnd = m_minRtsWnd;
149  station->m_rtsCounter = 0;
150  station->m_justModifyRate = true;
151  station->m_haveASuccess = false;
152 
153  return station;
154 }
155 
156 void
158 {
159  NS_LOG_FUNCTION (this << station);
160 }
161 
162 void
164 {
165  NS_LOG_FUNCTION (this << st);
167  station->m_timer++;
168  station->m_failed++;
169  station->m_retry++;
170  station->m_success = 0;
171 
172  if (!station->m_rtsOn)
173  {
174  TurnOnRts (station);
175  if (!station->m_justModifyRate && !station->m_haveASuccess)
176  {
177  IncreaseRtsWnd (station);
178  }
179  else
180  {
181  ResetRtsWnd (station);
182  }
183  station->m_rtsCounter = station->m_rtsWnd;
184  if (station->m_retry >= 2)
185  {
186  station->m_timer = 0;
187  }
188  }
189  else if (station->m_recovery)
190  {
191  NS_ASSERT (station->m_retry >= 1);
192  station->m_justModifyRate = false;
193  station->m_rtsCounter = station->m_rtsWnd;
194  if (station->m_retry == 1)
195  {
196  //need recovery fallback
198  {
199  TurnOffRts (station);
200  }
201  station->m_justModifyRate = true;
202  station->m_successThreshold = (int)(Min (station->m_successThreshold * m_successK,
204  station->m_timerTimeout = (int)(Max (station->m_timerTimeout * m_timerK,
206  if (station->m_rate != 0)
207  {
208  station->m_rate--;
209  }
210  }
211  station->m_timer = 0;
212  }
213  else
214  {
215  NS_ASSERT (station->m_retry >= 1);
216  station->m_justModifyRate = false;
217  station->m_rtsCounter = station->m_rtsWnd;
218  if (((station->m_retry - 1) % 2) == 1)
219  {
220  //need normal fallback
222  {
223  TurnOffRts (station);
224  }
225  station->m_justModifyRate = true;
228  if (station->m_rate != 0)
229  {
230  station->m_rate--;
231  }
232  }
233  if (station->m_retry >= 2)
234  {
235  station->m_timer = 0;
236  }
237  }
238  CheckRts (station);
239 }
240 
241 void
243  double rxSnr, WifiMode txMode)
244 {
245  NS_LOG_FUNCTION (this << station << rxSnr << txMode);
246 }
247 
248 void
250  double ctsSnr, WifiMode ctsMode, double rtsSnr)
251 {
252  NS_LOG_FUNCTION (this << st << ctsSnr << ctsMode << rtsSnr);
254  NS_LOG_DEBUG ("station=" << station << " rts ok");
255  station->m_rtsCounter--;
256 }
257 
258 void
260  double ackSnr, WifiMode ackMode, double dataSnr)
261 {
262  NS_LOG_FUNCTION (this << st << ackSnr << ackMode << dataSnr);
264  station->m_timer++;
265  station->m_success++;
266  station->m_failed = 0;
267  station->m_recovery = false;
268  station->m_retry = 0;
269  station->m_justModifyRate = false;
270  station->m_haveASuccess = true;
271  NS_LOG_DEBUG ("station=" << station << " data ok success=" << station->m_success << ", timer=" << station->m_timer);
272  if ((station->m_success == station->m_successThreshold
273  || station->m_timer == station->m_timerTimeout)
274  && (station->m_rate < (GetNSupported (station) - 1)))
275  {
276  NS_LOG_DEBUG ("station=" << station << " inc rate");
277  station->m_rate++;
278  station->m_timer = 0;
279  station->m_success = 0;
280  station->m_recovery = true;
281  station->m_justModifyRate = true;
283  {
284  TurnOnRts (station);
285  ResetRtsWnd (station);
286  station->m_rtsCounter = station->m_rtsWnd;
287  }
288  }
289  CheckRts (station);
290 }
291 
292 void
294 {
295  NS_LOG_FUNCTION (this << station);
296 }
297 
298 void
300 {
301  NS_LOG_FUNCTION (this << station);
302 }
303 
306 {
307  NS_LOG_FUNCTION (this << st);
309  uint8_t channelWidth = GetChannelWidth (station);
310  if (channelWidth > 20 && channelWidth != 22)
311  {
312  //avoid to use legacy rate adaptation algorithms for IEEE 802.11n/ac
313  channelWidth = 20;
314  }
315  WifiMode mode = GetSupported (station, station->m_rate);
316  if (m_currentRate != mode.GetDataRate (channelWidth))
317  {
318  NS_LOG_DEBUG ("New datarate: " << mode.GetDataRate (channelWidth));
319  m_currentRate = mode.GetDataRate (channelWidth);
320  }
321  return WifiTxVector (mode, GetDefaultTxPowerLevel (), GetPreambleForTransmission (mode, GetAddress (station)), 800, 1, 1, 0, channelWidth, GetAggregation (station), false);
322 }
323 
326 {
327  NS_LOG_FUNCTION (this << st);
331  uint8_t channelWidth = GetChannelWidth (station);
332  if (channelWidth > 20 && channelWidth != 22)
333  {
334  //avoid to use legacy rate adaptation algorithms for IEEE 802.11n/ac
335  channelWidth = 20;
336  }
337  WifiTxVector rtsTxVector;
338  WifiMode mode;
339  if (GetUseNonErpProtection () == false)
340  {
341  mode = GetSupported (station, 0);
342  }
343  else
344  {
345  mode = GetNonErpSupported (station, 0);
346  }
347  rtsTxVector = WifiTxVector (mode, GetDefaultTxPowerLevel (), GetPreambleForTransmission (mode, GetAddress (station)), 800, 1, 1, 0, channelWidth, GetAggregation (station), false);
348  return rtsTxVector;
349 }
350 
351 bool
353  Ptr<const Packet> packet, bool normally)
354 {
355  NS_LOG_FUNCTION (this << st << packet << normally);
357  NS_LOG_INFO ("" << station << " rate=" << station->m_rate << " rts=" << (station->m_rtsOn ? "RTS" : "BASIC") <<
358  " rtsCounter=" << station->m_rtsCounter);
359  return station->m_rtsOn;
360 }
361 
362 bool
364 {
365  return true;
366 }
367 
368 void
370 {
371  NS_LOG_FUNCTION (this << station);
372  if (station->m_rtsCounter == 0 && station->m_rtsOn)
373  {
374  TurnOffRts (station);
375  }
376 }
377 
378 void
380 {
381  NS_LOG_FUNCTION (this << station);
382  station->m_rtsOn = false;
383  station->m_haveASuccess = false;
384 }
385 
386 void
388 {
389  NS_LOG_FUNCTION (this << station);
390  station->m_rtsOn = true;
391 }
392 
393 void
395 {
396  NS_LOG_FUNCTION (this << station);
397  if (station->m_rtsWnd == m_maxRtsWnd)
398  {
399  return;
400  }
401 
402  station->m_rtsWnd *= 2;
403  if (station->m_rtsWnd > m_maxRtsWnd)
404  {
405  station->m_rtsWnd = m_maxRtsWnd;
406  }
407 }
408 
409 void
411 {
412  NS_LOG_FUNCTION (this << station);
413  station->m_rtsWnd = m_minRtsWnd;
414 }
415 
416 void
418 {
419  //HT is not supported by this algorithm.
420  if (enable)
421  {
422  NS_FATAL_ERROR ("WifiRemoteStationManager selected does not support HT rates");
423  }
424 }
425 
426 void
428 {
429  //VHT is not supported by this algorithm.
430  if (enable)
431  {
432  NS_FATAL_ERROR ("WifiRemoteStationManager selected does not support VHT rates");
433  }
434 }
435 
436 void
438 {
439  //HE is not supported by this algorithm.
440  if (enable)
441  {
442  NS_FATAL_ERROR ("WifiRemoteStationManager selected does not support HE rates");
443  }
444 }
445 
446 } //namespace ns3
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)
AttributeValue implementation for Boolean.
Definition: boolean.h:36
double m_timerK
Multiplication factor for the timer threshold.
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.
Definition: object-base.h:45
uint32_t m_rtsCounter
RTS counter.
bool m_haveASuccess
have a success
bool GetUseNonErpProtection(void) const
Return whether the device supports protection of non-ERP stations.
Ptr< const AttributeAccessor > MakeBooleanAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
Definition: boolean.h:84
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...
Definition: assert.h:67
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:201
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.
Definition: log.h:277
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
Definition: fatal-error.h:162
uint32_t m_maxRtsWnd
maximum RTS window
uint32_t m_minRtsWnd
minimum RTS window
bool m_turnOnRtsAfterRateIncrease
turn on RTS after rate increase
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...
Definition: wifi-mode.h:97
void DoReportFinalDataFailed(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.
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.
Definition: int64x64.h:197
Hold an unsigned integer type.
Definition: uinteger.h:44
WifiPreamble GetPreambleForTransmission(WifiMode mode, Mac48Address dest)
Return the preamble to be used for the transmission.
uint64_t GetDataRate(uint8_t channelWidth, uint16_t guardInterval, uint8_t nss) const
Definition: wifi-mode.cc:143
uint8_t GetChannelWidth(const WifiRemoteStation *station) const
Return the channel width supported by the station.
int64x64_t Max(const int64x64_t &a, const int64x64_t &b)
Maximum.
Definition: int64x64.h:209
TracedValue< uint64_t > m_currentRate
Trace rate changes.
void ResetRtsWnd(AarfcdWifiRemoteStation *station)
Reset the RTS window of the given station.
Mac48Address GetAddress(const WifiRemoteStation *station) const
Return the address of the 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.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Ptr< const AttributeChecker > MakeBooleanChecker(void)
Definition: boolean.cc:121
bool IsLowLatency(void) const
void SetVhtSupported(bool enable)
Enable or disable VHT capability support.
void DoReportRtsFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
uint32_t m_minSuccessThreshold
minimum success threshold
WifiMode GetSupported(const WifiRemoteStation *station, uint8_t i) const
Return whether mode associated with the specified station at the specified index. ...
WifiRemoteStation * DoCreateStation(void) const
Ptr< const AttributeAccessor > MakeDoubleAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
Definition: double.h:42
hold per-remote-station state for AARF-CD Wifi manager.
WifiMode GetNonErpSupported(const WifiRemoteStation *station, uint8_t i) const
Return whether non-ERP mode associated with the specified station at the specified index...
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
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.
Definition: log.h:269
uint8_t GetNSupported(const WifiRemoteStation *station) const
Return the number of modes supported by the given station.
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'...
Definition: double.h:41
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...
Definition: uinteger.h:45
a unique identifier for an interface.
Definition: type-id.h:58
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition: type-id.cc:914
hold per-remote-station state.
WifiTxVector DoGetRtsTxVector(WifiRemoteStation *station)