Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 5174232 | 2017-08-13 17:04:52 +0000 | [diff] [blame] | 2 | /* |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame^] | 3 | * Copyright (c) 2013-2018 Regents of the University of California. |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [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 | |
| 22 | #include "meta-info.hpp" |
| 23 | #include "encoding/block-helpers.hpp" |
| 24 | #include "encoding/encoding-buffer.hpp" |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 25 | |
| 26 | namespace ndn { |
| 27 | |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 28 | BOOST_CONCEPT_ASSERT((boost::EqualityComparable<MetaInfo>)); |
Junxiao Shi | c2b8d24 | 2014-11-04 08:35:29 -0700 | [diff] [blame] | 29 | BOOST_CONCEPT_ASSERT((WireEncodable<MetaInfo>)); |
Alexander Afanasyev | d5c48e0 | 2015-06-24 11:58:14 -0700 | [diff] [blame] | 30 | BOOST_CONCEPT_ASSERT((WireEncodableWithEncodingBuffer<MetaInfo>)); |
Junxiao Shi | c2b8d24 | 2014-11-04 08:35:29 -0700 | [diff] [blame] | 31 | BOOST_CONCEPT_ASSERT((WireDecodable<MetaInfo>)); |
| 32 | static_assert(std::is_base_of<tlv::Error, MetaInfo::Error>::value, |
| 33 | "MetaInfo::Error must inherit from tlv::Error"); |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 34 | |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 35 | MetaInfo::MetaInfo() |
Junxiao Shi | a464b92 | 2014-11-12 21:13:06 -0700 | [diff] [blame] | 36 | : m_type(tlv::ContentType_Blob) |
Eric Newberry | b555b00 | 2017-05-17 00:30:44 -0700 | [diff] [blame] | 37 | , m_freshnessPeriod(DEFAULT_FRESHNESS_PERIOD) |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 38 | { |
| 39 | } |
| 40 | |
| 41 | MetaInfo::MetaInfo(const Block& block) |
| 42 | { |
| 43 | wireDecode(block); |
| 44 | } |
| 45 | |
| 46 | MetaInfo& |
| 47 | MetaInfo::setType(uint32_t type) |
| 48 | { |
| 49 | m_wire.reset(); |
| 50 | m_type = type; |
| 51 | return *this; |
| 52 | } |
| 53 | |
| 54 | MetaInfo& |
Eric Newberry | b555b00 | 2017-05-17 00:30:44 -0700 | [diff] [blame] | 55 | MetaInfo::setFreshnessPeriod(time::milliseconds freshnessPeriod) |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 56 | { |
Eric Newberry | b555b00 | 2017-05-17 00:30:44 -0700 | [diff] [blame] | 57 | if (freshnessPeriod < time::milliseconds::zero()) { |
| 58 | BOOST_THROW_EXCEPTION(std::invalid_argument("FreshnessPeriod must be >= 0")); |
| 59 | } |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 60 | m_wire.reset(); |
| 61 | m_freshnessPeriod = freshnessPeriod; |
| 62 | return *this; |
| 63 | } |
| 64 | |
| 65 | MetaInfo& |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame^] | 66 | MetaInfo::setFinalBlock(optional<name::Component> finalBlockId) |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 67 | { |
| 68 | m_wire.reset(); |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame^] | 69 | m_finalBlockId = std::move(finalBlockId); |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 70 | return *this; |
| 71 | } |
| 72 | |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame^] | 73 | MetaInfo& |
| 74 | MetaInfo::setFinalBlockId(const name::Component& finalBlockId) |
| 75 | { |
| 76 | if (finalBlockId.isGeneric() && finalBlockId.empty()) { |
| 77 | return setFinalBlock(nullopt); |
| 78 | } |
| 79 | return setFinalBlock(finalBlockId); |
| 80 | } |
| 81 | |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 82 | const std::list<Block>& |
| 83 | MetaInfo::getAppMetaInfo() const |
| 84 | { |
| 85 | return m_appMetaInfo; |
| 86 | } |
| 87 | |
| 88 | MetaInfo& |
| 89 | MetaInfo::setAppMetaInfo(const std::list<Block>& info) |
| 90 | { |
| 91 | for (std::list<Block>::const_iterator i = info.begin(); i != info.end(); ++i) { |
| 92 | if (!(128 <= i->type() && i->type() <= 252)) |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 93 | BOOST_THROW_EXCEPTION(Error("AppMetaInfo block has type outside the application range " |
| 94 | "[128, 252]")); |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | m_wire.reset(); |
| 98 | m_appMetaInfo = info; |
| 99 | return *this; |
| 100 | } |
| 101 | |
| 102 | MetaInfo& |
| 103 | MetaInfo::addAppMetaInfo(const Block& block) |
| 104 | { |
| 105 | if (!(128 <= block.type() && block.type() <= 252)) |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 106 | BOOST_THROW_EXCEPTION(Error("AppMetaInfo block has type outside the application range " |
| 107 | "[128, 252]")); |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 108 | |
| 109 | m_wire.reset(); |
| 110 | m_appMetaInfo.push_back(block); |
| 111 | return *this; |
| 112 | } |
| 113 | |
| 114 | bool |
| 115 | MetaInfo::removeAppMetaInfo(uint32_t tlvType) |
| 116 | { |
| 117 | for (std::list<Block>::iterator iter = m_appMetaInfo.begin(); |
| 118 | iter != m_appMetaInfo.end(); ++iter) { |
| 119 | if (iter->type() == tlvType) { |
| 120 | m_wire.reset(); |
| 121 | m_appMetaInfo.erase(iter); |
| 122 | return true; |
| 123 | } |
| 124 | } |
| 125 | return false; |
| 126 | } |
| 127 | |
| 128 | const Block* |
| 129 | MetaInfo::findAppMetaInfo(uint32_t tlvType) const |
| 130 | { |
| 131 | for (std::list<Block>::const_iterator iter = m_appMetaInfo.begin(); |
| 132 | iter != m_appMetaInfo.end(); ++iter) { |
| 133 | if (iter->type() == tlvType) { |
| 134 | return &*iter; |
| 135 | } |
| 136 | } |
| 137 | return 0; |
| 138 | } |
| 139 | |
Alexander Afanasyev | 7463389 | 2015-02-08 18:08:46 -0800 | [diff] [blame] | 140 | template<encoding::Tag TAG> |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 141 | size_t |
Alexander Afanasyev | 7463389 | 2015-02-08 18:08:46 -0800 | [diff] [blame] | 142 | MetaInfo::wireEncode(EncodingImpl<TAG>& encoder) const |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 143 | { |
| 144 | // MetaInfo ::= META-INFO-TYPE TLV-LENGTH |
| 145 | // ContentType? |
| 146 | // FreshnessPeriod? |
| 147 | // FinalBlockId? |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 148 | // AppMetaInfo* |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 149 | |
| 150 | size_t totalLength = 0; |
| 151 | |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 152 | for (std::list<Block>::const_reverse_iterator appMetaInfoItem = m_appMetaInfo.rbegin(); |
| 153 | appMetaInfoItem != m_appMetaInfo.rend(); ++appMetaInfoItem) { |
Alexander Afanasyev | 7463389 | 2015-02-08 18:08:46 -0800 | [diff] [blame] | 154 | totalLength += encoder.prependBlock(*appMetaInfoItem); |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 155 | } |
| 156 | |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 157 | // FinalBlockId |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame^] | 158 | if (m_finalBlockId) { |
| 159 | totalLength += prependNestedBlock(encoder, tlv::FinalBlockId, *m_finalBlockId); |
Eric Newberry | b555b00 | 2017-05-17 00:30:44 -0700 | [diff] [blame] | 160 | } |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 161 | |
| 162 | // FreshnessPeriod |
Eric Newberry | b555b00 | 2017-05-17 00:30:44 -0700 | [diff] [blame] | 163 | if (m_freshnessPeriod != DEFAULT_FRESHNESS_PERIOD) { |
Davide Pesavento | 88a0d81 | 2017-08-19 21:31:42 -0400 | [diff] [blame] | 164 | totalLength += prependNonNegativeIntegerBlock(encoder, tlv::FreshnessPeriod, m_freshnessPeriod.count()); |
Eric Newberry | b555b00 | 2017-05-17 00:30:44 -0700 | [diff] [blame] | 165 | } |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 166 | |
| 167 | // ContentType |
Eric Newberry | b555b00 | 2017-05-17 00:30:44 -0700 | [diff] [blame] | 168 | if (m_type != tlv::ContentType_Blob) { |
| 169 | totalLength += prependNonNegativeIntegerBlock(encoder, tlv::ContentType, m_type); |
| 170 | } |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 171 | |
Alexander Afanasyev | 7463389 | 2015-02-08 18:08:46 -0800 | [diff] [blame] | 172 | totalLength += encoder.prependVarNumber(totalLength); |
| 173 | totalLength += encoder.prependVarNumber(tlv::MetaInfo); |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 174 | return totalLength; |
| 175 | } |
| 176 | |
Davide Pesavento | 88a0d81 | 2017-08-19 21:31:42 -0400 | [diff] [blame] | 177 | NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS(MetaInfo); |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 178 | |
| 179 | const Block& |
| 180 | MetaInfo::wireEncode() const |
| 181 | { |
| 182 | if (m_wire.hasWire()) |
| 183 | return m_wire; |
| 184 | |
| 185 | EncodingEstimator estimator; |
| 186 | size_t estimatedSize = wireEncode(estimator); |
| 187 | |
| 188 | EncodingBuffer buffer(estimatedSize, 0); |
| 189 | wireEncode(buffer); |
| 190 | |
| 191 | m_wire = buffer.block(); |
| 192 | return m_wire; |
| 193 | } |
| 194 | |
| 195 | void |
| 196 | MetaInfo::wireDecode(const Block& wire) |
| 197 | { |
| 198 | m_wire = wire; |
| 199 | m_wire.parse(); |
| 200 | |
| 201 | // MetaInfo ::= META-INFO-TYPE TLV-LENGTH |
| 202 | // ContentType? |
| 203 | // FreshnessPeriod? |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 204 | // FinalBlockId? |
| 205 | // AppMetaInfo* |
| 206 | |
| 207 | |
| 208 | Block::element_const_iterator val = m_wire.elements_begin(); |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 209 | |
| 210 | // ContentType |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 211 | if (val != m_wire.elements_end() && val->type() == tlv::ContentType) { |
Junxiao Shi | 5174232 | 2017-08-13 17:04:52 +0000 | [diff] [blame] | 212 | m_type = readNonNegativeIntegerAs<uint32_t>(*val); |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 213 | ++val; |
| 214 | } |
| 215 | else { |
Junxiao Shi | a464b92 | 2014-11-12 21:13:06 -0700 | [diff] [blame] | 216 | m_type = tlv::ContentType_Blob; |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 217 | } |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 218 | |
| 219 | // FreshnessPeriod |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 220 | if (val != m_wire.elements_end() && val->type() == tlv::FreshnessPeriod) { |
| 221 | m_freshnessPeriod = time::milliseconds(readNonNegativeInteger(*val)); |
| 222 | ++val; |
| 223 | } |
| 224 | else { |
Eric Newberry | b555b00 | 2017-05-17 00:30:44 -0700 | [diff] [blame] | 225 | m_freshnessPeriod = DEFAULT_FRESHNESS_PERIOD; |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 226 | } |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 227 | |
| 228 | // FinalBlockId |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 229 | if (val != m_wire.elements_end() && val->type() == tlv::FinalBlockId) { |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame^] | 230 | m_finalBlockId.emplace(val->blockFromValue()); |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 231 | ++val; |
| 232 | } |
| 233 | else { |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame^] | 234 | m_finalBlockId = nullopt; |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | // AppMetaInfo (if any) |
| 238 | for (; val != m_wire.elements().end(); ++val) { |
| 239 | m_appMetaInfo.push_back(*val); |
| 240 | } |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | std::ostream& |
| 244 | operator<<(std::ostream& os, const MetaInfo& info) |
| 245 | { |
| 246 | // ContentType |
| 247 | os << "ContentType: " << info.getType(); |
| 248 | |
| 249 | // FreshnessPeriod |
Eric Newberry | b555b00 | 2017-05-17 00:30:44 -0700 | [diff] [blame] | 250 | if (info.getFreshnessPeriod() > time::milliseconds::zero()) { |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 251 | os << ", FreshnessPeriod: " << info.getFreshnessPeriod(); |
| 252 | } |
| 253 | |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 254 | // FinalBlockId |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame^] | 255 | if (info.getFinalBlock()) { |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 256 | os << ", FinalBlockId: "; |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame^] | 257 | info.getFinalBlock()->toUri(os); |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 258 | } |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 259 | |
| 260 | // App-defined MetaInfo items |
| 261 | for (std::list<Block>::const_iterator iter = info.getAppMetaInfo().begin(); |
| 262 | iter != info.getAppMetaInfo().end(); ++iter) { |
| 263 | os << ", AppMetaInfoTlvType: " << iter->type(); |
| 264 | } |
| 265 | |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 266 | return os; |
| 267 | } |
| 268 | |
| 269 | } // namespace ndn |