Jiewen Tan | 7a56d1c | 2015-01-26 23:26:51 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Alexander Afanasyev | 67758b1 | 2018-03-06 18:36:44 -0500 | [diff] [blame^] | 2 | /* |
| 3 | * Copyright (c) 2014-2018, The University of Memphis, |
Jiewen Tan | 7a56d1c | 2015-01-26 23:26:51 -0800 | [diff] [blame] | 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/>. |
Alexander Afanasyev | 67758b1 | 2018-03-06 18:36:44 -0500 | [diff] [blame^] | 20 | */ |
Jiewen Tan | 7a56d1c | 2015-01-26 23:26:51 -0800 | [diff] [blame] | 21 | |
| 22 | #include "adjacency.hpp" |
| 23 | #include "tlv-nlsr.hpp" |
| 24 | |
| 25 | #include <ndn-cxx/util/concepts.hpp> |
| 26 | #include <ndn-cxx/encoding/block-helpers.hpp> |
| 27 | |
| 28 | namespace nlsr { |
Alexander Afanasyev | 67758b1 | 2018-03-06 18:36:44 -0500 | [diff] [blame^] | 29 | namespace tlv { |
Jiewen Tan | 7a56d1c | 2015-01-26 23:26:51 -0800 | [diff] [blame] | 30 | |
| 31 | BOOST_CONCEPT_ASSERT((ndn::WireEncodable<Adjacency>)); |
| 32 | BOOST_CONCEPT_ASSERT((ndn::WireDecodable<Adjacency>)); |
| 33 | static_assert(std::is_base_of<ndn::tlv::Error, Adjacency::Error>::value, |
| 34 | "Adjacency::Error must inherit from tlv::Error"); |
| 35 | |
| 36 | Adjacency::Adjacency() |
| 37 | : m_cost(0) |
| 38 | { |
| 39 | } |
| 40 | |
| 41 | Adjacency::Adjacency(const ndn::Block& block) |
| 42 | { |
| 43 | wireDecode(block); |
| 44 | } |
| 45 | |
Alexander Afanasyev | f9f3910 | 2015-12-01 17:43:40 -0800 | [diff] [blame] | 46 | template<ndn::encoding::Tag TAG> |
Jiewen Tan | 7a56d1c | 2015-01-26 23:26:51 -0800 | [diff] [blame] | 47 | size_t |
Alexander Afanasyev | f9f3910 | 2015-12-01 17:43:40 -0800 | [diff] [blame] | 48 | Adjacency::wireEncode(ndn::EncodingImpl<TAG>& encoder) const |
Jiewen Tan | 7a56d1c | 2015-01-26 23:26:51 -0800 | [diff] [blame] | 49 | { |
| 50 | size_t totalLength = 0; |
| 51 | |
Vince Lehman | f4772d4 | 2015-06-29 14:02:22 -0500 | [diff] [blame] | 52 | totalLength += prependNonNegativeIntegerBlock(encoder, ndn::tlv::nlsr::Cost, m_cost); |
Jiewen Tan | 7a56d1c | 2015-01-26 23:26:51 -0800 | [diff] [blame] | 53 | |
Vince Lehman | f4772d4 | 2015-06-29 14:02:22 -0500 | [diff] [blame] | 54 | totalLength += encoder.prependByteArrayBlock( |
Jiewen Tan | 7a56d1c | 2015-01-26 23:26:51 -0800 | [diff] [blame] | 55 | ndn::tlv::nlsr::Uri, reinterpret_cast<const uint8_t*>(m_uri.c_str()), m_uri.size()); |
| 56 | |
Vince Lehman | f4772d4 | 2015-06-29 14:02:22 -0500 | [diff] [blame] | 57 | totalLength += m_name.wireEncode(encoder); |
Jiewen Tan | 7a56d1c | 2015-01-26 23:26:51 -0800 | [diff] [blame] | 58 | |
Vince Lehman | f4772d4 | 2015-06-29 14:02:22 -0500 | [diff] [blame] | 59 | totalLength += encoder.prependVarNumber(totalLength); |
| 60 | totalLength += encoder.prependVarNumber(ndn::tlv::nlsr::Adjacency); |
Jiewen Tan | 7a56d1c | 2015-01-26 23:26:51 -0800 | [diff] [blame] | 61 | |
| 62 | return totalLength; |
| 63 | } |
| 64 | |
Alexander Afanasyev | 67758b1 | 2018-03-06 18:36:44 -0500 | [diff] [blame^] | 65 | NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS(Adjacency); |
Jiewen Tan | 7a56d1c | 2015-01-26 23:26:51 -0800 | [diff] [blame] | 66 | |
| 67 | const ndn::Block& |
| 68 | Adjacency::wireEncode() const |
| 69 | { |
| 70 | if (m_wire.hasWire()) { |
| 71 | return m_wire; |
| 72 | } |
| 73 | |
| 74 | ndn::EncodingEstimator estimator; |
| 75 | size_t estimatedSize = wireEncode(estimator); |
| 76 | |
| 77 | ndn::EncodingBuffer buffer(estimatedSize, 0); |
| 78 | wireEncode(buffer); |
| 79 | |
| 80 | m_wire = buffer.block(); |
| 81 | |
| 82 | return m_wire; |
| 83 | } |
| 84 | |
| 85 | void |
| 86 | Adjacency::wireDecode(const ndn::Block& wire) |
| 87 | { |
| 88 | m_name.clear(); |
| 89 | m_uri = ""; |
| 90 | m_cost = 0; |
| 91 | |
| 92 | m_wire = wire; |
| 93 | |
| 94 | if (m_wire.type() != ndn::tlv::nlsr::Adjacency) { |
Alexander Afanasyev | 67758b1 | 2018-03-06 18:36:44 -0500 | [diff] [blame^] | 95 | BOOST_THROW_EXCEPTION(Error("Expected Adjacency Block, but Block is of a different type: #" + |
| 96 | ndn::to_string(m_wire.type()))); |
Jiewen Tan | 7a56d1c | 2015-01-26 23:26:51 -0800 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | m_wire.parse(); |
| 100 | |
| 101 | ndn::Block::element_const_iterator val = m_wire.elements_begin(); |
| 102 | |
| 103 | if (val != m_wire.elements_end() && val->type() == ndn::tlv::Name) { |
| 104 | m_name.wireDecode(*val); |
| 105 | ++val; |
| 106 | } |
| 107 | else { |
Alexander Afanasyev | 67758b1 | 2018-03-06 18:36:44 -0500 | [diff] [blame^] | 108 | BOOST_THROW_EXCEPTION(Error("Missing required Name field")); |
Jiewen Tan | 7a56d1c | 2015-01-26 23:26:51 -0800 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | if (val != m_wire.elements_end() && val->type() == ndn::tlv::nlsr::Uri) { |
| 112 | m_uri.assign(reinterpret_cast<const char*>(val->value()), val->value_size()); |
| 113 | ++val; |
| 114 | } |
| 115 | else { |
Alexander Afanasyev | 67758b1 | 2018-03-06 18:36:44 -0500 | [diff] [blame^] | 116 | BOOST_THROW_EXCEPTION(Error("Missing required Uri field")); |
Jiewen Tan | 7a56d1c | 2015-01-26 23:26:51 -0800 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | if (val != m_wire.elements_end() && val->type() == ndn::tlv::nlsr::Cost) { |
| 120 | m_cost = ndn::readNonNegativeInteger(*val); |
| 121 | ++val; |
| 122 | } |
| 123 | else { |
Alexander Afanasyev | 67758b1 | 2018-03-06 18:36:44 -0500 | [diff] [blame^] | 124 | BOOST_THROW_EXCEPTION(Error("Missing required Cost field")); |
Jiewen Tan | 7a56d1c | 2015-01-26 23:26:51 -0800 | [diff] [blame] | 125 | } |
| 126 | } |
| 127 | |
| 128 | std::ostream& |
| 129 | operator<<(std::ostream& os, const Adjacency& adjacency) |
| 130 | { |
| 131 | os << "Adjacency(" |
| 132 | << "Name: " << adjacency.getName() << ", " |
| 133 | << "Uri: " << adjacency.getUri() << ", " |
| 134 | << "Cost: " << adjacency.getCost() << ")"; |
| 135 | |
| 136 | return os; |
| 137 | } |
| 138 | |
| 139 | } // namespace tlv |
| 140 | } // namespace nlsr |