Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Nick Gordon | feae557 | 2017-01-13 12:06:26 -0600 | [diff] [blame^] | 3 | * Copyright (c) 2014-2017, The University of Memphis, |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -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/>. |
| 20 | **/ |
| 21 | |
| 22 | #include "lsa-publisher.hpp" |
| 23 | |
| 24 | #include "lsa.hpp" |
| 25 | |
| 26 | #include <ndn-cxx/face.hpp> |
| 27 | |
| 28 | namespace nlsr { |
| 29 | |
| 30 | const ndn::Name::Component AdjacencyLsaPublisher::DATASET_COMPONENT = |
| 31 | ndn::Name::Component("adjacencies"); |
| 32 | |
| 33 | AdjacencyLsaPublisher::AdjacencyLsaPublisher(Lsdb& lsdb, |
| 34 | ndn::Face& face, |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 35 | ndn::KeyChain& keyChain) |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 36 | : LsaPublisher(face, keyChain) |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 37 | , m_adjacencyLsas(lsdb.getAdjLsdb()) |
| 38 | { |
| 39 | } |
| 40 | |
| 41 | std::list<tlv::AdjacencyLsa> |
| 42 | AdjacencyLsaPublisher::getTlvLsas() |
| 43 | { |
| 44 | std::list<tlv::AdjacencyLsa> lsas; |
| 45 | |
| 46 | for (AdjLsa lsa : m_adjacencyLsas) { |
| 47 | tlv::AdjacencyLsa tlvLsa; |
| 48 | |
| 49 | std::shared_ptr<tlv::LsaInfo> tlvLsaInfo = tlv::makeLsaInfo(lsa); |
| 50 | tlvLsa.setLsaInfo(*tlvLsaInfo); |
| 51 | |
| 52 | for (const Adjacent& adj : lsa.getAdl().getAdjList()) { |
| 53 | tlv::Adjacency tlvAdj; |
| 54 | tlvAdj.setName(adj.getName()); |
| 55 | tlvAdj.setUri(adj.getConnectingFaceUri()); |
| 56 | tlvAdj.setCost(adj.getLinkCost()); |
| 57 | tlvLsa.addAdjacency(tlvAdj); |
| 58 | } |
| 59 | |
| 60 | lsas.push_back(tlvLsa); |
| 61 | } |
| 62 | |
| 63 | return lsas; |
| 64 | } |
| 65 | |
| 66 | ////////////////////////////////////////////////////////////////////// |
| 67 | ////////////////////////////////////////////////////////////////////// |
| 68 | ////////////////////////////////////////////////////////////////////// |
| 69 | |
| 70 | const ndn::Name::Component CoordinateLsaPublisher::DATASET_COMPONENT = |
| 71 | ndn::Name::Component("coordinates"); |
| 72 | |
| 73 | CoordinateLsaPublisher::CoordinateLsaPublisher(Lsdb& lsdb, |
| 74 | ndn::Face& face, |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 75 | ndn::KeyChain& keyChain) |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 76 | : LsaPublisher(face, keyChain) |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 77 | , m_coordinateLsas(lsdb.getCoordinateLsdb()) |
| 78 | { |
| 79 | } |
| 80 | |
Nick G | 97e3494 | 2016-07-11 14:46:27 -0500 | [diff] [blame] | 81 | // Returns the list of coordinate LSAs represented by this object. |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 82 | std::list<tlv::CoordinateLsa> |
| 83 | CoordinateLsaPublisher::getTlvLsas() |
| 84 | { |
| 85 | std::list<tlv::CoordinateLsa> lsas; |
| 86 | |
| 87 | for (const CoordinateLsa lsa : m_coordinateLsas) { |
| 88 | tlv::CoordinateLsa tlvLsa; |
| 89 | |
| 90 | std::shared_ptr<tlv::LsaInfo> tlvLsaInfo = tlv::makeLsaInfo(lsa); |
| 91 | tlvLsa.setLsaInfo(*tlvLsaInfo); |
| 92 | |
| 93 | tlvLsa.setHyperbolicRadius(lsa.getCorRadius()); |
| 94 | tlvLsa.setHyperbolicAngle(lsa.getCorTheta()); |
| 95 | |
| 96 | lsas.push_back(tlvLsa); |
| 97 | } |
| 98 | |
| 99 | return lsas; |
| 100 | } |
| 101 | |
| 102 | ////////////////////////////////////////////////////////////////////// |
| 103 | ////////////////////////////////////////////////////////////////////// |
| 104 | ////////////////////////////////////////////////////////////////////// |
| 105 | |
| 106 | const ndn::Name::Component NameLsaPublisher::DATASET_COMPONENT = |
| 107 | ndn::Name::Component("names"); |
| 108 | |
| 109 | NameLsaPublisher::NameLsaPublisher(Lsdb& lsdb, |
| 110 | ndn::Face& face, |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 111 | ndn::KeyChain& keyChain) |
Vince Lehman | d6bb3fa | 2015-04-24 14:21:39 -0500 | [diff] [blame] | 112 | : LsaPublisher(face, keyChain) |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 113 | , m_nameLsas(lsdb.getNameLsdb()) |
| 114 | { |
| 115 | } |
| 116 | |
Nick G | 97e3494 | 2016-07-11 14:46:27 -0500 | [diff] [blame] | 117 | // Returns the list of name LSAs represented by this object. |
| 118 | // Note: each name LSA has a list of prefixes as well. |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 119 | std::list<tlv::NameLsa> |
| 120 | NameLsaPublisher::getTlvLsas() |
| 121 | { |
| 122 | std::list<tlv::NameLsa> lsas; |
| 123 | |
| 124 | for (NameLsa lsa : m_nameLsas) { |
| 125 | tlv::NameLsa tlvLsa; |
| 126 | |
| 127 | std::shared_ptr<tlv::LsaInfo> tlvLsaInfo = tlv::makeLsaInfo(lsa); |
| 128 | tlvLsa.setLsaInfo(*tlvLsaInfo); |
| 129 | |
| 130 | for (const ndn::Name& name : lsa.getNpl().getNameList()) { |
| 131 | tlvLsa.addName(name); |
| 132 | } |
| 133 | |
| 134 | lsas.push_back(tlvLsa); |
| 135 | } |
| 136 | |
| 137 | return lsas; |
| 138 | } |
| 139 | |
| 140 | } // namespace nlsr |