blob: 653a9d9c7d481177081ebba21039fd437b5df3aa [file] [log] [blame]
Chengyu Fan36dca992014-09-25 13:42:03 -06001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi5d75fd92017-08-08 18:09:20 +00002/*
Davide Pesavento0a1afdf2017-02-18 16:34:00 -05003 * Copyright (c) 2013-2017 Regents of the University of California.
Chengyu Fan36dca992014-09-25 13:42:03 -06004 *
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
Junxiao Shi7357ef22016-09-07 02:39:37 +000022#include "face-event-notification.hpp"
Junxiao Shi65f1a712014-11-20 14:59:36 -070023#include "encoding/block-helpers.hpp"
Davide Pesavento0a1afdf2017-02-18 16:34:00 -050024#include "encoding/encoding-buffer.hpp"
25#include "encoding/tlv-nfd.hpp"
Junxiao Shi65f1a712014-11-20 14:59:36 -070026#include "util/concepts.hpp"
Davide Pesaventoe78eeca2017-02-23 23:22:32 -050027#include "util/string-helper.hpp"
Davide Pesavento88eb7482017-02-18 19:25:58 -050028
Chengyu Fan36dca992014-09-25 13:42:03 -060029namespace ndn {
30namespace nfd {
Junxiao Shi65f1a712014-11-20 14:59:36 -070031
Davide Pesavento88eb7482017-02-18 19:25:58 -050032BOOST_CONCEPT_ASSERT((NotificationStreamItem<FaceEventNotification>));
Junxiao Shi65f1a712014-11-20 14:59:36 -070033
Chengyu Fan36dca992014-09-25 13:42:03 -060034FaceEventNotification::FaceEventNotification()
Davide Pesavento0a1afdf2017-02-18 16:34:00 -050035 : m_kind(FACE_EVENT_NONE)
Chengyu Fan36dca992014-09-25 13:42:03 -060036{
37}
38
39FaceEventNotification::FaceEventNotification(const Block& block)
40{
41 this->wireDecode(block);
42}
43
Alexander Afanasyev74633892015-02-08 18:08:46 -080044template<encoding::Tag TAG>
Chengyu Fan36dca992014-09-25 13:42:03 -060045size_t
Alexander Afanasyev74633892015-02-08 18:08:46 -080046FaceEventNotification::wireEncode(EncodingImpl<TAG>& encoder) const
Chengyu Fan36dca992014-09-25 13:42:03 -060047{
48 size_t totalLength = 0;
49
Junxiao Shi5d75fd92017-08-08 18:09:20 +000050 totalLength += prependNonNegativeIntegerBlock(encoder, tlv::nfd::Flags, m_flags);
51 totalLength += prependNonNegativeIntegerBlock(encoder, tlv::nfd::LinkType, m_linkType);
52 totalLength += prependNonNegativeIntegerBlock(encoder, tlv::nfd::FacePersistency, m_facePersistency);
53 totalLength += prependNonNegativeIntegerBlock(encoder, tlv::nfd::FaceScope, m_faceScope);
54 totalLength += prependStringBlock(encoder, tlv::nfd::LocalUri, m_localUri);
55 totalLength += prependStringBlock(encoder, tlv::nfd::Uri, m_remoteUri);
56 totalLength += prependNonNegativeIntegerBlock(encoder, tlv::nfd::FaceId, m_faceId);
57 totalLength += prependNonNegativeIntegerBlock(encoder, tlv::nfd::FaceEventKind, m_kind);
Chengyu Fan36dca992014-09-25 13:42:03 -060058
59 totalLength += encoder.prependVarNumber(totalLength);
60 totalLength += encoder.prependVarNumber(tlv::nfd::FaceEventNotification);
61 return totalLength;
62}
63
Davide Pesavento88a0d812017-08-19 21:31:42 -040064NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS(FaceEventNotification);
Davide Pesavento88eb7482017-02-18 19:25:58 -050065
Chengyu Fan36dca992014-09-25 13:42:03 -060066const Block&
67FaceEventNotification::wireEncode() const
68{
69 if (m_wire.hasWire())
70 return m_wire;
71
72 EncodingEstimator estimator;
73 size_t estimatedSize = wireEncode(estimator);
74
75 EncodingBuffer buffer(estimatedSize, 0);
76 wireEncode(buffer);
77
78 m_wire = buffer.block();
79 return m_wire;
80}
81
82void
83FaceEventNotification::wireDecode(const Block& block)
84{
85 if (block.type() != tlv::nfd::FaceEventNotification) {
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -070086 BOOST_THROW_EXCEPTION(Error("expecting FaceEventNotification block"));
Chengyu Fan36dca992014-09-25 13:42:03 -060087 }
88 m_wire = block;
89 m_wire.parse();
90 Block::element_const_iterator val = m_wire.elements_begin();
91
92 if (val != m_wire.elements_end() && val->type() == tlv::nfd::FaceEventKind) {
Junxiao Shi5d75fd92017-08-08 18:09:20 +000093 m_kind = readNonNegativeIntegerAs<FaceEventKind>(*val);
Chengyu Fan36dca992014-09-25 13:42:03 -060094 ++val;
95 }
96 else {
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -070097 BOOST_THROW_EXCEPTION(Error("missing required FaceEventKind field"));
Chengyu Fan36dca992014-09-25 13:42:03 -060098 }
99
100 if (val != m_wire.elements_end() && val->type() == tlv::nfd::FaceId) {
101 m_faceId = readNonNegativeInteger(*val);
102 ++val;
103 }
104 else {
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -0700105 BOOST_THROW_EXCEPTION(Error("missing required FaceId field"));
Chengyu Fan36dca992014-09-25 13:42:03 -0600106 }
107
108 if (val != m_wire.elements_end() && val->type() == tlv::nfd::Uri) {
Junxiao Shi5d75fd92017-08-08 18:09:20 +0000109 m_remoteUri = readString(*val);
Chengyu Fan36dca992014-09-25 13:42:03 -0600110 ++val;
111 }
112 else {
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -0700113 BOOST_THROW_EXCEPTION(Error("missing required Uri field"));
Chengyu Fan36dca992014-09-25 13:42:03 -0600114 }
115
116 if (val != m_wire.elements_end() && val->type() == tlv::nfd::LocalUri) {
Junxiao Shi5d75fd92017-08-08 18:09:20 +0000117 m_localUri = readString(*val);
Chengyu Fan36dca992014-09-25 13:42:03 -0600118 ++val;
119 }
120 else {
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -0700121 BOOST_THROW_EXCEPTION(Error("missing required LocalUri field"));
Chengyu Fan36dca992014-09-25 13:42:03 -0600122 }
123
124 if (val != m_wire.elements_end() && val->type() == tlv::nfd::FaceScope) {
Junxiao Shi5d75fd92017-08-08 18:09:20 +0000125 m_faceScope = readNonNegativeIntegerAs<FaceScope>(*val);
Chengyu Fan36dca992014-09-25 13:42:03 -0600126 ++val;
127 }
128 else {
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -0700129 BOOST_THROW_EXCEPTION(Error("missing required FaceScope field"));
Chengyu Fan36dca992014-09-25 13:42:03 -0600130 }
131
132 if (val != m_wire.elements_end() && val->type() == tlv::nfd::FacePersistency) {
Junxiao Shi5d75fd92017-08-08 18:09:20 +0000133 m_facePersistency = readNonNegativeIntegerAs<FacePersistency>(*val);
Chengyu Fan36dca992014-09-25 13:42:03 -0600134 ++val;
135 }
136 else {
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -0700137 BOOST_THROW_EXCEPTION(Error("missing required FacePersistency field"));
Chengyu Fan36dca992014-09-25 13:42:03 -0600138 }
139
140 if (val != m_wire.elements_end() && val->type() == tlv::nfd::LinkType) {
Junxiao Shi5d75fd92017-08-08 18:09:20 +0000141 m_linkType = readNonNegativeIntegerAs<LinkType>(*val);
Chengyu Fan36dca992014-09-25 13:42:03 -0600142 ++val;
143 }
144 else {
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -0700145 BOOST_THROW_EXCEPTION(Error("missing required LinkType field"));
Chengyu Fan36dca992014-09-25 13:42:03 -0600146 }
Eric Newberry1aa3e1e2016-09-28 20:27:45 -0700147
148 if (val != m_wire.elements_end() && val->type() == tlv::nfd::Flags) {
149 m_flags = readNonNegativeInteger(*val);
Davide Pesavento88eb7482017-02-18 19:25:58 -0500150 ++val;
Eric Newberry1aa3e1e2016-09-28 20:27:45 -0700151 }
152 else {
153 BOOST_THROW_EXCEPTION(Error("missing required Flags field"));
154 }
Chengyu Fan36dca992014-09-25 13:42:03 -0600155}
156
157FaceEventNotification&
158FaceEventNotification::setKind(FaceEventKind kind)
159{
160 m_wire.reset();
161 m_kind = kind;
162 return *this;
163}
164
Davide Pesavento88eb7482017-02-18 19:25:58 -0500165bool
166operator==(const FaceEventNotification& a, const FaceEventNotification& b)
167{
168 return a.getFaceId() == b.getFaceId() &&
169 a.getRemoteUri() == b.getRemoteUri() &&
170 a.getLocalUri() == b.getLocalUri() &&
171 a.getFaceScope() == b.getFaceScope() &&
172 a.getFacePersistency() == b.getFacePersistency() &&
173 a.getLinkType() == b.getLinkType() &&
174 a.getFlags() == b.getFlags() &&
175 a.getKind() == b.getKind();
176}
177
178std::ostream&
Chengyu Fan36dca992014-09-25 13:42:03 -0600179operator<<(std::ostream& os, const FaceEventNotification& notification)
180{
Davide Pesavento88eb7482017-02-18 19:25:58 -0500181 os << "FaceEvent(Kind: " << notification.getKind() << ",\n"
182 << " FaceId: " << notification.getFaceId() << ",\n"
183 << " RemoteUri: " << notification.getRemoteUri() << ",\n"
184 << " LocalUri: " << notification.getLocalUri() << ",\n"
185 << " FaceScope: " << notification.getFaceScope() << ",\n"
186 << " FacePersistency: " << notification.getFacePersistency() << ",\n"
Davide Pesaventoe78eeca2017-02-23 23:22:32 -0500187 << " LinkType: " << notification.getLinkType() << ",\n"
188 << " Flags: " << AsHex{notification.getFlags()} << "\n";
Eric Newberry1aa3e1e2016-09-28 20:27:45 -0700189
Davide Pesavento88eb7482017-02-18 19:25:58 -0500190 return os << " )";
Chengyu Fan36dca992014-09-25 13:42:03 -0600191}
192
193} // namespace nfd
194} // namespace ndn