Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [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 | /* |
Junxiao Shi | b875293 | 2024-01-07 15:18:46 +0000 | [diff] [blame^] | 3 | * Copyright (c) 2014-2024, The University of Memphis, |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -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/>. |
Ashlesh Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [diff] [blame] | 20 | */ |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 21 | |
| 22 | #include "adj-lsa.hpp" |
Ashlesh Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [diff] [blame] | 23 | #include "tlv-nlsr.hpp" |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 24 | |
| 25 | namespace nlsr { |
| 26 | |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 27 | AdjLsa::AdjLsa(const ndn::Name& originRouter, uint64_t seqNo, |
Junxiao Shi | b875293 | 2024-01-07 15:18:46 +0000 | [diff] [blame^] | 28 | const ndn::time::system_clock::time_point& timepoint, AdjacencyList& adl) |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 29 | : Lsa(originRouter, seqNo, timepoint) |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 30 | { |
| 31 | for (const auto& adjacent : adl.getAdjList()) { |
| 32 | if (adjacent.getStatus() == Adjacent::STATUS_ACTIVE) { |
| 33 | addAdjacent(adjacent); |
| 34 | } |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | AdjLsa::AdjLsa(const ndn::Block& block) |
| 39 | { |
| 40 | wireDecode(block); |
| 41 | } |
| 42 | |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 43 | template<ndn::encoding::Tag TAG> |
| 44 | size_t |
| 45 | AdjLsa::wireEncode(ndn::EncodingImpl<TAG>& block) const |
| 46 | { |
| 47 | size_t totalLength = 0; |
| 48 | |
| 49 | auto list = m_adl.getAdjList(); |
| 50 | for (auto it = list.rbegin(); it != list.rend(); ++it) { |
| 51 | totalLength += it->wireEncode(block); |
| 52 | } |
| 53 | |
| 54 | totalLength += Lsa::wireEncode(block); |
| 55 | |
| 56 | totalLength += block.prependVarNumber(totalLength); |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 57 | totalLength += block.prependVarNumber(nlsr::tlv::AdjacencyLsa); |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 58 | |
| 59 | return totalLength; |
| 60 | } |
| 61 | |
| 62 | NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS(AdjLsa); |
| 63 | |
| 64 | const ndn::Block& |
| 65 | AdjLsa::wireEncode() const |
| 66 | { |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 67 | if (m_wire.hasWire()) { |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 68 | return m_wire; |
| 69 | } |
| 70 | |
| 71 | ndn::EncodingEstimator estimator; |
| 72 | size_t estimatedSize = wireEncode(estimator); |
| 73 | |
| 74 | ndn::EncodingBuffer buffer(estimatedSize, 0); |
| 75 | wireEncode(buffer); |
| 76 | |
| 77 | m_wire = buffer.block(); |
| 78 | |
| 79 | return m_wire; |
| 80 | } |
| 81 | |
| 82 | void |
| 83 | AdjLsa::wireDecode(const ndn::Block& wire) |
| 84 | { |
| 85 | m_wire = wire; |
| 86 | |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 87 | if (m_wire.type() != nlsr::tlv::AdjacencyLsa) { |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame] | 88 | NDN_THROW(Error("AdjacencyLsa", m_wire.type())); |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | m_wire.parse(); |
| 92 | |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 93 | auto val = m_wire.elements_begin(); |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 94 | |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 95 | if (val != m_wire.elements_end() && val->type() == nlsr::tlv::Lsa) { |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 96 | Lsa::wireDecode(*val); |
| 97 | ++val; |
| 98 | } |
| 99 | else { |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame] | 100 | NDN_THROW(Error("Missing required Lsa field")); |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | AdjacencyList adl; |
| 104 | for (; val != m_wire.elements_end(); ++val) { |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 105 | if (val->type() == nlsr::tlv::Adjacency) { |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame] | 106 | adl.insert(Adjacent(*val)); |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 107 | } |
| 108 | else { |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame] | 109 | NDN_THROW(Error("Adjacency", val->type())); |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 110 | } |
| 111 | } |
| 112 | m_adl = adl; |
| 113 | } |
| 114 | |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 115 | std::string |
| 116 | AdjLsa::toString() const |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 117 | { |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 118 | std::ostringstream os; |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 119 | os << getString(); |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 120 | os << " Adjacent(s):\n"; |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 121 | |
| 122 | int adjacencyIndex = 0; |
| 123 | |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 124 | for (const auto& adjacency : m_adl) { |
| 125 | os << " Adjacent " << adjacencyIndex++ |
| 126 | << ": (name=" << adjacency.getName() |
| 127 | << ", uri=" << adjacency.getFaceUri() |
| 128 | << ", cost=" << adjacency.getLinkCost() << ")\n"; |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 129 | } |
| 130 | |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 131 | return os.str(); |
| 132 | } |
| 133 | |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 134 | std::tuple<bool, std::list<ndn::Name>, std::list<ndn::Name>> |
| 135 | AdjLsa::update(const std::shared_ptr<Lsa>& lsa) |
| 136 | { |
| 137 | auto alsa = std::static_pointer_cast<AdjLsa>(lsa); |
Junxiao Shi | b875293 | 2024-01-07 15:18:46 +0000 | [diff] [blame^] | 138 | if (*this != *alsa) { |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 139 | resetAdl(); |
| 140 | for (const auto& adjacent : alsa->getAdl()) { |
| 141 | addAdjacent(adjacent); |
| 142 | } |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 143 | return {true, std::list<ndn::Name>{}, std::list<ndn::Name>{}}; |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 144 | } |
Davide Pesavento | c1d0e8e | 2022-06-15 14:26:02 -0400 | [diff] [blame] | 145 | return {false, std::list<ndn::Name>{}, std::list<ndn::Name>{}}; |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame] | 146 | } |
| 147 | |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 148 | std::ostream& |
| 149 | operator<<(std::ostream& os, const AdjLsa& lsa) |
| 150 | { |
| 151 | return os << lsa.toString(); |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 152 | } |
| 153 | |
Ashlesh Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [diff] [blame] | 154 | } // namespace nlsr |