Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Jeff Thompson | 47eecfc | 2013-07-07 22:56:46 -0700 | [diff] [blame] | 2 | /** |
Alexander Afanasyev | 7463389 | 2015-02-08 18:08:46 -0800 | [diff] [blame] | 3 | * Copyright (c) 2013-2015 Regents of the University of California. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 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. |
Jeff Thompson | b7f9556 | 2013-07-03 18:36:42 -0700 | [diff] [blame] | 20 | */ |
| 21 | |
Alexander Afanasyev | 09c613f | 2014-01-29 00:23:58 -0800 | [diff] [blame] | 22 | #include "interest.hpp" |
Alexander Afanasyev | e9fdb80 | 2014-02-05 17:36:51 -0800 | [diff] [blame] | 23 | #include "util/random.hpp" |
Junxiao Shi | 42c2362 | 2014-07-03 00:55:11 -0700 | [diff] [blame] | 24 | #include "util/crypto.hpp" |
Junxiao Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 25 | #include "data.hpp" |
Alexander Afanasyev | 840139f | 2013-12-28 15:02:50 -0800 | [diff] [blame] | 26 | |
Jeff Thompson | b7f9556 | 2013-07-03 18:36:42 -0700 | [diff] [blame] | 27 | namespace ndn { |
Alexander Afanasyev | 8468198 | 2014-01-03 13:26:09 -0800 | [diff] [blame] | 28 | |
Junxiao Shi | c2b8d24 | 2014-11-04 08:35:29 -0700 | [diff] [blame] | 29 | BOOST_CONCEPT_ASSERT((boost::EqualityComparable<Interest>)); |
| 30 | BOOST_CONCEPT_ASSERT((WireEncodable<Interest>)); |
Alexander Afanasyev | d5c48e0 | 2015-06-24 11:58:14 -0700 | [diff] [blame] | 31 | BOOST_CONCEPT_ASSERT((WireEncodableWithEncodingBuffer<Interest>)); |
Junxiao Shi | c2b8d24 | 2014-11-04 08:35:29 -0700 | [diff] [blame] | 32 | BOOST_CONCEPT_ASSERT((WireDecodable<Interest>)); |
| 33 | static_assert(std::is_base_of<tlv::Error, Interest::Error>::value, |
| 34 | "Interest::Error must inherit from tlv::Error"); |
| 35 | |
Junxiao Shi | 2af905b | 2014-11-27 13:10:54 -0700 | [diff] [blame] | 36 | Interest::Interest() |
Alexander Afanasyev | 117f5ef | 2015-06-03 15:07:24 -0700 | [diff] [blame] | 37 | : m_interestLifetime(time::milliseconds::min()) |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 38 | , m_selectedDelegationIndex(INVALID_SELECTED_DELEGATION_INDEX) |
Junxiao Shi | 2af905b | 2014-11-27 13:10:54 -0700 | [diff] [blame] | 39 | { |
| 40 | } |
| 41 | |
| 42 | Interest::Interest(const Name& name) |
| 43 | : m_name(name) |
Junxiao Shi | 2af905b | 2014-11-27 13:10:54 -0700 | [diff] [blame] | 44 | , m_interestLifetime(time::milliseconds::min()) |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 45 | , m_selectedDelegationIndex(INVALID_SELECTED_DELEGATION_INDEX) |
Junxiao Shi | 2af905b | 2014-11-27 13:10:54 -0700 | [diff] [blame] | 46 | { |
| 47 | } |
| 48 | |
| 49 | Interest::Interest(const Name& name, const time::milliseconds& interestLifetime) |
| 50 | : m_name(name) |
Junxiao Shi | 2af905b | 2014-11-27 13:10:54 -0700 | [diff] [blame] | 51 | , m_interestLifetime(interestLifetime) |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 52 | , m_selectedDelegationIndex(INVALID_SELECTED_DELEGATION_INDEX) |
Junxiao Shi | 2af905b | 2014-11-27 13:10:54 -0700 | [diff] [blame] | 53 | { |
| 54 | } |
| 55 | |
Junxiao Shi | 2af905b | 2014-11-27 13:10:54 -0700 | [diff] [blame] | 56 | Interest::Interest(const Block& wire) |
| 57 | { |
| 58 | wireDecode(wire); |
| 59 | } |
| 60 | |
Alexander Afanasyev | e881e93 | 2014-06-08 14:47:03 +0300 | [diff] [blame] | 61 | uint32_t |
Alexander Afanasyev | 840139f | 2013-12-28 15:02:50 -0800 | [diff] [blame] | 62 | Interest::getNonce() const |
| 63 | { |
Alexander Afanasyev | e881e93 | 2014-06-08 14:47:03 +0300 | [diff] [blame] | 64 | if (!m_nonce.hasWire()) |
| 65 | const_cast<Interest*>(this)->setNonce(random::generateWord32()); |
Alexander Afanasyev | 840139f | 2013-12-28 15:02:50 -0800 | [diff] [blame] | 66 | |
Alexander Afanasyev | e881e93 | 2014-06-08 14:47:03 +0300 | [diff] [blame] | 67 | if (m_nonce.value_size() == sizeof(uint32_t)) |
| 68 | return *reinterpret_cast<const uint32_t*>(m_nonce.value()); |
| 69 | else { |
| 70 | // for compatibility reasons. Should be removed eventually |
| 71 | return readNonNegativeInteger(m_nonce); |
| 72 | } |
Alexander Afanasyev | 840139f | 2013-12-28 15:02:50 -0800 | [diff] [blame] | 73 | } |
| 74 | |
Alexander Afanasyev | e881e93 | 2014-06-08 14:47:03 +0300 | [diff] [blame] | 75 | Interest& |
| 76 | Interest::setNonce(uint32_t nonce) |
| 77 | { |
| 78 | if (m_wire.hasWire() && m_nonce.value_size() == sizeof(uint32_t)) { |
| 79 | std::memcpy(const_cast<uint8_t*>(m_nonce.value()), &nonce, sizeof(nonce)); |
| 80 | } |
| 81 | else { |
Alexander Afanasyev | d5c48e0 | 2015-06-24 11:58:14 -0700 | [diff] [blame] | 82 | m_nonce = makeBinaryBlock(tlv::Nonce, |
| 83 | reinterpret_cast<const uint8_t*>(&nonce), |
| 84 | sizeof(nonce)); |
Alexander Afanasyev | e881e93 | 2014-06-08 14:47:03 +0300 | [diff] [blame] | 85 | m_wire.reset(); |
| 86 | } |
| 87 | return *this; |
| 88 | } |
Alexander Afanasyev | 840139f | 2013-12-28 15:02:50 -0800 | [diff] [blame] | 89 | |
Alexander Afanasyev | c393217 | 2014-07-10 18:53:56 -0700 | [diff] [blame] | 90 | void |
| 91 | Interest::refreshNonce() |
| 92 | { |
| 93 | if (!hasNonce()) |
| 94 | return; |
| 95 | |
| 96 | uint32_t oldNonce = getNonce(); |
| 97 | uint32_t newNonce = oldNonce; |
| 98 | while (newNonce == oldNonce) |
| 99 | newNonce = random::generateWord32(); |
| 100 | |
| 101 | setNonce(newNonce); |
| 102 | } |
| 103 | |
Alexander Afanasyev | 8468198 | 2014-01-03 13:26:09 -0800 | [diff] [blame] | 104 | bool |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 105 | Interest::matchesName(const Name& name) const |
Jeff Thompson | 25b4e61 | 2013-10-10 16:03:24 -0700 | [diff] [blame] | 106 | { |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 107 | if (name.size() < m_name.size()) |
| 108 | return false; |
| 109 | |
Alexander Afanasyev | c348f83 | 2014-02-17 16:35:17 -0800 | [diff] [blame] | 110 | if (!m_name.isPrefixOf(name)) |
Alexander Afanasyev | 8468198 | 2014-01-03 13:26:09 -0800 | [diff] [blame] | 111 | return false; |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 112 | |
Alexander Afanasyev | c348f83 | 2014-02-17 16:35:17 -0800 | [diff] [blame] | 113 | if (getMinSuffixComponents() >= 0 && |
Alexander Afanasyev | 3b70310 | 2014-06-13 17:01:14 -0700 | [diff] [blame] | 114 | // name must include implicit digest |
| 115 | !(name.size() - m_name.size() >= static_cast<size_t>(getMinSuffixComponents()))) |
Alexander Afanasyev | 8468198 | 2014-01-03 13:26:09 -0800 | [diff] [blame] | 116 | return false; |
| 117 | |
Alexander Afanasyev | c348f83 | 2014-02-17 16:35:17 -0800 | [diff] [blame] | 118 | if (getMaxSuffixComponents() >= 0 && |
Alexander Afanasyev | 3b70310 | 2014-06-13 17:01:14 -0700 | [diff] [blame] | 119 | // name must include implicit digest |
| 120 | !(name.size() - m_name.size() <= static_cast<size_t>(getMaxSuffixComponents()))) |
Alexander Afanasyev | 8468198 | 2014-01-03 13:26:09 -0800 | [diff] [blame] | 121 | return false; |
| 122 | |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 123 | if (!getExclude().empty() && |
| 124 | name.size() > m_name.size() && |
Alexander Afanasyev | c348f83 | 2014-02-17 16:35:17 -0800 | [diff] [blame] | 125 | getExclude().isExcluded(name[m_name.size()])) |
Alexander Afanasyev | 8468198 | 2014-01-03 13:26:09 -0800 | [diff] [blame] | 126 | return false; |
| 127 | |
| 128 | return true; |
Jeff Thompson | 25b4e61 | 2013-10-10 16:03:24 -0700 | [diff] [blame] | 129 | } |
| 130 | |
Junxiao Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 131 | bool |
| 132 | Interest::matchesData(const Data& data) const |
| 133 | { |
Junxiao Shi | 42c2362 | 2014-07-03 00:55:11 -0700 | [diff] [blame] | 134 | size_t interestNameLength = m_name.size(); |
| 135 | const Name& dataName = data.getName(); |
| 136 | size_t fullNameLength = dataName.size() + 1; |
| 137 | |
| 138 | // check MinSuffixComponents |
| 139 | bool hasMinSuffixComponents = getMinSuffixComponents() >= 0; |
| 140 | size_t minSuffixComponents = hasMinSuffixComponents ? |
| 141 | static_cast<size_t>(getMinSuffixComponents()) : 0; |
| 142 | if (!(interestNameLength + minSuffixComponents <= fullNameLength)) |
Junxiao Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 143 | return false; |
Junxiao Shi | 42c2362 | 2014-07-03 00:55:11 -0700 | [diff] [blame] | 144 | |
| 145 | // check MaxSuffixComponents |
| 146 | bool hasMaxSuffixComponents = getMaxSuffixComponents() >= 0; |
| 147 | if (hasMaxSuffixComponents && |
| 148 | !(interestNameLength + getMaxSuffixComponents() >= fullNameLength)) |
| 149 | return false; |
| 150 | |
| 151 | // check prefix |
| 152 | if (interestNameLength == fullNameLength) { |
Alexander Afanasyev | 56860f5 | 2014-11-07 11:51:17 -0800 | [diff] [blame] | 153 | if (m_name.get(-1).isImplicitSha256Digest()) { |
| 154 | if (m_name != data.getFullName()) |
Junxiao Shi | 42c2362 | 2014-07-03 00:55:11 -0700 | [diff] [blame] | 155 | return false; |
| 156 | } |
| 157 | else { |
| 158 | // Interest Name is same length as Data full Name, but last component isn't digest |
| 159 | // so there's no possibility of matching |
| 160 | return false; |
| 161 | } |
| 162 | } |
| 163 | else { |
| 164 | // Interest Name is a strict prefix of Data full Name |
| 165 | if (!m_name.isPrefixOf(dataName)) |
| 166 | return false; |
Junxiao Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 167 | } |
| 168 | |
Junxiao Shi | 42c2362 | 2014-07-03 00:55:11 -0700 | [diff] [blame] | 169 | // check Exclude |
| 170 | // Exclude won't be violated if Interest Name is same as Data full Name |
| 171 | if (!getExclude().empty() && fullNameLength > interestNameLength) { |
| 172 | if (interestNameLength == fullNameLength - 1) { |
| 173 | // component to exclude is the digest |
| 174 | if (getExclude().isExcluded(data.getFullName().get(interestNameLength))) |
| 175 | return false; |
| 176 | // There's opportunity to inspect the Exclude filter and determine whether |
| 177 | // the digest would make a difference. |
Junxiao Shi | 08d0708 | 2014-12-03 11:31:44 -0700 | [diff] [blame] | 178 | // eg. "<NameComponent>AA</NameComponent><Any/>" doesn't exclude any digest - |
| 179 | // fullName not needed; |
| 180 | // "<Any/><NameComponent>AA</NameComponent>" and |
| 181 | // "<Any/><ImplicitSha256DigestComponent>ffffffffffffffffffffffffffffffff |
| 182 | // </ImplicitSha256DigestComponent>" |
| 183 | // excludes all digests - fullName not needed; |
| 184 | // "<Any/><ImplicitSha256DigestComponent>80000000000000000000000000000000 |
| 185 | // </ImplicitSha256DigestComponent>" |
| 186 | // excludes some digests - fullName required |
Junxiao Shi | 42c2362 | 2014-07-03 00:55:11 -0700 | [diff] [blame] | 187 | // But Interests that contain the exact Data Name before digest and also |
| 188 | // contain Exclude filter is too rare to optimize for, so we request |
| 189 | // fullName no mater what's in the Exclude filter. |
| 190 | } |
| 191 | else { |
| 192 | // component to exclude is not the digest |
| 193 | if (getExclude().isExcluded(dataName.get(interestNameLength))) |
| 194 | return false; |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | // check PublisherPublicKeyLocator |
Junxiao Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 199 | const KeyLocator& publisherPublicKeyLocator = this->getPublisherPublicKeyLocator(); |
| 200 | if (!publisherPublicKeyLocator.empty()) { |
| 201 | const Signature& signature = data.getSignature(); |
| 202 | const Block& signatureInfo = signature.getInfo(); |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame] | 203 | Block::element_const_iterator it = signatureInfo.find(tlv::KeyLocator); |
Junxiao Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 204 | if (it == signatureInfo.elements_end()) { |
| 205 | return false; |
| 206 | } |
| 207 | if (publisherPublicKeyLocator.wireEncode() != *it) { |
| 208 | return false; |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | return true; |
| 213 | } |
| 214 | |
Alexander Afanasyev | 7463389 | 2015-02-08 18:08:46 -0800 | [diff] [blame] | 215 | template<encoding::Tag TAG> |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 216 | size_t |
Alexander Afanasyev | d5c48e0 | 2015-06-24 11:58:14 -0700 | [diff] [blame] | 217 | Interest::wireEncode(EncodingImpl<TAG>& encoder) const |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 218 | { |
| 219 | size_t totalLength = 0; |
| 220 | |
| 221 | // Interest ::= INTEREST-TYPE TLV-LENGTH |
| 222 | // Name |
| 223 | // Selectors? |
| 224 | // Nonce |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 225 | // InterestLifetime? |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 226 | // Link? |
| 227 | // SelectedDelegation? |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 228 | |
| 229 | // (reverse encoding) |
| 230 | |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 231 | if (hasLink()) { |
| 232 | if (hasSelectedDelegation()) { |
Alexander Afanasyev | d5c48e0 | 2015-06-24 11:58:14 -0700 | [diff] [blame] | 233 | totalLength += prependNonNegativeIntegerBlock(encoder, |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 234 | tlv::SelectedDelegation, |
| 235 | m_selectedDelegationIndex); |
| 236 | } |
Alexander Afanasyev | d5c48e0 | 2015-06-24 11:58:14 -0700 | [diff] [blame] | 237 | totalLength += encoder.prependBlock(m_link); |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 238 | } |
| 239 | else { |
| 240 | BOOST_ASSERT(!hasSelectedDelegation()); |
| 241 | } |
| 242 | |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 243 | // InterestLifetime |
| 244 | if (getInterestLifetime() >= time::milliseconds::zero() && |
| 245 | getInterestLifetime() != DEFAULT_INTEREST_LIFETIME) |
| 246 | { |
Alexander Afanasyev | d5c48e0 | 2015-06-24 11:58:14 -0700 | [diff] [blame] | 247 | totalLength += prependNonNegativeIntegerBlock(encoder, |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame] | 248 | tlv::InterestLifetime, |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 249 | getInterestLifetime().count()); |
| 250 | } |
| 251 | |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 252 | // Nonce |
| 253 | getNonce(); // to ensure that Nonce is properly set |
Alexander Afanasyev | d5c48e0 | 2015-06-24 11:58:14 -0700 | [diff] [blame] | 254 | totalLength += encoder.prependBlock(m_nonce); |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 255 | |
| 256 | // Selectors |
| 257 | if (hasSelectors()) |
| 258 | { |
Alexander Afanasyev | d5c48e0 | 2015-06-24 11:58:14 -0700 | [diff] [blame] | 259 | totalLength += getSelectors().wireEncode(encoder); |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 260 | } |
| 261 | |
| 262 | // Name |
Alexander Afanasyev | d5c48e0 | 2015-06-24 11:58:14 -0700 | [diff] [blame] | 263 | totalLength += getName().wireEncode(encoder); |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 264 | |
Alexander Afanasyev | d5c48e0 | 2015-06-24 11:58:14 -0700 | [diff] [blame] | 265 | totalLength += encoder.prependVarNumber(totalLength); |
| 266 | totalLength += encoder.prependVarNumber(tlv::Interest); |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 267 | return totalLength; |
| 268 | } |
| 269 | |
Alexander Afanasyev | 15f6731 | 2014-07-22 15:11:09 -0700 | [diff] [blame] | 270 | template size_t |
Alexander Afanasyev | d5c48e0 | 2015-06-24 11:58:14 -0700 | [diff] [blame] | 271 | Interest::wireEncode<encoding::EncoderTag>(EncodingImpl<encoding::EncoderTag>& encoder) const; |
Alexander Afanasyev | 15f6731 | 2014-07-22 15:11:09 -0700 | [diff] [blame] | 272 | |
| 273 | template size_t |
Alexander Afanasyev | d5c48e0 | 2015-06-24 11:58:14 -0700 | [diff] [blame] | 274 | Interest::wireEncode<encoding::EstimatorTag>(EncodingImpl<encoding::EstimatorTag>& encoder) const; |
Alexander Afanasyev | 15f6731 | 2014-07-22 15:11:09 -0700 | [diff] [blame] | 275 | |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 276 | const Block& |
| 277 | Interest::wireEncode() const |
| 278 | { |
| 279 | if (m_wire.hasWire()) |
| 280 | return m_wire; |
| 281 | |
| 282 | EncodingEstimator estimator; |
| 283 | size_t estimatedSize = wireEncode(estimator); |
| 284 | |
| 285 | EncodingBuffer buffer(estimatedSize, 0); |
| 286 | wireEncode(buffer); |
| 287 | |
| 288 | // to ensure that Nonce block points to the right memory location |
| 289 | const_cast<Interest*>(this)->wireDecode(buffer.block()); |
| 290 | |
| 291 | return m_wire; |
| 292 | } |
| 293 | |
| 294 | void |
| 295 | Interest::wireDecode(const Block& wire) |
| 296 | { |
| 297 | m_wire = wire; |
| 298 | m_wire.parse(); |
| 299 | |
| 300 | // Interest ::= INTEREST-TYPE TLV-LENGTH |
| 301 | // Name |
| 302 | // Selectors? |
| 303 | // Nonce |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 304 | // InterestLifetime? |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 305 | // Link? |
| 306 | // SelectedDelegation? |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 307 | |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame] | 308 | if (m_wire.type() != tlv::Interest) |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 309 | BOOST_THROW_EXCEPTION(Error("Unexpected TLV number when decoding Interest")); |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 310 | |
| 311 | // Name |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame] | 312 | m_name.wireDecode(m_wire.get(tlv::Name)); |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 313 | |
| 314 | // Selectors |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame] | 315 | Block::element_const_iterator val = m_wire.find(tlv::Selectors); |
Alexander Afanasyev | cac0838 | 2015-09-02 14:52:40 -0700 | [diff] [blame] | 316 | if (val != m_wire.elements_end()) { |
| 317 | m_selectors.wireDecode(*val); |
| 318 | } |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 319 | else |
| 320 | m_selectors = Selectors(); |
| 321 | |
| 322 | // Nonce |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame] | 323 | m_nonce = m_wire.get(tlv::Nonce); |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 324 | |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 325 | // InterestLifetime |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame] | 326 | val = m_wire.find(tlv::InterestLifetime); |
Alexander Afanasyev | cac0838 | 2015-09-02 14:52:40 -0700 | [diff] [blame] | 327 | if (val != m_wire.elements_end()) { |
| 328 | m_interestLifetime = time::milliseconds(readNonNegativeInteger(*val)); |
| 329 | } |
| 330 | else { |
| 331 | m_interestLifetime = DEFAULT_INTEREST_LIFETIME; |
| 332 | } |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 333 | |
| 334 | // Link object |
Alexander Afanasyev | cac0838 | 2015-09-02 14:52:40 -0700 | [diff] [blame] | 335 | m_linkCached.reset(); |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 336 | val = m_wire.find(tlv::Data); |
Alexander Afanasyev | cac0838 | 2015-09-02 14:52:40 -0700 | [diff] [blame] | 337 | if (val != m_wire.elements_end()) { |
| 338 | m_link = (*val); |
| 339 | } |
| 340 | else { |
| 341 | m_link = Block(); |
| 342 | } |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 343 | |
| 344 | // SelectedDelegation |
| 345 | val = m_wire.find(tlv::SelectedDelegation); |
| 346 | if (val != m_wire.elements_end()) { |
| 347 | if (!this->hasLink()) { |
Alexander Afanasyev | cac0838 | 2015-09-02 14:52:40 -0700 | [diff] [blame] | 348 | BOOST_THROW_EXCEPTION(Error("Interest contains SelectedDelegation, but no LINK object")); |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 349 | } |
| 350 | uint64_t selectedDelegation = readNonNegativeInteger(*val); |
| 351 | if (selectedDelegation < uint64_t(Link::countDelegationsFromWire(m_link))) { |
| 352 | m_selectedDelegationIndex = static_cast<size_t>(selectedDelegation); |
| 353 | } |
| 354 | else { |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 355 | BOOST_THROW_EXCEPTION(Error("Invalid selected delegation index when decoding Interest")); |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 356 | } |
| 357 | } |
Alexander Afanasyev | cac0838 | 2015-09-02 14:52:40 -0700 | [diff] [blame] | 358 | else { |
| 359 | m_selectedDelegationIndex = INVALID_SELECTED_DELEGATION_INDEX; |
| 360 | } |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | bool |
| 364 | Interest::hasLink() const |
| 365 | { |
Alexander Afanasyev | cac0838 | 2015-09-02 14:52:40 -0700 | [diff] [blame] | 366 | return m_link.hasWire(); |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 367 | } |
| 368 | |
Alexander Afanasyev | cac0838 | 2015-09-02 14:52:40 -0700 | [diff] [blame] | 369 | const Link& |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 370 | Interest::getLink() const |
| 371 | { |
Alexander Afanasyev | cac0838 | 2015-09-02 14:52:40 -0700 | [diff] [blame] | 372 | if (hasLink()) { |
| 373 | if (!m_linkCached) { |
| 374 | m_linkCached = make_shared<Link>(m_link); |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 375 | } |
Alexander Afanasyev | cac0838 | 2015-09-02 14:52:40 -0700 | [diff] [blame] | 376 | return *m_linkCached; |
| 377 | } |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 378 | BOOST_THROW_EXCEPTION(Error("There is no encapsulated link object")); |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 379 | } |
| 380 | |
| 381 | void |
| 382 | Interest::setLink(const Block& link) |
| 383 | { |
| 384 | m_link = link; |
| 385 | if (!link.hasWire()) { |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 386 | BOOST_THROW_EXCEPTION(Error("The given link does not have a wire format")); |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 387 | } |
| 388 | m_wire.reset(); |
Alexander Afanasyev | cac0838 | 2015-09-02 14:52:40 -0700 | [diff] [blame] | 389 | m_linkCached.reset(); |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 390 | this->unsetSelectedDelegation(); |
| 391 | } |
| 392 | |
| 393 | void |
| 394 | Interest::unsetLink() |
| 395 | { |
| 396 | m_link.reset(); |
| 397 | m_wire.reset(); |
Alexander Afanasyev | cac0838 | 2015-09-02 14:52:40 -0700 | [diff] [blame] | 398 | m_linkCached.reset(); |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 399 | this->unsetSelectedDelegation(); |
| 400 | } |
| 401 | |
| 402 | bool |
| 403 | Interest::hasSelectedDelegation() const |
| 404 | { |
Alexander Afanasyev | cac0838 | 2015-09-02 14:52:40 -0700 | [diff] [blame] | 405 | return m_selectedDelegationIndex != INVALID_SELECTED_DELEGATION_INDEX; |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 406 | } |
| 407 | |
| 408 | Name |
| 409 | Interest::getSelectedDelegation() const |
| 410 | { |
| 411 | if (!hasSelectedDelegation()) { |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 412 | BOOST_THROW_EXCEPTION(Error("There is no encapsulated selected delegation")); |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 413 | } |
| 414 | return std::get<1>(Link::getDelegationFromWire(m_link, m_selectedDelegationIndex)); |
| 415 | } |
| 416 | |
| 417 | void |
| 418 | Interest::setSelectedDelegation(const Name& delegationName) |
| 419 | { |
| 420 | size_t delegationIndex = Link::findDelegationFromWire(m_link, delegationName); |
| 421 | if (delegationIndex != INVALID_SELECTED_DELEGATION_INDEX) { |
| 422 | m_selectedDelegationIndex = delegationIndex; |
| 423 | } |
| 424 | else { |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 425 | BOOST_THROW_EXCEPTION(std::invalid_argument("Invalid selected delegation name")); |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 426 | } |
| 427 | m_wire.reset(); |
| 428 | } |
| 429 | |
| 430 | void |
| 431 | Interest::setSelectedDelegation(size_t delegationIndex) |
| 432 | { |
| 433 | if (delegationIndex >= Link(m_link).getDelegations().size()) { |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 434 | BOOST_THROW_EXCEPTION(Error("Invalid selected delegation index")); |
Spyridon Mastorakis | c8188b3 | 2015-04-18 18:33:38 -0700 | [diff] [blame] | 435 | } |
| 436 | m_selectedDelegationIndex = delegationIndex; |
| 437 | m_wire.reset(); |
| 438 | } |
| 439 | |
| 440 | void |
| 441 | Interest::unsetSelectedDelegation() |
| 442 | { |
| 443 | m_selectedDelegationIndex = INVALID_SELECTED_DELEGATION_INDEX; |
| 444 | m_wire.reset(); |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 445 | } |
| 446 | |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 447 | std::ostream& |
| 448 | operator<<(std::ostream& os, const Interest& interest) |
Jeff Thompson | fe55686 | 2013-07-09 13:52:55 -0700 | [diff] [blame] | 449 | { |
Alexander Afanasyev | 8468198 | 2014-01-03 13:26:09 -0800 | [diff] [blame] | 450 | os << interest.getName(); |
Jeff Thompson | fe55686 | 2013-07-09 13:52:55 -0700 | [diff] [blame] | 451 | |
Alexander Afanasyev | 8468198 | 2014-01-03 13:26:09 -0800 | [diff] [blame] | 452 | char delim = '?'; |
| 453 | |
| 454 | if (interest.getMinSuffixComponents() >= 0) { |
| 455 | os << delim << "ndn.MinSuffixComponents=" << interest.getMinSuffixComponents(); |
| 456 | delim = '&'; |
Jeff Thompson | fe55686 | 2013-07-09 13:52:55 -0700 | [diff] [blame] | 457 | } |
Alexander Afanasyev | 8468198 | 2014-01-03 13:26:09 -0800 | [diff] [blame] | 458 | if (interest.getMaxSuffixComponents() >= 0) { |
| 459 | os << delim << "ndn.MaxSuffixComponents=" << interest.getMaxSuffixComponents(); |
| 460 | delim = '&'; |
Jeff Thompson | 37527d6 | 2013-08-21 11:15:54 -0700 | [diff] [blame] | 461 | } |
Alexander Afanasyev | 8468198 | 2014-01-03 13:26:09 -0800 | [diff] [blame] | 462 | if (interest.getChildSelector() >= 0) { |
| 463 | os << delim << "ndn.ChildSelector=" << interest.getChildSelector(); |
| 464 | delim = '&'; |
Jeff Thompson | 13e280b | 2013-12-03 13:12:23 -0800 | [diff] [blame] | 465 | } |
Alexander Afanasyev | 8468198 | 2014-01-03 13:26:09 -0800 | [diff] [blame] | 466 | if (interest.getMustBeFresh()) { |
| 467 | os << delim << "ndn.MustBeFresh=" << interest.getMustBeFresh(); |
| 468 | delim = '&'; |
Jeff Thompson | 13e280b | 2013-12-03 13:12:23 -0800 | [diff] [blame] | 469 | } |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 470 | if (interest.getInterestLifetime() >= time::milliseconds::zero() |
| 471 | && interest.getInterestLifetime() != DEFAULT_INTEREST_LIFETIME) { |
Alexander Afanasyev | a0c5f83 | 2014-06-19 13:27:56 -0700 | [diff] [blame] | 472 | os << delim << "ndn.InterestLifetime=" << interest.getInterestLifetime().count(); |
Alexander Afanasyev | 8468198 | 2014-01-03 13:26:09 -0800 | [diff] [blame] | 473 | delim = '&'; |
| 474 | } |
| 475 | |
Alexander Afanasyev | e881e93 | 2014-06-08 14:47:03 +0300 | [diff] [blame] | 476 | if (interest.hasNonce()) { |
Alexander Afanasyev | 8468198 | 2014-01-03 13:26:09 -0800 | [diff] [blame] | 477 | os << delim << "ndn.Nonce=" << interest.getNonce(); |
| 478 | delim = '&'; |
| 479 | } |
| 480 | if (!interest.getExclude().empty()) { |
| 481 | os << delim << "ndn.Exclude=" << interest.getExclude(); |
| 482 | delim = '&'; |
| 483 | } |
| 484 | |
| 485 | return os; |
Jeff Thompson | 13e280b | 2013-12-03 13:12:23 -0800 | [diff] [blame] | 486 | } |
| 487 | |
Junxiao Shi | 4b46998 | 2015-12-03 18:20:19 +0000 | [diff] [blame] | 488 | #ifdef NDN_LP_KEEP_LOCAL_CONTROL_HEADER |
| 489 | |
| 490 | // Permit deprecated usage for gcc only. |
| 491 | // clang allows deprecated usage in deprecated functions, so it doesn't need this directive. |
| 492 | #pragma GCC diagnostic push |
| 493 | #pragma GCC diagnostic ignored "-Wdeprecated-declarations" |
| 494 | |
| 495 | lp::LocalControlHeaderFacade |
| 496 | Interest::getLocalControlHeader() |
| 497 | { |
| 498 | return lp::LocalControlHeaderFacade(*this); |
| 499 | } |
| 500 | |
| 501 | const lp::LocalControlHeaderFacade |
| 502 | Interest::getLocalControlHeader() const |
| 503 | { |
| 504 | return lp::LocalControlHeaderFacade(const_cast<Interest&>(*this)); |
| 505 | } |
| 506 | |
| 507 | uint64_t |
| 508 | Interest::getIncomingFaceId() const |
| 509 | { |
| 510 | return getLocalControlHeader().getIncomingFaceId(); |
| 511 | } |
| 512 | |
| 513 | Interest& |
| 514 | Interest::setIncomingFaceId(uint64_t incomingFaceId) |
| 515 | { |
| 516 | getLocalControlHeader().setIncomingFaceId(incomingFaceId); |
| 517 | return *this; |
| 518 | } |
| 519 | |
| 520 | uint64_t |
| 521 | Interest::getNextHopFaceId() const |
| 522 | { |
| 523 | return getLocalControlHeader().getNextHopFaceId(); |
| 524 | } |
| 525 | |
| 526 | Interest& |
| 527 | Interest::setNextHopFaceId(uint64_t nextHopFaceId) |
| 528 | { |
| 529 | getLocalControlHeader().setNextHopFaceId(nextHopFaceId); |
| 530 | return *this; |
| 531 | } |
| 532 | |
| 533 | #pragma GCC diagnostic pop |
| 534 | |
| 535 | #endif // NDN_LP_KEEP_LOCAL_CONTROL_HEADER |
| 536 | |
Junxiao Shi | 08d0708 | 2014-12-03 11:31:44 -0700 | [diff] [blame] | 537 | } // namespace ndn |