/usr/include/ns3.26/ns3/dca-txop.h is in libns3-dev 3.26+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2005 INRIA
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
*/
#ifndef DCA_TXOP_H
#define DCA_TXOP_H
#include <stdint.h>
#include "ns3/callback.h"
#include "ns3/packet.h"
#include "ns3/nstime.h"
#include "ns3/object.h"
#include "ns3/wifi-mac-header.h"
#include "ns3/wifi-mode.h"
#include "ns3/wifi-remote-station-manager.h"
#include "ns3/dcf.h"
namespace ns3 {
class DcfState;
class DcfManager;
class WifiMacQueue;
class MacLow;
class WifiMacParameters;
class MacTxMiddle;
class RandomStream;
class MacStation;
class MacStations;
/**
* \brief handle packet fragmentation and retransmissions.
* \ingroup wifi
*
* This class implements the packet fragmentation and
* retransmission policy. It uses the ns3::MacLow and ns3::DcfManager
* helper classes to respectively send packets and decide when
* to send them. Packets are stored in a ns3::WifiMacQueue until
* they can be sent.
*
* The policy currently implemented uses a simple fragmentation
* threshold: any packet bigger than this threshold is fragmented
* in fragments whose size is smaller than the threshold.
*
* The retransmission policy is also very simple: every packet is
* retransmitted until it is either successfully transmitted or
* it has been retransmitted up until the ssrc or slrc thresholds.
*
* The rts/cts policy is similar to the fragmentation policy: when
* a packet is bigger than a threshold, the rts/cts protocol is used.
*/
class DcaTxop : public Dcf
{
public:
static TypeId GetTypeId (void);
/**
* typedef for a callback to invoke when a
* packet transmission was completed successfully.
*/
typedef Callback <void, const WifiMacHeader&> TxOk;
/**
* typedef for a callback to invoke when a
* packet transmission was failed.
*/
typedef Callback <void, const WifiMacHeader&> TxFailed;
DcaTxop ();
~DcaTxop ();
/**
* Set MacLow associated with this DcaTxop.
*
* \param low MacLow
*/
void SetLow (Ptr<MacLow> low);
/**
* Set DcfManager this DcaTxop is associated to.
*
* \param manager DcfManager
*/
void SetManager (DcfManager *manager);
/**
* Set WifiRemoteStationsManager this DcaTxop is associated to.
*
* \param remoteManager WifiRemoteStationManager
*/
void SetWifiRemoteStationManager (Ptr<WifiRemoteStationManager> remoteManager);
/**
* Set MacTxMiddle this DcaTxop is associated to.
*
* \param txMiddle MacTxMiddle
*/
void SetTxMiddle (MacTxMiddle *txMiddle);
/**
* \param callback the callback to invoke when a
* packet transmission was completed successfully.
*/
void SetTxOkCallback (TxOk callback);
/**
* \param callback the callback to invoke when a
* packet transmission was completed unsuccessfully.
*/
void SetTxFailedCallback (TxFailed callback);
/**
* Return the packet queue associated with this DcaTxop.
*
* \return WifiMacQueue
*/
Ptr<WifiMacQueue > GetQueue () const;
virtual void SetMinCw (uint32_t minCw);
virtual void SetMaxCw (uint32_t maxCw);
virtual void SetAifsn (uint32_t aifsn);
virtual void SetTxopLimit (Time txopLimit);
virtual uint32_t GetMinCw (void) const;
virtual uint32_t GetMaxCw (void) const;
virtual uint32_t GetAifsn (void) const;
virtual Time GetTxopLimit (void) const;
/**
* \param packet packet to send
* \param hdr header of packet to send.
*
* Store the packet in the internal queue until it
* can be sent safely.
*/
void Queue (Ptr<const Packet> packet, const WifiMacHeader &hdr);
/**
* Assign a fixed random variable stream number to the random variables
* used by this model. Return the number of streams (possibly zero) that
* have been assigned.
*
* \param stream first stream index to use
*
* \return the number of stream indices assigned by this model
*/
int64_t AssignStreams (int64_t stream);
private:
class TransmissionListener;
class NavListener;
class PhyListener;
class Dcf;
friend class Dcf;
friend class TransmissionListener;
DcaTxop &operator = (const DcaTxop &);
DcaTxop (const DcaTxop &o);
//Inherited from ns3::Object
/**
* Return the MacLow associated with this DcaTxop.
*
* \return MacLow
*/
Ptr<MacLow> Low (void);
void DoInitialize ();
/* dcf notifications forwarded here */
/**
* Check if the DCF requires access.
*
* \return true if the DCF requires access,
* false otherwise
*/
bool NeedsAccess (void) const;
/**
* Notify the DCF that access has been granted.
*/
void NotifyAccessGranted (void);
/**
* Notify the DCF that internal collision has occurred.
*/
void NotifyInternalCollision (void);
/**
* Notify the DCF that collision has occurred.
*/
void NotifyCollision (void);
/**
* When a channel switching occurs, enqueued packets are removed.
*/
void NotifyChannelSwitching (void);
/**
* When sleep operation occurs, if there is a pending packet transmission,
* it will be reinserted to the front of the queue.
*/
void NotifySleep (void);
/**
* When wake up operation occurs, channel access will be restarted
*/
void NotifyWakeUp (void);
/* Event handlers */
/**
* Event handler when a CTS is received.
*
* \param snr
* \param txMode
*/
void GotCts (double snr, WifiMode txMode);
/**
* Event handler when a CTS timeout has occurred.
*/
void MissedCts (void);
/**
* Event handler when an ACK is received.
*
* \param snr
* \param txMode
*/
void GotAck (double snr, WifiMode txMode);
/**
* Event handler when an ACK is missed.
*/
void MissedAck (void);
/**
* Start transmission for the next fragment.
* This is called for fragment only.
*/
void StartNextFragment (void);
/**
* Cancel the transmission.
*/
void Cancel (void);
/**
* Event handler when a transmission that
* does not require an ACK has completed.
*/
void EndTxNoAck (void);
/**
* Restart access request if needed.
*/
void RestartAccessIfNeeded (void);
/**
* Request access from DCF manager if needed.
*/
void StartAccessIfNeeded (void);
/**
* Check if RTS should be re-transmitted if CTS was missed.
*
* \return true if RTS should be re-transmitted,
* false otherwise
*/
bool NeedRtsRetransmission (void);
/**
* Check if DATA should be re-transmitted if ACK was missed.
*
* \return true if DATA should be re-transmitted,
* false otherwise
*/
bool NeedDataRetransmission (void);
/**
* Check if the current packet should be fragmented.
*
* \return true if the current packet should be fragmented,
* false otherwise
*/
bool NeedFragmentation (void);
/**
* Calculate the size of the next fragment.
*
* \return the size of the next fragment
*/
uint32_t GetNextFragmentSize (void);
/**
* Calculate the size of the current fragment.
*
* \return the size of the current fragment
*/
uint32_t GetFragmentSize (void);
/**
* Calculate the offset for the current fragment.
*
* \return the offset for the current fragment
*/
uint32_t GetFragmentOffset (void);
/**
* Check if the curren fragment is the last fragment.
*
* \return true if the curren fragment is the last fragment,
* false otherwise
*/
bool IsLastFragment (void);
/**
* Continue to the next fragment. This method simply
* increments the internal variable that keep track
* of the current fragment number.
*/
void NextFragment (void);
/**
* Get the next fragment from the packet with
* appropriate Wifi header for the fragment.
*
* \param hdr
*
* \return the fragment with the current fragment number
*/
Ptr<Packet> GetFragmentPacket (WifiMacHeader *hdr);
virtual void DoDispose (void);
Dcf *m_dcf;
DcfManager *m_manager;
TxOk m_txOkCallback;
TxFailed m_txFailedCallback;
Ptr<WifiMacQueue> m_queue;
MacTxMiddle *m_txMiddle;
Ptr <MacLow> m_low;
Ptr<WifiRemoteStationManager> m_stationManager;
TransmissionListener *m_transmissionListener;
RandomStream *m_rng;
bool m_accessOngoing;
Ptr<const Packet> m_currentPacket;
WifiMacHeader m_currentHdr;
uint8_t m_fragmentNumber;
};
} //namespace ns3
#endif /* DCA_TXOP_H */
|