Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 5d75fd9 | 2017-08-08 18:09:20 +0000 | [diff] [blame] | 2 | /* |
Davide Pesavento | 0a1afdf | 2017-02-18 16:34:00 -0500 | [diff] [blame] | 3 | * Copyright (c) 2013-2017 Regents of the University of California. |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 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 | |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 22 | #include "face-event-notification.hpp" |
Junxiao Shi | 65f1a71 | 2014-11-20 14:59:36 -0700 | [diff] [blame] | 23 | #include "encoding/block-helpers.hpp" |
Davide Pesavento | 0a1afdf | 2017-02-18 16:34:00 -0500 | [diff] [blame] | 24 | #include "encoding/encoding-buffer.hpp" |
| 25 | #include "encoding/tlv-nfd.hpp" |
Junxiao Shi | 65f1a71 | 2014-11-20 14:59:36 -0700 | [diff] [blame] | 26 | #include "util/concepts.hpp" |
Davide Pesavento | e78eeca | 2017-02-23 23:22:32 -0500 | [diff] [blame] | 27 | #include "util/string-helper.hpp" |
Davide Pesavento | 88eb748 | 2017-02-18 19:25:58 -0500 | [diff] [blame] | 28 | |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 29 | namespace ndn { |
| 30 | namespace nfd { |
Junxiao Shi | 65f1a71 | 2014-11-20 14:59:36 -0700 | [diff] [blame] | 31 | |
Davide Pesavento | 88eb748 | 2017-02-18 19:25:58 -0500 | [diff] [blame] | 32 | BOOST_CONCEPT_ASSERT((NotificationStreamItem<FaceEventNotification>)); |
Junxiao Shi | 65f1a71 | 2014-11-20 14:59:36 -0700 | [diff] [blame] | 33 | |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 34 | FaceEventNotification::FaceEventNotification() |
Davide Pesavento | 0a1afdf | 2017-02-18 16:34:00 -0500 | [diff] [blame] | 35 | : m_kind(FACE_EVENT_NONE) |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 36 | { |
| 37 | } |
| 38 | |
| 39 | FaceEventNotification::FaceEventNotification(const Block& block) |
| 40 | { |
| 41 | this->wireDecode(block); |
| 42 | } |
| 43 | |
Alexander Afanasyev | 7463389 | 2015-02-08 18:08:46 -0800 | [diff] [blame] | 44 | template<encoding::Tag TAG> |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 45 | size_t |
Alexander Afanasyev | 7463389 | 2015-02-08 18:08:46 -0800 | [diff] [blame] | 46 | FaceEventNotification::wireEncode(EncodingImpl<TAG>& encoder) const |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 47 | { |
| 48 | size_t totalLength = 0; |
| 49 | |
Junxiao Shi | 5d75fd9 | 2017-08-08 18:09:20 +0000 | [diff] [blame] | 50 | 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 Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 58 | |
| 59 | totalLength += encoder.prependVarNumber(totalLength); |
| 60 | totalLength += encoder.prependVarNumber(tlv::nfd::FaceEventNotification); |
| 61 | return totalLength; |
| 62 | } |
| 63 | |
Davide Pesavento | 88eb748 | 2017-02-18 19:25:58 -0500 | [diff] [blame] | 64 | template size_t |
| 65 | FaceEventNotification::wireEncode<encoding::EncoderTag>(EncodingImpl<encoding::EncoderTag>& block) const; |
| 66 | |
| 67 | template size_t |
| 68 | FaceEventNotification::wireEncode<encoding::EstimatorTag>(EncodingImpl<encoding::EstimatorTag>& block) const; |
| 69 | |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 70 | const Block& |
| 71 | FaceEventNotification::wireEncode() const |
| 72 | { |
| 73 | if (m_wire.hasWire()) |
| 74 | return m_wire; |
| 75 | |
| 76 | EncodingEstimator estimator; |
| 77 | size_t estimatedSize = wireEncode(estimator); |
| 78 | |
| 79 | EncodingBuffer buffer(estimatedSize, 0); |
| 80 | wireEncode(buffer); |
| 81 | |
| 82 | m_wire = buffer.block(); |
| 83 | return m_wire; |
| 84 | } |
| 85 | |
| 86 | void |
| 87 | FaceEventNotification::wireDecode(const Block& block) |
| 88 | { |
| 89 | if (block.type() != tlv::nfd::FaceEventNotification) { |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 90 | BOOST_THROW_EXCEPTION(Error("expecting FaceEventNotification block")); |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 91 | } |
| 92 | m_wire = block; |
| 93 | m_wire.parse(); |
| 94 | Block::element_const_iterator val = m_wire.elements_begin(); |
| 95 | |
| 96 | if (val != m_wire.elements_end() && val->type() == tlv::nfd::FaceEventKind) { |
Junxiao Shi | 5d75fd9 | 2017-08-08 18:09:20 +0000 | [diff] [blame] | 97 | m_kind = readNonNegativeIntegerAs<FaceEventKind>(*val); |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 98 | ++val; |
| 99 | } |
| 100 | else { |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 101 | BOOST_THROW_EXCEPTION(Error("missing required FaceEventKind field")); |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | if (val != m_wire.elements_end() && val->type() == tlv::nfd::FaceId) { |
| 105 | m_faceId = readNonNegativeInteger(*val); |
| 106 | ++val; |
| 107 | } |
| 108 | else { |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 109 | BOOST_THROW_EXCEPTION(Error("missing required FaceId field")); |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 110 | } |
| 111 | |
| 112 | if (val != m_wire.elements_end() && val->type() == tlv::nfd::Uri) { |
Junxiao Shi | 5d75fd9 | 2017-08-08 18:09:20 +0000 | [diff] [blame] | 113 | m_remoteUri = readString(*val); |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 114 | ++val; |
| 115 | } |
| 116 | else { |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 117 | BOOST_THROW_EXCEPTION(Error("missing required Uri field")); |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | if (val != m_wire.elements_end() && val->type() == tlv::nfd::LocalUri) { |
Junxiao Shi | 5d75fd9 | 2017-08-08 18:09:20 +0000 | [diff] [blame] | 121 | m_localUri = readString(*val); |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 122 | ++val; |
| 123 | } |
| 124 | else { |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 125 | BOOST_THROW_EXCEPTION(Error("missing required LocalUri field")); |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | if (val != m_wire.elements_end() && val->type() == tlv::nfd::FaceScope) { |
Junxiao Shi | 5d75fd9 | 2017-08-08 18:09:20 +0000 | [diff] [blame] | 129 | m_faceScope = readNonNegativeIntegerAs<FaceScope>(*val); |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 130 | ++val; |
| 131 | } |
| 132 | else { |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 133 | BOOST_THROW_EXCEPTION(Error("missing required FaceScope field")); |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | if (val != m_wire.elements_end() && val->type() == tlv::nfd::FacePersistency) { |
Junxiao Shi | 5d75fd9 | 2017-08-08 18:09:20 +0000 | [diff] [blame] | 137 | m_facePersistency = readNonNegativeIntegerAs<FacePersistency>(*val); |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 138 | ++val; |
| 139 | } |
| 140 | else { |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 141 | BOOST_THROW_EXCEPTION(Error("missing required FacePersistency field")); |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | if (val != m_wire.elements_end() && val->type() == tlv::nfd::LinkType) { |
Junxiao Shi | 5d75fd9 | 2017-08-08 18:09:20 +0000 | [diff] [blame] | 145 | m_linkType = readNonNegativeIntegerAs<LinkType>(*val); |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 146 | ++val; |
| 147 | } |
| 148 | else { |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 149 | BOOST_THROW_EXCEPTION(Error("missing required LinkType field")); |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 150 | } |
Eric Newberry | 1aa3e1e | 2016-09-28 20:27:45 -0700 | [diff] [blame] | 151 | |
| 152 | if (val != m_wire.elements_end() && val->type() == tlv::nfd::Flags) { |
| 153 | m_flags = readNonNegativeInteger(*val); |
Davide Pesavento | 88eb748 | 2017-02-18 19:25:58 -0500 | [diff] [blame] | 154 | ++val; |
Eric Newberry | 1aa3e1e | 2016-09-28 20:27:45 -0700 | [diff] [blame] | 155 | } |
| 156 | else { |
| 157 | BOOST_THROW_EXCEPTION(Error("missing required Flags field")); |
| 158 | } |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | FaceEventNotification& |
| 162 | FaceEventNotification::setKind(FaceEventKind kind) |
| 163 | { |
| 164 | m_wire.reset(); |
| 165 | m_kind = kind; |
| 166 | return *this; |
| 167 | } |
| 168 | |
Davide Pesavento | 88eb748 | 2017-02-18 19:25:58 -0500 | [diff] [blame] | 169 | bool |
| 170 | operator==(const FaceEventNotification& a, const FaceEventNotification& b) |
| 171 | { |
| 172 | return a.getFaceId() == b.getFaceId() && |
| 173 | a.getRemoteUri() == b.getRemoteUri() && |
| 174 | a.getLocalUri() == b.getLocalUri() && |
| 175 | a.getFaceScope() == b.getFaceScope() && |
| 176 | a.getFacePersistency() == b.getFacePersistency() && |
| 177 | a.getLinkType() == b.getLinkType() && |
| 178 | a.getFlags() == b.getFlags() && |
| 179 | a.getKind() == b.getKind(); |
| 180 | } |
| 181 | |
| 182 | std::ostream& |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 183 | operator<<(std::ostream& os, const FaceEventNotification& notification) |
| 184 | { |
Davide Pesavento | 88eb748 | 2017-02-18 19:25:58 -0500 | [diff] [blame] | 185 | os << "FaceEvent(Kind: " << notification.getKind() << ",\n" |
| 186 | << " FaceId: " << notification.getFaceId() << ",\n" |
| 187 | << " RemoteUri: " << notification.getRemoteUri() << ",\n" |
| 188 | << " LocalUri: " << notification.getLocalUri() << ",\n" |
| 189 | << " FaceScope: " << notification.getFaceScope() << ",\n" |
| 190 | << " FacePersistency: " << notification.getFacePersistency() << ",\n" |
Davide Pesavento | e78eeca | 2017-02-23 23:22:32 -0500 | [diff] [blame] | 191 | << " LinkType: " << notification.getLinkType() << ",\n" |
| 192 | << " Flags: " << AsHex{notification.getFlags()} << "\n"; |
Eric Newberry | 1aa3e1e | 2016-09-28 20:27:45 -0700 | [diff] [blame] | 193 | |
Davide Pesavento | 88eb748 | 2017-02-18 19:25:58 -0500 | [diff] [blame] | 194 | return os << " )"; |
Chengyu Fan | 36dca99 | 2014-09-25 13:42:03 -0600 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | } // namespace nfd |
| 198 | } // namespace ndn |