akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Ashlesh Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [diff] [blame] | 2 | /* |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame^] | 3 | * Copyright (c) 2014-2021, The University of Memphis, |
Nick Gordon | f8b5bcd | 2016-08-11 15:06:50 -0500 | [diff] [blame] | 4 | * Regents of the University of California |
akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 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 Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [diff] [blame] | 19 | */ |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 20 | |
| 21 | #include "adjacent.hpp" |
| 22 | #include "logger.hpp" |
Ashlesh Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [diff] [blame] | 23 | #include "tlv-nlsr.hpp" |
akmhoque | c8a10f7 | 2014-04-25 18:42:55 -0500 | [diff] [blame] | 24 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 25 | namespace nlsr { |
| 26 | |
dmcoomes | cf8d0ed | 2017-02-21 11:39:01 -0600 | [diff] [blame] | 27 | INIT_LOGGER(Adjacent); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 28 | |
dulalsaurab | d0816a3 | 2019-07-26 13:11:24 +0000 | [diff] [blame] | 29 | const double Adjacent::DEFAULT_LINK_COST = 10.0; |
| 30 | const double Adjacent::NON_ADJACENT_COST = -12345; |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 31 | |
| 32 | Adjacent::Adjacent() |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame^] | 33 | : m_name() |
| 34 | , m_faceUri() |
| 35 | , m_linkCost(DEFAULT_LINK_COST) |
| 36 | , m_status(STATUS_INACTIVE) |
| 37 | , m_interestTimedOutNo(0) |
| 38 | , m_faceId(0) |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 39 | { |
| 40 | } |
| 41 | |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 42 | Adjacent::Adjacent(const ndn::Block& block) |
| 43 | { |
| 44 | wireDecode(block); |
| 45 | } |
| 46 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 47 | Adjacent::Adjacent(const ndn::Name& an) |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame^] | 48 | : m_name(an) |
| 49 | , m_faceUri() |
| 50 | , m_linkCost(DEFAULT_LINK_COST) |
| 51 | , m_status(STATUS_INACTIVE) |
| 52 | , m_interestTimedOutNo(0) |
| 53 | , m_faceId(0) |
| 54 | { |
| 55 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 56 | |
Ashlesh Gawande | 4187857 | 2019-09-29 00:16:02 -0500 | [diff] [blame] | 57 | Adjacent::Adjacent(const ndn::Name& an, const ndn::FaceUri& faceUri, double lc, |
Vince Lehman | cb76ade | 2014-08-28 21:24:41 -0500 | [diff] [blame] | 58 | Status s, uint32_t iton, uint64_t faceId) |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame^] | 59 | : m_name(an) |
| 60 | , m_faceUri(faceUri) |
| 61 | , m_status(s) |
| 62 | , m_interestTimedOutNo(iton) |
| 63 | , m_faceId(faceId) |
| 64 | { |
| 65 | this->setLinkCost(lc); |
| 66 | } |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 67 | |
dulalsaurab | d0816a3 | 2019-07-26 13:11:24 +0000 | [diff] [blame] | 68 | void |
| 69 | Adjacent::setLinkCost(double lc) |
| 70 | { |
| 71 | // NON_ADJACENT_COST is a negative value and is used for nodes that aren't direct neighbors. |
| 72 | // But for direct/active neighbors, the cost cannot be negative. |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame^] | 73 | if (lc < 0 && lc != NON_ADJACENT_COST) { |
dulalsaurab | d0816a3 | 2019-07-26 13:11:24 +0000 | [diff] [blame] | 74 | NLSR_LOG_ERROR(" Neighbor's link-cost cannot be negative"); |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame^] | 75 | NDN_THROW(ndn::tlv::Error("Neighbor's link-cost cannot be negative")); |
dulalsaurab | d0816a3 | 2019-07-26 13:11:24 +0000 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | m_linkCost = lc; |
| 79 | } |
| 80 | |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 81 | NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS(Adjacent); |
| 82 | |
| 83 | template<ndn::encoding::Tag TAG> |
| 84 | size_t |
| 85 | Adjacent::wireEncode(ndn::EncodingImpl<TAG>& encoder) const |
| 86 | { |
| 87 | size_t totalLength = 0; |
| 88 | |
| 89 | totalLength += prependDoubleBlock(encoder, ndn::tlv::nlsr::Cost, m_linkCost); |
| 90 | |
| 91 | totalLength += prependStringBlock(encoder, ndn::tlv::nlsr::Uri, m_faceUri.toString()); |
| 92 | |
| 93 | totalLength += m_name.wireEncode(encoder); |
| 94 | |
| 95 | totalLength += encoder.prependVarNumber(totalLength); |
| 96 | totalLength += encoder.prependVarNumber(ndn::tlv::nlsr::Adjacency); |
| 97 | |
| 98 | return totalLength; |
| 99 | } |
| 100 | |
| 101 | const ndn::Block& |
| 102 | Adjacent::wireEncode() const |
| 103 | { |
| 104 | if (m_wire.hasWire()) { |
| 105 | return m_wire; |
| 106 | } |
| 107 | |
| 108 | ndn::EncodingEstimator estimator; |
| 109 | size_t estimatedSize = wireEncode(estimator); |
| 110 | |
| 111 | ndn::EncodingBuffer buffer(estimatedSize, 0); |
| 112 | wireEncode(buffer); |
| 113 | |
| 114 | m_wire = buffer.block(); |
| 115 | |
| 116 | return m_wire; |
| 117 | } |
| 118 | |
| 119 | void |
| 120 | Adjacent::wireDecode(const ndn::Block& wire) |
| 121 | { |
| 122 | m_name.clear(); |
| 123 | m_faceUri = ndn::FaceUri(); |
| 124 | m_linkCost = 0; |
| 125 | |
| 126 | m_wire = wire; |
| 127 | |
| 128 | if (m_wire.type() != ndn::tlv::nlsr::Adjacency) { |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame^] | 129 | NDN_THROW(Error("Adjacency", m_wire.type())); |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | m_wire.parse(); |
| 133 | |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame^] | 134 | auto val = m_wire.elements_begin(); |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 135 | |
| 136 | if (val != m_wire.elements_end() && val->type() == ndn::tlv::Name) { |
| 137 | m_name.wireDecode(*val); |
| 138 | ++val; |
| 139 | } |
| 140 | else { |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame^] | 141 | NDN_THROW(Error("Missing required Name field")); |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | if (val != m_wire.elements_end() && val->type() == ndn::tlv::nlsr::Uri) { |
| 145 | m_faceUri = ndn::FaceUri(readString(*val)); |
| 146 | ++val; |
| 147 | } |
| 148 | else { |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame^] | 149 | NDN_THROW(Error("Missing required Uri field")); |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | if (val != m_wire.elements_end() && val->type() == ndn::tlv::nlsr::Cost) { |
| 153 | m_linkCost = ndn::encoding::readDouble(*val); |
| 154 | ++val; |
| 155 | } |
| 156 | else { |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame^] | 157 | NDN_THROW(Error("Missing required Cost field")); |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 158 | } |
| 159 | } |
| 160 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 161 | bool |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 162 | Adjacent::operator==(const Adjacent& adjacent) const |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 163 | { |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 164 | return (m_name == adjacent.getName()) && |
Nick Gordon | e9733ed | 2017-04-26 10:48:39 -0500 | [diff] [blame] | 165 | (m_faceUri == adjacent.getFaceUri()) && |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 166 | (std::abs(m_linkCost - adjacent.getLinkCost()) < |
Nick Gordon | e9733ed | 2017-04-26 10:48:39 -0500 | [diff] [blame] | 167 | std::numeric_limits<double>::epsilon()); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 168 | } |
| 169 | |
Nick Gordon | 2a1ac61 | 2017-10-06 15:36:49 -0500 | [diff] [blame] | 170 | bool |
| 171 | Adjacent::operator<(const Adjacent& adjacent) const |
| 172 | { |
Ashlesh Gawande | e8d8bd5 | 2018-08-09 17:18:51 -0500 | [diff] [blame] | 173 | auto linkCost = adjacent.getLinkCost(); |
| 174 | return std::tie(m_name, m_linkCost) < |
| 175 | std::tie(adjacent.getName(), linkCost); |
Nick Gordon | 2a1ac61 | 2017-10-06 15:36:49 -0500 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | std::ostream& |
| 179 | operator<<(std::ostream& os, const Adjacent& adjacent) |
| 180 | { |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 181 | os << "Adjacent: " << adjacent.m_name |
| 182 | << "\n\t\tConnecting FaceUri: " << adjacent.m_faceUri |
| 183 | << "\n\t\tLink cost: " << adjacent.m_linkCost |
| 184 | << "\n\t\tStatus: " << adjacent.m_status |
| 185 | << "\n\t\tInterest Timed Out: " << adjacent.m_interestTimedOutNo << std::endl; |
Nick Gordon | 2a1ac61 | 2017-10-06 15:36:49 -0500 | [diff] [blame] | 186 | return os; |
| 187 | } |
| 188 | |
Nick Gordon | fad8e25 | 2016-08-11 14:21:38 -0500 | [diff] [blame] | 189 | } // namespace nlsr |