A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
vht-operation.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2016 Sébastien Deronne
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: Sébastien Deronne <sebastien.deronne@gmail.com>
18 */
19
20#include "vht-operation.h"
21
22namespace ns3
23{
24
26 : m_channelWidth(0),
27 m_channelCenterFrequencySegment0(0),
28 m_channelCenterFrequencySegment1(0),
29 m_basicVhtMcsAndNssSet(0)
30{
31}
32
35{
36 return IE_VHT_OPERATION;
37}
38
39void
40VhtOperation::Print(std::ostream& os) const
41{
42 os << "VHT Operation=" << +GetChannelWidth() << "|" << +GetChannelCenterFrequencySegment0()
44}
45
46uint16_t
48{
49 return 5;
50}
51
52void
53VhtOperation::SetChannelWidth(uint8_t channelWidth)
54{
55 m_channelWidth = channelWidth;
56}
57
58void
59VhtOperation::SetChannelCenterFrequencySegment0(uint8_t channelCenterFrequencySegment0)
60{
61 m_channelCenterFrequencySegment0 = channelCenterFrequencySegment0;
62}
63
64void
65VhtOperation::SetChannelCenterFrequencySegment1(uint8_t channelCenterFrequencySegment1)
66{
67 m_channelCenterFrequencySegment1 = channelCenterFrequencySegment1;
68}
69
70void
71VhtOperation::SetMaxVhtMcsPerNss(uint8_t nss, uint8_t maxVhtMcs)
72{
73 NS_ASSERT((maxVhtMcs == 0 || (maxVhtMcs >= 7 && maxVhtMcs <= 9)) && (nss >= 1 && nss <= 8));
74 if (maxVhtMcs != 0)
75 {
76 m_basicVhtMcsAndNssSet |= (((maxVhtMcs - 7) & 0x03) << ((nss - 1) * 2));
77 }
78 else
79 {
80 m_basicVhtMcsAndNssSet |= (3 << ((nss - 1) * 2));
81 }
82}
83
84void
85VhtOperation::SetBasicVhtMcsAndNssSet(uint16_t basicVhtMcsAndNssSet)
86{
87 m_basicVhtMcsAndNssSet = basicVhtMcsAndNssSet;
88}
89
90uint8_t
92{
93 return m_channelWidth;
94}
95
96uint8_t
98{
100}
101
102uint8_t
104{
106}
107
108uint16_t
110{
112}
113
114void
116{
117 // write the corresponding value for each bit
118 start.WriteU8(GetChannelWidth());
119 start.WriteU8(GetChannelCenterFrequencySegment0());
120 start.WriteU8(GetChannelCenterFrequencySegment1());
121 start.WriteU16(GetBasicVhtMcsAndNssSet());
122}
123
124uint16_t
126{
127 Buffer::Iterator i = start;
128 uint8_t channelWidth = i.ReadU8();
129 uint8_t channelCenterFrequencySegment0 = i.ReadU8();
130 uint8_t channelCenterFrequencySegment1 = i.ReadU8();
131 uint16_t basicVhtMcsAndNssSet = i.ReadU16();
132 SetChannelWidth(channelWidth);
133 SetChannelCenterFrequencySegment0(channelCenterFrequencySegment0);
134 SetChannelCenterFrequencySegment1(channelCenterFrequencySegment1);
135 SetBasicVhtMcsAndNssSet(basicVhtMcsAndNssSet);
136 return length;
137}
138
139} // namespace ns3
iterator in a Buffer instance
Definition: buffer.h:100
uint8_t ReadU8()
Definition: buffer.h:1027
uint16_t ReadU16()
Definition: buffer.h:1035
uint16_t m_basicVhtMcsAndNssSet
basic VHT MCS NSS set
uint8_t m_channelWidth
channel width
uint8_t GetChannelCenterFrequencySegment1() const
Return the Channel Center Frequency Segment 1 field in the VHT Operation information element.
void Print(std::ostream &os) const override
Generate human-readable form of IE.
void SerializeInformationField(Buffer::Iterator start) const override
Serialize information (i.e., the body of the IE, not including the Element ID and length octets)
void SetMaxVhtMcsPerNss(uint8_t nss, uint8_t maxVhtMcs)
Set the Basic VHT-MCS and NSS field in the VHT Operation information element by specifying the tuple ...
uint8_t m_channelCenterFrequencySegment1
channel center frequency segment 1
uint16_t GetBasicVhtMcsAndNssSet() const
Return the Basic VHT-MCS And Nss field in the VHT Operation information element.
uint8_t m_channelCenterFrequencySegment0
channel center frequency segment 0
uint8_t GetChannelWidth() const
Return the Channel Width field in the VHT Operation information element.
uint16_t DeserializeInformationField(Buffer::Iterator start, uint16_t length) override
Deserialize information (i.e., the body of the IE, not including the Element ID and length octets)
void SetBasicVhtMcsAndNssSet(uint16_t basicVhtMcsAndNssSet)
Set the Basic VHT-MCS and NSS field in the VHT Operation information element.
WifiInformationElementId ElementId() const override
Get the wifi information element ID.
void SetChannelWidth(uint8_t channelWidth)
Set the Channel Width field in the VHT Operation information element.
uint16_t GetInformationFieldSize() const override
Length of serialized information (i.e., the length of the body of the IE, not including the Element I...
void SetChannelCenterFrequencySegment1(uint8_t channelCenterFrequencySegment1)
Set the Channel Center Frequency Segment 1 field in the VHT Operation information element.
uint8_t GetChannelCenterFrequencySegment0() const
Return the Channel Center Frequency Segment 0 field in the VHT Operation information element.
void SetChannelCenterFrequencySegment0(uint8_t channelCenterFrequencySegment0)
Set the Channel Center Frequency Segment 0 field in the VHT Operation information element.
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
Definition: assert.h:66
Every class exported by the ns3 library is enclosed in the ns3 namespace.
uint8_t WifiInformationElementId
This type is used to represent an Information Element ID.
#define IE_VHT_OPERATION