Teng Liang | e3ecad7 | 2018-08-28 21:12:53 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2013-2018 Regents of the University of California. |
| 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 6 | * |
| 7 | * ndn-cxx library is free software: you can redistribute it and/or modify it under the |
| 8 | * terms of the GNU Lesser General Public License as published by the Free Software |
| 9 | * Foundation, either version 3 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY |
| 12 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| 13 | * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
| 14 | * |
| 15 | * You should have received copies of the GNU General Public License and GNU Lesser |
| 16 | * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see |
| 17 | * <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| 20 | */ |
| 21 | |
| 22 | #include "prefix-announcement-header.hpp" |
| 23 | #include "tlv.hpp" |
| 24 | |
| 25 | namespace ndn { |
| 26 | namespace lp { |
| 27 | |
| 28 | PrefixAnnouncementHeader::PrefixAnnouncementHeader() = default; |
| 29 | |
| 30 | PrefixAnnouncementHeader::PrefixAnnouncementHeader(const Block& block) |
| 31 | { |
| 32 | wireDecode(block); |
| 33 | } |
| 34 | |
| 35 | PrefixAnnouncementHeader::PrefixAnnouncementHeader(PrefixAnnouncement prefixAnn) |
| 36 | : m_prefixAnn(std::move(prefixAnn)) |
| 37 | { |
| 38 | if (m_prefixAnn->getData() == nullopt) { |
| 39 | BOOST_THROW_EXCEPTION(Error("PrefixAnnouncement does not contain Data")); |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | template<encoding::Tag TAG> |
| 44 | size_t |
| 45 | PrefixAnnouncementHeader::wireEncode(EncodingImpl<TAG>& encoder) const |
| 46 | { |
| 47 | if (m_prefixAnn == nullopt) { |
| 48 | BOOST_THROW_EXCEPTION(Error("PrefixAnnouncementHeader does not contain a PrefixAnnouncement")); |
| 49 | } |
| 50 | |
| 51 | size_t length = 0; |
| 52 | length += m_prefixAnn->getData()->wireEncode(encoder); |
| 53 | length += encoder.prependVarNumber(length); |
| 54 | length += encoder.prependVarNumber(tlv::PrefixAnnouncement); |
| 55 | return length; |
| 56 | } |
| 57 | |
| 58 | NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS(PrefixAnnouncementHeader); |
| 59 | |
| 60 | void |
| 61 | PrefixAnnouncementHeader::wireDecode(const Block& wire) |
| 62 | { |
| 63 | if (wire.type() != tlv::PrefixAnnouncement) { |
| 64 | BOOST_THROW_EXCEPTION(Error("Unexpected TLV-TYPE " + to_string(wire.type()))); |
| 65 | } |
| 66 | |
| 67 | wire.parse(); |
| 68 | m_prefixAnn.emplace(Data(wire.get(ndn::tlv::Data))); |
| 69 | } |
| 70 | } // namespace lp |
| 71 | } // namespace ndn |