A Discrete-Event Network Simulator
API
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 
26 namespace ns3
27 {
28 
29 struct AmrrWifiRemoteStation;
30 
45 {
46  public:
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;
66  void DoReportDataOk(WifiRemoteStation* station,
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 
82  void UpdateMode(AmrrWifiRemoteStation* station);
88  void ResetCnt(AmrrWifiRemoteStation* station);
94  void IncreaseRate(AmrrWifiRemoteStation* station);
100  void DecreaseRate(AmrrWifiRemoteStation* station);
110  bool IsMinRate(AmrrWifiRemoteStation* station) const;
120  bool IsMaxRate(AmrrWifiRemoteStation* station) const;
131  bool IsSuccess(AmrrWifiRemoteStation* station) const;
142  bool IsFailure(AmrrWifiRemoteStation* station) const;
152  bool IsEnough(AmrrWifiRemoteStation* station) const;
153 
155  double m_failureRatio;
156  double m_successRatio;
159 
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
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.