A Discrete-Event Network Simulator
API
wifi-helper.h
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) 2009 MIRKO BANCHI
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  * Authors: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
20  * Mirko Banchi <mk.banchi@gmail.com>
21  */
22 
23 #ifndef WIFI_HELPER_H
24 #define WIFI_HELPER_H
25 
26 #include "ns3/trace-helper.h"
27 #include "ns3/wifi-phy.h"
28 #include "wifi-mac-helper.h"
29 
30 namespace ns3 {
31 
32 class WifiNetDevice;
33 class Node;
34 class RadiotapHeader;
35 
44 {
45 public:
46  WifiPhyHelper ();
47  virtual ~WifiPhyHelper ();
48 
62  virtual Ptr<WifiPhy> Create (Ptr<Node> node, Ptr<NetDevice> device) const = 0;
63 
70  void Set (std::string name, const AttributeValue &v);
92  void SetErrorRateModel (std::string name,
93  std::string n0 = "", const AttributeValue &v0 = EmptyAttributeValue (),
94  std::string n1 = "", const AttributeValue &v1 = EmptyAttributeValue (),
95  std::string n2 = "", const AttributeValue &v2 = EmptyAttributeValue (),
96  std::string n3 = "", const AttributeValue &v3 = EmptyAttributeValue (),
97  std::string n4 = "", const AttributeValue &v4 = EmptyAttributeValue (),
98  std::string n5 = "", const AttributeValue &v5 = EmptyAttributeValue (),
99  std::string n6 = "", const AttributeValue &v6 = EmptyAttributeValue (),
100  std::string n7 = "", const AttributeValue &v7 = EmptyAttributeValue ());
101 
108  {
112  };
113 
124 
133 
134 
135 protected:
146  Ptr<const Packet> packet,
147  uint16_t channelFreqMhz,
148  WifiTxVector txVector,
149  MpduInfo aMpdu);
161  Ptr<const Packet> packet,
162  uint16_t channelFreqMhz,
163  WifiTxVector txVector,
164  MpduInfo aMpdu,
165  SignalNoiseDbm signalNoise);
166 
169 
170 
171 private:
183  uint16_t channelFreqMhz,
184  WifiTxVector txVector,
185  MpduInfo aMpdu);
186 
198  virtual void EnablePcapInternal (std::string prefix,
199  Ptr<NetDevice> nd,
200  bool promiscuous,
201  bool explicitFilename);
202 
214  virtual void EnableAsciiInternal (Ptr<OutputStreamWrapper> stream,
215  std::string prefix,
216  Ptr<NetDevice> nd,
217  bool explicitFilename);
218 
220 };
221 
222 
231 {
232 public:
233  virtual ~WifiHelper ();
234 
243  WifiHelper ();
244 
267  void SetRemoteStationManager (std::string type,
268  std::string n0 = "", const AttributeValue &v0 = EmptyAttributeValue (),
269  std::string n1 = "", const AttributeValue &v1 = EmptyAttributeValue (),
270  std::string n2 = "", const AttributeValue &v2 = EmptyAttributeValue (),
271  std::string n3 = "", const AttributeValue &v3 = EmptyAttributeValue (),
272  std::string n4 = "", const AttributeValue &v4 = EmptyAttributeValue (),
273  std::string n5 = "", const AttributeValue &v5 = EmptyAttributeValue (),
274  std::string n6 = "", const AttributeValue &v6 = EmptyAttributeValue (),
275  std::string n7 = "", const AttributeValue &v7 = EmptyAttributeValue ());
284  virtual Install (const WifiPhyHelper &phy,
285  const WifiMacHelper &mac,
287  NodeContainer::Iterator last) const;
295  const WifiMacHelper &mac, NodeContainer c) const;
303  const WifiMacHelper &mac, Ptr<Node> node) const;
311  const WifiMacHelper &mac, std::string nodeName) const;
336  virtual void SetStandard (WifiPhyStandard standard);
337 
341  static void EnableLogComponents (void);
342 
357  int64_t AssignStreams (NetDeviceContainer c, int64_t stream);
358 
359 
360 protected:
363 };
364 
365 } //namespace ns3
366 
367 #endif /* WIFI_HELPER_H */
virtual ~WifiPhyHelper()
Definition: wifi-helper.cc:129
MpduInfo structure.
Definition: wifi-phy.h:53
Base class providing common user-level ascii trace operations for helpers representing net devices...
Definition: trace-helper.h:641
WifiPhyStandard m_standard
wifi standard
Definition: wifi-helper.h:362
void Set(std::string name, const AttributeValue &v)
Definition: wifi-helper.cc:134
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
virtual NetDeviceContainer Install(const WifiPhyHelper &phy, const WifiMacHelper &mac, NodeContainer::Iterator first, NodeContainer::Iterator last) const
Definition: wifi-helper.cc:629
std::vector< Ptr< Node > >::const_iterator Iterator
Node container iterator.
void SetRemoteStationManager(std::string type, std::string n0="", const AttributeValue &v0=EmptyAttributeValue(), std::string n1="", const AttributeValue &v1=EmptyAttributeValue(), std::string n2="", const AttributeValue &v2=EmptyAttributeValue(), std::string n3="", const AttributeValue &v3=EmptyAttributeValue(), std::string n4="", const AttributeValue &v4=EmptyAttributeValue(), std::string n5="", const AttributeValue &v5=EmptyAttributeValue(), std::string n6="", const AttributeValue &v6=EmptyAttributeValue(), std::string n7="", const AttributeValue &v7=EmptyAttributeValue())
Definition: wifi-helper.cc:600
Radiotap header implementation.
virtual ~WifiHelper()
Definition: wifi-helper.cc:589
Hold a value for an Attribute.
Definition: attribute.h:68
create PHY objects
Definition: wifi-helper.h:42
PcapHelper::DataLinkType m_pcapDlt
PCAP data link type.
Definition: wifi-helper.h:219
Base class providing common user-level pcap operations for helpers representing net devices...
Definition: trace-helper.h:552
ObjectFactory m_errorRateModel
error rate model
Definition: wifi-helper.h:168
helps to create WifiNetDevice objects
Definition: wifi-helper.h:230
WifiHelper()
Create a Wifi helper in an empty state: all its parameters must be set before calling ns3::WifiHelper...
Definition: wifi-helper.cc:593
virtual void EnableAsciiInternal(Ptr< OutputStreamWrapper > stream, std::string prefix, Ptr< NetDevice > nd, bool explicitFilename)
Enable ascii trace output on the indicated net device.
Definition: wifi-helper.cc:514
phy
Definition: third.py:86
static void PcapSniffTxEvent(Ptr< PcapFileWrapper > file, Ptr< const Packet > packet, uint16_t channelFreqMhz, WifiTxVector txVector, MpduInfo aMpdu)
Definition: wifi-helper.cc:163
DataLinkType
This enumeration holds the data link types that will be written to the pcap file. ...
Definition: trace-helper.h:50
virtual void SetStandard(WifiPhyStandard standard)
Definition: wifi-helper.cc:623
WifiPhyStandard
Identifies the PHY specification that a Wifi device is configured to use.
A class for an empty attribute value.
Definition: attribute.h:232
holds a vector of ns3::NetDevice pointers
mac
Definition: third.py:92
static void PcapSniffRxEvent(Ptr< PcapFileWrapper > file, Ptr< const Packet > packet, uint16_t channelFreqMhz, WifiTxVector txVector, MpduInfo aMpdu, SignalNoiseDbm signalNoise)
Definition: wifi-helper.cc:195
int64_t AssignStreams(NetDeviceContainer c, int64_t stream)
Assign a fixed random variable stream number to the random variables used by the Phy and Mac aspects ...
Definition: wifi-helper.cc:731
PcapHelper::DataLinkType GetPcapDataLinkType(void) const
Get the data link type of PCAP traces to be used.
Definition: wifi-helper.cc:472
Include Prism monitor mode information.
Definition: wifi-helper.h:110
static RadiotapHeader GetRadiotapHeader(Ptr< Packet > packet, uint16_t channelFreqMhz, WifiTxVector txVector, MpduInfo aMpdu)
Get the radiotap header.
Definition: wifi-helper.cc:230
Every class exported by the ns3 library is enclosed in the ns3 namespace.
keep track of a set of node pointers.
ObjectFactory m_stationManager
station manager
Definition: wifi-helper.h:361
create MAC layers for a ns3::WifiNetDevice.
void SetPcapDataLinkType(SupportedPcapDataLinkTypes dlt)
Set the data link type of PCAP traces to be used.
Definition: wifi-helper.cc:453
void SetErrorRateModel(std::string name, std::string n0="", const AttributeValue &v0=EmptyAttributeValue(), std::string n1="", const AttributeValue &v1=EmptyAttributeValue(), std::string n2="", const AttributeValue &v2=EmptyAttributeValue(), std::string n3="", const AttributeValue &v3=EmptyAttributeValue(), std::string n4="", const AttributeValue &v4=EmptyAttributeValue(), std::string n5="", const AttributeValue &v5=EmptyAttributeValue(), std::string n6="", const AttributeValue &v6=EmptyAttributeValue(), std::string n7="", const AttributeValue &v7=EmptyAttributeValue())
Definition: wifi-helper.cc:140
virtual void EnablePcapInternal(std::string prefix, Ptr< NetDevice > nd, bool promiscuous, bool explicitFilename)
Enable pcap output the indicated net device.
Definition: wifi-helper.cc:478
ObjectFactory m_phy
PHY object.
Definition: wifi-helper.h:167
Instantiate subclasses of ns3::Object.
static void EnableLogComponents(void)
Helper to enable all WifiNetDevice log components with one statement.
Definition: wifi-helper.cc:678
virtual Ptr< WifiPhy > Create(Ptr< Node > node, Ptr< NetDevice > device) const =0
SignalNoiseDbm structure.
Definition: wifi-phy.h:46
IEEE 802.11 Wireless LAN headers on packets.
Definition: wifi-helper.h:109
SupportedPcapDataLinkTypes
An enumeration of the pcap data link types (DLTs) which this helper supports.
Definition: wifi-helper.h:107
Definition: first.py:1
Include Radiotap link layer information.
Definition: wifi-helper.h:111