Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 2 | /* |
Eric Newberry | a3c8bd1 | 2020-05-15 17:27:07 -0700 | [diff] [blame] | 3 | * Copyright (c) 2013-2020 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 | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 20 | */ |
| 21 | |
Davide Pesavento | 905d40f | 2020-06-09 21:33:25 -0400 | [diff] [blame] | 22 | #ifndef NDN_CXX_DATA_HPP |
| 23 | #define NDN_CXX_DATA_HPP |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 24 | |
Davide Pesavento | 14c56cd | 2020-05-21 01:44:03 -0400 | [diff] [blame] | 25 | #include "ndn-cxx/detail/packet-base.hpp" |
| 26 | #include "ndn-cxx/encoding/block.hpp" |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 27 | #include "ndn-cxx/meta-info.hpp" |
| 28 | #include "ndn-cxx/name.hpp" |
Eric Newberry | e36aae1 | 2020-08-31 22:23:13 -0700 | [diff] [blame] | 29 | #include "ndn-cxx/security/security-common.hpp" |
Davide Pesavento | 81bd696 | 2020-06-17 16:03:23 -0400 | [diff] [blame] | 30 | #include "ndn-cxx/signature-info.hpp" |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 31 | |
| 32 | namespace ndn { |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 33 | |
Davide Pesavento | 905d40f | 2020-06-09 21:33:25 -0400 | [diff] [blame] | 34 | /** @brief Represents a %Data packet. |
| 35 | * @sa https://named-data.net/doc/NDN-packet-spec/0.3/data.html |
Junxiao Shi | c2b8d24 | 2014-11-04 08:35:29 -0700 | [diff] [blame] | 36 | */ |
Davide Pesavento | 1fd0024 | 2018-05-20 00:11:01 -0400 | [diff] [blame] | 37 | class Data : public PacketBase, public std::enable_shared_from_this<Data> |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 38 | { |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 39 | public: |
Junxiao Shi | c2b8d24 | 2014-11-04 08:35:29 -0700 | [diff] [blame] | 40 | class Error : public tlv::Error |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 41 | { |
| 42 | public: |
Junxiao Shi | 68b5385 | 2018-07-25 13:56:38 -0600 | [diff] [blame] | 43 | using tlv::Error::Error; |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 44 | }; |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 45 | |
Junxiao Shi | 7d9039b | 2018-04-14 15:56:28 +0000 | [diff] [blame] | 46 | /** @brief Construct an unsigned Data packet with given @p name and empty Content. |
Davide Pesavento | 905d40f | 2020-06-09 21:33:25 -0400 | [diff] [blame] | 47 | * @warning In certain contexts that use `Data::shared_from_this()`, Data must be created using |
| 48 | * `std::make_shared`. Otherwise, `shared_from_this()` may trigger undefined behavior. |
| 49 | * One example where this is necessary is storing Data into a subclass of InMemoryStorage. |
Jeff Thompson | 20af073 | 2013-09-12 17:01:45 -0700 | [diff] [blame] | 50 | */ |
Junxiao Shi | 9b84535 | 2017-07-24 05:04:56 +0000 | [diff] [blame] | 51 | explicit |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 52 | Data(const Name& name = Name()); |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 53 | |
Junxiao Shi | 7d9039b | 2018-04-14 15:56:28 +0000 | [diff] [blame] | 54 | /** @brief Construct a Data packet by decoding from @p wire. |
Davide Pesavento | 905d40f | 2020-06-09 21:33:25 -0400 | [diff] [blame] | 55 | * @param wire TLV block of type tlv::Data; may be signed or unsigned. |
| 56 | * @warning In certain contexts that use `Data::shared_from_this()`, Data must be created using |
| 57 | * `std::make_shared`. Otherwise, `shared_from_this()` may trigger undefined behavior. |
| 58 | * One example where this is necessary is storing Data into a subclass of InMemoryStorage. |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 59 | */ |
| 60 | explicit |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 61 | Data(const Block& wire); |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 62 | |
Davide Pesavento | 905d40f | 2020-06-09 21:33:25 -0400 | [diff] [blame] | 63 | /** @brief Prepend wire encoding to @p encoder |
| 64 | * @param encoder EncodingEstimator or EncodingBuffer instance. |
| 65 | * @param wantUnsignedPortionOnly If true, prepend only Name, MetaInfo, Content, and |
| 66 | * SignatureInfo to @p encoder, but omit SignatureValue and the outermost TLV |
| 67 | * Type and Length of the Data element. This is intended to be used with |
| 68 | * wireEncode(EncodingBuffer&, const Block&) const. |
| 69 | * @throw Error %Signature is not present and @p wantUnsignedPortionOnly is false. |
Jeff Thompson | b7aefa00 | 2013-09-16 18:22:00 -0700 | [diff] [blame] | 70 | */ |
Alexander Afanasyev | 7463389 | 2015-02-08 18:08:46 -0800 | [diff] [blame] | 71 | template<encoding::Tag TAG> |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 72 | size_t |
Alexander Afanasyev | d5c48e0 | 2015-06-24 11:58:14 -0700 | [diff] [blame] | 73 | wireEncode(EncodingImpl<TAG>& encoder, bool wantUnsignedPortionOnly = false) const; |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 74 | |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 75 | /** @brief Finalize Data packet encoding with the specified SignatureValue |
| 76 | * @param encoder EncodingBuffer containing Name, MetaInfo, Content, and SignatureInfo, but |
Davide Pesavento | 905d40f | 2020-06-09 21:33:25 -0400 | [diff] [blame] | 77 | * without SignatureValue and the outermost Type-Length of the Data element. |
| 78 | * @param signatureValue SignatureValue element. |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 79 | * |
Davide Pesavento | 905d40f | 2020-06-09 21:33:25 -0400 | [diff] [blame] | 80 | * This method is intended to be used in concert with `wireEncode(encoder, true)`, e.g.: |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 81 | * @code |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 82 | * Data data; |
| 83 | * ... |
| 84 | * EncodingBuffer encoder; |
| 85 | * data.wireEncode(encoder, true); |
| 86 | * ... |
| 87 | * Block signatureValue = <sign_over_unsigned_portion>(encoder.buf(), encoder.size()); |
| 88 | * data.wireEncode(encoder, signatureValue) |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 89 | * @endcode |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 90 | */ |
| 91 | const Block& |
| 92 | wireEncode(EncodingBuffer& encoder, const Block& signatureValue) const; |
| 93 | |
Davide Pesavento | 905d40f | 2020-06-09 21:33:25 -0400 | [diff] [blame] | 94 | /** @brief Encode into a Block. |
| 95 | * @pre Data must be signed. |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 96 | */ |
| 97 | const Block& |
| 98 | wireEncode() const; |
| 99 | |
Davide Pesavento | 905d40f | 2020-06-09 21:33:25 -0400 | [diff] [blame] | 100 | /** @brief Decode from @p wire. |
Alexander Afanasyev | 809805d | 2014-02-17 17:20:33 -0800 | [diff] [blame] | 101 | */ |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 102 | void |
| 103 | wireDecode(const Block& wire); |
Alexander Afanasyev | fadc97d | 2014-01-03 13:22:10 -0800 | [diff] [blame] | 104 | |
Junxiao Shi | 7d9039b | 2018-04-14 15:56:28 +0000 | [diff] [blame] | 105 | /** @brief Check if this instance has cached wire encoding. |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 106 | */ |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 107 | bool |
Davide Pesavento | 14c56cd | 2020-05-21 01:44:03 -0400 | [diff] [blame] | 108 | hasWire() const noexcept |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 109 | { |
| 110 | return m_wire.hasWire(); |
| 111 | } |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 112 | |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 113 | /** @brief Get full name including implicit digest |
| 114 | * @pre hasWire() == true; i.e. wireEncode() must have been called |
| 115 | * @throw Error Data has no wire encoding |
Alexander Afanasyev | 3b70310 | 2014-06-13 17:01:14 -0700 | [diff] [blame] | 116 | */ |
| 117 | const Name& |
| 118 | getFullName() const; |
| 119 | |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 120 | public: // Data fields |
| 121 | /** @brief Get name |
| 122 | */ |
| 123 | const Name& |
Davide Pesavento | 14c56cd | 2020-05-21 01:44:03 -0400 | [diff] [blame] | 124 | getName() const noexcept |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 125 | { |
| 126 | return m_name; |
| 127 | } |
| 128 | |
| 129 | /** @brief Set name |
| 130 | * @return a reference to this Data, to allow chaining |
| 131 | */ |
| 132 | Data& |
| 133 | setName(const Name& name); |
| 134 | |
| 135 | /** @brief Get MetaInfo |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 136 | */ |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 137 | const MetaInfo& |
Davide Pesavento | 14c56cd | 2020-05-21 01:44:03 -0400 | [diff] [blame] | 138 | getMetaInfo() const noexcept |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 139 | { |
| 140 | return m_metaInfo; |
| 141 | } |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 142 | |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 143 | /** @brief Set MetaInfo |
| 144 | * @return a reference to this Data, to allow chaining |
Jeff Thompson | 0cd8c4a | 2013-09-13 17:46:40 -0700 | [diff] [blame] | 145 | */ |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 146 | Data& |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 147 | setMetaInfo(const MetaInfo& metaInfo); |
Jeff Thompson | 46bd45f | 2013-08-08 16:46:41 -0700 | [diff] [blame] | 148 | |
Davide Pesavento | 81bd696 | 2020-06-17 16:03:23 -0400 | [diff] [blame] | 149 | /** |
| 150 | * @brief Return whether this Data has a Content element |
| 151 | */ |
| 152 | bool |
| 153 | hasContent() const noexcept |
| 154 | { |
| 155 | return m_content.isValid(); |
| 156 | } |
| 157 | |
| 158 | /** |
| 159 | * @brief Get the Content element |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 160 | * |
Davide Pesavento | 81bd696 | 2020-06-17 16:03:23 -0400 | [diff] [blame] | 161 | * If the element is not present (hasContent() == false), an invalid Block will be returned. |
| 162 | * |
| 163 | * The value of the returned Content Block (if valid) can be accessed through |
| 164 | * Block::value() / Block::value_size() or Block::value_begin() / Block::value_end(). |
| 165 | * |
| 166 | * @sa hasContent() |
| 167 | * @sa Block::blockFromValue(), Block::parse() |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 168 | */ |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 169 | const Block& |
Davide Pesavento | 81bd696 | 2020-06-17 16:03:23 -0400 | [diff] [blame] | 170 | getContent() const noexcept |
| 171 | { |
| 172 | return m_content; |
| 173 | } |
Alexander Afanasyev | fadc97d | 2014-01-03 13:22:10 -0800 | [diff] [blame] | 174 | |
Davide Pesavento | 81bd696 | 2020-06-17 16:03:23 -0400 | [diff] [blame] | 175 | /** |
| 176 | * @brief Set Content from a Block |
| 177 | * @param block TLV block to be used as Content; must be valid |
| 178 | * @return a reference to this Data, to allow chaining |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 179 | * |
Davide Pesavento | 81bd696 | 2020-06-17 16:03:23 -0400 | [diff] [blame] | 180 | * If the block's TLV-TYPE is tlv::Content, it will be used directly as this Data's |
| 181 | * Content element. Otherwise, the block will be nested into a Content element. |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 182 | */ |
| 183 | Data& |
| 184 | setContent(const Block& block); |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 185 | |
Davide Pesavento | 81bd696 | 2020-06-17 16:03:23 -0400 | [diff] [blame] | 186 | /** |
| 187 | * @brief Set Content by copying from a raw buffer |
| 188 | * @param value buffer with the TLV-VALUE of the content; may be nullptr if @p length is zero |
| 189 | * @param length size of the buffer |
| 190 | * @return a reference to this Data, to allow chaining |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 191 | */ |
| 192 | Data& |
Davide Pesavento | 81bd696 | 2020-06-17 16:03:23 -0400 | [diff] [blame] | 193 | setContent(const uint8_t* value, size_t length); |
Alexander Afanasyev | 809805d | 2014-02-17 17:20:33 -0800 | [diff] [blame] | 194 | |
Davide Pesavento | 81bd696 | 2020-06-17 16:03:23 -0400 | [diff] [blame] | 195 | /** |
| 196 | * @brief Set Content from a shared buffer |
| 197 | * @param value buffer with the TLV-VALUE of the content; must not be nullptr |
| 198 | * @return a reference to this Data, to allow chaining |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 199 | */ |
| 200 | Data& |
Davide Pesavento | 3b101d0 | 2018-07-21 22:44:09 -0400 | [diff] [blame] | 201 | setContent(ConstBufferPtr value); |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 202 | |
Davide Pesavento | 81bd696 | 2020-06-17 16:03:23 -0400 | [diff] [blame] | 203 | /** |
| 204 | * @brief Remove the Content element |
| 205 | * @return a reference to this Data, to allow chaining |
| 206 | * @post hasContent() == false |
| 207 | */ |
| 208 | Data& |
| 209 | unsetContent(); |
| 210 | |
Eric Newberry | a3c8bd1 | 2020-05-15 17:27:07 -0700 | [diff] [blame] | 211 | /** @brief Get SignatureInfo |
| 212 | */ |
| 213 | const SignatureInfo& |
Davide Pesavento | 14c56cd | 2020-05-21 01:44:03 -0400 | [diff] [blame] | 214 | getSignatureInfo() const noexcept |
Eric Newberry | a3c8bd1 | 2020-05-15 17:27:07 -0700 | [diff] [blame] | 215 | { |
| 216 | return m_signatureInfo; |
| 217 | } |
| 218 | |
| 219 | /** @brief Set SignatureInfo |
Davide Pesavento | 14c56cd | 2020-05-21 01:44:03 -0400 | [diff] [blame] | 220 | * |
| 221 | * This is a low-level function that should not normally be called directly by applications. |
| 222 | * Instead, provide a SignatureInfo to the SigningInfo object passed to KeyChain::sign(). |
| 223 | * |
Eric Newberry | a3c8bd1 | 2020-05-15 17:27:07 -0700 | [diff] [blame] | 224 | * @return a reference to this Data, to allow chaining |
Davide Pesavento | 14c56cd | 2020-05-21 01:44:03 -0400 | [diff] [blame] | 225 | * @warning SignatureInfo is overwritten when the packet is signed via KeyChain::sign(). |
| 226 | * @sa SigningInfo |
Eric Newberry | a3c8bd1 | 2020-05-15 17:27:07 -0700 | [diff] [blame] | 227 | */ |
| 228 | Data& |
| 229 | setSignatureInfo(const SignatureInfo& info); |
| 230 | |
| 231 | /** @brief Get SignatureValue |
| 232 | */ |
| 233 | const Block& |
Davide Pesavento | 14c56cd | 2020-05-21 01:44:03 -0400 | [diff] [blame] | 234 | getSignatureValue() const noexcept |
Eric Newberry | a3c8bd1 | 2020-05-15 17:27:07 -0700 | [diff] [blame] | 235 | { |
| 236 | return m_signatureValue; |
| 237 | } |
| 238 | |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 239 | /** @brief Set SignatureValue |
Davide Pesavento | 14c56cd | 2020-05-21 01:44:03 -0400 | [diff] [blame] | 240 | * @param value buffer containing the TLV-VALUE of the SignatureValue; must not be nullptr |
| 241 | * |
| 242 | * This is a low-level function that should not normally be called directly by applications. |
| 243 | * Instead, use KeyChain::sign() to sign the packet. |
| 244 | * |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 245 | * @return a reference to this Data, to allow chaining |
Davide Pesavento | 14c56cd | 2020-05-21 01:44:03 -0400 | [diff] [blame] | 246 | * @warning SignatureValue is overwritten when the packet is signed via KeyChain::sign(). |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 247 | */ |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 248 | Data& |
Davide Pesavento | 14c56cd | 2020-05-21 01:44:03 -0400 | [diff] [blame] | 249 | setSignatureValue(ConstBufferPtr value); |
Yingdi Yu | a4e5767 | 2014-02-06 11:16:17 -0800 | [diff] [blame] | 250 | |
Eric Newberry | e36aae1 | 2020-08-31 22:23:13 -0700 | [diff] [blame] | 251 | /** @brief Extract ranges of Data covered by the signature |
| 252 | * @throw Error Data cannot be encoded or is missing ranges necessary for signing |
| 253 | * @warning The returned pointers will be invalidated if wireDecode() or wireEncode() are called. |
| 254 | */ |
| 255 | InputBuffers |
| 256 | extractSignedRanges() const; |
| 257 | |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 258 | public: // MetaInfo fields |
| 259 | uint32_t |
| 260 | getContentType() const |
| 261 | { |
| 262 | return m_metaInfo.getType(); |
| 263 | } |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 264 | |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 265 | Data& |
| 266 | setContentType(uint32_t type); |
| 267 | |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame] | 268 | time::milliseconds |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 269 | getFreshnessPeriod() const |
| 270 | { |
| 271 | return m_metaInfo.getFreshnessPeriod(); |
| 272 | } |
| 273 | |
| 274 | Data& |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame] | 275 | setFreshnessPeriod(time::milliseconds freshnessPeriod); |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 276 | |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame] | 277 | const optional<name::Component>& |
| 278 | getFinalBlock() const |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 279 | { |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame] | 280 | return m_metaInfo.getFinalBlock(); |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 281 | } |
| 282 | |
| 283 | Data& |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame] | 284 | setFinalBlock(optional<name::Component> finalBlockId); |
| 285 | |
Davide Pesavento | 14c56cd | 2020-05-21 01:44:03 -0400 | [diff] [blame] | 286 | public: // SignatureInfo fields |
| 287 | /** @brief Get SignatureType |
| 288 | * @return tlv::SignatureTypeValue, or -1 to indicate the signature is invalid |
| 289 | */ |
| 290 | int32_t |
| 291 | getSignatureType() const noexcept |
| 292 | { |
| 293 | return m_signatureInfo.getSignatureType(); |
| 294 | } |
| 295 | |
| 296 | /** @brief Get KeyLocator |
| 297 | */ |
| 298 | optional<KeyLocator> |
| 299 | getKeyLocator() const noexcept |
| 300 | { |
| 301 | return m_signatureInfo.hasKeyLocator() ? make_optional(m_signatureInfo.getKeyLocator()) : nullopt; |
| 302 | } |
| 303 | |
Spyridon Mastorakis | 3b54e85 | 2015-04-07 08:03:25 -0700 | [diff] [blame] | 304 | protected: |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 305 | /** @brief Clear wire encoding and cached FullName |
| 306 | * @note This does not clear the SignatureValue. |
Jeff Thompson | b7aefa00 | 2013-09-16 18:22:00 -0700 | [diff] [blame] | 307 | */ |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 308 | void |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 309 | resetWire(); |
Alexander Afanasyev | fadc97d | 2014-01-03 13:22:10 -0800 | [diff] [blame] | 310 | |
| 311 | private: |
Alexander Afanasyev | 809805d | 2014-02-17 17:20:33 -0800 | [diff] [blame] | 312 | Name m_name; |
| 313 | MetaInfo m_metaInfo; |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 314 | Block m_content; |
Eric Newberry | a3c8bd1 | 2020-05-15 17:27:07 -0700 | [diff] [blame] | 315 | SignatureInfo m_signatureInfo; |
| 316 | Block m_signatureValue; |
Alexander Afanasyev | fadc97d | 2014-01-03 13:22:10 -0800 | [diff] [blame] | 317 | |
Alexander Afanasyev | 809805d | 2014-02-17 17:20:33 -0800 | [diff] [blame] | 318 | mutable Block m_wire; |
Davide Pesavento | a86300a | 2020-12-05 14:55:45 -0500 | [diff] [blame] | 319 | mutable Name m_fullName; // cached FullName computed from m_wire |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 320 | }; |
Alexander Afanasyev | fadc97d | 2014-01-03 13:22:10 -0800 | [diff] [blame] | 321 | |
Davide Pesavento | 88a0d81 | 2017-08-19 21:31:42 -0400 | [diff] [blame] | 322 | #ifndef DOXYGEN |
| 323 | extern template size_t |
| 324 | Data::wireEncode<encoding::EncoderTag>(EncodingBuffer&, bool) const; |
| 325 | |
| 326 | extern template size_t |
| 327 | Data::wireEncode<encoding::EstimatorTag>(EncodingEstimator&, bool) const; |
| 328 | #endif |
| 329 | |
Alexander Afanasyev | a0c5f83 | 2014-06-19 13:27:56 -0700 | [diff] [blame] | 330 | std::ostream& |
| 331 | operator<<(std::ostream& os, const Data& data); |
Alexander Afanasyev | 809805d | 2014-02-17 17:20:33 -0800 | [diff] [blame] | 332 | |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 333 | bool |
| 334 | operator==(const Data& lhs, const Data& rhs); |
| 335 | |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 336 | inline bool |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 337 | operator!=(const Data& lhs, const Data& rhs) |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 338 | { |
Junxiao Shi | 81206d5 | 2017-07-23 12:43:22 +0000 | [diff] [blame] | 339 | return !(lhs == rhs); |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 340 | } |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 341 | |
Alexander Afanasyev | fadc97d | 2014-01-03 13:22:10 -0800 | [diff] [blame] | 342 | } // namespace ndn |
| 343 | |
Davide Pesavento | 905d40f | 2020-06-09 21:33:25 -0400 | [diff] [blame] | 344 | #endif // NDN_CXX_DATA_HPP |