kill TraceResolver et al.
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2003,2007 INRIA
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
*/
#include "onoe-mac-stations.h"
#include "ns3/default-value.h"
#include "ns3/time-default-value.h"
#include "ns3/simulator.h"
#include "ns3/log.h"
NS_LOG_COMPONENT_DEFINE ("OnoeMacStation");
namespace ns3 {
static TimeDefaultValue g_updatePeriod
("WifiOnoeUpdatePeriod",
"The interval between decisions about rate control changes",
Seconds (1.0));
static NumericDefaultValue<uint32_t> g_addCreditThreshold
("WifiOnoeAddCreditThreshold",
"Add credit threshold",
10);
static NumericDefaultValue<uint32_t> g_raiseThreshold
("WifiOnoeRaiseThreshold",
"Raise threshold",
10);
OnoeMacStations::OnoeMacStations (WifiMode defaultTxMode)
: MacStations (defaultTxMode),
m_updatePeriod (g_updatePeriod.GetValue ()),
m_addCreditThreshold (g_addCreditThreshold.GetValue ()),
m_raiseThreshold (g_raiseThreshold.GetValue ())
{}
MacStation *
OnoeMacStations::CreateStation (void)
{
return new OnoeMacStation (this);
}
OnoeMacStation::OnoeMacStation (OnoeMacStations *stations)
: m_stations (stations),
m_nextModeUpdate (Simulator::Now () + stations->m_updatePeriod),
m_shortRetry (0),
m_longRetry (0),
m_tx_ok (0),
m_tx_err (0),
m_tx_retr (0),
m_tx_upper (0),
m_txrate (0)
{}
OnoeMacStation::~OnoeMacStation ()
{}
void
OnoeMacStation::ReportRxOk (double rxSnr, WifiMode txMode)
{}
void
OnoeMacStation::ReportRtsFailed (void)
{
m_shortRetry++;
}
void
OnoeMacStation::ReportDataFailed (void)
{
m_longRetry++;
}
void
OnoeMacStation::ReportRtsOk (double ctsSnr, WifiMode ctsMode, double rtsSnr)
{}
void
OnoeMacStation::ReportDataOk (double ackSnr, WifiMode ackMode, double dataSnr)
{
UpdateRetry ();
m_tx_ok++;
}
void
OnoeMacStation::ReportFinalRtsFailed (void)
{
UpdateRetry ();
m_tx_err++;
}
void
OnoeMacStation::ReportFinalDataFailed (void)
{
UpdateRetry ();
m_tx_err++;
}
void
OnoeMacStation::UpdateRetry (void)
{
m_tx_retr += m_shortRetry + m_longRetry;
m_shortRetry = 0;
m_longRetry = 0;
}
void
OnoeMacStation::UpdateMode (void)
{
if (Simulator::Now () < m_nextModeUpdate)
{
return;
}
m_nextModeUpdate = Simulator::Now () + m_stations->m_updatePeriod;
/**
* The following 20 lines of code were copied from the Onoe
* rate control kernel module used in the madwifi driver.
*/
int dir = 0, enough;
uint32_t nrate;
enough = (m_tx_ok + m_tx_err >= 10);
/* no packet reached -> down */
if (m_tx_err > 0 && m_tx_ok == 0)
dir = -1;
/* all packets needs retry in average -> down */
if (enough && m_tx_ok < m_tx_retr)
dir = -1;
/* no error and less than rate_raise% of packets need retry -> up */
if (enough && m_tx_err == 0 &&
m_tx_retr < (m_tx_ok * m_stations->m_addCreditThreshold) / 100)
dir = 1;
NS_LOG_DEBUG (this << " ok " << m_tx_ok << " err " << m_tx_err << " retr " << m_tx_retr <<
" upper " << m_tx_upper << " dir " << dir);
nrate = m_txrate;
switch (dir) {
case 0:
if (enough && m_tx_upper > 0)
m_tx_upper--;
break;
case -1:
if (nrate > 0) {
nrate--;
}
m_tx_upper = 0;
break;
case 1:
/* raise rate if we hit rate_raise_threshold */
if (++m_tx_upper < m_stations->m_raiseThreshold)
break;
m_tx_upper = 0;
if (nrate + 1 < GetNSupportedModes ()) {
nrate++;
}
break;
}
if (nrate != m_txrate) {
NS_ASSERT (nrate < GetNSupportedModes ());
m_txrate = nrate;
m_tx_ok = m_tx_err = m_tx_retr = m_tx_upper = 0;
} else if (enough)
m_tx_ok = m_tx_err = m_tx_retr = 0;
}
OnoeMacStations *
OnoeMacStation::GetStations (void) const
{
return m_stations;
}
WifiMode
OnoeMacStation::DoGetDataMode (uint32_t size)
{
UpdateMode ();
NS_ASSERT (m_txrate < GetNSupportedModes ());
uint32_t rateIndex;
if (m_longRetry < 4)
{
rateIndex = m_txrate;
}
else if (m_longRetry < 6)
{
if (m_txrate > 0)
{
rateIndex = m_txrate - 1;
}
else
{
rateIndex = m_txrate;
}
}
else if (m_longRetry < 8)
{
if (m_txrate > 1)
{
rateIndex = m_txrate - 2;
}
else
{
rateIndex = m_txrate;
}
}
else
{
if (m_txrate > 2)
{
rateIndex = m_txrate - 3;
}
else
{
rateIndex = m_txrate;
}
}
return GetSupportedMode (rateIndex);
}
WifiMode
OnoeMacStation::DoGetRtsMode (void)
{
UpdateMode ();
// XXX: can we implement something smarter ?
return GetSupportedMode (0);
}
} // namespace ns3