A Discrete-Event Network Simulator
API
ns3::WifiPhyTag Class Reference

Tag for WifiTxVector and WifiPreamble information to be embedded in outgoing transmissions as a PacketTag. More...

#include "wifi-phy-tag.h"

+ Inheritance diagram for ns3::WifiPhyTag:
+ Collaboration diagram for ns3::WifiPhyTag:

Public Member Functions

 WifiPhyTag ()
 Constructor. More...
 
 WifiPhyTag (WifiTxVector txVector, MpduType mpdutype)
 Constructor. More...
 
void Deserialize (TagBuffer i)
 
TypeId GetInstanceTypeId (void) const
 Get the most derived TypeId for this Object. More...
 
MpduType GetMpduType (void) const
 Getter for mpduType parameter. More...
 
uint32_t GetSerializedSize (void) const
 
WifiTxVector GetWifiTxVector (void) const
 Getter for WifiTxVector parameter. More...
 
void Print (std::ostream &os) const
 
void Serialize (TagBuffer i) const
 
- Public Member Functions inherited from ns3::ObjectBase
virtual ~ObjectBase ()
 Virtual destructor. More...
 
void GetAttribute (std::string name, AttributeValue &value) const
 Get the value of an attribute, raising fatal errors if unsuccessful. More...
 
bool GetAttributeFailSafe (std::string name, AttributeValue &value) const
 Get the value of an attribute without raising erros. More...
 
void SetAttribute (std::string name, const AttributeValue &value)
 Set a single attribute, raising fatal errors if unsuccessful. More...
 
bool SetAttributeFailSafe (std::string name, const AttributeValue &value)
 Set a single attribute without raising errors. More...
 
bool TraceConnect (std::string name, std::string context, const CallbackBase &cb)
 Connect a TraceSource to a Callback with a context. More...
 
bool TraceConnectWithoutContext (std::string name, const CallbackBase &cb)
 Connect a TraceSource to a Callback without a context. More...
 
bool TraceDisconnect (std::string name, std::string context, const CallbackBase &cb)
 Disconnect from a TraceSource a Callback previously connected with a context. More...
 
bool TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb)
 Disconnect from a TraceSource a Callback previously connected without a context. More...
 

Static Public Member Functions

static TypeId GetTypeId (void)
 Get the type ID. More...
 
- Static Public Member Functions inherited from ns3::Tag
static TypeId GetTypeId (void)
 Get the type ID. More...
 
- Static Public Member Functions inherited from ns3::ObjectBase
static TypeId GetTypeId (void)
 Get the type ID. More...
 

Private Attributes

MpduType m_mpduType
 MPDU type. More...
 
WifiTxVector m_wifiTxVector
 wifi transmit vector More...
 

Additional Inherited Members

- Protected Member Functions inherited from ns3::ObjectBase
void ConstructSelf (const AttributeConstructionList &attributes)
 Complete construction of ObjectBase; invoked by derived classes. More...
 
virtual void NotifyConstructionCompleted (void)
 Notifier called once the ObjectBase is fully constructed. More...
 

Detailed Description

Tag for WifiTxVector and WifiPreamble information to be embedded in outgoing transmissions as a PacketTag.

Definition at line 35 of file wifi-phy-tag.h.

Constructor & Destructor Documentation

ns3::WifiPhyTag::WifiPhyTag ( )

Constructor.

Definition at line 65 of file wifi-phy-tag.cc.

ns3::WifiPhyTag::WifiPhyTag ( WifiTxVector  txVector,
MpduType  mpdutype 
)

Constructor.

Parameters
txVectorthe WifiTxVector
mpdutypethe mpduType

Definition at line 69 of file wifi-phy-tag.cc.

Member Function Documentation

void ns3::WifiPhyTag::Deserialize ( TagBuffer  i)
virtual
Parameters
ithe buffer to read data from.

Read the content of the tag from the provided tag buffer. DO NOT attempt to read more bytes than you wrote with Tag::Serialize.

Implements ns3::Tag.

Definition at line 54 of file wifi-phy-tag.cc.

References m_mpduType, m_wifiTxVector, ns3::TagBuffer::Read(), and ns3::TagBuffer::ReadU16().

+ Here is the call graph for this function:

TypeId ns3::WifiPhyTag::GetInstanceTypeId ( void  ) const
virtual

Get the most derived TypeId for this Object.

This method is typically implemented by ns3::Object::GetInstanceTypeId but some classes which derive from ns3::ObjectBase directly have to implement it themselves.

Returns
The TypeId associated to the most-derived type of this instance.

Implements ns3::ObjectBase.

Definition at line 35 of file wifi-phy-tag.cc.

References GetTypeId().

+ Here is the call graph for this function:

MpduType ns3::WifiPhyTag::GetMpduType ( void  ) const

Getter for mpduType parameter.

Returns
mpduType the mpduType

Definition at line 82 of file wifi-phy-tag.cc.

References m_mpduType.

Referenced by ns3::WifiPhy::StartReceivePreambleAndHeader().

+ Here is the caller graph for this function:

uint32_t ns3::WifiPhyTag::GetSerializedSize ( void  ) const
virtual
Returns
the number of bytes required to serialize the data of the tag.

This method is typically invoked by Packet::AddPacketTag or Packet::AddByteTag just prior to calling Tag::Serialize.

Implements ns3::Tag.

Definition at line 41 of file wifi-phy-tag.cc.

TypeId ns3::WifiPhyTag::GetTypeId ( void  )
static

Get the type ID.

Returns
the object TypeId

Definition at line 26 of file wifi-phy-tag.cc.

References ns3::TypeId::SetParent().

Referenced by GetInstanceTypeId().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

WifiTxVector ns3::WifiPhyTag::GetWifiTxVector ( void  ) const

Getter for WifiTxVector parameter.

Returns
the WifiTxVector

Definition at line 76 of file wifi-phy-tag.cc.

References m_wifiTxVector.

Referenced by ns3::WifiPhy::StartReceivePreambleAndHeader().

+ Here is the caller graph for this function:

void ns3::WifiPhyTag::Print ( std::ostream &  os) const
virtual
Parameters
osthe stream to print to

This method is typically invoked from the Packet::PrintByteTags or Packet::PrintPacketTags methods.

Implements ns3::Tag.

Definition at line 60 of file wifi-phy-tag.cc.

References m_mpduType, and m_wifiTxVector.

void ns3::WifiPhyTag::Serialize ( TagBuffer  i) const
virtual
Parameters
ithe buffer to write data into.

Write the content of the tag in the provided tag buffer. DO NOT attempt to write more bytes than you requested with Tag::GetSerializedSize.

Implements ns3::Tag.

Definition at line 47 of file wifi-phy-tag.cc.

References m_mpduType, m_wifiTxVector, ns3::TagBuffer::Write(), and ns3::TagBuffer::WriteU16().

+ Here is the call graph for this function:

Member Data Documentation

MpduType ns3::WifiPhyTag::m_mpduType
private

MPDU type.

Definition at line 75 of file wifi-phy-tag.h.

Referenced by Deserialize(), GetMpduType(), Print(), and Serialize().

WifiTxVector ns3::WifiPhyTag::m_wifiTxVector
private

wifi transmit vector

Definition at line 74 of file wifi-phy-tag.h.

Referenced by Deserialize(), GetWifiTxVector(), Print(), and Serialize().


The documentation for this class was generated from the following files: