A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
edca-txop-n.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2006, 2009 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  * Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
20  * Author: Mirko Banchi <mk.banchi@gmail.com>
21  */
22 #ifndef EDCA_TXOP_N_H
23 #define EDCA_TXOP_N_H
24 
25 #include "ns3/object.h"
26 #include "ns3/mac48-address.h"
27 #include "ns3/packet.h"
28 
29 #include "wifi-mode.h"
30 #include "wifi-mac-header.h"
32 #include "qos-utils.h"
33 #include "dcf.h"
34 #include "ctrl-headers.h"
35 #include "block-ack-manager.h"
36 
37 #include <map>
38 #include <list>
39 
40 namespace ns3 {
41 
42 class DcfState;
43 class DcfManager;
44 class MacLow;
45 class MacTxMiddle;
46 class WifiMac;
47 class WifiMacParameters;
48 class WifiMacQueue;
49 class RandomStream;
50 class QosBlockedDestinations;
51 class MsduAggregator;
52 class MgtAddBaResponseHeader;
53 class BlockAckManager;
54 class MgtDelBaHeader;
55 
57 {
58  STA,
59  AP,
62 };
63 
64 
77 class EdcaTxopN : public Dcf
78 {
79 public:
82 
83  static TypeId GetTypeId (void);
84  EdcaTxopN ();
85  virtual ~EdcaTxopN ();
86  void DoDispose ();
87 
88  void SetLow (Ptr<MacLow> low);
89  void SetTxMiddle (MacTxMiddle *txMiddle);
90  void SetManager (DcfManager *manager);
91  void SetTxOkCallback (TxOk callback);
92  void SetTxFailedCallback (TxFailed callback);
94  void SetTypeOfStation (enum TypeOfStation type);
95  enum TypeOfStation GetTypeOfStation (void) const;
96 
98  virtual void SetMinCw (uint32_t minCw);
99  virtual void SetMaxCw (uint32_t maxCw);
100  virtual void SetAifsn (uint32_t aifsn);
101  virtual uint32_t GetMinCw (void) const;
102  virtual uint32_t GetMaxCw (void) const;
103  virtual uint32_t GetAifsn (void) const;
104 
105  Ptr<MacLow> Low (void);
107 
108  /* dcf notifications forwarded here */
109  bool NeedsAccess (void) const;
110  void NotifyAccessGranted (void);
111  void NotifyInternalCollision (void);
112  void NotifyCollision (void);
116  void NotifyChannelSwitching (void);
117 
118  /*event handlers*/
119  void GotCts (double snr, WifiMode txMode);
120  void MissedCts (void);
121  void GotAck (double snr, WifiMode txMode);
122  void GotBlockAck (const CtrlBAckResponseHeader *blockAck, Mac48Address recipient);
123  void MissedBlockAck (void);
124  void GotAddBaResponse (const MgtAddBaResponseHeader *respHdr, Mac48Address recipient);
125  void GotDelBaFrame (const MgtDelBaHeader *delBaHdr, Mac48Address recipient);
126  void MissedAck (void);
127  void StartNext (void);
128  void Cancel (void);
129 
130  void RestartAccessIfNeeded (void);
131  void StartAccessIfNeeded (void);
132  bool NeedRts (void);
133  bool NeedRtsRetransmission (void);
134  bool NeedDataRetransmission (void);
135  bool NeedFragmentation (void) const;
136  uint32_t GetNextFragmentSize (void);
137  uint32_t GetFragmentSize (void);
138  uint32_t GetFragmentOffset (void);
139  bool IsLastFragment (void) const;
140  void NextFragment (void);
142 
143  void SetAccessCategory (enum AcIndex ac);
144  void Queue (Ptr<const Packet> packet, const WifiMacHeader &hdr);
146  void PushFront (Ptr<const Packet> packet, const WifiMacHeader &hdr);
147  void CompleteConfig (void);
148  void SetBlockAckThreshold (uint8_t threshold);
149  uint8_t GetBlockAckThreshold (void) const;
150  void SetBlockAckInactivityTimeout (uint16_t timeout);
151  void SendDelbaFrame (Mac48Address addr, uint8_t tid, bool byOriginator);
152 
161  int64_t AssignStreams (int64_t stream);
162 
163 private:
164  void DoStart ();
176  EdcaTxopN &operator = (const EdcaTxopN &);
177  EdcaTxopN (const EdcaTxopN &);
178 
179  /* If number of packets in the queue reaches m_blockAckThreshold value, an ADDBARequest frame
180  * is sent to destination in order to setup a block ack.
181  */
182  bool SetupBlockAckIfNeeded ();
183  /* Sends an ADDBARequest to establish a block ack agreement with sta
184  * addressed by <i>recipient</i> for tid <i>tid</i>.
185  */
186  void SendAddBaRequest (Mac48Address recipient, uint8_t tid, uint16_t startSeq,
187  uint16_t timeout, bool immediateBAck);
188  /* After that all packets, for which a block ack agreement was established, have been
189  * transmitted, we have to send a block ack request.
190  */
191  void SendBlockAckRequest (const struct Bar &bar);
192  /* For now is typically invoked to complete transmission of a packets sent with ack policy
193  * Block Ack: the packet is buffered and dcf is reset.
194  */
195  void CompleteTx (void);
196  /* Verifies if dequeued packet has to be transmitted with ack policy Block Ack. This happens
197  * if an established block ack agreement exists with the receiver.
198  */
199  void VerifyBlockAck (void);
200 
202  class Dcf;
203  class TransmissionListener;
205  friend class Dcf;
206  friend class TransmissionListener;
219 
220  /* current packet could be a simple MSDU or, if an aggregator for this queue is
221  present, could be an A-MSDU.
222  */
224 
230  /*
231  * Represents the minimum number of packets for use of block ack.
232  */
238 };
239 
240 } // namespace ns3
241 
242 #endif /* EDCA_TXOP_N_H */