8349
|
1 |
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
|
|
2 |
/*
|
|
3 |
* Copyright (c) 2011 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC)
|
|
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: Manuel Requena <manuel.requena@cttc.es>
|
|
19 |
*/
|
|
20 |
|
|
21 |
#ifndef LTE_RLC_SAP_H
|
|
22 |
#define LTE_RLC_SAP_H
|
|
23 |
|
|
24 |
#include "ns3/packet.h"
|
|
25 |
|
|
26 |
namespace ns3 {
|
|
27 |
|
|
28 |
/**
|
|
29 |
* Service Access Point (SAP) offered by the UM-RLC and AM-RLC entities to the PDCP entity
|
|
30 |
* See 3GPP 36.322 Radio Link Control (RLC) protocol specification
|
|
31 |
*
|
|
32 |
* This is the RLC SAP Provider
|
|
33 |
* (i.e. the part of the SAP that contains the RLC methods called by the PDCP)
|
|
34 |
*/
|
|
35 |
class LteRlcSapProvider
|
|
36 |
{
|
|
37 |
public:
|
|
38 |
virtual ~LteRlcSapProvider ();
|
|
39 |
|
|
40 |
/**
|
|
41 |
* Parameters for LteRlcSapProvider::TransmitPdcpPdu
|
|
42 |
*/
|
|
43 |
struct TransmitPdcpPduParameters
|
|
44 |
{
|
|
45 |
Ptr<Packet> pdcpPdu; /**< the PDCP PDU */
|
|
46 |
uint16_t rnti; /**< the C-RNTI identifying the UE */
|
|
47 |
uint8_t lcid; /**< the logical channel id corresponding to the sending RLC instance */
|
|
48 |
};
|
|
49 |
|
|
50 |
/**
|
|
51 |
* Send a PDCP PDU to the RLC for transmission
|
|
52 |
* This method is to be called
|
|
53 |
* when upper PDCP entity has a PDCP PDU ready to send
|
|
54 |
*/
|
|
55 |
virtual void TransmitPdcpPdu (TransmitPdcpPduParameters params) = 0;
|
|
56 |
};
|
|
57 |
|
|
58 |
|
|
59 |
/**
|
|
60 |
* Service Access Point (SAP) offered by the UM-RLC and AM-RLC entities to the PDCP entity
|
|
61 |
* See 3GPP 36.322 Radio Link Control (RLC) protocol specification
|
|
62 |
*
|
|
63 |
* This is the RLC SAP User
|
|
64 |
* (i.e. the part of the SAP that contains the PDCP methos called by the RLC)
|
|
65 |
*/
|
|
66 |
class LteRlcSapUser
|
|
67 |
{
|
|
68 |
public:
|
|
69 |
virtual ~LteRlcSapUser ();
|
|
70 |
|
|
71 |
/**
|
|
72 |
* Called by the RLC entity to notify the PDCP entity of the reception of a new PDCP PDU
|
|
73 |
*
|
|
74 |
* \param p the PDCP PDU
|
|
75 |
*/
|
|
76 |
virtual void ReceivePdcpPdu (Ptr<Packet> p) = 0;
|
|
77 |
};
|
|
78 |
|
|
79 |
///////////////////////////////////////
|
|
80 |
|
|
81 |
template <class C>
|
|
82 |
class LteRlcSpecificLteRlcSapProvider : public LteRlcSapProvider
|
|
83 |
{
|
|
84 |
public:
|
|
85 |
LteRlcSpecificLteRlcSapProvider (C* rlc);
|
|
86 |
|
|
87 |
// Interface implemented from LteRlcSapProvider
|
|
88 |
virtual void TransmitPdcpPdu (TransmitPdcpPduParameters params);
|
|
89 |
|
|
90 |
private:
|
|
91 |
LteRlcSpecificLteRlcSapProvider ();
|
|
92 |
C* m_rlc;
|
|
93 |
};
|
|
94 |
|
|
95 |
template <class C>
|
|
96 |
LteRlcSpecificLteRlcSapProvider<C>::LteRlcSpecificLteRlcSapProvider (C* rlc)
|
|
97 |
: m_rlc (rlc)
|
|
98 |
{
|
|
99 |
}
|
|
100 |
|
|
101 |
template <class C>
|
|
102 |
LteRlcSpecificLteRlcSapProvider<C>::LteRlcSpecificLteRlcSapProvider ()
|
|
103 |
{
|
|
104 |
}
|
|
105 |
|
|
106 |
template <class C>
|
|
107 |
void LteRlcSpecificLteRlcSapProvider<C>::TransmitPdcpPdu (TransmitPdcpPduParameters params)
|
|
108 |
{
|
|
109 |
m_rlc->DoTransmitPdcpPdu (params.pdcpPdu);
|
|
110 |
}
|
|
111 |
|
|
112 |
///////////////////////////////////////
|
|
113 |
|
|
114 |
template <class C>
|
|
115 |
class LteRlcSpecificLteRlcSapUser : public LteRlcSapUser
|
|
116 |
{
|
|
117 |
public:
|
|
118 |
LteRlcSpecificLteRlcSapUser (C* pdcp);
|
|
119 |
|
|
120 |
// Interface implemented from LteRlcSapUser
|
|
121 |
virtual void ReceivePdcpPdu (Ptr<Packet> p);
|
|
122 |
|
|
123 |
private:
|
|
124 |
LteRlcSpecificLteRlcSapUser ();
|
|
125 |
C* m_pdcp;
|
|
126 |
};
|
|
127 |
|
|
128 |
template <class C>
|
|
129 |
LteRlcSpecificLteRlcSapUser<C>::LteRlcSpecificLteRlcSapUser (C* pdcp)
|
|
130 |
: m_pdcp (pdcp)
|
|
131 |
{
|
|
132 |
}
|
|
133 |
|
|
134 |
template <class C>
|
|
135 |
LteRlcSpecificLteRlcSapUser<C>::LteRlcSpecificLteRlcSapUser ()
|
|
136 |
{
|
|
137 |
}
|
|
138 |
|
|
139 |
template <class C>
|
|
140 |
void LteRlcSpecificLteRlcSapUser<C>::ReceivePdcpPdu (Ptr<Packet> p)
|
|
141 |
{
|
|
142 |
m_pdcp->DoReceivePdcpPdu (p);
|
|
143 |
}
|
|
144 |
|
|
145 |
|
|
146 |
} // namespace ns3
|
|
147 |
|
|
148 |
#endif // LTE_RLC_SAP_H
|