Jiewen Tan | 7a56d1c | 2015-01-26 23:26:51 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2014-2015, The University of Memphis, |
| 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 | #ifndef NLSR_TLV_NAME_LSA_HPP |
| 23 | #define NLSR_TLV_NAME_LSA_HPP |
| 24 | |
| 25 | #include "lsa-info.hpp" |
| 26 | |
| 27 | #include <ndn-cxx/util/time.hpp> |
| 28 | #include <ndn-cxx/encoding/block.hpp> |
| 29 | #include <ndn-cxx/encoding/encoding-buffer.hpp> |
| 30 | #include <ndn-cxx/encoding/tlv.hpp> |
| 31 | #include <ndn-cxx/name.hpp> |
| 32 | |
| 33 | #include <list> |
| 34 | |
| 35 | namespace nlsr { |
| 36 | namespace tlv { |
| 37 | |
| 38 | /** |
| 39 | * @brief Data abstraction for NameLsa |
| 40 | * |
| 41 | * NameLsa := NAME-LSA-TYPE TLV-LENGTH |
| 42 | * LsaInfo |
| 43 | * Name+ |
| 44 | * |
| 45 | * @sa http://redmine.named-data.net/projects/nlsr/wiki/LSDB_DataSet |
| 46 | */ |
| 47 | class NameLsa |
| 48 | { |
| 49 | public: |
| 50 | class Error : public ndn::tlv::Error |
| 51 | { |
| 52 | public: |
| 53 | explicit |
| 54 | Error(const std::string& what) |
| 55 | : ndn::tlv::Error(what) |
| 56 | { |
| 57 | } |
| 58 | }; |
| 59 | |
| 60 | typedef std::list<ndn::Name> NameList; |
| 61 | typedef NameList::const_iterator iterator; |
| 62 | |
| 63 | NameLsa(); |
| 64 | |
| 65 | explicit |
| 66 | NameLsa(const ndn::Block& block); |
| 67 | |
| 68 | const LsaInfo& |
| 69 | getLsaInfo() const |
| 70 | { |
| 71 | return m_lsaInfo; |
| 72 | } |
| 73 | |
| 74 | NameLsa& |
| 75 | setLsaInfo(const LsaInfo& lsaInfo) |
| 76 | { |
| 77 | m_lsaInfo = lsaInfo; |
| 78 | m_wire.reset(); |
| 79 | return *this; |
| 80 | } |
| 81 | |
| 82 | bool |
| 83 | hasNames() const |
| 84 | { |
| 85 | return m_hasNames; |
| 86 | } |
| 87 | |
| 88 | const std::list<ndn::Name>& |
| 89 | getNames() const |
| 90 | { |
| 91 | return m_names; |
| 92 | } |
| 93 | |
| 94 | NameLsa& |
| 95 | addName(const ndn::Name& name) |
| 96 | { |
| 97 | m_names.push_back(name); |
| 98 | m_wire.reset(); |
| 99 | m_hasNames = true; |
| 100 | return *this; |
| 101 | } |
| 102 | |
| 103 | NameLsa& |
| 104 | clearNames() |
| 105 | { |
| 106 | m_names.clear(); |
| 107 | m_hasNames = false; |
| 108 | return *this; |
| 109 | } |
| 110 | |
Alexander Afanasyev | f9f3910 | 2015-12-01 17:43:40 -0800 | [diff] [blame^] | 111 | template<ndn::encoding::Tag TAG> |
Jiewen Tan | 7a56d1c | 2015-01-26 23:26:51 -0800 | [diff] [blame] | 112 | size_t |
Alexander Afanasyev | f9f3910 | 2015-12-01 17:43:40 -0800 | [diff] [blame^] | 113 | wireEncode(ndn::EncodingImpl<TAG>& block) const; |
Jiewen Tan | 7a56d1c | 2015-01-26 23:26:51 -0800 | [diff] [blame] | 114 | |
| 115 | const ndn::Block& |
| 116 | wireEncode() const; |
| 117 | |
| 118 | void |
| 119 | wireDecode(const ndn::Block& wire); |
| 120 | |
| 121 | iterator |
| 122 | begin() const; |
| 123 | |
| 124 | iterator |
| 125 | end() const; |
| 126 | |
| 127 | private: |
| 128 | LsaInfo m_lsaInfo; |
| 129 | bool m_hasNames; |
| 130 | NameList m_names; |
| 131 | |
| 132 | mutable ndn::Block m_wire; |
| 133 | }; |
| 134 | |
| 135 | inline NameLsa::iterator |
| 136 | NameLsa::begin() const |
| 137 | { |
| 138 | return m_names.begin(); |
| 139 | } |
| 140 | |
| 141 | inline NameLsa::iterator |
| 142 | NameLsa::end() const |
| 143 | { |
| 144 | return m_names.end(); |
| 145 | } |
| 146 | |
| 147 | std::ostream& |
| 148 | operator<<(std::ostream& os, const NameLsa& nameLsa); |
| 149 | |
| 150 | } // namespace tlv |
| 151 | } // namespace nlsr |
| 152 | |
| 153 | #endif // NLSR_TLV_NAME_LSA_HPP |