blob: 7320d91e7e4ab539ba4af65f016cec6e21482f5e [file] [log] [blame]
Nick Gordonb50e51b2016-07-22 16:05:57 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Ashlesh Gawande0421bc62020-05-08 20:42:19 -07002/*
3 * Copyright (c) 2014-2020, The University of Memphis,
Nick Gordonb50e51b2016-07-22 16:05:57 -05004 * Regents of the University of California
5 *
6 * This file is part of NLSR (Named-data Link State Routing).
7 * See AUTHORS.md for complete list of NLSR authors and contributors.
8 *
9 * NLSR is free software: you can redistribute it and/or modify it under the terms
10 * of the GNU General Public License as published by the Free Software Foundation,
11 * either version 3 of the License, or (at your option) any later version.
12 *
13 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
14 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Ashlesh Gawande0421bc62020-05-08 20:42:19 -070019 */
Nick Gordonb50e51b2016-07-22 16:05:57 -050020
21#include "routing-table-entry.hpp"
22#include "nexthop-list.hpp"
Ashlesh Gawande0421bc62020-05-08 20:42:19 -070023#include "tlv-nlsr.hpp"
Nick Gordonb50e51b2016-07-22 16:05:57 -050024
25namespace nlsr {
26
Ashlesh Gawande0421bc62020-05-08 20:42:19 -070027template<ndn::encoding::Tag TAG>
28size_t
29RoutingTableEntry::wireEncode(ndn::EncodingImpl<TAG>& block) const
30{
31 size_t totalLength = 0;
32
33 for (auto it = m_nexthopList.rbegin(); it != m_nexthopList.rend(); ++it) {
34 totalLength += it->wireEncode(block);
35 }
36
37 totalLength += m_destination.wireEncode(block);
38
39 totalLength += block.prependVarNumber(totalLength);
40 totalLength += block.prependVarNumber(ndn::tlv::nlsr::RoutingTableEntry);
41
42 return totalLength;
43}
44
45NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS(RoutingTableEntry);
46
47const ndn::Block&
48RoutingTableEntry::wireEncode() const
49{
50 if (m_wire.hasWire()) {
51 return m_wire;
52 }
53
54 ndn::EncodingEstimator estimator;
55 size_t estimatedSize = wireEncode(estimator);
56
57 ndn::EncodingBuffer buffer(estimatedSize, 0);
58 wireEncode(buffer);
59
60 m_wire = buffer.block();
61
62 return m_wire;
63}
64
65void
66RoutingTableEntry::wireDecode(const ndn::Block& wire)
67{
68 m_nexthopList.clear();
69
70 m_wire = wire;
71
72 if (m_wire.type() != ndn::tlv::nlsr::RoutingTableEntry) {
73 std::stringstream error;
74 error << "Expected RoutingTable Block, but Block is of a different type: #"
75 << m_wire.type();
76 BOOST_THROW_EXCEPTION(Error(error.str()));
77 }
78
79 m_wire.parse();
80
81 auto val = m_wire.elements_begin();
82
83 if (val != m_wire.elements_end() && val->type() == ndn::tlv::Name) {
84 m_destination.wireDecode(*val);
85 ++val;
86 }
87 else {
88 BOOST_THROW_EXCEPTION(Error("Missing required destination field"));
89 }
90
91 for (; val != m_wire.elements_end(); ++val) {
92 if (val->type() == ndn::tlv::nlsr::NextHop) {
93 m_nexthopList.addNextHop(NextHop(*val));
94 }
95 else {
96 std::stringstream error;
97 error << "Expected NextHop Block, but Block is of a different type: #"
98 << m_wire.type();
99 BOOST_THROW_EXCEPTION(Error(error.str()));
100 }
101 }
102}
103
Nick Gordonb50e51b2016-07-22 16:05:57 -0500104std::ostream&
105operator<<(std::ostream& os, const RoutingTableEntry& rte)
106{
Ashlesh Gawande0421bc62020-05-08 20:42:19 -0700107 os << " Destination: " << rte.getDestination() << "\n"
108 << rte.getNexthopList() << "\n";
Nick Gordonb50e51b2016-07-22 16:05:57 -0500109
110 return os;
111}
112
113} // namespace nlsr