A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
aarf-wifi-manager.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2005,2006 INRIA
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 *
17 * Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
18 */
19
20#ifndef AARF_WIFI_MANAGER_H
21#define AARF_WIFI_MANAGER_H
22
23#include "ns3/traced-value.h"
24#include "ns3/wifi-remote-station-manager.h"
25
26namespace ns3
27{
28
29/**
30 * \brief AARF Rate control algorithm
31 * \ingroup wifi
32 *
33 * This class implements the AARF rate control algorithm which
34 * was initially described in <i>IEEE 802.11 Rate Adaptation:
35 * A Practical Approach</i>, by M. Lacage, M.H. Manshaei, and
36 * T. Turletti.
37 *
38 * This RAA does not support HT modes and will error
39 * exit if the user tries to configure this RAA with a Wi-Fi MAC
40 * that supports 802.11n or higher.
41 */
43{
44 public:
45 /**
46 * \brief Get the type ID.
47 * \return the object TypeId
48 */
49 static TypeId GetTypeId();
51 ~AarfWifiManager() override;
52
53 private:
54 void DoInitialize() override;
55 WifiRemoteStation* DoCreateStation() const override;
56 void DoReportRxOk(WifiRemoteStation* station, double rxSnr, WifiMode txMode) override;
57 void DoReportRtsFailed(WifiRemoteStation* station) override;
58 void DoReportDataFailed(WifiRemoteStation* station) override;
59 void DoReportRtsOk(WifiRemoteStation* station,
60 double ctsSnr,
61 WifiMode ctsMode,
62 double rtsSnr) override;
64 double ackSnr,
65 WifiMode ackMode,
66 double dataSnr,
67 uint16_t dataChannelWidth,
68 uint8_t dataNss) override;
69 void DoReportFinalRtsFailed(WifiRemoteStation* station) override;
70 void DoReportFinalDataFailed(WifiRemoteStation* station) override;
71 WifiTxVector DoGetDataTxVector(WifiRemoteStation* station, uint16_t allowedWidth) override;
73
74 uint32_t m_minTimerThreshold; ///< minimum timer threshold
75 uint32_t m_minSuccessThreshold; ///< minimum success threshold
76 double m_successK; ///< Multiplication factor for the success threshold
77 uint32_t m_maxSuccessThreshold; ///< maximum success threshold
78 double m_timerK; ///< Multiplication factor for the timer threshold
79
80 TracedValue<uint64_t> m_currentRate; //!< Trace rate changes
81};
82
83} // namespace ns3
84
85#endif /* AARF_WIFI_MANAGER_H */
AARF Rate control algorithm.
void DoReportRtsOk(WifiRemoteStation *station, double ctsSnr, WifiMode ctsMode, double rtsSnr) override
This method is a pure virtual method that must be implemented by the sub-class.
uint32_t m_minSuccessThreshold
minimum success threshold
WifiRemoteStation * DoCreateStation() const override
WifiTxVector DoGetRtsTxVector(WifiRemoteStation *station) override
void DoReportFinalDataFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
void DoInitialize() override
Initialize() implementation.
void DoReportFinalRtsFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
double m_successK
Multiplication factor for the success threshold.
void DoReportDataFailed(WifiRemoteStation *station) override
It is important to realize that "recovery" mode starts after failure of the first transmission after ...
double m_timerK
Multiplication factor for the timer threshold.
void DoReportRtsFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
static TypeId GetTypeId()
Get the type ID.
uint32_t m_maxSuccessThreshold
maximum success threshold
void DoReportRxOk(WifiRemoteStation *station, double rxSnr, WifiMode txMode) override
This method is a pure virtual method that must be implemented by the sub-class.
uint32_t m_minTimerThreshold
minimum timer threshold
WifiTxVector DoGetDataTxVector(WifiRemoteStation *station, uint16_t allowedWidth) override
void DoReportDataOk(WifiRemoteStation *station, double ackSnr, WifiMode ackMode, double dataSnr, uint16_t dataChannelWidth, uint8_t dataNss) override
This method is a pure virtual method that must be implemented by the sub-class.
TracedValue< uint64_t > m_currentRate
Trace rate changes.
Trace classes with value semantics.
Definition: traced-value.h:116
a unique identifier for an interface.
Definition: type-id.h:59
represent a single transmission mode
Definition: wifi-mode.h:51
hold a list of per-remote-station state.
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
Every class exported by the ns3 library is enclosed in the ns3 namespace.
hold per-remote-station state.