/usr/include/ns3.27/ns3/dca-txop.h is in libns3-dev 3.27+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 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 | /* -*- 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 "mac-low.h"
#include "wifi-mac-header.h"
#include "wifi-remote-station-manager.h"
namespace ns3 {
class DcfState;
class DcfManager;
class MacTxMiddle;
class UniformRandomVariable;
class CtrlBAckResponseHeader;
/**
* \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 Object
{
public:
/// allow DcfListener class access
friend class DcfListener;
/// allow MacLowTransmissionListener class access
friend class MacLowTransmissionListener;
DcaTxop ();
virtual ~DcaTxop ();
/**
* \brief Get the type ID.
* \return the object TypeId
*/
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;
/**
* typedef for a callback to invoke when a
* packet is dropped.
*/
typedef Callback <void, Ptr<const Packet> > TxDropped;
/**
* Check for EDCA.
*
* \returns true if EDCA.
*/
virtual bool IsEdca ();
/**
* Set MacLow associated with this DcaTxop.
*
* \param low MacLow.
*/
void SetLow (const Ptr<MacLow> low);
/**
* Set DcfManager this DcaTxop is associated to.
*
* \param manager DcfManager.
*/
void SetManager (const Ptr<DcfManager> manager);
/**
* Set WifiRemoteStationsManager this DcaTxop is associated to.
*
* \param remoteManager WifiRemoteStationManager.
*/
virtual void SetWifiRemoteStationManager (const Ptr<WifiRemoteStationManager> remoteManager);
/**
* Set MacTxMiddle this DcaTxop is associated to.
*
* \param txMiddle MacTxMiddle.
*/
void SetTxMiddle (const Ptr<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);
/**
* \param callback the callback to invoke when a
* packet is dropped.
*/
void SetTxDroppedCallback (TxDropped callback);
/**
* Return the MacLow associated with this DcaTxop.
*
* \return MacLow
*/
Ptr<MacLow> GetLow (void) const;
/**
* Return the packet queue associated with this DcaTxop.
*
* \return WifiMacQueue
*/
Ptr<WifiMacQueue > GetQueue () const;
/**
* Set the minimum contention window size.
*
* \param minCw the minimum contention window size.
*/
void SetMinCw (uint32_t minCw);
/**
* Set the maximum contention window size.
*
* \param maxCw the maximum contention window size.
*/
void SetMaxCw (uint32_t maxCw);
/**
* Set the number of slots that make up an AIFS.
*
* \param aifsn the number of slots that make up an AIFS.
*/
void SetAifsn (uint32_t aifsn);
/**
* Set the TXOP limit.
*
* \param txopLimit the TXOP limit.
* Value zero corresponds to default DCF.
*/
void SetTxopLimit (Time txopLimit);
/**
* Return the minimum contention window size.
*
* \return the minimum contention window size.
*/
uint32_t GetMinCw (void) const;
/**
* Return the maximum contention window size.
*
* \return the maximum contention window size.
*/
uint32_t GetMaxCw (void) const;
/**
* Return the number of slots that make up an AIFS.
*
* \return the number of slots that make up an AIFS.
*/
uint32_t GetAifsn (void) const;
/**
* Return the TXOP limit.
*
* \return the TXOP limit.
*/
Time GetTxopLimit (void) const;
/**
* When a channel switching occurs, enqueued packets are removed.
*/
virtual void NotifyChannelSwitching (void);
/**
* When sleep operation occurs, if there is a pending packet transmission,
* it will be reinserted to the front of the queue.
*/
virtual void NotifySleep (void);
/**
* When wake up operation occurs, channel access will be restarted.
*/
virtual void NotifyWakeUp (void);
/* Event handlers */
/**
* \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.
*/
virtual void Queue (Ptr<const Packet> packet, const WifiMacHeader &hdr);
/* Event handlers */
/**
* Event handler when a CTS timeout has occurred.
*/
virtual void MissedCts (void);
/**
* Event handler when an ACK is received.
*/
virtual void GotAck (void);
/**
* Event handler when an ACK is missed.
*/
virtual void MissedAck (void);
/**
* Event handler when a Block ACK is received.
*
* \param blockAck block ack.
* \param recipient address of the recipient.
* \param rxSnr SNR of the block ack itself.
* \param txMode wifi mode.
* \param dataSnr reported data SNR from the peer.
*/
virtual void GotBlockAck (const CtrlBAckResponseHeader *blockAck, Mac48Address recipient, double rxSnr, WifiMode txMode, double dataSnr);
/**
* Event handler when a Block ACK timeout has occurred.
* \param nMpdus the number of MPDUs sent in the A-MPDU transmission that results in a Block ACK timeout.
*/
virtual void MissedBlockAck (uint8_t nMpdus);
/**
* Start transmission for the next fragment.
* This is called for fragment only.
*/
virtual void StartNextFragment (void);
/**
* Cancel the transmission.
*/
virtual void Cancel (void);
/**
* Start transmission for the next packet if allowed by the TxopLimit.
*/
virtual void StartNextPacket (void);
/**
* Event handler when a transmission that
* does not require an ACK has completed.
*/
virtual void EndTxNoAck (void);
/**
* Check if the station has TXOP granted for the next MPDU.
*
* \return true if the station has TXOP granted for the next MPDU,
* false otherwise
*/
virtual bool HasTxop (void) const;
/**
* 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);
protected:
///< DcfState associated class
friend class DcfState;
virtual void DoDispose (void);
virtual void DoInitialize (void);
/* dcf notifications forwarded here */
/**
* Check if the DCF requires access.
*
* \return true if the DCF requires access,
* false otherwise
*/
virtual bool NeedsAccess (void) const;
/**
* Notify the DCF that access has been granted.
*/
virtual void NotifyAccessGranted (void);
/**
* Notify the DCF that internal collision has occurred.
*/
virtual void NotifyInternalCollision (void);
/**
* Notify the DCF that collision has occurred.
*/
virtual void NotifyCollision (void);
/**
* Restart access request if needed.
*/
virtual void RestartAccessIfNeeded (void);
/**
* Request access from DCF manager if needed.
*/
virtual void StartAccessIfNeeded (void);
/**
* Check if RTS should be re-transmitted if CTS was missed.
*
* \param packet current packet being transmitted.
* \param hdr current header being transmitted.
* \return true if RTS should be re-transmitted,
* false otherwise.
*/
bool NeedRtsRetransmission (Ptr<const Packet> packet, const WifiMacHeader &hdr);
/**
* Check if DATA should be re-transmitted if ACK was missed.
*
* \param packet current packet being transmitted.
* \param hdr current header being transmitted.
* \return true if DATA should be re-transmitted,
* false otherwise.
*/
bool NeedDataRetransmission (Ptr<const Packet> packet, const WifiMacHeader &hdr);
/**
* Check if the current packet should be fragmented.
*
* \return true if the current packet should be fragmented,
* false otherwise
*/
virtual bool NeedFragmentation (void) const;
/**
* 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 Wi-Fi header.
*
* \return the fragment with the current fragment number.
*/
virtual Ptr<Packet> GetFragmentPacket (WifiMacHeader *hdr);
/**
* Calculate the size of the next fragment.
*
* \return the size of the next fragment.
*/
virtual uint32_t GetNextFragmentSize (void) const;
/**
* Calculate the size of the current fragment.
*
* \return the size of the current fragment.
*/
virtual uint32_t GetFragmentSize (void) const;
/**
* Calculate the offset for the current fragment.
*
* \return the offset for the current fragment.
*/
virtual uint32_t GetFragmentOffset (void) const;
/**
* Check if the current fragment is the last fragment.
*
* \return true if the current fragment is the last fragment,
* false otherwise.
*/
virtual bool IsLastFragment (void) const;
/**
*
* Pass the packet included in the wifi MAC queue item to the
* packet dropped callback.
*
* \param item the wifi MAC queue item.
*/
void TxDroppedPacket (Ptr<const WifiMacQueueItem> item);
Ptr<DcfState> m_dcf; //!< the DCF state
Ptr<DcfManager> m_manager; //!< the DCF manager
TxOk m_txOkCallback; //!< the transmit OK callback
TxFailed m_txFailedCallback; //!< the transmit failed callback
TxDropped m_txDroppedCallback; //!< the packet dropped callback
Ptr<WifiMacQueue> m_queue; //!< the wifi MAC queue
Ptr<MacTxMiddle> m_txMiddle; //!< the MacTxMiddle
Ptr <MacLow> m_low; //!< the MacLow
Ptr<WifiRemoteStationManager> m_stationManager; //!< the wifi remote station manager
Ptr<UniformRandomVariable> m_rng; //!< the random stream
Ptr<const Packet> m_currentPacket; //!< the current packet
WifiMacHeader m_currentHdr; //!< the current header
MacLowTransmissionParameters m_currentParams; ///< current transmission parameters
uint8_t m_fragmentNumber; //!< the fragment number
};
} //namespace ns3
#endif /* DCA_TXOP_H */
|