NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
packet.cpp
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
22
#include "
packet.hpp
"
23
#include "
detail/field-info.hpp
"
24
25
#include <boost/range/adaptor/reversed.hpp>
26
27
namespace
ndn
{
28
namespace
lp
{
29
30
Packet::Packet
()
31
: m_wire(
Block
(tlv::
LpPacket
))
32
{
33
}
34
35
Packet::Packet
(
const
Block
& wire)
36
{
37
wireDecode
(wire);
38
}
39
40
template
<encoding::Tag TAG>
41
size_t
42
Packet::wireEncode
(
EncodingImpl<TAG>
& encoder)
const
43
{
44
if
(m_wire.
hasWire
()) {
45
return
m_wire.
size
();
46
}
47
48
size_t
length = 0;
49
50
for
(
const
Block
& element : boost::adaptors::reverse(m_wire.
elements
())) {
51
length += encoder.prependBlock(element);
52
}
53
54
length += encoder.prependVarNumber(length);
55
length += encoder.prependVarNumber(
tlv::LpPacket
);
56
57
return
length;
58
}
59
60
template
size_t
61
Packet::wireEncode<encoding::EncoderTag>(
EncodingImpl<encoding::EncoderTag>
& encoder)
const
;
62
63
template
size_t
64
Packet::wireEncode<encoding::EstimatorTag>(
EncodingImpl<encoding::EstimatorTag>
& encoder)
const
;
65
66
Block
67
Packet::wireEncode
()
const
68
{
69
if
(m_wire.
hasWire
()) {
70
return
m_wire;
71
}
72
73
// If no header or trailer, return bare network packet
74
Block::element_container
elements = m_wire.
elements
();
75
if
(elements.size() == 1 && elements.front().type() == FragmentField::TlvType::value) {
76
elements.front().parse();
77
elements.front().elements().front().parse();
78
return
elements.front().elements().front();
79
}
80
81
EncodingEstimator
estimator;
82
size_t
estimatedSize =
wireEncode
(estimator);
83
84
EncodingBuffer
buffer(estimatedSize, 0);
85
wireEncode
(buffer);
86
87
m_wire = buffer.block();
88
return
m_wire;
89
}
90
91
void
92
Packet::wireDecode
(
const
Block
& wire)
93
{
94
if
(wire.
type
() ==
ndn::tlv::Interest
|| wire.
type
() ==
ndn::tlv::Data
) {
95
m_wire =
Block
(
tlv::LpPacket
);
96
add<FragmentField>(make_pair(wire.
begin
(), wire.
end
()));
97
return
;
98
}
99
100
if
(wire.
type
() !=
tlv::LpPacket
) {
101
BOOST_THROW_EXCEPTION(
Error
(
"unrecognized TLV-TYPE "
+
to_string
(wire.
type
())));
102
}
103
104
wire.
parse
();
105
106
bool
isFirst =
true
;
107
detail::FieldInfo
prev;
108
for
(
const
Block
& element : wire.
elements
()) {
109
detail::FieldInfo
info(element.type());
110
111
if
(!info.isRecognized && !info.canIgnore) {
112
BOOST_THROW_EXCEPTION(
Error
(
"unrecognized field cannot be ignored"
));
113
}
114
115
if
(!isFirst) {
116
if
(info.tlvType == prev.
tlvType
&& !info.isRepeatable) {
117
BOOST_THROW_EXCEPTION(
Error
(
"non-repeatable field cannot be repeated"
));
118
}
119
120
else
if
(info.tlvType != prev.
tlvType
&& !
detail::compareFieldSortOrder
(prev, info)) {
121
BOOST_THROW_EXCEPTION(
Error
(
"fields are not in correct sort order"
));
122
}
123
}
124
125
isFirst =
false
;
126
prev = info;
127
}
128
129
m_wire = wire;
130
}
131
132
bool
133
Packet::comparePos(
const
Block
& first,
const
uint64_t second)
134
{
135
detail::FieldInfo
firstInfo(first.
type
());
136
detail::FieldInfo
secondInfo(second);
137
return
detail::compareFieldSortOrder
(firstInfo, secondInfo);
138
}
139
140
}
// namespace lp
141
}
// namespace ndn
ndn::Block::hasWire
bool hasWire() const
Check if the Block has fully encoded wire.
Definition:
block.cpp:471
ndn
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-strategy-choice-helper.hpp:34
ndn::lp::tlv::LpPacket
Definition:
tlv.hpp:33
ndn::encoding::EncodingEstimator
EncodingImpl< EstimatorTag > EncodingEstimator
Definition:
encoding-buffer-fwd.hpp:48
packet.hpp
ndn::Block::parse
void parse() const
Parse wire buffer into subblocks.
Definition:
block.cpp:322
ndn::Block
Class representing a wire element of NDN-TLV packet format.
Definition:
block.hpp:43
ndn::lp::Packet::Error
Definition:
packet.hpp:33
ndn::lp::Packet::Packet
Packet()
Definition:
packet.cpp:30
ndn::lp::detail::FieldInfo
Definition:
field-info.hpp:33
ndn::Block::size
size_t size() const
Definition:
block.cpp:504
ndn::lp::detail::compareFieldSortOrder
bool compareFieldSortOrder(const FieldInfo &first, const FieldInfo &second)
Definition:
field-info.hpp:87
ndn::lp::Packet::wireDecode
void wireDecode(const Block &wire)
decode packet from wire format
Definition:
packet.cpp:92
ndn::encoding::EncodingBuffer
EncodingImpl< EncoderTag > EncodingBuffer
Definition:
encoding-buffer-fwd.hpp:45
ndn::Block::begin
Buffer::const_iterator begin() const
Definition:
block.cpp:477
ndn::Block::end
Buffer::const_iterator end() const
Definition:
block.cpp:486
ndn::encoding::EncodingImpl
Definition:
encoding-buffer-fwd.hpp:45
ndn::Block::element_container
std::vector< Block > element_container
Definition:
block.hpp:46
field-info.hpp
ndn::Block::elements
const element_container & elements() const
Get all subelements.
Definition:
block.hpp:342
ndn::tlv::Data
Definition:
tlv.hpp:62
ndn::lp::Packet::wireEncode
Block wireEncode() const
encode packet into wire format
Definition:
packet.cpp:67
ndn::lp
Definition:
cache-policy.cpp:27
ndn::to_string
std::string to_string(const V &v)
Definition:
backports.hpp:51
ndn::tlv::Interest
Definition:
tlv.hpp:61
ndn::Block::type
uint32_t type() const
Definition:
block.hpp:324
ndn::lp::detail::FieldInfo::tlvType
uint64_t tlvType
TLV-TYPE of the field; 0 if field does not exist.
Definition:
field-info.hpp:45
ndnSIM
ndn-cxx
src
lp
packet.cpp
Generated on Wed Jan 11 2017 18:17:13 for ndnSIM by
1.8.13