Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2013-2014 Regents of the University of California. |
| 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 "data.hpp" |
| 23 | #include "util/crypto.hpp" |
| 24 | |
| 25 | namespace ndn { |
| 26 | |
| 27 | Data::Data() |
| 28 | : m_content(Tlv::Content) // empty content |
| 29 | { |
| 30 | } |
| 31 | |
| 32 | Data::Data(const Name& name) |
| 33 | : m_name(name) |
| 34 | { |
| 35 | } |
| 36 | |
| 37 | Data::Data(const Block& wire) |
| 38 | { |
| 39 | wireDecode(wire); |
| 40 | } |
| 41 | |
| 42 | template<bool T> |
| 43 | size_t |
| 44 | Data::wireEncode(EncodingImpl<T>& block, bool unsignedPortion/* = false*/) const |
| 45 | { |
| 46 | size_t totalLength = 0; |
| 47 | |
| 48 | // Data ::= DATA-TLV TLV-LENGTH |
| 49 | // Name |
| 50 | // MetaInfo |
| 51 | // Content |
| 52 | // Signature |
| 53 | |
| 54 | // (reverse encoding) |
| 55 | |
| 56 | if (!unsignedPortion && !m_signature) |
| 57 | { |
| 58 | throw Error("Requested wire format, but data packet has not been signed yet"); |
| 59 | } |
| 60 | |
| 61 | if (!unsignedPortion) |
| 62 | { |
| 63 | // SignatureValue |
| 64 | totalLength += prependBlock(block, m_signature.getValue()); |
| 65 | } |
| 66 | |
| 67 | // SignatureInfo |
| 68 | totalLength += prependBlock(block, m_signature.getInfo()); |
| 69 | |
| 70 | // Content |
| 71 | totalLength += prependBlock(block, getContent()); |
| 72 | |
| 73 | // MetaInfo |
| 74 | totalLength += getMetaInfo().wireEncode(block); |
| 75 | |
| 76 | // Name |
| 77 | totalLength += getName().wireEncode(block); |
| 78 | |
| 79 | if (!unsignedPortion) |
| 80 | { |
| 81 | totalLength += block.prependVarNumber(totalLength); |
| 82 | totalLength += block.prependVarNumber(Tlv::Data); |
| 83 | } |
| 84 | return totalLength; |
| 85 | } |
| 86 | |
| 87 | const Block& |
| 88 | Data::wireEncode(EncodingBuffer& encoder, const Block& signatureValue) const |
| 89 | { |
| 90 | size_t totalLength = encoder.size(); |
| 91 | totalLength += encoder.appendBlock(signatureValue); |
| 92 | |
| 93 | totalLength += encoder.prependVarNumber(totalLength); |
| 94 | encoder.prependVarNumber(Tlv::Data); |
| 95 | |
| 96 | const_cast<Data*>(this)->wireDecode(encoder.block()); |
| 97 | return m_wire; |
| 98 | } |
| 99 | |
| 100 | const Block& |
| 101 | Data::wireEncode() const |
| 102 | { |
| 103 | if (m_wire.hasWire()) |
| 104 | return m_wire; |
| 105 | |
| 106 | EncodingEstimator estimator; |
| 107 | size_t estimatedSize = wireEncode(estimator); |
| 108 | |
| 109 | EncodingBuffer buffer(estimatedSize, 0); |
| 110 | wireEncode(buffer); |
| 111 | |
| 112 | const_cast<Data*>(this)->wireDecode(buffer.block()); |
| 113 | return m_wire; |
| 114 | } |
| 115 | |
| 116 | void |
| 117 | Data::wireDecode(const Block& wire) |
| 118 | { |
Alexander Afanasyev | 3b70310 | 2014-06-13 17:01:14 -0700 | [diff] [blame^] | 119 | m_fullName.clear(); |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 120 | m_wire = wire; |
| 121 | m_wire.parse(); |
| 122 | |
| 123 | // Data ::= DATA-TLV TLV-LENGTH |
| 124 | // Name |
| 125 | // MetaInfo |
| 126 | // Content |
| 127 | // Signature |
| 128 | |
| 129 | // Name |
| 130 | m_name.wireDecode(m_wire.get(Tlv::Name)); |
| 131 | |
| 132 | // MetaInfo |
| 133 | m_metaInfo.wireDecode(m_wire.get(Tlv::MetaInfo)); |
| 134 | |
| 135 | // Content |
| 136 | m_content = m_wire.get(Tlv::Content); |
| 137 | |
| 138 | /////////////// |
| 139 | // Signature // |
| 140 | /////////////// |
| 141 | |
| 142 | // SignatureInfo |
| 143 | m_signature.setInfo(m_wire.get(Tlv::SignatureInfo)); |
| 144 | |
| 145 | // SignatureValue |
| 146 | Block::element_const_iterator val = m_wire.find(Tlv::SignatureValue); |
| 147 | if (val != m_wire.elements_end()) |
| 148 | m_signature.setValue(*val); |
| 149 | } |
| 150 | |
| 151 | Data& |
| 152 | Data::setName(const Name& name) |
| 153 | { |
| 154 | onChanged(); |
| 155 | m_name = name; |
| 156 | |
| 157 | return *this; |
| 158 | } |
| 159 | |
Alexander Afanasyev | 3b70310 | 2014-06-13 17:01:14 -0700 | [diff] [blame^] | 160 | const Name& |
| 161 | Data::getFullName() const |
| 162 | { |
| 163 | if (m_fullName.empty()) { |
| 164 | if (!m_wire.hasWire()) { |
| 165 | throw Error("Full name requested, but Data packet does not have wire format " |
| 166 | "(e.g., not signed)"); |
| 167 | } |
| 168 | m_fullName = m_name; |
| 169 | m_fullName.append(name::Component(crypto::sha256(m_wire.wire(), m_wire.size()))); |
| 170 | } |
| 171 | |
| 172 | return m_fullName; |
| 173 | } |
| 174 | |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 175 | Data& |
| 176 | Data::setMetaInfo(const MetaInfo& metaInfo) |
| 177 | { |
| 178 | onChanged(); |
| 179 | m_metaInfo = metaInfo; |
| 180 | |
| 181 | return *this; |
| 182 | } |
| 183 | |
| 184 | Data& |
| 185 | Data::setContentType(uint32_t type) |
| 186 | { |
| 187 | onChanged(); |
| 188 | m_metaInfo.setType(type); |
| 189 | |
| 190 | return *this; |
| 191 | } |
| 192 | |
| 193 | Data& |
| 194 | Data::setFreshnessPeriod(const time::milliseconds& freshnessPeriod) |
| 195 | { |
| 196 | onChanged(); |
| 197 | m_metaInfo.setFreshnessPeriod(freshnessPeriod); |
| 198 | |
| 199 | return *this; |
| 200 | } |
| 201 | |
| 202 | Data& |
| 203 | Data::setFinalBlockId(const name::Component& finalBlockId) |
| 204 | { |
| 205 | onChanged(); |
| 206 | m_metaInfo.setFinalBlockId(finalBlockId); |
| 207 | |
| 208 | return *this; |
| 209 | } |
| 210 | |
| 211 | const Block& |
| 212 | Data::getContent() const |
| 213 | { |
| 214 | if (m_content.empty()) |
| 215 | m_content = dataBlock(Tlv::Content, reinterpret_cast<const uint8_t*>(0), 0); |
| 216 | |
| 217 | if (!m_content.hasWire()) |
| 218 | m_content.encode(); |
| 219 | return m_content; |
| 220 | } |
| 221 | |
| 222 | Data& |
| 223 | Data::setContent(const uint8_t* content, size_t contentLength) |
| 224 | { |
| 225 | onChanged(); |
| 226 | |
| 227 | m_content = dataBlock(Tlv::Content, content, contentLength); |
| 228 | |
| 229 | return *this; |
| 230 | } |
| 231 | |
| 232 | Data& |
| 233 | Data::setContent(const ConstBufferPtr& contentValue) |
| 234 | { |
| 235 | onChanged(); |
| 236 | |
| 237 | m_content = Block(Tlv::Content, contentValue); // not a real wire encoding yet |
| 238 | |
| 239 | return *this; |
| 240 | } |
| 241 | |
| 242 | Data& |
| 243 | Data::setContent(const Block& content) |
| 244 | { |
| 245 | onChanged(); |
| 246 | |
| 247 | if (content.type() == Tlv::Content) |
| 248 | m_content = content; |
| 249 | else { |
| 250 | m_content = Block(Tlv::Content, content); |
| 251 | } |
| 252 | |
| 253 | return *this; |
| 254 | } |
| 255 | |
| 256 | Data& |
| 257 | Data::setSignature(const Signature& signature) |
| 258 | { |
| 259 | onChanged(); |
| 260 | m_signature = signature; |
| 261 | |
| 262 | return *this; |
| 263 | } |
| 264 | |
| 265 | Data& |
| 266 | Data::setSignatureValue(const Block& value) |
| 267 | { |
| 268 | onChanged(); |
| 269 | m_signature.setValue(value); |
| 270 | |
| 271 | return *this; |
| 272 | } |
| 273 | |
| 274 | // |
| 275 | |
| 276 | Data& |
| 277 | Data::setIncomingFaceId(uint64_t incomingFaceId) |
| 278 | { |
| 279 | getLocalControlHeader().setIncomingFaceId(incomingFaceId); |
| 280 | // ! do not reset Data's wire ! |
| 281 | |
| 282 | return *this; |
| 283 | } |
| 284 | |
| 285 | void |
| 286 | Data::onChanged() |
| 287 | { |
| 288 | // The values have changed, so the wire format is invalidated |
| 289 | |
| 290 | // !!!Note!!! Signature is not invalidated and it is responsibility of |
| 291 | // the application to do proper re-signing if necessary |
| 292 | |
| 293 | m_wire.reset(); |
Alexander Afanasyev | 3b70310 | 2014-06-13 17:01:14 -0700 | [diff] [blame^] | 294 | m_fullName.clear(); |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 295 | } |
| 296 | |
| 297 | bool |
| 298 | Data::operator==(const Data& other) const |
| 299 | { |
| 300 | return getName() == other.getName() && |
| 301 | getMetaInfo() == other.getMetaInfo() && |
| 302 | getContent() == other.getContent() && |
| 303 | getSignature() == other.getSignature(); |
| 304 | } |
| 305 | |
| 306 | bool |
| 307 | Data::operator!=(const Data& other) const |
| 308 | { |
| 309 | return !(*this == other); |
| 310 | } |
| 311 | |
| 312 | std::ostream& |
| 313 | operator<<(std::ostream& os, const Data& data) |
| 314 | { |
| 315 | os << "Name: " << data.getName() << "\n"; |
| 316 | os << "MetaInfo: " << data.getMetaInfo() << "\n"; |
| 317 | os << "Content: (size: " << data.getContent().value_size() << ")\n"; |
| 318 | os << "Signature: (type: " << data.getSignature().getType() << |
| 319 | ", value_length: "<< data.getSignature().getValue().value_size() << ")"; |
| 320 | os << std::endl; |
| 321 | |
| 322 | return os; |
| 323 | } |
| 324 | |
| 325 | } // namespace ndn |