A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
amrr-wifi-manager.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2003,2007 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 AMRR_WIFI_MANAGER_H
21#define AMRR_WIFI_MANAGER_H
22
23#include "ns3/traced-value.h"
24#include "ns3/wifi-remote-station-manager.h"
25
26namespace ns3
27{
28
29struct AmrrWifiRemoteStation;
30
31/**
32 * \brief AMRR Rate control algorithm
33 * \ingroup wifi
34 *
35 * This class implements the AMRR rate control algorithm which
36 * was initially described in <i>IEEE 802.11 Rate Adaptation:
37 * A Practical Approach</i>, by M. Lacage, M.H. Manshaei, and
38 * T. Turletti.
39 *
40 * This RAA does not support HT modes and will error
41 * exit if the user tries to configure this RAA with a Wi-Fi MAC
42 * that supports 802.11n or higher.
43 */
45{
46 public:
47 /**
48 * \brief Get the type ID.
49 * \return the object TypeId
50 */
51 static TypeId GetTypeId();
52
54 ~AmrrWifiManager() override;
55
56 private:
57 void DoInitialize() override;
58 WifiRemoteStation* DoCreateStation() const override;
59 void DoReportRxOk(WifiRemoteStation* station, double rxSnr, WifiMode txMode) override;
60 void DoReportRtsFailed(WifiRemoteStation* station) override;
61 void DoReportDataFailed(WifiRemoteStation* station) override;
62 void DoReportRtsOk(WifiRemoteStation* station,
63 double ctsSnr,
64 WifiMode ctsMode,
65 double rtsSnr) override;
67 double ackSnr,
68 WifiMode ackMode,
69 double dataSnr,
70 uint16_t dataChannelWidth,
71 uint8_t dataNss) override;
72 void DoReportFinalRtsFailed(WifiRemoteStation* station) override;
73 void DoReportFinalDataFailed(WifiRemoteStation* station) override;
74 WifiTxVector DoGetDataTxVector(WifiRemoteStation* station, uint16_t allowedWidth) override;
76
77 /**
78 * Update the mode used to send to the given station.
79 *
80 * \param station the remote station state
81 */
82 void UpdateMode(AmrrWifiRemoteStation* station);
83 /**
84 * Reset transmission statistics of the given station.
85 *
86 * \param station the remote station state
87 */
88 void ResetCnt(AmrrWifiRemoteStation* station);
89 /**
90 * Increase the transmission rate to the given station.
91 *
92 * \param station the remote station state
93 */
95 /**
96 * Decrease the transmission rate to the given station.
97 *
98 * \param station the remote station state
99 */
100 void DecreaseRate(AmrrWifiRemoteStation* station);
101 /**
102 * Check if the current rate for the given station is the
103 * minimum rate.
104 *
105 * \param station the remote station state
106 *
107 * \return true if the current rate is the minimum rate,
108 * false otherwise
109 */
110 bool IsMinRate(AmrrWifiRemoteStation* station) const;
111 /**
112 * Check if the current rate for the given station is the
113 * maximum rate.
114 *
115 * \param station the remote station state
116 *
117 * \return true if the current rate is the maximum rate,
118 * false otherwise
119 */
120 bool IsMaxRate(AmrrWifiRemoteStation* station) const;
121 /**
122 * Check if the number of retransmission and transmission error
123 * is less than the number of successful transmission (times ratio).
124 *
125 * \param station the remote station state
126 *
127 * \return true if the number of retransmission and transmission error
128 * is less than the number of successful transmission
129 * (times ratio), false otherwise
130 */
131 bool IsSuccess(AmrrWifiRemoteStation* station) const;
132 /**
133 * Check if the number of retransmission and transmission error
134 * is greater than the number of successful transmission (times ratio).
135 *
136 * \param station the remote station state
137 *
138 * \return true if the number of retransmission and transmission error
139 * is less than the number of successful transmission
140 * (times ratio), false otherwise
141 */
142 bool IsFailure(AmrrWifiRemoteStation* station) const;
143 /**
144 * Check if the number of retransmission, transmission error,
145 * and successful transmission are greater than 10.
146 *
147 * \param station the remote station state
148 * \return true if the number of retransmission, transmission error,
149 * and successful transmission are greater than 10,
150 * false otherwise
151 */
152 bool IsEnough(AmrrWifiRemoteStation* station) const;
153
154 Time m_updatePeriod; ///< update period
155 double m_failureRatio; ///< failure ratio
156 double m_successRatio; ///< success ratio
157 uint32_t m_maxSuccessThreshold; ///< maximum success threshold
158 uint32_t m_minSuccessThreshold; ///< minimum success threshold
159
160 TracedValue<uint64_t> m_currentRate; //!< Trace rate changes
161};
162
163} // namespace ns3
164
165#endif /* AMRR_WIFI_MANAGER_H */
AMRR Rate control algorithm.
double m_failureRatio
failure ratio
static TypeId GetTypeId()
Get the type ID.
void UpdateMode(AmrrWifiRemoteStation *station)
Update the mode used to send to the given station.
void DoReportFinalRtsFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
uint32_t m_minSuccessThreshold
minimum success threshold
bool IsMaxRate(AmrrWifiRemoteStation *station) const
Check if the current rate for the given station is the maximum rate.
TracedValue< uint64_t > m_currentRate
Trace rate changes.
bool IsMinRate(AmrrWifiRemoteStation *station) const
Check if the current rate for the given station is the minimum rate.
void DoInitialize() override
Initialize() implementation.
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.
void ResetCnt(AmrrWifiRemoteStation *station)
Reset transmission statistics of the given station.
uint32_t m_maxSuccessThreshold
maximum success threshold
bool IsEnough(AmrrWifiRemoteStation *station) const
Check if the number of retransmission, transmission error, and successful transmission are greater th...
void DoReportRtsFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
void DecreaseRate(AmrrWifiRemoteStation *station)
Decrease the transmission rate to the given station.
void DoReportFinalDataFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
bool IsSuccess(AmrrWifiRemoteStation *station) const
Check if the number of retransmission and transmission error is less than the number of successful tr...
WifiRemoteStation * DoCreateStation() const override
void DoReportRxOk(WifiRemoteStation *station, double rxSnr, WifiMode txMode) override
This method is a pure virtual method that must be implemented by the sub-class.
void DoReportDataFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
Time m_updatePeriod
update period
WifiTxVector DoGetDataTxVector(WifiRemoteStation *station, uint16_t allowedWidth) override
void IncreaseRate(AmrrWifiRemoteStation *station)
Increase the transmission rate to the given station.
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.
WifiTxVector DoGetRtsTxVector(WifiRemoteStation *station) override
bool IsFailure(AmrrWifiRemoteStation *station) const
Check if the number of retransmission and transmission error is greater than the number of successful...
double m_successRatio
success ratio
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:105
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 for AMRR Wifi manager.
hold per-remote-station state.