A Discrete-Event Network Simulator
API
bs-uplink-scheduler-simple.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2007,2008 INRIA
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Jahanzeb Farooq <jahanzeb.farooq@sophia.inria.fr>
19  */
20 
21 #ifndef UPLINK_SCHEDULER_SIMPLE_H
22 #define UPLINK_SCHEDULER_SIMPLE_H
23 
24 #include <stdint.h>
25 #include "ul-mac-messages.h"
26 #include "ns3/nstime.h"
27 #include "wimax-phy.h"
28 #include "bs-uplink-scheduler.h"
29 #include "service-flow.h"
30 
31 namespace ns3 {
32 
33 class BaseStationNetDevice;
34 class SSRecord;
35 class ServiceFlow;
36 
41 {
42 public:
43  UplinkSchedulerSimple (void);
51 
56  static TypeId GetTypeId (void);
57 
58  std::list<OfdmUlMapIe> GetUplinkAllocations (void) const;
59 
64  void GetChannelDescriptorsToUpdate (bool&, bool&, bool&, bool&);
65  uint32_t CalculateAllocationStartTime (void);
66  void AddUplinkAllocation (OfdmUlMapIe &ulMapIe,
67  const uint32_t &allocationSize,
68  uint32_t &symbolsToAllocation,
69  uint32_t &availableSymbols);
70  void Schedule (void);
80  void ServiceUnsolicitedGrants (const SSRecord *ssRecord,
81  enum ServiceFlow::SchedulingType schedulingType,
82  OfdmUlMapIe &ulMapIe,
83  const WimaxPhy::ModulationType modulationType,
84  uint32_t &symbolsToAllocation,
85  uint32_t &availableSymbols);
95  void ServiceBandwidthRequests (const SSRecord *ssRecord,
96  enum ServiceFlow::SchedulingType schedulingType,
97  OfdmUlMapIe &ulMapIe,
98  const WimaxPhy::ModulationType modulationType,
99  uint32_t &symbolsToAllocation,
100  uint32_t &availableSymbols);
111  bool ServiceBandwidthRequests (ServiceFlow *serviceFlow,
112  enum ServiceFlow::SchedulingType schedulingType,
113  OfdmUlMapIe &ulMapIe,
114  const WimaxPhy::ModulationType modulationType,
115  uint32_t &symbolsToAllocation,
116  uint32_t &availableSymbols);
123  void AllocateInitialRangingInterval (uint32_t &symbolsToAllocation, uint32_t &availableSymbols);
129  void SetupServiceFlow (SSRecord *ssRecord, ServiceFlow *serviceFlow);
130 
135  void ProcessBandwidthRequest (const BandwidthRequestHeader &bwRequestHdr);
136 
138  void InitOnce (void);
139 
145 
146 private:
147  std::list<OfdmUlMapIe> m_uplinkAllocations;
148 
149 };
150 
151 } // namespace ns3
152 
153 #endif /* UPLINK_SCHEDULER_SIMPLE_H */
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
this class implements a structure to manage some parameters and statistics related to a service flow ...
SchedulingType
section 11.13.11 Service flow scheduling type, page 701
Definition: service-flow.h:58
Every class exported by the ns3 library is enclosed in the ns3 namespace.
This class implements the bandwidth-request mac Header as described by IEEE Standard for Local and me...
This class implements service flows as described by the IEEE-802.16 standard.
Definition: service-flow.h:39
ModulationType
ModulationType enumeration.
Definition: wimax-phy.h:49
This class is used by the base station to store some information related to subscriber station in the...
Definition: ss-record.h:43
This class implements the UL-MAP_IE message as described by "IEEE Standard for Local and metropolitan...
a unique identifier for an interface.
Definition: type-id.h:58