blob: 3d1658189dd5ad8746e360fe0e41c74ce22ffc91 [file] [log] [blame]
Jiewen Tana0497d82015-02-02 21:59:18 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Nick Gordonfeae5572017-01-13 12:06:26 -06003 * Copyright (c) 2014-2017, The University of Memphis,
Jiewen Tana0497d82015-02-02 21:59:18 -08004 * 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
28namespace nlsr {
29
30const ndn::Name::Component AdjacencyLsaPublisher::DATASET_COMPONENT =
31 ndn::Name::Component("adjacencies");
32
33AdjacencyLsaPublisher::AdjacencyLsaPublisher(Lsdb& lsdb,
34 ndn::Face& face,
Jiewen Tana0497d82015-02-02 21:59:18 -080035 ndn::KeyChain& keyChain)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050036 : LsaPublisher(face, keyChain)
Jiewen Tana0497d82015-02-02 21:59:18 -080037 , m_adjacencyLsas(lsdb.getAdjLsdb())
38{
39}
40
41std::list<tlv::AdjacencyLsa>
42AdjacencyLsaPublisher::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
70const ndn::Name::Component CoordinateLsaPublisher::DATASET_COMPONENT =
71 ndn::Name::Component("coordinates");
72
73CoordinateLsaPublisher::CoordinateLsaPublisher(Lsdb& lsdb,
74 ndn::Face& face,
Jiewen Tana0497d82015-02-02 21:59:18 -080075 ndn::KeyChain& keyChain)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -050076 : LsaPublisher(face, keyChain)
Jiewen Tana0497d82015-02-02 21:59:18 -080077 , m_coordinateLsas(lsdb.getCoordinateLsdb())
78{
79}
80
Nick G97e34942016-07-11 14:46:27 -050081 // Returns the list of coordinate LSAs represented by this object.
Jiewen Tana0497d82015-02-02 21:59:18 -080082std::list<tlv::CoordinateLsa>
83CoordinateLsaPublisher::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
106const ndn::Name::Component NameLsaPublisher::DATASET_COMPONENT =
107 ndn::Name::Component("names");
108
109NameLsaPublisher::NameLsaPublisher(Lsdb& lsdb,
110 ndn::Face& face,
Jiewen Tana0497d82015-02-02 21:59:18 -0800111 ndn::KeyChain& keyChain)
Vince Lehmand6bb3fa2015-04-24 14:21:39 -0500112 : LsaPublisher(face, keyChain)
Jiewen Tana0497d82015-02-02 21:59:18 -0800113 , m_nameLsas(lsdb.getNameLsdb())
114{
115}
116
Nick G97e34942016-07-11 14:46:27 -0500117 // Returns the list of name LSAs represented by this object.
118 // Note: each name LSA has a list of prefixes as well.
Jiewen Tana0497d82015-02-02 21:59:18 -0800119std::list<tlv::NameLsa>
120NameLsaPublisher::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