A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
higher-tx-tag.cc
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2008 INRIA
4
* Copyright (c) 2013 Dalian University of Technology
5
*
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License version 2 as
8
* published by the Free Software Foundation;
9
*
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
14
*
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
*
19
* Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
20
* Junling Bu <linlinjavaer@gmail.com>
21
*/
22
#include "
higher-tx-tag.h
"
23
#include "ns3/log.h"
24
#include "ns3/abort.h"
25
26
namespace
ns3
{
27
28
NS_LOG_COMPONENT_DEFINE
(
"HigherLayerTxVectorTag"
);
29
30
NS_OBJECT_ENSURE_REGISTERED
(HigherLayerTxVectorTag);
31
32
TypeId
33
HigherLayerTxVectorTag::GetTypeId
(
void
)
34
{
35
static
TypeId
tid =
TypeId
(
"ns3::HigherLayerTxVectorTag"
)
36
.
SetParent
<
Tag
> ()
37
.SetGroupName (
"Wave"
)
38
.AddConstructor<
HigherLayerTxVectorTag
> ()
39
;
40
return
tid;
41
}
42
43
TypeId
44
HigherLayerTxVectorTag::GetInstanceTypeId
(
void
)
const
45
{
46
NS_LOG_FUNCTION
(
this
);
47
return
GetTypeId
();
48
}
49
50
HigherLayerTxVectorTag::HigherLayerTxVectorTag
(
void
)
51
: m_adaptable (false)
52
{
53
NS_LOG_FUNCTION
(
this
);
54
}
55
56
HigherLayerTxVectorTag::HigherLayerTxVectorTag
(
WifiTxVector
txVector,
bool
adaptable)
57
: m_txVector (txVector),
58
m_adaptable (adaptable)
59
{
60
NS_LOG_FUNCTION
(
this
);
61
NS_ABORT_MSG_IF
(txVector.
GetPreambleType
() ==
WIFI_PREAMBLE_HE_MU
,
"HE MU is not compatible with this tag"
);
62
}
63
64
WifiTxVector
65
HigherLayerTxVectorTag::GetTxVector
(
void
)
const
66
{
67
NS_LOG_FUNCTION
(
this
);
68
return
m_txVector
;
69
}
70
71
bool
72
HigherLayerTxVectorTag::IsAdaptable
(
void
)
const
73
{
74
NS_LOG_FUNCTION
(
this
);
75
return
m_adaptable
;
76
}
77
78
uint32_t
79
HigherLayerTxVectorTag::GetSerializedSize
(
void
)
const
80
{
81
NS_LOG_FUNCTION
(
this
);
82
return
(
sizeof
(
WifiTxVector
) + 1);
83
}
84
85
void
86
HigherLayerTxVectorTag::Serialize
(
TagBuffer
i)
const
87
{
88
NS_LOG_FUNCTION
(
this
<< &i);
89
i.
Write
((uint8_t *)&
m_txVector
,
sizeof
(
WifiTxVector
));
90
i.
WriteU8
(
static_cast<
uint8_t
>
(
m_adaptable
));
91
}
92
93
void
94
HigherLayerTxVectorTag::Deserialize
(
TagBuffer
i)
95
{
96
NS_LOG_FUNCTION
(
this
<< &i);
97
i.
Read
((uint8_t *)&
m_txVector
,
sizeof
(
WifiTxVector
));
98
m_adaptable
= i.
ReadU8
();
99
}
100
101
void
102
HigherLayerTxVectorTag::Print
(std::ostream &os)
const
103
{
104
NS_LOG_FUNCTION
(
this
<< &os);
105
os <<
" TxVector="
<<
m_txVector
<<
"; Adapter="
<<
m_adaptable
;
106
}
107
108
}
// namespace ns3
ns3::HigherLayerTxVectorTag
This tag will be used to support higher layer control DataRate and TxPwr_Level for transmission.
Definition:
higher-tx-tag.h:48
ns3::HigherLayerTxVectorTag::GetInstanceTypeId
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition:
higher-tx-tag.cc:44
ns3::HigherLayerTxVectorTag::GetTxVector
WifiTxVector GetTxVector(void) const
Definition:
higher-tx-tag.cc:65
ns3::HigherLayerTxVectorTag::IsAdaptable
bool IsAdaptable(void) const
Definition:
higher-tx-tag.cc:72
ns3::HigherLayerTxVectorTag::GetSerializedSize
virtual uint32_t GetSerializedSize(void) const
Definition:
higher-tx-tag.cc:79
ns3::HigherLayerTxVectorTag::m_adaptable
bool m_adaptable
adaptable
Definition:
higher-tx-tag.h:81
ns3::HigherLayerTxVectorTag::m_txVector
WifiTxVector m_txVector
transmit vector
Definition:
higher-tx-tag.h:80
ns3::HigherLayerTxVectorTag::HigherLayerTxVectorTag
HigherLayerTxVectorTag(void)
Definition:
higher-tx-tag.cc:50
ns3::HigherLayerTxVectorTag::Print
virtual void Print(std::ostream &os) const
Definition:
higher-tx-tag.cc:102
ns3::HigherLayerTxVectorTag::Serialize
virtual void Serialize(TagBuffer i) const
Definition:
higher-tx-tag.cc:86
ns3::HigherLayerTxVectorTag::GetTypeId
static TypeId GetTypeId(void)
Get the type ID.
Definition:
higher-tx-tag.cc:33
ns3::HigherLayerTxVectorTag::Deserialize
virtual void Deserialize(TagBuffer i)
Definition:
higher-tx-tag.cc:94
ns3::TagBuffer
read and write tag data
Definition:
tag-buffer.h:52
ns3::TagBuffer::Read
void Read(uint8_t *buffer, uint32_t size)
Definition:
tag-buffer.cc:176
ns3::TagBuffer::WriteU8
TAG_BUFFER_INLINE void WriteU8(uint8_t v)
Definition:
tag-buffer.h:172
ns3::TagBuffer::Write
void Write(const uint8_t *buffer, uint32_t size)
Definition:
tag-buffer.cc:125
ns3::TagBuffer::ReadU8
TAG_BUFFER_INLINE uint8_t ReadU8(void)
Definition:
tag-buffer.h:195
ns3::Tag
tag a set of bytes in a packet
Definition:
tag.h:37
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:59
ns3::TypeId::SetParent
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition:
type-id.cc:922
ns3::WifiTxVector
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
Definition:
wifi-tx-vector.h:86
ns3::WifiTxVector::GetPreambleType
WifiPreamble GetPreambleType(void) const
Definition:
wifi-tx-vector.cc:148
NS_ABORT_MSG_IF
#define NS_ABORT_MSG_IF(cond, msg)
Abnormal program termination if a condition is true, with a message.
Definition:
abort.h:108
NS_LOG_COMPONENT_DEFINE
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition:
log.h:205
NS_LOG_FUNCTION
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
Definition:
log-macros-enabled.h:244
NS_OBJECT_ENSURE_REGISTERED
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition:
object-base.h:45
ns3::WIFI_PREAMBLE_HE_MU
@ WIFI_PREAMBLE_HE_MU
Definition:
wifi-phy-common.h:76
higher-tx-tag.h
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
src
wave
model
higher-tx-tag.cc
Generated on Tue Feb 6 2024 19:21:28 for ns-3 by
1.9.1