A Discrete-Event Network Simulator
API
wifi-ppdu.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019 Orange Labs
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: Rediet <getachew.redieteab@orange.com>
18  */
19 
20 #ifndef WIFI_PPDU_H
21 #define WIFI_PPDU_H
22 
23 #include "wifi-tx-vector.h"
24 
25 #include "ns3/nstime.h"
26 
27 #include <list>
28 #include <optional>
29 #include <unordered_map>
30 
38 namespace ns3
39 {
40 
41 class Packet;
42 class WifiPsdu;
43 class WifiPhyOperatingChannel;
44 
48 typedef std::unordered_map<uint16_t /* STA-ID */, Ptr<const WifiPsdu> /* PSDU */> WifiConstPsduMap;
49 
56 class WifiPpdu : public SimpleRefCount<WifiPpdu>
57 {
58  public:
68  const WifiTxVector& txVector,
70  uint64_t uid = UINT64_MAX);
79  WifiPpdu(const WifiConstPsduMap& psdus,
80  const WifiTxVector& txVector,
82  uint64_t uid);
86  virtual ~WifiPpdu();
87 
93  const WifiTxVector& GetTxVector() const;
94 
98  void ResetTxVector() const;
99 
105  void UpdateTxVector(const WifiTxVector& updatedTxVector) const;
106 
113 
117  bool IsTruncatedTx() const;
118 
122  void SetTruncatedTx();
123 
129  virtual Time GetTxDuration() const;
130 
137  virtual uint16_t GetTxChannelWidth() const;
138 
142  uint16_t GetTxCenterFreq() const;
143 
151  bool DoesOverlapChannel(uint16_t minFreq, uint16_t maxFreq) const;
152 
158 
163  uint64_t GetUid() const;
164 
169  WifiPreamble GetPreamble() const;
170 
175  void Print(std::ostream& os) const;
180  virtual Ptr<WifiPpdu> Copy() const;
181 
186  virtual WifiPpduType GetType() const;
187 
193  virtual uint16_t GetStaId() const;
194 
195  protected:
200  virtual std::string PrintPayload() const;
201 
205  uint16_t m_txCenterFreq;
206  uint64_t m_uid;
207  mutable std::optional<WifiTxVector>
211 
212  private:
218  virtual WifiTxVector DoGetTxVector() const;
219 
222  uint8_t m_txPowerLevel;
224  uint8_t m_txAntennas;
225 
226  uint16_t m_txChannelWidth;
231 }; // class WifiPpdu
232 
240 std::ostream& operator<<(std::ostream& os, const Ptr<const WifiPpdu>& ppdu);
241 
249 std::ostream& operator<<(std::ostream& os, const WifiConstPsduMap& psdus);
250 
251 } // namespace ns3
252 
253 #endif /* WIFI_PPDU_H */
A template-based reference counting class.
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:105
Class that keeps track of all information about the current PHY operating channel.
WifiPpdu stores a preamble, a modulation class, PHY headers and a PSDU.
Definition: wifi-ppdu.h:57
void Print(std::ostream &os) const
Print the PPDU contents.
Definition: wifi-ppdu.cc:228
virtual Time GetTxDuration() const
Get the total transmission duration of the PPDU.
Definition: wifi-ppdu.cc:220
bool IsTruncatedTx() const
Definition: wifi-ppdu.cc:127
WifiPreamble GetPreamble() const
Get the preamble of the PPDU.
Definition: wifi-ppdu.cc:202
uint16_t GetTxCenterFreq() const
Definition: wifi-ppdu.cc:152
void ResetTxVector() const
Reset the TXVECTOR.
Definition: wifi-ppdu.cc:106
virtual uint16_t GetStaId() const
Get the ID of the STA that transmitted the PPDU for UL MU, SU_STA_ID otherwise.
Definition: wifi-ppdu.cc:214
uint16_t m_txChannelWidth
The channel width (MHz) used for the transmission of this PPDU.
Definition: wifi-ppdu.h:226
const WifiPhyOperatingChannel & m_operatingChannel
the operating channel of the PHY
Definition: wifi-ppdu.h:210
WifiPpdu(Ptr< const WifiPsdu > psdu, const WifiTxVector &txVector, const WifiPhyOperatingChannel &channel, uint64_t uid=UINT64_MAX)
Create a PPDU storing a PSDU.
Definition: wifi-ppdu.cc:32
uint16_t m_txCenterFreq
the center frequency (MHz) used for the transmission of this PPDU
Definition: wifi-ppdu.h:205
void UpdateTxVector(const WifiTxVector &updatedTxVector) const
Update the TXVECTOR based on some information known at the receiver.
Definition: wifi-ppdu.cc:113
virtual WifiPpduType GetType() const
Return the PPDU type (.
Definition: wifi-ppdu.cc:208
std::optional< WifiTxVector > m_txVector
the TXVECTOR at TX PHY or the reconstructed TXVECTOR at RX PHY (or std::nullopt if TXVECTOR has not b...
Definition: wifi-ppdu.h:208
WifiModulationClass m_modulation
the modulation used for the transmission of this PPDU
Definition: wifi-ppdu.h:203
WifiPreamble m_preamble
the PHY preamble
Definition: wifi-ppdu.h:202
virtual ~WifiPpdu()
Destructor for WifiPpdu.
Definition: wifi-ppdu.cc:75
Ptr< const WifiPsdu > GetPsdu() const
Get the payload of the PPDU.
Definition: wifi-ppdu.cc:121
virtual WifiTxVector DoGetTxVector() const
Get the TXVECTOR used to send the PPDU.
Definition: wifi-ppdu.cc:98
uint64_t m_uid
the unique ID of this PPDU
Definition: wifi-ppdu.h:206
void SetTruncatedTx()
Indicate that the PPDU's transmission was aborted due to transmitter switch off.
Definition: wifi-ppdu.cc:133
const WifiTxVector & GetTxVector() const
Get the TXVECTOR used to send the PPDU.
Definition: wifi-ppdu.cc:85
uint64_t GetUid() const
Get the UID of the PPDU.
Definition: wifi-ppdu.cc:196
WifiModulationClass GetModulation() const
Get the modulation used for the PPDU.
Definition: wifi-ppdu.cc:140
WifiConstPsduMap m_psdus
the PSDUs contained in this PPDU
Definition: wifi-ppdu.h:204
virtual std::string PrintPayload() const
Print the payload of the PPDU.
Definition: wifi-ppdu.cc:236
virtual uint16_t GetTxChannelWidth() const
Get the channel width over which the PPDU will effectively be transmitted.
Definition: wifi-ppdu.cc:146
uint8_t m_txAntennas
the number of antennas used to transmit this PPDU
Definition: wifi-ppdu.h:224
bool DoesOverlapChannel(uint16_t minFreq, uint16_t maxFreq) const
Check whether the given PPDU overlaps a given channel.
Definition: wifi-ppdu.cc:158
uint8_t m_txPowerLevel
the transmission power level (used only for TX and initializing the returned WifiTxVector)
Definition: wifi-ppdu.h:222
virtual Ptr< WifiPpdu > Copy() const
Copy this instance.
Definition: wifi-ppdu.cc:244
bool m_truncatedTx
flag indicating whether the frame's transmission was aborted due to transmitter switch off
Definition: wifi-ppdu.h:220
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
WifiPreamble
The type of preamble to be used by an IEEE 802.11 transmission.
WifiPpduType
The type of PPDU (SU, DL MU, or UL MU)
WifiModulationClass
This enumeration defines the modulation classes per (Table 10-6 "Modulation classes"; IEEE 802....
Every class exported by the ns3 library is enclosed in the ns3 namespace.
std::unordered_map< uint16_t, Ptr< const WifiPsdu > > WifiConstPsduMap
Map of const PSDUs indexed by STA-ID.
std::ostream & operator<<(std::ostream &os, const Angles &a)
Definition: angles.cc:159
channel
Definition: third.py:88