blob: 72f138b31e93d736d997c198e8b789935ad56c61 [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/*
3 * 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 "adjacency-lsa.hpp"
23#include "tlv-nlsr.hpp"
24
25#include <ndn-cxx/util/concepts.hpp>
26#include <ndn-cxx/encoding/block-helpers.hpp>
27
28namespace nlsr {
Alexander Afanasyev67758b12018-03-06 18:36:44 -050029namespace tlv {
Jiewen Tan7a56d1c2015-01-26 23:26:51 -080030
31BOOST_CONCEPT_ASSERT((ndn::WireEncodable<AdjacencyLsa>));
32BOOST_CONCEPT_ASSERT((ndn::WireDecodable<AdjacencyLsa>));
33static_assert(std::is_base_of<ndn::tlv::Error, AdjacencyLsa::Error>::value,
34 "AdjacencyLsa::Error must inherit from tlv::Error");
35
36AdjacencyLsa::AdjacencyLsa()
37 : m_hasAdjacencies(false)
38{
39}
40
41AdjacencyLsa::AdjacencyLsa(const ndn::Block& block)
42{
43 wireDecode(block);
44}
45
Alexander Afanasyevf9f39102015-12-01 17:43:40 -080046template<ndn::encoding::Tag TAG>
Jiewen Tan7a56d1c2015-01-26 23:26:51 -080047size_t
Alexander Afanasyevf9f39102015-12-01 17:43:40 -080048AdjacencyLsa::wireEncode(ndn::EncodingImpl<TAG>& block) const
Jiewen Tan7a56d1c2015-01-26 23:26:51 -080049{
50 size_t totalLength = 0;
51
52 for (std::list<Adjacency>::const_reverse_iterator it = m_adjacencies.rbegin();
53 it != m_adjacencies.rend(); ++it) {
54 totalLength += it->wireEncode(block);
55 }
56
57 totalLength += m_lsaInfo.wireEncode(block);
58
59 totalLength += block.prependVarNumber(totalLength);
60 totalLength += block.prependVarNumber(ndn::tlv::nlsr::AdjacencyLsa);
61
62 return totalLength;
63}
64
Alexander Afanasyev67758b12018-03-06 18:36:44 -050065NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS(AdjacencyLsa);
Jiewen Tan7a56d1c2015-01-26 23:26:51 -080066
67const ndn::Block&
68AdjacencyLsa::wireEncode() const
69{
70 if (m_wire.hasWire()) {
71 return m_wire;
72 }
73
74 ndn::EncodingEstimator estimator;
75 size_t estimatedSize = wireEncode(estimator);
76
77 ndn::EncodingBuffer buffer(estimatedSize, 0);
78 wireEncode(buffer);
79
80 m_wire = buffer.block();
81
82 return m_wire;
83}
84
85void
86AdjacencyLsa::wireDecode(const ndn::Block& wire)
87{
88 m_hasAdjacencies = false;
89 m_adjacencies.clear();
90
91 m_wire = wire;
92
93 if (m_wire.type() != ndn::tlv::nlsr::AdjacencyLsa) {
Alexander Afanasyev67758b12018-03-06 18:36:44 -050094 BOOST_THROW_EXCEPTION(Error("Expected AdjacencyLsa Block, but Block is of a different type: #" +
95 ndn::to_string(m_wire.type())));
Jiewen Tan7a56d1c2015-01-26 23:26:51 -080096 }
97
98 m_wire.parse();
99
100 ndn::Block::element_const_iterator val = m_wire.elements_begin();
101
102 if (val != m_wire.elements_end() && val->type() == ndn::tlv::nlsr::LsaInfo) {
103 m_lsaInfo.wireDecode(*val);
104 ++val;
105 }
106 else {
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500107 BOOST_THROW_EXCEPTION(Error("Missing required LsaInfo field"));
Jiewen Tan7a56d1c2015-01-26 23:26:51 -0800108 }
109
110 for (; val != m_wire.elements_end(); ++val) {
111 if (val->type() == ndn::tlv::nlsr::Adjacency) {
112 m_adjacencies.push_back(Adjacency(*val));
113 m_hasAdjacencies = true;
114 }
115 else {
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500116 BOOST_THROW_EXCEPTION(Error("Expected Adjacency Block, but Block is of a different type: #" +
117 ndn::to_string(m_wire.type())));
Jiewen Tan7a56d1c2015-01-26 23:26:51 -0800118 }
119 }
120}
121
122std::ostream&
123operator<<(std::ostream& os, const AdjacencyLsa& adjacencyLsa)
124{
125 os << "AdjacencyLsa("
126 << adjacencyLsa.getLsaInfo();
127
128 for (const auto& adjacency : adjacencyLsa) {
129 os << ", " << adjacency;
130 }
131
132 os << ")";
133
134 return os;
135}
136
137} // namespace tlv
138} // namespace nlsr