A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
mesh-wifi-interface-mac.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2009 IITP RAS
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Authors: Kirill Andreev <andreev@iitp.ru>
19  * Pavel Boyko <boyko@iitp.ru>
20  */
21 
22 #ifndef MESH_WIFI_INTERFACE_MAC_H
23 #define MESH_WIFI_INTERFACE_MAC_H
24 
25 #include <stdint.h>
26 #include <map>
27 #include "ns3/mac48-address.h"
28 #include "ns3/mgt-headers.h"
29 #include "ns3/callback.h"
30 #include "ns3/packet.h"
31 #include "ns3/nstime.h"
32 #include "ns3/wifi-remote-station-manager.h"
33 #include "ns3/regular-wifi-mac.h"
34 #include "ns3/mesh-wifi-interface-mac-plugin.h"
35 #include "ns3/event-id.h"
36 #include "qos-utils.h"
37 
38 namespace ns3 {
39 
40 class WifiMacHeader;
41 class DcaTxop;
42 class UniformRandomVariable;
55 {
56 public:
58  static TypeId GetTypeId ();
62  virtual ~MeshWifiInterfaceMac ();
63 
65  // \{
66  virtual void Enqueue (Ptr<const Packet> packet, Mac48Address to, Mac48Address from);
67  virtual void Enqueue (Ptr<const Packet> packet, Mac48Address to);
68  virtual bool SupportsSendFrom () const;
69  virtual void SetLinkUpCallback (Callback<void> linkUp);
70  // \}
72  // \{
75  // \}
77  // \{
79  void SetRandomStartDelay (Time interval);
81  void SetBeaconInterval (Time interval);
83  Time GetBeaconInterval () const;
89  Time GetTbtt () const;
97  void ShiftTbtt (Time shift);
98  // \}
99 
101  // \{
104  // \}
105 
113  // \{
115  uint16_t GetFrequencyChannel () const;
117  void SwitchFrequencyChannel (uint16_t new_id);
118  // \}
119 
123  bool CheckSupportedRates (SupportedRates rates) const;
127  // \{
129  uint32_t GetLinkMetric (Mac48Address peerAddress);
130  // \}
132  void Report (std::ostream &) const;
133  void ResetStats ();
135  void SetBeaconGeneration (bool enable);
137  virtual void FinishConfigureStandard (enum WifiPhyStandard standard);
146  int64_t AssignStreams (int64_t stream);
147 private:
149  void Receive (Ptr<Packet> packet, WifiMacHeader const *hdr);
151  void ForwardDown (Ptr<const Packet> packet, Mac48Address from, Mac48Address to);
153  void SendBeacon ();
155  void ScheduleNextBeacon ();
157  bool GetBeaconGeneration () const;
159  virtual void DoDispose ();
160 
161 private:
162  typedef std::vector<Ptr<MeshWifiInterfaceMacPlugin> > PluginList;
163 
164  virtual void DoStart ();
165 
167  // \{
176  // \}
177 
180 
187  // \{
188  struct Statistics
189  {
190  uint16_t recvBeacons;
191  uint32_t sentFrames;
192  uint32_t sentBytes;
193  uint32_t recvFrames;
194  uint32_t recvBytes;
195  void
196  Print (std::ostream & os) const;
197  Statistics ();
198  };
200  // \}
203 
206 };
207 
208 } // namespace ns3
209 
210 #endif /* MESH_WIFI_INTERFACE_MAC_H */