wifi: Add a class hierarchy for acknowledgment methods

This commit is contained in:
Stefano Avallone
2020-11-17 23:31:30 +01:00
parent f8ac6f61cf
commit 2eff9a30a9
4 changed files with 274 additions and 0 deletions

View File

@@ -1026,7 +1026,10 @@ WifiHelper::EnableLogComponents (void)
LogComponentEnable ("ThresholdPreambleDetectionModel", LOG_LEVEL_ALL);
LogComponentEnable ("Txop", LOG_LEVEL_ALL);
LogComponentEnable ("VhtConfiguration", LOG_LEVEL_ALL);
LogComponentEnable ("WifiAckManager", LOG_LEVEL_ALL);
LogComponentEnable ("WifiAckPolicySelector", LOG_LEVEL_ALL);
LogComponentEnable ("WifiDefaultAckManager", LOG_LEVEL_ALL);
LogComponentEnable ("WifiDefaultProtectionManager", LOG_LEVEL_ALL);
LogComponentEnable ("WifiMac", LOG_LEVEL_ALL);
LogComponentEnable ("WifiMacQueue", LOG_LEVEL_ALL);
LogComponentEnable ("WifiMacQueueItem", LOG_LEVEL_ALL);
@@ -1034,12 +1037,14 @@ WifiHelper::EnableLogComponents (void)
LogComponentEnable ("WifiPhyStateHelper", LOG_LEVEL_ALL);
LogComponentEnable ("WifiPhy", LOG_LEVEL_ALL);
LogComponentEnable ("WifiPpdu", LOG_LEVEL_ALL);
LogComponentEnable ("WifiProtectionManager", LOG_LEVEL_ALL);
LogComponentEnable ("WifiPsdu", LOG_LEVEL_ALL);
LogComponentEnable ("WifiRadioEnergyModel", LOG_LEVEL_ALL);
LogComponentEnable ("WifiRemoteStationManager", LOG_LEVEL_ALL);
LogComponentEnable ("WifiSpectrumPhyInterface", LOG_LEVEL_ALL);
LogComponentEnable ("WifiSpectrumSignalParameters", LOG_LEVEL_ALL);
LogComponentEnable ("WifiTxCurrentModel", LOG_LEVEL_ALL);
LogComponentEnable ("WifiTxParameters", LOG_LEVEL_ALL);
LogComponentEnable ("YansErrorRateModel", LOG_LEVEL_ALL);
LogComponentEnable ("YansWifiChannel", LOG_LEVEL_ALL);
LogComponentEnable ("YansWifiPhy", LOG_LEVEL_ALL);

View File

@@ -0,0 +1,115 @@
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2020 Universita' degli Studi di Napoli Federico II
*
* 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: Stefano Avallone <stavallo@unina.it>
*/
#include "wifi-acknowledgment.h"
#include "wifi-utils.h"
#include "ns3/mac48-address.h"
namespace ns3 {
/*
* WifiAcknowledgment
*/
WifiAcknowledgment::WifiAcknowledgment (Method m)
: method (m),
acknowledgmentTime (Time::Min ()) // uninitialized
{
}
WifiAcknowledgment::~WifiAcknowledgment ()
{
}
WifiMacHeader::QosAckPolicy
WifiAcknowledgment::GetQosAckPolicy (Mac48Address receiver, uint8_t tid) const
{
auto it = m_ackPolicy.find ({receiver, tid});
NS_ASSERT (it != m_ackPolicy.end ());
return it->second;
}
void
WifiAcknowledgment::SetQosAckPolicy (Mac48Address receiver, uint8_t tid,
WifiMacHeader::QosAckPolicy ackPolicy)
{
NS_ABORT_MSG_IF (!CheckQosAckPolicy (receiver, tid, ackPolicy), "QoS Ack policy not admitted");
m_ackPolicy[{receiver, tid}] = ackPolicy;
}
/*
* WifiNoAck
*/
WifiNoAck::WifiNoAck ()
: WifiAcknowledgment (NONE)
{
acknowledgmentTime = Seconds (0);
}
bool
WifiNoAck::CheckQosAckPolicy (Mac48Address receiver, uint8_t tid, WifiMacHeader::QosAckPolicy ackPolicy) const
{
if (ackPolicy == WifiMacHeader::NO_ACK || ackPolicy == WifiMacHeader::BLOCK_ACK)
{
return true;
}
return false;
}
void
WifiNoAck::Print (std::ostream &os) const
{
os << "NONE";
}
/*
* WifiNormalAck
*/
WifiNormalAck::WifiNormalAck ()
: WifiAcknowledgment (NORMAL_ACK)
{
}
bool
WifiNormalAck::CheckQosAckPolicy (Mac48Address receiver, uint8_t tid, WifiMacHeader::QosAckPolicy ackPolicy) const
{
if (ackPolicy == WifiMacHeader::NORMAL_ACK)
{
return true;
}
return false;
}
void
WifiNormalAck::Print (std::ostream &os) const
{
os << "NORMAL_ACK";
}
std::ostream & operator << (std::ostream &os, const WifiAcknowledgment* acknowledgment)
{
acknowledgment->Print (os);
return os;
}
} //namespace ns3

