blob: 859c8a80f02a6c9cc8665cf59551dd0d91f3bd9e [file] [log] [blame]
laqinfan35731852017-08-08 06:17:39 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014-2018, The University of Memphis,
4 * Regents of the University of California,
5 * Arizona Board of Regents.
6 *
7 * This file is part of NLSR (Named-data Link State Routing).
8 * See AUTHORS.md for complete list of NLSR authors and contributors.
9 *
10 * NLSR is free software: you can redistribute it and/or modify it under the terms
11 * of the GNU General Public License as published by the Free Software Foundation,
12 * either version 3 of the License, or (at your option) any later version.
13 *
14 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
15 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16 * PURPOSE. See the GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
20 **/
21
22#ifndef NLSR_TLV_DESTINATION_HPP
23#define NLSR_TLV_DESTINATION_HPP
24
25#include "route/routing-table-entry.hpp"
26
27#include <ndn-cxx/util/time.hpp>
28#include <ndn-cxx/encoding/block.hpp>
29#include <ndn-cxx/encoding/encoding-buffer.hpp>
30#include <ndn-cxx/encoding/tlv.hpp>
31#include <ndn-cxx/name.hpp>
32#include <boost/throw_exception.hpp>
33
34#include <list>
35
36namespace nlsr {
37namespace tlv {
38
39/*! \brief Data abstraction for Destination
40 *
41 * Destination := DESTINATION-TYPE TLV-LENGTH
42 * Name
43 *
44 * \sa https://redmine.named-data.net/projects/nlsr/wiki/Routing_Table_DataSet
45 */
46class Destination
47{
48public:
49 class Error : public ndn::tlv::Error
50 {
51 public:
52 explicit
53 Error(const std::string& what)
54 : ndn::tlv::Error(what)
55 {
56 }
57 };
58
59 Destination();
60
61 explicit
62 Destination(const ndn::Block& block);
63
64 const ndn::Name&
65 getName() const
66 {
67 return m_name;
68 }
69
70 Destination&
71 setName(const ndn::Name& name)
72 {
73 m_name = name;
74 m_wire.reset();
75 return *this;
76 }
77
78 template<ndn::encoding::Tag TAG>
79 size_t
80 wireEncode(ndn::EncodingImpl<TAG>& block) const;
81
82 const ndn::Block&
83 wireEncode() const;
84
85 void
86 wireDecode(const ndn::Block& wire);
87
88private:
89 ndn::Name m_name;
90
91 mutable ndn::Block m_wire;
92};
93
laqinfana073e2e2018-01-15 21:17:24 +000094NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS(Destination);
95
laqinfan35731852017-08-08 06:17:39 -050096std::ostream&
97operator<<(std::ostream& os, const Destination& destination);
98
99std::shared_ptr<Destination>
100makeDes(const RoutingTableEntry& rte);
101
102} // namespace tlv
103} // namespace nlsr
104
105#endif // NLSR_TLV_DESTINATION_HPP