-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlte-fr-hard-algorithm.h
111 lines (86 loc) · 3.42 KB
/
lte-fr-hard-algorithm.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2014 Piotr Gawlowicz
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: Piotr Gawlowicz <gawlowicz.p@gmail.com>
*
*/
#ifndef LTE_FR_HARD_ALGORITHM_H
#define LTE_FR_HARD_ALGORITHM_H
#include <ns3/lte-ffr-algorithm.h>
#include <ns3/lte-ffr-sap.h>
#include <ns3/lte-ffr-rrc-sap.h>
#include <ns3/lte-rrc-sap.h>
namespace ns3 {
/**
* \brief Hard Frequency Reuse algorithm implementation which uses only 1 sub-band.
*/
class LteFrHardAlgorithm : public LteFfrAlgorithm
{
public:
/**
* \brief Creates a trivial ffr algorithm instance.
*/
LteFrHardAlgorithm ();
virtual ~LteFrHardAlgorithm ();
// inherited from Object
static TypeId GetTypeId ();
// inherited from LteFfrAlgorithm
virtual void SetLteFfrSapUser (LteFfrSapUser* s);
virtual LteFfrSapProvider* GetLteFfrSapProvider ();
virtual void SetLteFfrRrcSapUser (LteFfrRrcSapUser* s);
virtual LteFfrRrcSapProvider* GetLteFfrRrcSapProvider ();
// let the forwarder class access the protected and private members
friend class MemberLteFfrSapProvider<LteFrHardAlgorithm>;
friend class MemberLteFfrRrcSapProvider<LteFrHardAlgorithm>;
protected:
// inherited from Object
virtual void DoInitialize ();
virtual void DoDispose ();
virtual void Reconfigure ();
// FFR SAP PROVIDER IMPLEMENTATION
virtual std::vector <bool> DoGetAvailableDlRbg ();
virtual bool DoIsDlRbgAvailableForUe (int i, uint16_t rnti);
virtual std::vector <bool> DoGetAvailableUlRbg ();
virtual bool DoIsUlRbgAvailableForUe (int i, uint16_t rnti);
virtual void DoReportDlCqiInfo (const struct FfMacSchedSapProvider::SchedDlCqiInfoReqParameters& params);
virtual void DoReportUlCqiInfo (const struct FfMacSchedSapProvider::SchedUlCqiInfoReqParameters& params);
virtual void DoReportUlCqiInfo ( std::map <uint16_t, std::vector <double> > ulCqiMap );
virtual uint8_t DoGetTpc (uint16_t rnti);
virtual uint8_t DoGetMinContinuousUlBandwidth ();
// FFR SAP RRC PROVIDER IMPLEMENTATION
virtual void DoReportUeMeas (uint16_t rnti, LteRrcSap::MeasResults measResults);
virtual void DoRecvLoadInformation (EpcX2Sap::LoadInformationParams params);
private:
void SetDownlinkConfiguration (uint16_t cellId, uint8_t bandwidth);
void SetUplinkConfiguration (uint16_t cellId, uint8_t bandwidth);
void InitializeDownlinkRbgMaps ();
void InitializeUplinkRbgMaps ();
// FFR SAP
LteFfrSapUser* m_ffrSapUser;
LteFfrSapProvider* m_ffrSapProvider;
// FFR RRF SAP
LteFfrRrcSapUser* m_ffrRrcSapUser;
LteFfrRrcSapProvider* m_ffrRrcSapProvider;
uint8_t m_dlOffset;
uint8_t m_dlSubBand;
uint8_t m_ulOffset;
uint8_t m_ulSubBand;
std::vector <bool> m_dlRbgMap;
std::vector <bool> m_ulRbgMap;
}; // end of class LteFrHardAlgorithm
} // end of namespace ns3
#endif /* LTE_FR_HARD_ALGORITHM_H */