blob: 3396af6662ade02917763454b00a8f1710b9aef0 [file] [log] [blame]
Teng Liange3ecad72018-08-28 21:12:53 -07001/* -*- 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
25namespace ndn {
26namespace lp {
27
28PrefixAnnouncementHeader::PrefixAnnouncementHeader() = default;
29
30PrefixAnnouncementHeader::PrefixAnnouncementHeader(const Block& block)
31{
32 wireDecode(block);
33}
34
35PrefixAnnouncementHeader::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
43template<encoding::Tag TAG>
44size_t
45PrefixAnnouncementHeader::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
58NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS(PrefixAnnouncementHeader);
59
60void
61PrefixAnnouncementHeader::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