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
31namespace ns3 {
32
33class BaseStationNetDevice;
34class SSRecord;
35class ServiceFlow;
36
43{
44public:
53
58 static TypeId GetTypeId (void);
59
60 std::list<OfdmUlMapIe> GetUplinkAllocations (void) const;
61
72 void GetChannelDescriptorsToUpdate (bool& updateDcd, bool& updateUcd, bool& sendDcd, bool& sendUcd);
74 void AddUplinkAllocation (OfdmUlMapIe &ulMapIe,
75 const uint32_t &allocationSize,
76 uint32_t &symbolsToAllocation,
77 uint32_t &availableSymbols);
78 void Schedule (void);
88 void ServiceUnsolicitedGrants (const SSRecord *ssRecord,
89 enum ServiceFlow::SchedulingType schedulingType,
90 OfdmUlMapIe &ulMapIe,
91 const WimaxPhy::ModulationType modulationType,
92 uint32_t &symbolsToAllocation,
93 uint32_t &availableSymbols);
103 void ServiceBandwidthRequests (const SSRecord *ssRecord,
104 enum ServiceFlow::SchedulingType schedulingType,
105 OfdmUlMapIe &ulMapIe,
106 const WimaxPhy::ModulationType modulationType,
107 uint32_t &symbolsToAllocation,
108 uint32_t &availableSymbols);
119 bool ServiceBandwidthRequests (ServiceFlow *serviceFlow,
120 enum ServiceFlow::SchedulingType schedulingType,
121 OfdmUlMapIe &ulMapIe,
122 const WimaxPhy::ModulationType modulationType,
123 uint32_t &symbolsToAllocation,
124 uint32_t &availableSymbols);
131 void AllocateInitialRangingInterval (uint32_t &symbolsToAllocation, uint32_t &availableSymbols);
137 void SetupServiceFlow (SSRecord *ssRecord, ServiceFlow *serviceFlow);
138
143 void ProcessBandwidthRequest (const BandwidthRequestHeader &bwRequestHdr);
144
146 void InitOnce (void);
147
153
154private:
155 std::list<OfdmUlMapIe> m_uplinkAllocations;
156
157};
158
159} // namespace ns3
160
161#endif /* UPLINK_SCHEDULER_SIMPLE_H */
This class implements the bandwidth-request mac Header as described by IEEE Standard for Local and me...
This class implements the UL-MAP_IE message as described by "IEEE Standard for Local and metropolitan...
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:74
This class is used by the base station to store some information related to subscriber station in the...
Definition: ss-record.h:44
This class implements service flows as described by the IEEE-802.16 standard.
Definition: service-flow.h:40
SchedulingType
section 11.13.11 Service flow scheduling type, page 701
Definition: service-flow.h:59
this class implements a structure to manage some parameters and statistics related to a service flow
a unique identifier for an interface.
Definition: type-id.h:59
ModulationType
ModulationType enumeration.
Definition: wimax-phy.h:52
Every class exported by the ns3 library is enclosed in the ns3 namespace.