A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
default-channel-scheduler.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* This program is free software; you can redistribute it and/or modify
4
* it under the terms of the GNU General Public License version 2 as
5
* published by the Free Software Foundation;
6
*
7
* This program is distributed in the hope that it will be useful,
8
* but WITHOUT ANY WARRANTY; without even the implied warranty of
9
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
* GNU General Public License for more details.
11
*
12
* You should have received a copy of the GNU General Public License
13
* along with this program; if not, write to the Free Software
14
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15
*
16
* Author: Junling Bu <linlinjavaer@gmail.com>
17
*/
18
#ifndef DEFAULT_CHANNEL_SCHEDULER_H
19
#define DEFAULT_CHANNEL_SCHEDULER_H
20
21
#include "
wave-net-device.h
"
22
namespace
ns3
{
23
class
WaveNetDevice;
24
32
class
DefaultChannelScheduler
:
public
ChannelScheduler
33
{
34
public
:
35
static
TypeId
GetTypeId
(
void
);
36
DefaultChannelScheduler
();
37
virtual
~DefaultChannelScheduler
();
38
42
virtual
void
SetWaveNetDevice
(
Ptr<WaveNetDevice>
device);
47
virtual
enum
ChannelAccess
GetAssignedAccessType
(uint32_t channelNumber)
const
;
48
49
void
NotifyCchSlotStart
(
Time
duration);
50
void
NotifySchSlotStart
(
Time
duration);
51
void
NotifyGuardSlotStart
(
Time
duration,
bool
cchi);
52
private
:
53
virtual
void
DoInitialize
(
void
);
54
virtual
void
DoDispose
(
void
);
62
virtual
bool
AssignAlternatingAccess
(uint32_t channelNumber,
bool
immediate);
70
virtual
bool
AssignContinuousAccess
(uint32_t channelNumber,
bool
immediate);
78
virtual
bool
AssignExtendedAccess
(uint32_t channelNumber, uint32_t extends,
bool
immediate);
82
virtual
bool
AssignDefaultCchAccess
(
void
);
87
virtual
bool
ReleaseAccess
(uint32_t channelNumber);
92
void
SwitchToNextChannel
(uint32_t curChannelNumber, uint32_t nextChannelNumber);
93
94
Ptr<ChannelManager>
m_manager
;
95
Ptr<ChannelCoordinator>
m_coordinator
;
96
Ptr<WifiPhy>
m_phy
;
97
107
uint32_t
m_channelNumber
;
108
uint32_t
m_extend
;
109
EventId
m_extendEvent
;
110
enum
ChannelAccess
m_channelAccess
;
111
112
EventId
m_waitEvent
;
113
uint32_t
m_waitChannelNumber
;
114
uint32_t
m_waitExtend
;
115
116
Ptr<ChannelCoordinationListener>
m_coordinationListener
;
117
};
118
119
}
120
#endif
/* DEFAULT_CHANNEL_SCHEDULER_H */
ns3::Time
Simulation virtual time values and global simulation resolution.
Definition:
nstime.h:102
ns3::DefaultChannelScheduler::m_phy
Ptr< WifiPhy > m_phy
Definition:
default-channel-scheduler.h:96
ns3::Ptr< WaveNetDevice >
ns3::DefaultChannelScheduler::DoDispose
virtual void DoDispose(void)
Destructor implementation.
Definition:
default-channel-scheduler.cc:88
ns3::DefaultChannelScheduler::DefaultChannelScheduler
DefaultChannelScheduler()
Definition:
default-channel-scheduler.cc:65
ns3::DefaultChannelScheduler::m_waitChannelNumber
uint32_t m_waitChannelNumber
Definition:
default-channel-scheduler.h:113
ns3::DefaultChannelScheduler::m_manager
Ptr< ChannelManager > m_manager
Definition:
default-channel-scheduler.h:94
ns3::DefaultChannelScheduler::~DefaultChannelScheduler
virtual ~DefaultChannelScheduler()
Definition:
default-channel-scheduler.cc:75
ns3::DefaultChannelScheduler::m_waitExtend
uint32_t m_waitExtend
Definition:
default-channel-scheduler.h:114
ns3::DefaultChannelScheduler::GetTypeId
static TypeId GetTypeId(void)
Definition:
default-channel-scheduler.cc:55
ns3::DefaultChannelScheduler::NotifySchSlotStart
void NotifySchSlotStart(Time duration)
Definition:
default-channel-scheduler.cc:408
ns3::DefaultChannelScheduler::SetWaveNetDevice
virtual void SetWaveNetDevice(Ptr< WaveNetDevice > device)
Definition:
default-channel-scheduler.cc:108
ns3::DefaultChannelScheduler::DoInitialize
virtual void DoInitialize(void)
Initialize() implementation.
Definition:
default-channel-scheduler.cc:81
ns3::DefaultChannelScheduler::m_waitEvent
EventId m_waitEvent
Definition:
default-channel-scheduler.h:112
ns3::DefaultChannelScheduler::AssignDefaultCchAccess
virtual bool AssignDefaultCchAccess(void)
This method will assign default CCH access for CCH.
Definition:
default-channel-scheduler.cc:317
ns3::DefaultChannelScheduler
This class uses a simple mechanism to assign channel access with following features: (1) only in the ...
Definition:
default-channel-scheduler.h:32
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::DefaultChannelScheduler::m_extendEvent
EventId m_extendEvent
Definition:
default-channel-scheduler.h:109
ns3::DefaultChannelScheduler::m_coordinator
Ptr< ChannelCoordinator > m_coordinator
Definition:
default-channel-scheduler.h:95
ns3::DefaultChannelScheduler::NotifyGuardSlotStart
void NotifyGuardSlotStart(Time duration, bool cchi)
Definition:
default-channel-scheduler.cc:414
ns3::DefaultChannelScheduler::AssignAlternatingAccess
virtual bool AssignAlternatingAccess(uint32_t channelNumber, bool immediate)
Definition:
default-channel-scheduler.cc:137
ns3::DefaultChannelScheduler::m_channelAccess
enum ChannelAccess m_channelAccess
Definition:
default-channel-scheduler.h:110
ns3::DefaultChannelScheduler::GetAssignedAccessType
virtual enum ChannelAccess GetAssignedAccessType(uint32_t channelNumber) const
Definition:
default-channel-scheduler.cc:125
ns3::ChannelAccess
ChannelAccess
Definition:
channel-scheduler.h:80
ns3::DefaultChannelScheduler::ReleaseAccess
virtual bool ReleaseAccess(uint32_t channelNumber)
Definition:
default-channel-scheduler.cc:375
ns3::DefaultChannelScheduler::NotifyCchSlotStart
void NotifyCchSlotStart(Time duration)
Definition:
default-channel-scheduler.cc:402
wave-net-device.h
ns3::DefaultChannelScheduler::m_coordinationListener
Ptr< ChannelCoordinationListener > m_coordinationListener
Definition:
default-channel-scheduler.h:116
ns3::DefaultChannelScheduler::m_channelNumber
uint32_t m_channelNumber
when m_channelAccess is ContinuousAccess, m_channelNumber is continuous channel number; when m_channe...
Definition:
default-channel-scheduler.h:107
ns3::DefaultChannelScheduler::m_extend
uint32_t m_extend
Definition:
default-channel-scheduler.h:108
ns3::EventId
An identifier for simulation events.
Definition:
event-id.h:53
ns3::DefaultChannelScheduler::AssignContinuousAccess
virtual bool AssignContinuousAccess(uint32_t channelNumber, bool immediate)
Definition:
default-channel-scheduler.cc:174
ns3::DefaultChannelScheduler::AssignExtendedAccess
virtual bool AssignExtendedAccess(uint32_t channelNumber, uint32_t extends, bool immediate)
Definition:
default-channel-scheduler.cc:232
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:58
ns3::ChannelScheduler
This class will assign channel access for requests from higher layers.
Definition:
channel-scheduler.h:98
ns3::DefaultChannelScheduler::SwitchToNextChannel
void SwitchToNextChannel(uint32_t curChannelNumber, uint32_t nextChannelNumber)
Definition:
default-channel-scheduler.cc:348
src
wave
model
default-channel-scheduler.h
Generated on Wed Sep 30 2015 15:55:51 for ns-3 by
1.8.9.1