28NS_LOG_COMPONENT_DEFINE(
"SatFwdLinkSchedulerDefault");
39 TypeId(
"ns3::SatFwdLinkSchedulerDefault")
41 .AddConstructor<SatFwdLinkSchedulerDefault>()
43 "SchedulingStartThresholdTime",
44 "Threshold time of total transmissions in BB Frame container to trigger a "
46 TimeValue(MilliSeconds(5)),
50 "SchedulingStopThresholdTime",
51 "Threshold time of total transmissions in BB Frame container to stop a scheduling "
53 TimeValue(MilliSeconds(15)),
56 .AddAttribute(
"BBFrameContainer",
57 "BB frame container of this scheduler.",
60 MakePointerChecker<SatBbFrameContainer>());
67 NS_LOG_FUNCTION(
this);
68 NS_FATAL_ERROR(
"Default constructor for SatFwdLinkSchedulerDefault not supported");
73 double carrierBandwidthInHz)
77 NS_LOG_FUNCTION(
this << conf << address << carrierBandwidthInHz);
83 NS_LOG_FUNCTION(
this);
87 std::vector<SatEnums::SatModcod_t> modCods =
m_bbFrameConf->GetModCodsUsed();
94 NS_LOG_FUNCTION(
this);
100 NS_LOG_FUNCTION(
this);
105std::pair<Ptr<SatBbFrame>,
const Time>
108 NS_LOG_FUNCTION(
this);
118 if (frame !=
nullptr)
126 frame = Create<SatBbFrame>(
m_bbFrameConf->GetDefaultModCod(),
131 Ptr<Packet> dummyPacket = Create<Packet>(1);
137 dummyPacket->AddPacketTag(mTag);
143 dummyPacket->AddPacketTag(addressE2ETag);
146 frame->AddPayload(dummyPacket);
148 frameDuration = frame->GetDuration();
151 else if (frame ==
nullptr)
156 if (frame !=
nullptr)
158 frameDuration = frame->GetDuration();
159 frame->SetSliceId(0);
162 return std::make_pair(frame, frameDuration);
168 NS_LOG_FUNCTION(
this);
176 NS_LOG_FUNCTION(
this);
186 NS_LOG_FUNCTION(
this);
189 std::vector<Ptr<SatSchedulingObject>> so;
192 for (std::vector<Ptr<SatSchedulingObject>>::const_iterator it = so.begin();
197 uint32_t currentObBytes = (*it)->GetBufferedBytes();
198 uint32_t currentObMinReqBytes = (*it)->GetMinTxOpportunityInBytes();
199 uint8_t flowId = (*it)->GetFlowId();
206 (currentObBytes > 0))
208 if (frameBytes < currentObMinReqBytes)
215 if (frameBytes < currentObMinReqBytes)
217 NS_FATAL_ERROR(
"Control package too probably too long!!!");
222 (*it)->GetMacAddress(),
225 currentObMinReqBytes);
239 NS_FATAL_ERROR(
"Packet does not fit in empty BB Frame. Control package too long or "
240 "fragmentation problem in user package!!!");
251 NS_LOG_FUNCTION(
this);
This class implements a tag that carries the satellite MAC of GW and UT.
void SetE2ESourceAddress(Mac48Address e2eSourceAddress)
Set E2E source MAC address.
void SetE2EDestAddress(Mac48Address e2eDestAddress)
Set E2E destination MAC address.
SatModcod_t
Modulation scheme and coding rate for DVB-S2.
SatFwdLinkSchedulerDefault schedules BB frames for forward link.
virtual std::pair< Ptr< SatBbFrame >, const Time > GetNextFrame()
Get next frame to be transmitted.
void ScheduleBbFrames()
Schedule BB Frames.
Time m_schedulingStopThresholdTime
Threshold time of total transmissions in BB Frame container to stop a scheduling round.
void SendAndClearSymbolsSentStat()
Send stats and reset all the symbols sent count for each slice to zero.
SatFwdLinkSchedulerDefault()
Construct a SatFwdLinkScheduler.
void GetSchedulingObjects(std::vector< Ptr< SatSchedulingObject > > &output)
Gets scheduling object in sorted order according to configured sorting criteria.
Time m_schedulingStartThresholdTime
Threshold time of total transmissions in BB Frame container to trigger a scheduling round.
virtual void NotifyConstructionCompleted() override
Notifier called once the ObjectBase is fully constructed.
static TypeId GetTypeId(void)
Get the type ID.
virtual void ClearAllPackets()
Remove all packets being treated.
Ptr< SatBbFrameContainer > m_bbFrameContainer
The container for BB Frames.
~SatFwdLinkSchedulerDefault()
Destroy a SatFwdLinkScheduler.
void DoDispose(void)
Do dispose actions.
uint32_t m_symbolsSent
The number of symbols sent for each slice during an allocation cycle.
TracedCallback< uint8_t, double > m_schedulingSymbolRateTrace
Traced callback for symbol rate, with flowId, requested Modcod info.
SatFwdLinkScheduler::TxOpportunityCallback m_txOpportunityCallback
Callback to notify the txOpportunity to upper layer Returns a packet Attributes: payload in bytes.
double m_carrierBandwidthInHz
Carrier bandwidth in hertz where scheduler is associated to.
void DoDispose(void)
Do dispose actions.
void SortSchedulingObjects(std::vector< Ptr< SatSchedulingObject > > &so)
Sorts given scheduling objects according to configured sorting criteria.
Ptr< SatBbFrameConf > m_bbFrameConf
Configured BB Frame conf.
bool m_dummyFrameSendingEnabled
Flag indicating if Dummy Frames are sent or not.
Mac48Address m_macAddress
MAC address of the this instance (node).
SatFwdLinkScheduler()
Construct a SatFwdLinkScheduler.
double GetSchedulingObjectCno(Ptr< SatSchedulingObject > ob)
SatFwdLinkScheduler::SchedContextCallback m_schedContextCallback
The scheduling context getter callback.
virtual void NotifyConstructionCompleted() override
Notifier called once the ObjectBase is fully constructed.
This class implements a tag that carries the satellite MAC specific information, such as source and d...
void SetDestAddress(Mac48Address dest)
Set destination MAC address.
void SetSourceAddress(Mac48Address source)
Set source MAC address.
SatArqSequenceNumber is handling the sequence numbers for the ARQ process.