Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 88a0d81 | 2017-08-19 21:31:42 -0400 | [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 | 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. |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | #ifndef NDN_META_INFO_HPP |
| 23 | #define NDN_META_INFO_HPP |
| 24 | |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 25 | #include "encoding/block.hpp" |
Alexander Afanasyev | 95b0e34 | 2014-02-12 21:34:44 -0800 | [diff] [blame] | 26 | #include "encoding/encoding-buffer.hpp" |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 27 | #include "name-component.hpp" |
Davide Pesavento | 88a0d81 | 2017-08-19 21:31:42 -0400 | [diff] [blame] | 28 | #include "util/time.hpp" |
| 29 | |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 30 | #include <list> |
Alexander Afanasyev | 95b0e34 | 2014-02-12 21:34:44 -0800 | [diff] [blame] | 31 | |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 32 | namespace ndn { |
| 33 | |
Eric Newberry | b555b00 | 2017-05-17 00:30:44 -0700 | [diff] [blame] | 34 | const time::milliseconds DEFAULT_FRESHNESS_PERIOD = time::milliseconds::zero(); |
| 35 | |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 36 | /** |
Davide Pesavento | 1fd0024 | 2018-05-20 00:11:01 -0400 | [diff] [blame] | 37 | * A MetaInfo holds the meta info which is signed inside the data packet. |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 38 | * |
| 39 | * The class allows experimentation with application-defined meta information blocks, |
| 40 | * which slightly violates NDN-TLV specification. When using the application-defined |
| 41 | * meta information blocks be aware that this may result in packet drop (NFD and |
| 42 | * previous versions of ndn-cxx will gracefully accept such packet). |
| 43 | * |
| 44 | * The following definition of MetaInfo block is assumed in this implementation (compared |
| 45 | * to the NDN-TLV spec, definition extended to allow optional AppMetaInfo TLV blocks): |
| 46 | * |
| 47 | * MetaInfo ::= META-INFO-TYPE TLV-LENGTH |
| 48 | * ContentType? |
| 49 | * FreshnessPeriod? |
| 50 | * FinalBlockId? |
| 51 | * AppMetaInfo* |
| 52 | * |
| 53 | * AppMetaInfo ::= any TLV block with type in the restricted application range [128, 252] |
| 54 | * |
| 55 | * Note that AppMetaInfo blocks are application-defined and must have TLV type from |
| 56 | * the restricted application range [128, 252]. |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 57 | */ |
Alexander Afanasyev | 2a7f720 | 2014-04-23 14:25:29 -0700 | [diff] [blame] | 58 | class MetaInfo |
| 59 | { |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 60 | public: |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 61 | class Error : public tlv::Error |
| 62 | { |
| 63 | public: |
Junxiao Shi | 68b5385 | 2018-07-25 13:56:38 -0600 | [diff] [blame] | 64 | using tlv::Error::Error; |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 65 | }; |
| 66 | |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 67 | MetaInfo(); |
Alexander Afanasyev | 95b0e34 | 2014-02-12 21:34:44 -0800 | [diff] [blame] | 68 | |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 69 | /** |
| 70 | * @brief Create from wire encoding |
| 71 | */ |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 72 | explicit |
| 73 | MetaInfo(const Block& block); |
Alexander Afanasyev | c348f83 | 2014-02-17 16:35:17 -0800 | [diff] [blame] | 74 | |
Alexander Afanasyev | 7463389 | 2015-02-08 18:08:46 -0800 | [diff] [blame] | 75 | template<encoding::Tag TAG> |
Alexander Afanasyev | c348f83 | 2014-02-17 16:35:17 -0800 | [diff] [blame] | 76 | size_t |
Alexander Afanasyev | d5c48e0 | 2015-06-24 11:58:14 -0700 | [diff] [blame] | 77 | wireEncode(EncodingImpl<TAG>& encoder) const; |
Alexander Afanasyev | c348f83 | 2014-02-17 16:35:17 -0800 | [diff] [blame] | 78 | |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 79 | const Block& |
Alexander Afanasyev | c348f83 | 2014-02-17 16:35:17 -0800 | [diff] [blame] | 80 | wireEncode() const; |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 81 | |
Alexander Afanasyev | c348f83 | 2014-02-17 16:35:17 -0800 | [diff] [blame] | 82 | void |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 83 | wireDecode(const Block& wire); |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 84 | |
Junxiao Shi | a464b92 | 2014-11-12 21:13:06 -0700 | [diff] [blame] | 85 | public: // getter/setter |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame] | 86 | /** @brief return ContentType |
| 87 | * |
| 88 | * If ContentType element is omitted, returns \c tlv::ContentType_Blob. |
| 89 | */ |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 90 | uint32_t |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame] | 91 | getType() const |
| 92 | { |
| 93 | return m_type; |
| 94 | } |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 95 | |
Junxiao Shi | a464b92 | 2014-11-12 21:13:06 -0700 | [diff] [blame] | 96 | /** @brief set ContentType |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame] | 97 | * @param type a number defined in \c tlv::ContentTypeValue |
Junxiao Shi | a464b92 | 2014-11-12 21:13:06 -0700 | [diff] [blame] | 98 | */ |
Alexander Afanasyev | 95b0e34 | 2014-02-12 21:34:44 -0800 | [diff] [blame] | 99 | MetaInfo& |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 100 | setType(uint32_t type); |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 101 | |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame] | 102 | /** @brief return FreshnessPeriod |
| 103 | * |
| 104 | * If FreshnessPeriod element is omitted, returns \c DEFAULT_FRESHNESS_PERIOD. |
| 105 | */ |
| 106 | time::milliseconds |
| 107 | getFreshnessPeriod() const |
| 108 | { |
| 109 | return m_freshnessPeriod; |
| 110 | } |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 111 | |
Eric Newberry | b555b00 | 2017-05-17 00:30:44 -0700 | [diff] [blame] | 112 | /** @brief set FreshnessPeriod |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame] | 113 | * @throw std::invalid_argument specified FreshnessPeriod is negative |
Eric Newberry | b555b00 | 2017-05-17 00:30:44 -0700 | [diff] [blame] | 114 | */ |
Alexander Afanasyev | 95b0e34 | 2014-02-12 21:34:44 -0800 | [diff] [blame] | 115 | MetaInfo& |
Eric Newberry | b555b00 | 2017-05-17 00:30:44 -0700 | [diff] [blame] | 116 | setFreshnessPeriod(time::milliseconds freshnessPeriod); |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 117 | |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame] | 118 | /** @brief return FinalBlockId |
| 119 | */ |
| 120 | const optional<name::Component>& |
| 121 | getFinalBlock() const |
| 122 | { |
| 123 | return m_finalBlockId; |
| 124 | } |
Alexander Afanasyev | 95b0e34 | 2014-02-12 21:34:44 -0800 | [diff] [blame] | 125 | |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame] | 126 | /** @brief set FinalBlockId |
| 127 | */ |
| 128 | MetaInfo& |
| 129 | setFinalBlock(optional<name::Component> finalBlockId); |
| 130 | |
| 131 | /** @brief return FinalBlockId |
| 132 | * @deprecated use @c getFinalBlock |
| 133 | * |
| 134 | * If FinalBlockId element is omitted, returns a default-constructed @c name::Component. |
| 135 | * This is indistinguishable from having an empty GenericNameComponent as FinalBlockId. |
| 136 | */ |
Davide Pesavento | 1fd0024 | 2018-05-20 00:11:01 -0400 | [diff] [blame] | 137 | [[deprecated("use getFinalBlock")]] |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame] | 138 | name::Component |
| 139 | getFinalBlockId() const |
| 140 | { |
| 141 | return getFinalBlock().value_or(name::Component()); |
| 142 | } |
| 143 | |
| 144 | /** @brief set FinalBlockId |
| 145 | * @deprecated use @c setFinalBlock |
| 146 | * |
| 147 | * Passing a default-constructed @c name::Component removes FinalBlockId element. |
| 148 | * This API does not support adding an empty GenericNameComponent as FinalBlockId. |
| 149 | */ |
Davide Pesavento | 1fd0024 | 2018-05-20 00:11:01 -0400 | [diff] [blame] | 150 | [[deprecated("use setFinalBlock")]] |
Alexander Afanasyev | 95b0e34 | 2014-02-12 21:34:44 -0800 | [diff] [blame] | 151 | MetaInfo& |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 152 | setFinalBlockId(const name::Component& finalBlockId); |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 153 | |
Junxiao Shi | a464b92 | 2014-11-12 21:13:06 -0700 | [diff] [blame] | 154 | public: // app-defined MetaInfo items |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 155 | /** |
| 156 | * @brief Get all app-defined MetaInfo items |
| 157 | * |
| 158 | * @note Warning: Experimental API, which may change or disappear in the future |
| 159 | * |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame] | 160 | * @note If MetaInfo is decoded from wire and setType, setFreshnessPeriod, or setFinalBlock |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 161 | * is called before *AppMetaInfo, all app-defined blocks will be lost |
| 162 | */ |
| 163 | const std::list<Block>& |
| 164 | getAppMetaInfo() const; |
| 165 | |
| 166 | /** |
| 167 | * @brief Set app-defined MetaInfo items |
| 168 | * |
| 169 | * This method will replace all existing app-defined MetaInfo items, if they existed. |
| 170 | * |
| 171 | * @throw Error if some block in @p info has type not in the application range |
| 172 | * (http://named-data.net/doc/ndn-tlv/types.html) |
| 173 | * |
| 174 | * @note Warning: Experimental API, which may change or disappear in the future |
| 175 | * |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame] | 176 | * @note If MetaInfo is decoded from wire and setType, setFreshnessPeriod, or setFinalBlock |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 177 | * is called before *AppMetaInfo, all app-defined blocks will be lost |
| 178 | */ |
| 179 | MetaInfo& |
| 180 | setAppMetaInfo(const std::list<Block>& info); |
| 181 | |
| 182 | /** |
| 183 | * @brief Add an app-defined MetaInfo item |
| 184 | * |
| 185 | * @throw Error if @p block has type not in the application range |
| 186 | * (http://named-data.net/doc/ndn-tlv/types.html) |
| 187 | * |
| 188 | * @note Warning: Experimental API, which may change or disappear in the future |
| 189 | * |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame] | 190 | * @note If MetaInfo is decoded from wire and setType, setFreshnessPeriod, or setFinalBlock |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 191 | * is called before *AppMetaInfo, all app-defined blocks will be lost |
| 192 | */ |
| 193 | MetaInfo& |
| 194 | addAppMetaInfo(const Block& block); |
| 195 | |
| 196 | /** |
| 197 | * @brief Remove a first app-defined MetaInfo item with type @p tlvType |
| 198 | * |
| 199 | * @return true if an item was deleted |
| 200 | * |
| 201 | * @note Warning: Experimental API, which may change or disappear in the future |
| 202 | * |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame] | 203 | * @note If MetaInfo is decoded from wire and setType, setFreshnessPeriod, or setFinalBlock |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 204 | * is called before *AppMetaInfo, all app-defined blocks will be lost |
| 205 | */ |
| 206 | bool |
| 207 | removeAppMetaInfo(uint32_t tlvType); |
| 208 | |
| 209 | /** |
| 210 | * @brief Find a first app-defined MetaInfo item of type @p tlvType |
| 211 | * |
| 212 | * @return NULL if an item is not found, otherwise const pointer to the item |
| 213 | * |
| 214 | * @throw Error if @p tlvType is not in the application range |
| 215 | * (http://named-data.net/doc/ndn-tlv/types.html) |
| 216 | * |
| 217 | * @note Warning: Experimental API, which may change or disappear in the future |
| 218 | * |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame] | 219 | * @note If MetaInfo is decoded from wire and setType, setFreshnessPeriod, or setFinalBlock |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 220 | * is called before *AppMetaInfo, all app-defined blocks will be lost |
| 221 | */ |
| 222 | const Block* |
| 223 | findAppMetaInfo(uint32_t tlvType) const; |
| 224 | |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 225 | public: // EqualityComparable concept |
| 226 | bool |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 227 | operator==(const MetaInfo& other) const; |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 228 | |
| 229 | bool |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 230 | operator!=(const MetaInfo& other) const; |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 231 | |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 232 | private: |
Alexander Afanasyev | 95b0e34 | 2014-02-12 21:34:44 -0800 | [diff] [blame] | 233 | uint32_t m_type; |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 234 | time::milliseconds m_freshnessPeriod; |
Junxiao Shi | ebfe4a2 | 2018-04-01 23:53:40 +0000 | [diff] [blame] | 235 | optional<name::Component> m_finalBlockId; |
Shock Jiang | ca7ea70 | 2014-10-02 11:23:25 -0700 | [diff] [blame] | 236 | std::list<Block> m_appMetaInfo; |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 237 | |
Alexander Afanasyev | 95b0e34 | 2014-02-12 21:34:44 -0800 | [diff] [blame] | 238 | mutable Block m_wire; |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 239 | }; |
| 240 | |
Davide Pesavento | 88a0d81 | 2017-08-19 21:31:42 -0400 | [diff] [blame] | 241 | NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS(MetaInfo); |
| 242 | |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 243 | std::ostream& |
| 244 | operator<<(std::ostream& os, const MetaInfo& info); |
| 245 | |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 246 | inline bool |
| 247 | MetaInfo::operator==(const MetaInfo& other) const |
Alexander Afanasyev | 4ff3c91 | 2014-01-03 15:25:02 -0800 | [diff] [blame] | 248 | { |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 249 | return wireEncode() == other.wireEncode(); |
| 250 | } |
Alexander Afanasyev | 4ff3c91 | 2014-01-03 15:25:02 -0800 | [diff] [blame] | 251 | |
Alexander Afanasyev | 01065fb | 2014-10-02 13:01:46 -0700 | [diff] [blame] | 252 | inline bool |
| 253 | MetaInfo::operator!=(const MetaInfo& other) const |
| 254 | { |
| 255 | return !(*this == other); |
Alexander Afanasyev | 4ff3c91 | 2014-01-03 15:25:02 -0800 | [diff] [blame] | 256 | } |
| 257 | |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 258 | } // namespace ndn |
| 259 | |
| 260 | #endif // NDN_META_INFO_HPP |