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