A Discrete-Event Network Simulator
API
lte-pdcp-header.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC)
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation;
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16  *
17  * Author: Manuel Requena <manuel.requena@cttc.es>
18  */
19 
20 #include "lte-pdcp-header.h"
21 
22 #include "ns3/log.h"
23 
24 namespace ns3
25 {
26 
27 NS_LOG_COMPONENT_DEFINE("LtePdcpHeader");
28 
29 NS_OBJECT_ENSURE_REGISTERED(LtePdcpHeader);
30 
32  : m_dcBit(0xff),
33  m_sequenceNumber(0xfffa)
34 {
35 }
36 
38 {
39  m_dcBit = 0xff;
40  m_sequenceNumber = 0xfffb;
41 }
42 
43 void
45 {
46  m_dcBit = dcBit & 0x01;
47 }
48 
49 void
50 LtePdcpHeader::SetSequenceNumber(uint16_t sequenceNumber)
51 {
52  m_sequenceNumber = sequenceNumber & 0x0FFF;
53 }
54 
55 uint8_t
57 {
58  return m_dcBit;
59 }
60 
61 uint16_t
63 {
64  return m_sequenceNumber;
65 }
66 
67 TypeId
69 {
70  static TypeId tid = TypeId("ns3::LtePdcpHeader")
71  .SetParent<Header>()
72  .SetGroupName("Lte")
73  .AddConstructor<LtePdcpHeader>();
74  return tid;
75 }
76 
77 TypeId
79 {
80  return GetTypeId();
81 }
82 
83 void
84 LtePdcpHeader::Print(std::ostream& os) const
85 {
86  os << "D/C=" << (uint16_t)m_dcBit;
87  os << " SN=" << m_sequenceNumber;
88 }
89 
90 uint32_t
92 {
93  return 2;
94 }
95 
96 void
98 {
100 
101  i.WriteU8((m_dcBit << 7) | (m_sequenceNumber & 0x0F00) >> 8);
102  i.WriteU8(m_sequenceNumber & 0x00FF);
103 }
104 
105 uint32_t
107 {
109  uint8_t byte_1;
110  uint8_t byte_2;
111 
112  byte_1 = i.ReadU8();
113  byte_2 = i.ReadU8();
114  m_dcBit = (byte_1 & 0x80) > 7;
115  // For now, we just support DATA PDUs
117  m_sequenceNumber = ((byte_1 & 0x0F) << 8) | byte_2;
118 
119  return GetSerializedSize();
120 }
121 
122 }; // namespace ns3
iterator in a Buffer instance
Definition: buffer.h:100
uint8_t ReadU8()
Definition: buffer.h:1027
void WriteU8(uint8_t data)
Definition: buffer.h:881
Protocol header serialization and deserialization.
Definition: header.h:44
virtual uint32_t Deserialize(Buffer::Iterator start)=0
Deserialize the object from a buffer iterator.
The packet header for the Packet Data Convergence Protocol (PDCP) packets.
uint16_t GetSequenceNumber() const
Get sequence number.
void SetDcBit(uint8_t dcBit)
Set DC bit.
void Print(std::ostream &os) const override
uint8_t m_dcBit
the DC bit
static TypeId GetTypeId()
Get the type ID.
uint32_t GetSerializedSize() const override
LtePdcpHeader()
Constructor.
void SetSequenceNumber(uint16_t sequenceNumber)
Set sequence number.
~LtePdcpHeader() override
uint16_t m_sequenceNumber
the sequence number
TypeId GetInstanceTypeId() const override
Get the most derived TypeId for this Object.
void Serialize(Buffer::Iterator start) const override
uint8_t GetDcBit() const
Get DC bit.
a unique identifier for an interface.
Definition: type-id.h:59
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition: type-id.cc:931
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
Definition: assert.h:66
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:202
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition: object-base.h:46
Every class exported by the ns3 library is enclosed in the ns3 namespace.