View File

@@ -0,0 +1,152 @@
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2020 Universita' degli Studi di Napoli Federico II
*
* 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: Stefano Avallone <stavallo@unina.it>
*/
#ifndef WIFI_ACKNOWLEDGMENT_H
#define WIFI_ACKNOWLEDGMENT_H
#include "ns3/nstime.h"
#include "wifi-tx-vector.h"
#include "wifi-mac-header.h"
#include "ctrl-headers.h"
#include <map>
namespace ns3 {
class Mac48Address;
/**
* \ingroup wifi
*
* WifiAcknowledgment is an abstract base struct. Each derived struct defines an acknowledgment
* method and stores the information needed to perform acknowledgment according to
* that method.
*/
struct WifiAcknowledgment
{
/**
* \enum Method
* \brief Available acknowledgment methods
*/
enum Method
{
NONE = 0,
NORMAL_ACK
};
/**
* Constructor.
* \param m the acknowledgment method for this object
*/
WifiAcknowledgment (Method m);
virtual ~WifiAcknowledgment ();
/**
* Get the QoS Ack policy to use for the MPDUs addressed to the given receiver
* and belonging to the given TID.
*
* \param receiver the MAC address of the receiver
* \param tid the TID
* \return the QoS Ack policy to use
*/
WifiMacHeader::QosAckPolicy GetQosAckPolicy (Mac48Address receiver, uint8_t tid) const;
/**
* Set the QoS Ack policy to use for the MPDUs addressed to the given receiver
* and belonging to the given TID. If the pair (receiver, TID) already exists,
* it is overwritten with the given QoS Ack policy.
*
* \param receiver the MAC address of the receiver
* \param tid the TID
* \param ackPolicy the QoS Ack policy to use
*/
void SetQosAckPolicy (Mac48Address receiver, uint8_t tid, WifiMacHeader::QosAckPolicy ackPolicy);
/**
* \brief Print the object contents.
* \param os output stream in which the data should be printed.
*/
virtual void Print (std::ostream &os) const = 0;
const Method method; //!< acknowledgment method
Time acknowledgmentTime; //!< time required by the acknowledgment method
private:
/**
* Check whether the given QoS Ack policy can be used for the MPDUs addressed
* to the given receiver and belonging to the given TID.
*
* \param receiver the MAC address of the receiver
* \param tid the TID
* \param ackPolicy the QoS Ack policy to use
* \return true if the given QoS Ack policy can be used, false otherwise
*/
virtual bool CheckQosAckPolicy (Mac48Address receiver, uint8_t tid,
WifiMacHeader::QosAckPolicy ackPolicy) const = 0;
/// Qos Ack Policy to set for MPDUs addressed to a given receiver and having a given TID
std::map<std::pair<Mac48Address, uint8_t>, WifiMacHeader::QosAckPolicy> m_ackPolicy;
};
/**
* \ingroup wifi
*
* WifiNoAck specifies that no acknowledgment is required.
*/
struct WifiNoAck : public WifiAcknowledgment
{
WifiNoAck ();
// Overridden from WifiAcknowledgment
bool CheckQosAckPolicy (Mac48Address receiver, uint8_t tid, WifiMacHeader::QosAckPolicy ackPolicy) const override;
void Print (std::ostream &os) const override;
};
/**
* \ingroup wifi
*
* WifiNormalAck specifies that acknowledgment via Normal Ack is required.
*/
struct WifiNormalAck : public WifiAcknowledgment
{
WifiNormalAck ();
// Overridden from WifiAcknowledgment
bool CheckQosAckPolicy (Mac48Address receiver, uint8_t tid, WifiMacHeader::QosAckPolicy ackPolicy) const override;
void Print (std::ostream &os) const override;
WifiTxVector ackTxVector; //!< Ack TXVECTOR
};
/**
* \brief Stream insertion operator.
*
* \param os the output stream
* \param acknowledgment the acknowledgment method
* \returns a reference to the stream
*/
std::ostream& operator<< (std::ostream& os, const WifiAcknowledgment* acknowledgment);
} //namespace ns3
#endif /* WIFI_ACKNOWLEDGMENT_H */

View File

@@ -26,6 +26,7 @@ def build(bld):
'model/wifi-mac-trailer.cc',
'model/wifi-tx-timer.cc',
'model/wifi-protection.cc',
'model/wifi-acknowledgment.cc',
'model/mac-low.cc',
'model/mac-low-transmission-parameters.cc',
'model/wifi-mac-queue.cc',
@@ -198,6 +199,7 @@ def build(bld):
'model/mac-rx-middle.h',
'model/wifi-tx-timer.h',
'model/wifi-protection.h',
'model/wifi-acknowledgment.h',
'model/mac-low.h',
'model/mac-low-transmission-parameters.h',
'model/originator-block-ack-agreement.h',