NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
lp-reassembler.hpp
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2014-2018, Regents of the University of California,
4
* Arizona Board of Regents,
5
* Colorado State University,
6
* University Pierre & Marie Curie, Sorbonne University,
7
* Washington University in St. Louis,
8
* Beijing Institute of Technology,
9
* The University of Memphis.
10
*
11
* This file is part of NFD (Named Data Networking Forwarding Daemon).
12
* See AUTHORS.md for complete list of NFD authors and contributors.
13
*
14
* NFD is free software: you can redistribute it and/or modify it under the terms
15
* of the GNU General Public License as published by the Free Software Foundation,
16
* either version 3 of the License, or (at your option) any later version.
17
*
18
* NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20
* PURPOSE. See the GNU General Public License for more details.
21
*
22
* You should have received a copy of the GNU General Public License along with
23
* NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24
*/
25
26
#ifndef NFD_DAEMON_FACE_LP_REASSEMBLER_HPP
27
#define NFD_DAEMON_FACE_LP_REASSEMBLER_HPP
28
29
#include "
core/scheduler.hpp
"
30
#include "
face-log.hpp
"
31
#include "
transport.hpp
"
32
33
#include <
ndn-cxx/lp/packet.hpp
>
34
35
namespace
nfd
{
36
namespace
face {
37
38
class
LinkService
;
39
43
class
LpReassembler
: noncopyable
44
{
45
public
:
48
struct
Options
49
{
54
size_t
nMaxFragments
= 400;
55
58
time::nanoseconds
reassemblyTimeout
= 500_ms;
59
};
60
61
explicit
62
LpReassembler
(
const
Options
& options,
const
LinkService
* linkService =
nullptr
);
63
66
void
67
setOptions
(
const
Options
& options);
68
73
const
LinkService
*
74
getLinkService
()
const
;
75
85
std::tuple<bool, Block, lp::Packet>
86
receiveFragment
(
Transport::EndpointId
remoteEndpoint,
const
lp::Packet
& packet);
87
90
size_t
91
size
()
const
;
92
100
signal::Signal<LpReassembler, Transport::EndpointId, size_t>
beforeTimeout
;
101
102
private
:
105
struct
PartialPacket
106
{
107
std::vector<lp::Packet> fragments;
108
size_t
fragCount;
109
size_t
nReceivedFragments;
110
scheduler::ScopedEventId
dropTimer;
111
};
112
115
typedef
std::tuple<
116
Transport::EndpointId
,
// remoteEndpoint
117
lp::Sequence
// message identifier (sequence of the first fragment)
118
> Key;
119
120
Block
121
doReassembly(
const
Key& key);
122
123
void
124
timeoutPartialPacket(
const
Key& key);
125
126
private
:
127
Options m_options;
128
std::map<Key, PartialPacket> m_partialPackets;
129
const
LinkService
* m_linkService;
130
};
131
132
std::ostream&
133
operator<<
(std::ostream& os,
const
FaceLogHelper<LpReassembler>& flh);
134
135
inline
void
136
LpReassembler::setOptions
(
const
Options
& options)
137
{
138
m_options = options;
139
}
140
141
inline
const
LinkService
*
142
LpReassembler::getLinkService
()
const
143
{
144
return
m_linkService;
145
}
146
147
inline
size_t
148
LpReassembler::size
()
const
149
{
150
return
m_partialPackets.size();
151
}
152
153
}
// namespace face
154
}
// namespace nfd
155
156
#endif // NFD_DAEMON_FACE_LP_REASSEMBLER_HPP
nfd::face::LpReassembler::beforeTimeout
signal::Signal< LpReassembler, Transport::EndpointId, size_t > beforeTimeout
signals before a partial packet is dropped due to timeout
Definition:
lp-reassembler.hpp:100
nfd::face::LinkService
the upper part of a Face
Definition:
link-service.hpp:77
nfd::face::LpReassembler::Options
Options that control the behavior of LpReassembler.
Definition:
lp-reassembler.hpp:48
nfd::face::operator<<
std::ostream & operator<<(std::ostream &os, const Face &face)
Definition:
ndn-common.hpp:89
nfd::face::LinkService
LinkService
Definition:
link-service.cpp:32
face-log.hpp
packet.hpp
ndn::Block
Represents a TLV element of NDN packet format.
Definition:
block.hpp:42
ndn::util::signal::Signal
provides a lightweight signal / event system
Definition:
signal.hpp:51
ndn::lp::Sequence
uint64_t Sequence
represents a sequence number
Definition:
sequence.hpp:35
nfd
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-common.hpp:40
nfd::face::LpReassembler
reassembles fragmented network-layer packets
Definition:
lp-reassembler.hpp:43
nfd::face::LpReassembler::setOptions
void setOptions(const Options &options)
set options for reassembler
Definition:
lp-reassembler.hpp:136
nfd::face::LpReassembler::LpReassembler
LpReassembler(const Options &options, const LinkService *linkService=nullptr)
Definition:
lp-reassembler.cpp:36
ndn::util::scheduler::ScopedEventId
A scoped handle of scheduled event.
Definition:
scheduler.hpp:123
scheduler.hpp
transport.hpp
nfd::face::LpReassembler::receiveFragment
std::tuple< bool, Block, lp::Packet > receiveFragment(Transport::EndpointId remoteEndpoint, const lp::Packet &packet)
adds received fragment to buffer
Definition:
lp-reassembler.cpp:43
nfd::face::LpReassembler::getLinkService
const LinkService * getLinkService() const
Definition:
lp-reassembler.hpp:142
nfd::face::LpReassembler::Options::reassemblyTimeout
time::nanoseconds reassemblyTimeout
timeout before a partially reassembled packet is dropped
Definition:
lp-reassembler.hpp:58
nfd::face::Transport::EndpointId
uint64_t EndpointId
identifies an endpoint on the link
Definition:
transport.hpp:118
ndn::lp::Packet
Definition:
packet.hpp:30
nfd::face::LpReassembler::size
size_t size() const
count of partial packets
Definition:
lp-reassembler.hpp:148
nfd::face::LpReassembler::Options::nMaxFragments
size_t nMaxFragments
maximum number of fragments in a packet
Definition:
lp-reassembler.hpp:54
ndnSIM
NFD
daemon
face
lp-reassembler.hpp
Generated on Sun Feb 24 2019 22:16:07 for ndnSIM by
1.8.15