blob: 20af101a75c1e1f6dadf99335d831df8f39291dc [file] [log] [blame]
Jiewen Tan7a56d1c2015-01-26 23:26:51 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alexander Afanasyev67758b12018-03-06 18:36:44 -05002/*
Tianxing Ma9ea36392018-10-05 14:32:55 -05003 * Copyright (c) 2014-2019, The University of Memphis,
Jiewen Tan7a56d1c2015-01-26 23:26:51 -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/>.
Alexander Afanasyev67758b12018-03-06 18:36:44 -050020 */
Jiewen Tan7a56d1c2015-01-26 23:26:51 -080021
22#include "coordinate-lsa.hpp"
23#include "tlv-nlsr.hpp"
24
25#include <ndn-cxx/util/concepts.hpp>
26#include <ndn-cxx/encoding/block-helpers.hpp>
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050027
28#include <iostream>
Jiewen Tan7a56d1c2015-01-26 23:26:51 -080029
30namespace nlsr {
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -060031namespace tlv {
32
Jiewen Tan7a56d1c2015-01-26 23:26:51 -080033BOOST_CONCEPT_ASSERT((ndn::WireEncodable<CoordinateLsa>));
34BOOST_CONCEPT_ASSERT((ndn::WireDecodable<CoordinateLsa>));
35static_assert(std::is_base_of<ndn::tlv::Error, CoordinateLsa::Error>::value,
36 "CoordinateLsa::Error must inherit from tlv::Error");
37
38CoordinateLsa::CoordinateLsa()
39 : m_hyperbolicRadius(0.0)
Jiewen Tan7a56d1c2015-01-26 23:26:51 -080040{
41}
42
43CoordinateLsa::CoordinateLsa(const ndn::Block& block)
44{
45 wireDecode(block);
46}
47
Alexander Afanasyevf9f39102015-12-01 17:43:40 -080048template<ndn::encoding::Tag TAG>
Jiewen Tan7a56d1c2015-01-26 23:26:51 -080049size_t
Alexander Afanasyevf9f39102015-12-01 17:43:40 -080050CoordinateLsa::wireEncode(ndn::EncodingImpl<TAG>& block) const
Jiewen Tan7a56d1c2015-01-26 23:26:51 -080051{
52 size_t totalLength = 0;
Jiewen Tan7a56d1c2015-01-26 23:26:51 -080053
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -060054 for (auto it = m_hyperbolicAngle.rbegin(); it != m_hyperbolicAngle.rend(); ++it) {
Tianxing Ma9ea36392018-10-05 14:32:55 -050055 totalLength += ndn::encoding::prependDoubleBlock(block, ndn::tlv::nlsr::HyperbolicAngle, *it);
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -060056 }
Jiewen Tan7a56d1c2015-01-26 23:26:51 -080057
Tianxing Ma9ea36392018-10-05 14:32:55 -050058 totalLength += ndn::encoding::prependDoubleBlock(block, ndn::tlv::nlsr::HyperbolicRadius, m_hyperbolicRadius);
Jiewen Tan7a56d1c2015-01-26 23:26:51 -080059
60 totalLength += m_lsaInfo.wireEncode(block);
61
62 totalLength += block.prependVarNumber(totalLength);
63 totalLength += block.prependVarNumber(ndn::tlv::nlsr::CoordinateLsa);
64
65 return totalLength;
66}
67
Alexander Afanasyev67758b12018-03-06 18:36:44 -050068NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS(CoordinateLsa);
Jiewen Tan7a56d1c2015-01-26 23:26:51 -080069
70const ndn::Block&
71CoordinateLsa::wireEncode() const
72{
73 if (m_wire.hasWire()) {
74 return m_wire;
75 }
76
77 ndn::EncodingEstimator estimator;
78 size_t estimatedSize = wireEncode(estimator);
79
80 ndn::EncodingBuffer buffer(estimatedSize, 0);
81 wireEncode(buffer);
82
83 m_wire = buffer.block();
84
85 return m_wire;
86}
87
88void
89CoordinateLsa::wireDecode(const ndn::Block& wire)
90{
91 m_hyperbolicRadius = 0.0;
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -060092 m_hyperbolicAngle.clear();
Jiewen Tan7a56d1c2015-01-26 23:26:51 -080093
94 m_wire = wire;
95
96 if (m_wire.type() != ndn::tlv::nlsr::CoordinateLsa) {
97 std::stringstream error;
98 error << "Expected CoordinateLsa Block, but Block is of a different type: #"
99 << m_wire.type();
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600100 BOOST_THROW_EXCEPTION(Error(error.str()));
Jiewen Tan7a56d1c2015-01-26 23:26:51 -0800101 }
102
103 m_wire.parse();
104
105 ndn::Block::element_const_iterator val = m_wire.elements_begin();
106
107 if (val != m_wire.elements_end() && val->type() == ndn::tlv::nlsr::LsaInfo) {
108 m_lsaInfo.wireDecode(*val);
109 ++val;
110 }
111 else {
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600112 BOOST_THROW_EXCEPTION(Error("Missing required LsaInfo field"));
Jiewen Tan7a56d1c2015-01-26 23:26:51 -0800113 }
114
115 if (val != m_wire.elements_end() && val->type() == ndn::tlv::nlsr::HyperbolicRadius) {
Tianxing Ma9ea36392018-10-05 14:32:55 -0500116 m_hyperbolicRadius = ndn::encoding::readDouble(*val);
Ashlesh Gawande8df15982018-05-09 17:52:33 -0500117 ++val;
Jiewen Tan7a56d1c2015-01-26 23:26:51 -0800118 }
119 else {
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600120 BOOST_THROW_EXCEPTION(Error("Missing required HyperbolicRadius field"));
Jiewen Tan7a56d1c2015-01-26 23:26:51 -0800121 }
122
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600123 for (; val != m_wire.elements_end(); ++val) {
124 if (val->type() == ndn::tlv::nlsr::HyperbolicAngle) {
Tianxing Ma9ea36392018-10-05 14:32:55 -0500125 m_hyperbolicAngle.push_back(ndn::encoding::readDouble(*val));
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600126 }
Jiewen Tan7a56d1c2015-01-26 23:26:51 -0800127 }
128}
129
130std::ostream&
131operator<<(std::ostream& os, const CoordinateLsa& coordinateLsa)
132{
133 os << "CoordinateLsa("
134 << coordinateLsa.getLsaInfo() << ", "
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600135 << "HyperbolicRadius: " << coordinateLsa.getHyperbolicRadius() << ", ";
136
137 os << "HyperbolicAngles: ";
138 int i = 0;
139 for (const auto& value: coordinateLsa.getHyperbolicAngle()) {
140 if (i == 0) {
141 os << value;
142 }
143 else {
144 os << ", " << value;
145 }
146 ++i;
147 }
148 os << ")";
Jiewen Tan7a56d1c2015-01-26 23:26:51 -0800149
150 return os;
151}
152
153} // namespace tlv
154} // namespace nlsr