21 #ifndef UAN_MAC_RC_GW_H 22 #define UAN_MAC_RC_GW_H 25 #include "ns3/mac8-address.h" 27 #include "ns3/nstime.h" 28 #include "ns3/traced-callback.h" 73 virtual void Clear (
void);
89 (
Time now,
Time delay, uint32_t numRts, uint32_t totalBytes,
90 double secs, uint32_t ctlRate,
double actualX);
220 double ComputeAlpha (uint32_t totalFrames, uint32_t totalBytes, uint32_t
n, uint32_t a,
double deltaK);
236 double ComputeExpS (uint32_t a, uint32_t ld, std::vector<double> exppdk);
261 double ComputePiK (uint32_t a, uint32_t
n, uint32_t k);
271 double ComputeExpBOverA (uint32_t
n, uint32_t a, uint32_t ldlh, std::vector<double> deltaK);
279 uint64_t
NchooseK (uint32_t
n, uint32_t k);
double m_retryStep
Retry rate increment.
Simulation virtual time values and global simulation resolution.
virtual void AttachPhy(Ptr< UanPhy > phy)
Attach PHY layer to this MAC.
Time rxTime
Time request received.
uint32_t CompExpMinIndex(uint32_t n, uint32_t k)
Index to the k'th expected delay among n nodes.
TracedCallback< Time, Time, uint32_t, uint32_t, double, uint32_t, double > m_cycleLogger
A packet was destined for and received at this MAC layer.
uint32_t m_ctsSizeG
Size of UanHeaderCommon and UanHeaderRcCtsGlobal.
bool m_cleared
Flag when we've been cleared.
std::map< Mac8Address, Request > m_requests
Request for each node.
int64_t AssignStreams(int64_t stream)
Assign a fixed random variable stream number to the random variables used by this model...
std::set< std::pair< Time, Mac8Address > > m_sortedRes
Queued request times.
uint32_t m_numRates
Number of rates per Phy layer.
std::map< Mac8Address, Time > m_propDelay
Propagation delay to each node.
Forward calls to a chain of Callback.
Time m_sifs
Spacing between frames to account for timing error and processing delay.
uint16_t m_currentRetryRate
Retry rate number for current cycle.
double m_minRetryRate
Smallest allowed RTS retry rate.
virtual void Clear(void)
Clears all pointer references.
State m_state
Gateway processing state.
virtual ~UanMacRcGw()
Dummy destructor, see DoDispose.
a polymophic address class
uint8_t numFrames
Number of frames.
std::vector< double > GetExpPdk(void)
Get the expected propagation delay to each node.
void ReceiveError(Ptr< Packet > pkt, double sinr)
PHY receive error callback.
Time m_maxDelta
Maximum propagation delay between gateway and non-gateway nodes .
double ComputeExpS(uint32_t a, uint32_t ld, std::vector< double > exppdk)
Throughput for a reservations with framesize ld, given expected delays exppdk.
std::map< Mac8Address, AckData > m_ackData
AckData for each node.
void SendPacket(Ptr< Packet > pkt, uint32_t rate)
Send packet on PHY.
Virtual base class for all UAN MAC protocols.
uint64_t NchooseK(uint32_t n, uint32_t k)
Binomial coefficient.
virtual bool Enqueue(Ptr< Packet > pkt, uint16_t protocolNumber, const Address &dest)
Enqueue packet to be transmitted.
uint32_t m_numNodes
Number of non-gateway nodes in this gateway's neighborhood.
Abstraction of packet modulation information.
void ReceivePacket(Ptr< Packet > pkt, double sinr, UanTxMode mode)
PHY receive ok callback.
A class used for addressing MAC8 MAC's.
uint8_t frameNo
Current frame number.
virtual void DoDispose()
Destructor implementation.
uint32_t m_rateStep
Increments available for rate assignment in bps.
uint16_t length
Request header length.
TracedCallback< Ptr< const Packet >, UanTxMode > m_rxLogger
A packet was destined for and received at this MAC layer.
uint32_t m_currentRateNum
Rate number corresponding to data rate of current cycle.
uint32_t FindOptA(void)
Compute the optimum maximum number of reservations to accept per cycle.
uint8_t expFrames
Expected number of frames.
uint32_t m_ctsSizeN
Size of UanHeaderRcCts.
static TypeId GetTypeId(void)
Register this type.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void(* CycleCallback)(Time now, Time delay, uint32_t numRts, uint32_t totalBytes, double secs, uint32_t ctlRate, double actualX)
TracedCallback signature for.
uint8_t frameNo
Frame number being ACK'ed.
Ptr< UanPhy > m_phy
PHY layer attached to this MAC.
uint32_t m_frameSize
Size of data frames in bytes.
uint32_t m_totalRate
Total available channel rate in bps (for a single channel, without splitting reservation channel)...
Callback< void, Ptr< Packet >, uint16_t, const Mac8Address & > m_forwardUpCb
Forwarding up callback.
void StartCycle(void)
Cycle through pending requests.
Mac8Address m_address
The MAC address.
uint32_t m_maxRes
Maximum number of reservations to accept per cycle.
void CycleStarted(void)
Set state to INCYCLE.
double ComputePiK(uint32_t a, uint32_t n, uint32_t k)
Numeric function.
uint32_t m_rtsSize
Size of UanHeaderCommon and UanHeaderRcRts.
void EndCycle(void)
End cycle by scheduling pending ACKs.
uint8_t retryNo
Retry number.
double ComputeAlpha(uint32_t totalFrames, uint32_t totalBytes, uint32_t n, uint32_t a, double deltaK)
Compute alpha parameter.
std::set< uint8_t > rxFrames
Received frames.
a unique identifier for an interface.
uint32_t m_ackSize
Size of UanHeaderCommon and UanHeaderRcAck.
double ComputeExpBOverA(uint32_t n, uint32_t a, uint32_t ldlh, std::vector< double > deltaK)
Numeric function.
virtual void SetForwardUpCb(Callback< void, Ptr< Packet >, uint16_t, const Mac8Address &> cb)
Set the callback to forward packets up to higher layers.