28 NS_LOG_COMPONENT_DEFINE(
"SatScpcScheduler");
33 NS_OBJECT_ENSURE_REGISTERED(SatScpcScheduler);
39 TypeId(
"ns3::SatScpcScheduler")
41 .AddConstructor<SatScpcScheduler>()
42 .AddAttribute(
"SchedulingStartThresholdTime",
43 "Threshold time of total transmissions in BB Frame container to trigger "
44 "a scheduling round.",
45 TimeValue(MilliSeconds(5)),
48 .AddAttribute(
"SchedulingStopThresholdTime",
49 "Threshold time of total transmissions in BB Frame container to stop a "
51 TimeValue(MilliSeconds(15)),
54 .AddAttribute(
"BBFrameContainer",
55 "BB frame container of this scheduler.",
58 MakePointerChecker<SatBbFrameContainer>());
65 NS_LOG_FUNCTION(
this);
73 NS_LOG_FUNCTION(
this);
74 NS_FATAL_ERROR(
"Default constructor for SatScpcScheduler not supported");
79 double carrierBandwidthInHz)
83 NS_LOG_FUNCTION(
this);
85 ObjectBase::ConstructSelf(AttributeConstructionList());
87 std::vector<SatEnums::SatModcod_t> modCods = conf->GetModCodsUsed();
96 NS_LOG_FUNCTION(
this);
102 NS_LOG_FUNCTION(
this);
107 std::pair<Ptr<SatBbFrame>,
const Time>
110 NS_LOG_FUNCTION(
this);
120 if (frame !=
nullptr)
128 frame = Create<SatBbFrame>(
m_bbFrameConf->GetDefaultModCod(),
133 Ptr<Packet> dummyPacket = Create<Packet>(1);
139 dummyPacket->AddPacketTag(mTag);
145 dummyPacket->AddPacketTag(addressE2ETag);
148 frame->AddPayload(dummyPacket);
150 frameDuration = frame->GetDuration();
153 else if (frame ==
nullptr)
158 if (frame !=
nullptr)
160 frameDuration = frame->GetDuration();
161 frame->SetSliceId(0);
164 return std::make_pair(frame, frameDuration);
170 NS_LOG_FUNCTION(
this);
181 NS_LOG_FUNCTION(
this);
191 NS_LOG_FUNCTION(
this);
194 std::vector<Ptr<SatSchedulingObject>> so;
197 for (std::vector<Ptr<SatSchedulingObject>>::const_iterator it = so.begin();
202 uint32_t currentObBytes = (*it)->GetBufferedBytes();
203 uint32_t currentObMinReqBytes = (*it)->GetMinTxOpportunityInBytes();
204 uint8_t flowId = (*it)->GetFlowId();
211 (currentObBytes > 0))
213 if (frameBytes < currentObMinReqBytes)
220 if (frameBytes < currentObMinReqBytes)
222 NS_FATAL_ERROR(
"Control package probably too long!!!");
227 (*it)->GetMacAddress(),
230 currentObMinReqBytes);
244 NS_FATAL_ERROR(
"Packet does not fit in empty BB Frame. Control package too long or "
245 "fragmentation problem in user package!!!");
256 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.
SatFwdLinkScheduler schedules BB frames for forward link.
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.
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)
Time m_periodicInterval
The interval for periodic scheduling timer.
double GetSchedulingObjectCno(Ptr< SatSchedulingObject > ob)
void SortSchedulingObjects(std::vector< Ptr< SatSchedulingObject >> &so)
Sorts given scheduling objects according to configured sorting criteria.
SatFwdLinkScheduler::SchedContextCallback m_schedContextCallback
The scheduling context getter callback.
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.
void SendAndClearSymbolsSentStat()
Send stats and reset all the symbols sent count for each slice to zero.
Ptr< SatBbFrameContainer > m_bbFrameContainer
The container for BB Frames.
~SatScpcScheduler()
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.
Time m_schedulingStartThresholdTime
Threshold time of total transmissions in BB Frame container to trigger a scheduling round.
virtual std::pair< Ptr< SatBbFrame >, const Time > GetNextFrame()
Get next frame to be transmitted.
virtual TypeId GetInstanceTypeId(void) const
Get the type ID of instance.
static TypeId GetTypeId(void)
Get the type ID.
SatScpcScheduler()
Construct a SatFwdLinkScheduler.
void ScheduleBbFrames()
Schedule BB Frames.
void PeriodicTimerExpired()
Handles periodic timer timeouts.
Time m_schedulingStopThresholdTime
Threshold time of total transmissions in BB Frame container to stop a scheduling round.
void GetSchedulingObjects(std::vector< Ptr< SatSchedulingObject >> &output)
Gets scheduling object in sorted order according to configured sorting criteria.
SatArqSequenceNumber is handling the sequence numbers for the ARQ process.