blob: fc74241406fbdd8ad17302bb09e26ba84d6fc8b5 [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/*
dmcoomescf8d0ed2017-02-21 11:39:01 -06003 * Copyright (c) 2014-2018, 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) {
Ashlesh Gawande8df15982018-05-09 17:52:33 -050055 totalLength += prependDouble(block, ndn::tlv::nlsr::HyperbolicAngle, *it);
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -060056 }
Jiewen Tan7a56d1c2015-01-26 23:26:51 -080057
Ashlesh Gawande8df15982018-05-09 17:52:33 -050058 totalLength += prependDouble(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 std::cout << "Missing required LsaInfo field" << std::endl;
113 BOOST_THROW_EXCEPTION(Error("Missing required LsaInfo field"));
Jiewen Tan7a56d1c2015-01-26 23:26:51 -0800114 }
115
116 if (val != m_wire.elements_end() && val->type() == ndn::tlv::nlsr::HyperbolicRadius) {
Ashlesh Gawande8df15982018-05-09 17:52:33 -0500117 m_hyperbolicRadius = ndn::tlv::nlsr::readDouble(*val);
118 ++val;
Jiewen Tan7a56d1c2015-01-26 23:26:51 -0800119 }
120 else {
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600121 std::cout << "Missing required HyperbolicRadius field" << std::endl;
122 BOOST_THROW_EXCEPTION(Error("Missing required HyperbolicRadius field"));
Jiewen Tan7a56d1c2015-01-26 23:26:51 -0800123 }
124
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600125 for (; val != m_wire.elements_end(); ++val) {
126 if (val->type() == ndn::tlv::nlsr::HyperbolicAngle) {
Ashlesh Gawande8df15982018-05-09 17:52:33 -0500127 m_hyperbolicAngle.push_back(ndn::tlv::nlsr::readDouble(*val));
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600128 }
Jiewen Tan7a56d1c2015-01-26 23:26:51 -0800129 }
130}
131
132std::ostream&
133operator<<(std::ostream& os, const CoordinateLsa& coordinateLsa)
134{
135 os << "CoordinateLsa("
136 << coordinateLsa.getLsaInfo() << ", "
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600137 << "HyperbolicRadius: " << coordinateLsa.getHyperbolicRadius() << ", ";
138
139 os << "HyperbolicAngles: ";
140 int i = 0;
141 for (const auto& value: coordinateLsa.getHyperbolicAngle()) {
142 if (i == 0) {
143 os << value;
144 }
145 else {
146 os << ", " << value;
147 }
148 ++i;
149 }
150 os << ")";
Jiewen Tan7a56d1c2015-01-26 23:26:51 -0800151
152 return os;
153}
154
155} // namespace tlv
156} // namespace nlsr