blob: 888fe618b9ced315770897d1742eb1c4000b2553 [file] [log] [blame]
Chengyu Fan36dca992014-09-25 13:42:03 -06001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
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
50 totalLength += prependNonNegativeIntegerBlock(encoder,
Eric Newberry1aa3e1e2016-09-28 20:27:45 -070051 tlv::nfd::Flags, m_flags);
52 totalLength += prependNonNegativeIntegerBlock(encoder,
Chengyu Fan36dca992014-09-25 13:42:03 -060053 tlv::nfd::LinkType, m_linkType);
54 totalLength += prependNonNegativeIntegerBlock(encoder,
55 tlv::nfd::FacePersistency, m_facePersistency);
56 totalLength += prependNonNegativeIntegerBlock(encoder,
57 tlv::nfd::FaceScope, m_faceScope);
Alexander Afanasyev74633892015-02-08 18:08:46 -080058 totalLength += encoder.prependByteArrayBlock(tlv::nfd::LocalUri,
Davide Pesavento88eb7482017-02-18 19:25:58 -050059 reinterpret_cast<const uint8_t*>(m_localUri.data()), m_localUri.size());
Alexander Afanasyev74633892015-02-08 18:08:46 -080060 totalLength += encoder.prependByteArrayBlock(tlv::nfd::Uri,
Davide Pesavento88eb7482017-02-18 19:25:58 -050061 reinterpret_cast<const uint8_t*>(m_remoteUri.data()), m_remoteUri.size());
Chengyu Fan36dca992014-09-25 13:42:03 -060062 totalLength += prependNonNegativeIntegerBlock(encoder,
63 tlv::nfd::FaceId, m_faceId);
64 totalLength += prependNonNegativeIntegerBlock(encoder,
65 tlv::nfd::FaceEventKind, m_kind);
66
67 totalLength += encoder.prependVarNumber(totalLength);
68 totalLength += encoder.prependVarNumber(tlv::nfd::FaceEventNotification);
69 return totalLength;
70}
71
Davide Pesavento88eb7482017-02-18 19:25:58 -050072template size_t
73FaceEventNotification::wireEncode<encoding::EncoderTag>(EncodingImpl<encoding::EncoderTag>& block) const;
74
75template size_t
76FaceEventNotification::wireEncode<encoding::EstimatorTag>(EncodingImpl<encoding::EstimatorTag>& block) const;
77
Chengyu Fan36dca992014-09-25 13:42:03 -060078const Block&
79FaceEventNotification::wireEncode() const
80{
81 if (m_wire.hasWire())
82 return m_wire;
83
84 EncodingEstimator estimator;
85 size_t estimatedSize = wireEncode(estimator);
86
87 EncodingBuffer buffer(estimatedSize, 0);
88 wireEncode(buffer);
89
90 m_wire = buffer.block();
91 return m_wire;
92}
93
94void
95FaceEventNotification::wireDecode(const Block& block)
96{
97 if (block.type() != tlv::nfd::FaceEventNotification) {
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -070098 BOOST_THROW_EXCEPTION(Error("expecting FaceEventNotification block"));
Chengyu Fan36dca992014-09-25 13:42:03 -060099 }
100 m_wire = block;
101 m_wire.parse();
102 Block::element_const_iterator val = m_wire.elements_begin();
103
104 if (val != m_wire.elements_end() && val->type() == tlv::nfd::FaceEventKind) {
105 m_kind = static_cast<FaceEventKind>(readNonNegativeInteger(*val));
106 ++val;
107 }
108 else {
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -0700109 BOOST_THROW_EXCEPTION(Error("missing required FaceEventKind field"));
Chengyu Fan36dca992014-09-25 13:42:03 -0600110 }
111
112 if (val != m_wire.elements_end() && val->type() == tlv::nfd::FaceId) {
113 m_faceId = readNonNegativeInteger(*val);
114 ++val;
115 }
116 else {
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -0700117 BOOST_THROW_EXCEPTION(Error("missing required FaceId field"));
Chengyu Fan36dca992014-09-25 13:42:03 -0600118 }
119
120 if (val != m_wire.elements_end() && val->type() == tlv::nfd::Uri) {
121 m_remoteUri.assign(reinterpret_cast<const char*>(val->value()), val->value_size());
122 ++val;
123 }
124 else {
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -0700125 BOOST_THROW_EXCEPTION(Error("missing required Uri field"));
Chengyu Fan36dca992014-09-25 13:42:03 -0600126 }
127
128 if (val != m_wire.elements_end() && val->type() == tlv::nfd::LocalUri) {
129 m_localUri.assign(reinterpret_cast<const char*>(val->value()), val->value_size());
130 ++val;
131 }
132 else {
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -0700133 BOOST_THROW_EXCEPTION(Error("missing required LocalUri field"));
Chengyu Fan36dca992014-09-25 13:42:03 -0600134 }
135
136 if (val != m_wire.elements_end() && val->type() == tlv::nfd::FaceScope) {
137 m_faceScope = static_cast<FaceScope>(readNonNegativeInteger(*val));
138 ++val;
139 }
140 else {
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -0700141 BOOST_THROW_EXCEPTION(Error("missing required FaceScope field"));
Chengyu Fan36dca992014-09-25 13:42:03 -0600142 }
143
144 if (val != m_wire.elements_end() && val->type() == tlv::nfd::FacePersistency) {
145 m_facePersistency = static_cast<FacePersistency>(readNonNegativeInteger(*val));
146 ++val;
147 }
148 else {
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -0700149 BOOST_THROW_EXCEPTION(Error("missing required FacePersistency field"));
Chengyu Fan36dca992014-09-25 13:42:03 -0600150 }
151
152 if (val != m_wire.elements_end() && val->type() == tlv::nfd::LinkType) {
153 m_linkType = static_cast<LinkType>(readNonNegativeInteger(*val));
154 ++val;
155 }
156 else {
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -0700157 BOOST_THROW_EXCEPTION(Error("missing required LinkType field"));
Chengyu Fan36dca992014-09-25 13:42:03 -0600158 }
Eric Newberry1aa3e1e2016-09-28 20:27:45 -0700159
160 if (val != m_wire.elements_end() && val->type() == tlv::nfd::Flags) {
161 m_flags = readNonNegativeInteger(*val);
Davide Pesavento88eb7482017-02-18 19:25:58 -0500162 ++val;
Eric Newberry1aa3e1e2016-09-28 20:27:45 -0700163 }
164 else {
165 BOOST_THROW_EXCEPTION(Error("missing required Flags field"));
166 }
Chengyu Fan36dca992014-09-25 13:42:03 -0600167}
168
169FaceEventNotification&
170FaceEventNotification::setKind(FaceEventKind kind)
171{
172 m_wire.reset();
173 m_kind = kind;
174 return *this;
175}
176
Davide Pesavento88eb7482017-02-18 19:25:58 -0500177bool
178operator==(const FaceEventNotification& a, const FaceEventNotification& b)
179{
180 return a.getFaceId() == b.getFaceId() &&
181 a.getRemoteUri() == b.getRemoteUri() &&
182 a.getLocalUri() == b.getLocalUri() &&
183 a.getFaceScope() == b.getFaceScope() &&
184 a.getFacePersistency() == b.getFacePersistency() &&
185 a.getLinkType() == b.getLinkType() &&
186 a.getFlags() == b.getFlags() &&
187 a.getKind() == b.getKind();
188}
189
190std::ostream&
Chengyu Fan36dca992014-09-25 13:42:03 -0600191operator<<(std::ostream& os, const FaceEventNotification& notification)
192{
Davide Pesavento88eb7482017-02-18 19:25:58 -0500193 os << "FaceEvent(Kind: " << notification.getKind() << ",\n"
194 << " FaceId: " << notification.getFaceId() << ",\n"
195 << " RemoteUri: " << notification.getRemoteUri() << ",\n"
196 << " LocalUri: " << notification.getLocalUri() << ",\n"
197 << " FaceScope: " << notification.getFaceScope() << ",\n"
198 << " FacePersistency: " << notification.getFacePersistency() << ",\n"
Davide Pesaventoe78eeca2017-02-23 23:22:32 -0500199 << " LinkType: " << notification.getLinkType() << ",\n"
200 << " Flags: " << AsHex{notification.getFlags()} << "\n";
Eric Newberry1aa3e1e2016-09-28 20:27:45 -0700201
Davide Pesavento88eb7482017-02-18 19:25:58 -0500202 return os << " )";
Chengyu Fan36dca992014-09-25 13:42:03 -0600203}
204
205} // namespace nfd
206} // namespace ndn