blob: 8275d0f0723d3a208ae2237c6ef1e16a3291cadb [file] [log] [blame]
Eric Newberry4c3e6b82015-11-10 16:48:42 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014-2015, 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_FRAGMENTER_HPP
27#define NFD_DAEMON_FACE_LP_FRAGMENTER_HPP
28
29#include "face-log.hpp"
30
31#include <ndn-cxx/lp/packet.hpp>
32
33namespace nfd {
34namespace face {
35
36class LinkService;
37
38/** \brief fragments network-layer packets into NDNLPv2 link-layer packets
39 * \sa http://redmine.named-data.net/projects/nfd/wiki/NDNLPv2
40 */
41class LpFragmenter
42{
43public:
44 /** \brief Options that control the behavior of LpFragmenter
45 */
46 class Options
47 {
48 public:
49 Options();
50
51 public:
52 /** \brief maximum number of fragments in a packet
53 */
54 size_t nMaxFragments;
55 };
56
57 explicit
58 LpFragmenter(const Options& options = Options(), const LinkService* linkService = nullptr);
59
60 /** \brief set options for fragmenter
61 */
62 void
63 setOptions(const Options& options);
64
65 /** \return LinkService that owns this instance
66 *
67 * This is only used for logging, and may be nullptr.
68 */
69 const LinkService*
70 getLinkService() const;
71
72 /** \brief fragments a network-layer packet into link-layer packets
73 * \param packet an LpPacket that contains a network-layer packet;
74 * must have Fragment field, must not have FragIndex and FragCount fields
75 * \param mtu maximum allowable LpPacket size after fragmentation and sequence number assignment
76 * \return whether fragmentation succeeded, fragmented packets without sequence number
77 */
78 std::tuple<bool, std::vector<lp::Packet>>
79 fragmentPacket(const lp::Packet& packet, size_t mtu);
80
81private:
82 Options m_options;
83 const LinkService* m_linkService;
84};
85
86std::ostream&
87operator<<(std::ostream& os, const FaceLogHelper<LpFragmenter>& flh);
88
89} // namespace face
90} // namespace nfd
91
92#endif // NFD_DAEMON_FACE_LP_FRAGMENTER_HPP