This class implements a Migration-based Quality of Service uplink scheduler(MBQoS). More...
#include <bs-uplink-scheduler-mbqos.h>
Public Member Functions | |
UplinkSchedulerMBQoS (Time time) | |
std::list< OfdmUlMapIe > | GetUplinkAllocations (void) const |
void | GetChannelDescriptorsToUpdate (bool &, bool &, bool &, bool &) |
uint32_t | CalculateAllocationStartTime (void) |
void | AddUplinkAllocation (OfdmUlMapIe &ulMapIe, const uint32_t &allocationSize, uint32_t &symbolsToAllocation, uint32_t &availableSymbols) |
void | Schedule (void) |
void | ServiceUnsolicitedGrants (const SSRecord *ssRecord, enum ServiceFlow::SchedulingType schedulingType, OfdmUlMapIe &ulMapIe, const WimaxPhy::ModulationType modulationType, uint32_t &symbolsToAllocation, uint32_t &availableSymbols) |
void | ServiceBandwidthRequests (const SSRecord *ssRecord, enum ServiceFlow::SchedulingType schedulingType, OfdmUlMapIe &ulMapIe, const WimaxPhy::ModulationType modulationType, uint32_t &symbolsToAllocation, uint32_t &availableSymbols) |
bool | ServiceBandwidthRequests (ServiceFlow *serviceFlow, enum ServiceFlow::SchedulingType schedulingType, OfdmUlMapIe &ulMapIe, const WimaxPhy::ModulationType modulationType, uint32_t &symbolsToAllocation, uint32_t &availableSymbols) |
void | AllocateInitialRangingInterval (uint32_t &symbolsToAllocation, uint32_t &availableSymbols) |
void | SetupServiceFlow (SSRecord *ssRecord, ServiceFlow *serviceFlow) |
void | CheckDeadline (uint32_t &availableSymbols) |
Check deadline from jobs. Migrate requests if necessary. | |
void | CheckMinimumBandwidth (uint32_t &availableSymbols) |
Check if Minimum bandwidth is guarantee. Migrate requests if necessary. | |
void | UplinkSchedWindowTimer (void) |
Reset the current window. According to a configured time, reset the window. | |
void | EnqueueJob (UlJob::JobPriority priority, Ptr< UlJob > job) |
Enqueue a job in a priority queue. | |
Ptr< UlJob > | DequeueJob (UlJob::JobPriority priority) |
Dequeue a job from a priority queue. | |
void | ProcessBandwidthRequest (const BandwidthRequestHeader &bwRequestHdr) |
Time | DetermineDeadline (ServiceFlow *serviceFlow) |
Calculates deadline of a request. | |
void | InitOnce (void) |
uint32_t | CountSymbolsQueue (std::list< Ptr< UlJob > > jobs) |
uint32_t | CountSymbolsJobs (Ptr< UlJob > job) |
void | OnSetRequestedBandwidth (ServiceFlowRecord *sfr) |
Ptr< UlJob > | CreateUlJob (SSRecord *ssRecord, enum ServiceFlow::SchedulingType schedType, ReqType reqType) |
uint32_t | GetPendingSize (ServiceFlow *serviceFlow) |
bool | ServiceBandwidthRequestsBytes (ServiceFlow *serviceFlow, enum ServiceFlow::SchedulingType schedulingType, OfdmUlMapIe &ulMapIe, const WimaxPhy::ModulationType modulationType, uint32_t &symbolsToAllocation, uint32_t &availableSymbols, uint32_t allocationSizeBytes) |
Static Public Member Functions | |
static TypeId | GetTypeId (void) |
This method returns the TypeId associated to ns3::UplinkSchedulerMBQoS. |
This class implements a Migration-based Quality of Service uplink scheduler(MBQoS).
This uplink scheduler uses three queues, the low priority queue, the intermediate queue and the high priority queue. The scheduler serves the requests in strict priority order from the high priority queue to the low priority queue. The low priority queue stores the bandwidth requests of the BE service flow. The intermediate queue holds bandwidth requests sent by rtPS and by nrtPS connections. rtPS and nrtPS requests can migrate to the high priority queue to guarantee that their QoS requirements are met. Besides the requests migrated from the intermediate queue, the high priority queue stores periodic grants and unicast request opportunities that must be scheduled in the following frame. To guarantee the maximum delay requirement, the BS assigns a deadline to each rtPS bandwidth request in the intermediate queue. The minimum bandwidth requirement of both rtPS and nrtPS connections is guaranteed over a window of duration T . Implementation of uplink scheduler: Freitag, J.; da Fonseca, N.L.S., "Uplink Scheduling with Quality of Service in IEEE 802.16 Networks," Global Telecommunications Conference, 2007. GLOBECOM '07. IEEE , vol., no., pp.2503-2508, 26-30 Nov. 2007 URL: http://ieeexplore.ieee.org/stamp/stamp.jsp?arnumber=4411386&isnumber=4410910
void ns3::UplinkSchedulerMBQoS::CheckDeadline | ( | uint32_t & | availableSymbols | ) |
Check deadline from jobs. Migrate requests if necessary.
availableSymbols | available symbols in the uplink frame This method verifies for each rtPS request whether it should be migrated to the high priority queue or not. The conditions for migration are: request deadline expires in the frame following the next one, and the amount of bandwidth requested is less than or equal to the amount of available bytes in the next uplink frame. |
void ns3::UplinkSchedulerMBQoS::CheckMinimumBandwidth | ( | uint32_t & | availableSymbols | ) |
Check if Minimum bandwidth is guarantee. Migrate requests if necessary.
availableSymbols | available symbols in the uplink frame. This method first calculate a priority value for each request in the intermediate queue. Then, sorts the intermediate queue according to the priority values. Finally, while there is available bandwidth, the scheduler migrate the requests to the high priority queue. |
job | job |
Count the amount of symbols of a job.
jobs | List of jobs |
Sum the amount of symbols of each job of a queue
Ptr<UlJob> ns3::UplinkSchedulerMBQoS::CreateUlJob | ( | SSRecord * | ssRecord, | |
enum ServiceFlow::SchedulingType | schedType, | |||
ReqType | reqType | |||
) |
ssRecord | Subscriber station record | |
schedType | Service flow type | |
reqType | Type of packet |
Create and fill information of a job.
Ptr<UlJob> ns3::UplinkSchedulerMBQoS::DequeueJob | ( | UlJob::JobPriority | priority | ) |
Dequeue a job from a priority queue.
priority | Priority of queue |
Time ns3::UplinkSchedulerMBQoS::DetermineDeadline | ( | ServiceFlow * | serviceFlow | ) |
Calculates deadline of a request.
serviceFlow | Service flow of connection |
void ns3::UplinkSchedulerMBQoS::EnqueueJob | ( | UlJob::JobPriority | priority, | |
Ptr< UlJob > | job | |||
) |
Enqueue a job in a priority queue.
priority | Priority of queue | |
job | job information |
void ns3::UplinkSchedulerMBQoS::GetChannelDescriptorsToUpdate | ( | bool & | , | |
bool & | , | |||
bool & | , | |||
bool & | ||||
) | [virtual] |
Determines if channel descriptors sent in the current frame are required to be updated
Implements ns3::UplinkScheduler.
static TypeId ns3::UplinkSchedulerMBQoS::GetTypeId | ( | void | ) | [static] |
This method returns the TypeId associated to ns3::UplinkSchedulerMBQoS.
This object is accessible through the following paths with Config::Set and Config::Connect:
Attributes defined for this type:
No TraceSources defined for this type.
Reimplemented from ns3::UplinkScheduler.
void ns3::UplinkSchedulerMBQoS::InitOnce | ( | void | ) | [virtual] |
This method is called once to initialize window.
Implements ns3::UplinkScheduler.