Jeff Thompson | 25b4e61 | 2013-10-10 16:03:24 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 2 | /** |
Jeff Thompson | 7687dc0 | 2013-09-13 11:54:07 -0700 | [diff] [blame] | 3 | * Copyright (C) 2013 Regents of the University of California. |
| 4 | * @author: Jeff Thompson <jefft0@remap.ucla.edu> |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 5 | * See COPYING for copyright and distribution information. |
| 6 | */ |
| 7 | |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 8 | #ifndef NDN_DATA_HPP |
Jeff Thompson | a0d18c9 | 2013-08-06 13:55:32 -0700 | [diff] [blame] | 9 | #define NDN_DATA_HPP |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 10 | |
Jeff Thompson | 46bd45f | 2013-08-08 16:46:41 -0700 | [diff] [blame] | 11 | #include "common.hpp" |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 12 | #include "name.hpp" |
Alexander Afanasyev | fadc97d | 2014-01-03 13:22:10 -0800 | [diff] [blame] | 13 | #include "encoding/block.hpp" |
Jeff Thompson | 25b4e61 | 2013-10-10 16:03:24 -0700 | [diff] [blame] | 14 | |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 15 | #include "signature.hpp" |
| 16 | #include "meta-info.hpp" |
| 17 | #include "key-locator.hpp" |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 18 | |
| 19 | namespace ndn { |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 20 | |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 21 | class Data { |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 22 | public: |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 23 | struct Error : public std::runtime_error { Error(const std::string &what) : std::runtime_error(what) {} }; |
| 24 | |
Jeff Thompson | 20af073 | 2013-09-12 17:01:45 -0700 | [diff] [blame] | 25 | /** |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 26 | * @brief Create an empty Data object |
Jeff Thompson | 20af073 | 2013-09-12 17:01:45 -0700 | [diff] [blame] | 27 | */ |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 28 | inline |
| 29 | Data(); |
| 30 | |
Jeff Thompson | 20af073 | 2013-09-12 17:01:45 -0700 | [diff] [blame] | 31 | /** |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 32 | * @brief Create a new Data object with the given name |
Jeff Thompson | 20af073 | 2013-09-12 17:01:45 -0700 | [diff] [blame] | 33 | * @param name A reference to the name which is copied. |
| 34 | */ |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 35 | inline |
| 36 | Data(const Name& name); |
Jeff Thompson | 25bfdca | 2013-10-16 17:05:41 -0700 | [diff] [blame] | 37 | |
| 38 | /** |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 39 | * @brief The virtual destructor. |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 40 | */ |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 41 | inline virtual |
| 42 | ~Data(); |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 43 | |
| 44 | /** |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 45 | * @brief Encode this Data for a wire format. |
Jeff Thompson | b7aefa00 | 2013-09-16 18:22:00 -0700 | [diff] [blame] | 46 | * @return The encoded byte array. |
| 47 | */ |
Alexander Afanasyev | fadc97d | 2014-01-03 13:22:10 -0800 | [diff] [blame] | 48 | const Block& |
| 49 | wireEncode() const; |
| 50 | |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 51 | /** |
| 52 | * @brief Decode the input using a particular wire format and update this Data. |
| 53 | * @param input The input byte array to be decoded. |
| 54 | */ |
Alexander Afanasyev | fadc97d | 2014-01-03 13:22:10 -0800 | [diff] [blame] | 55 | void |
| 56 | wireDecode(const Block &wire); |
Alexander Afanasyev | fadc97d | 2014-01-03 13:22:10 -0800 | [diff] [blame] | 57 | |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 58 | inline const Name& |
| 59 | getName() const; |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 60 | |
| 61 | /** |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 62 | * @brief Set name to a copy of the given Name. |
| 63 | * |
Jeff Thompson | 0cd8c4a | 2013-09-13 17:46:40 -0700 | [diff] [blame] | 64 | * @param name The Name which is copied. |
Jeff Thompson | 6d59197 | 2013-10-17 11:16:32 -0700 | [diff] [blame] | 65 | * @return This Data so that you can chain calls to update values. |
Jeff Thompson | 0cd8c4a | 2013-09-13 17:46:40 -0700 | [diff] [blame] | 66 | */ |
Alexander Afanasyev | a61757b | 2014-01-03 15:09:29 -0800 | [diff] [blame] | 67 | inline void |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 68 | setName(const Name& name); |
| 69 | |
| 70 | inline const MetaInfo& |
| 71 | getMetaInfo() const; |
Jeff Thompson | 46bd45f | 2013-08-08 16:46:41 -0700 | [diff] [blame] | 72 | |
Jeff Thompson | 0cd8c4a | 2013-09-13 17:46:40 -0700 | [diff] [blame] | 73 | /** |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 74 | * @brief Set metaInfo to a copy of the given MetaInfo. |
Jeff Thompson | 0cd8c4a | 2013-09-13 17:46:40 -0700 | [diff] [blame] | 75 | * @param metaInfo The MetaInfo which is copied. |
Jeff Thompson | 6d59197 | 2013-10-17 11:16:32 -0700 | [diff] [blame] | 76 | * @return This Data so that you can chain calls to update values. |
Jeff Thompson | 0cd8c4a | 2013-09-13 17:46:40 -0700 | [diff] [blame] | 77 | */ |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 78 | inline void |
| 79 | setMetaInfo(const MetaInfo& metaInfo); |
Jeff Thompson | 46bd45f | 2013-08-08 16:46:41 -0700 | [diff] [blame] | 80 | |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 81 | /////////////////////////////////////////////////////////////// |
| 82 | // MetaInfo proxy methods |
| 83 | inline uint32_t |
| 84 | getContentType() const; |
| 85 | |
| 86 | inline void |
| 87 | setContentType(uint32_t type); |
| 88 | |
| 89 | inline Milliseconds |
| 90 | getFreshnessPeriod() const; |
| 91 | |
| 92 | inline void |
| 93 | setFreshnessPeriod(Milliseconds freshnessPeriod); |
| 94 | |
| 95 | /** |
| 96 | * @brief Get content Block |
| 97 | * |
| 98 | * To access content value, one can use value()/value_size() or |
| 99 | * value_begin()/value_end() methods of the Block class |
| 100 | */ |
| 101 | inline const Block& |
| 102 | getContent() const; |
Alexander Afanasyev | fadc97d | 2014-01-03 13:22:10 -0800 | [diff] [blame] | 103 | |
Jeff Thompson | 0899c0f | 2013-09-12 12:15:31 -0700 | [diff] [blame] | 104 | /** |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 105 | * @brief Set the content to a copy of the data in the vector. |
Jeff Thompson | 0899c0f | 2013-09-12 12:15:31 -0700 | [diff] [blame] | 106 | * @param content A vector whose contents are copied. |
Jeff Thompson | 6d59197 | 2013-10-17 11:16:32 -0700 | [diff] [blame] | 107 | * @return This Data so that you can chain calls to update values. |
Jeff Thompson | 0899c0f | 2013-09-12 12:15:31 -0700 | [diff] [blame] | 108 | */ |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 109 | inline void |
| 110 | setContent(const uint8_t* content, size_t contentLength); |
Alexander Afanasyev | fadc97d | 2014-01-03 13:22:10 -0800 | [diff] [blame] | 111 | |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 112 | inline void |
| 113 | setContent(const Block& content); |
| 114 | |
| 115 | inline void |
| 116 | setContent(const ConstBufferPtr &contentValue); |
Alexander Afanasyev | fadc97d | 2014-01-03 13:22:10 -0800 | [diff] [blame] | 117 | |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 118 | inline const Signature& |
| 119 | getSignature() const; |
| 120 | |
| 121 | /** |
| 122 | * @brief Set the signature to a copy of the given signature. |
| 123 | * @param signature The signature object which is cloned. |
| 124 | * @return This Data so that you can chain calls to update values. |
| 125 | */ |
| 126 | inline Data& |
| 127 | setSignature(const Signature& signature); |
Jeff Thompson | c2b7b14 | 2013-09-12 15:29:04 -0700 | [diff] [blame] | 128 | |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 129 | private: |
Jeff Thompson | b7aefa00 | 2013-09-16 18:22:00 -0700 | [diff] [blame] | 130 | /** |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 131 | * @brief Clear the wire encoding. |
Jeff Thompson | b7aefa00 | 2013-09-16 18:22:00 -0700 | [diff] [blame] | 132 | */ |
Alexander Afanasyev | fadc97d | 2014-01-03 13:22:10 -0800 | [diff] [blame] | 133 | inline void |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 134 | onChanged(); |
Alexander Afanasyev | fadc97d | 2014-01-03 13:22:10 -0800 | [diff] [blame] | 135 | |
| 136 | private: |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 137 | Name name_; |
Jeff Thompson | fec716d | 2013-09-11 13:54:36 -0700 | [diff] [blame] | 138 | MetaInfo metaInfo_; |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 139 | mutable Block content_; |
Alexander Afanasyev | fadc97d | 2014-01-03 13:22:10 -0800 | [diff] [blame] | 140 | Signature signature_; |
| 141 | |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 142 | mutable Block wire_; |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 143 | }; |
Alexander Afanasyev | fadc97d | 2014-01-03 13:22:10 -0800 | [diff] [blame] | 144 | |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 145 | inline |
| 146 | Data::Data() |
| 147 | { |
| 148 | } |
| 149 | |
| 150 | inline |
| 151 | Data::Data(const Name& name) |
| 152 | : name_(name) |
| 153 | { |
| 154 | } |
| 155 | |
| 156 | inline |
| 157 | Data::~Data() |
| 158 | { |
| 159 | } |
| 160 | |
| 161 | inline const Name& |
| 162 | Data::getName() const |
| 163 | { |
| 164 | return name_; |
| 165 | } |
| 166 | |
| 167 | inline void |
| 168 | Data::setName(const Name& name) |
| 169 | { |
| 170 | onChanged(); |
| 171 | name_ = name; |
| 172 | } |
| 173 | |
| 174 | inline const MetaInfo& |
| 175 | Data::getMetaInfo() const |
| 176 | { |
| 177 | return metaInfo_; |
| 178 | } |
| 179 | |
| 180 | inline void |
| 181 | Data::setMetaInfo(const MetaInfo& metaInfo) |
| 182 | { |
| 183 | onChanged(); |
| 184 | metaInfo_ = metaInfo; |
| 185 | } |
| 186 | |
| 187 | inline uint32_t |
| 188 | Data::getContentType() const |
| 189 | { |
| 190 | return metaInfo_.getType(); |
| 191 | } |
| 192 | |
| 193 | inline void |
| 194 | Data::setContentType(uint32_t type) |
| 195 | { |
| 196 | onChanged(); |
| 197 | metaInfo_.setType(type); |
| 198 | } |
| 199 | |
| 200 | inline Milliseconds |
| 201 | Data::getFreshnessPeriod() const |
| 202 | { |
| 203 | return metaInfo_.getFreshnessPeriod(); |
| 204 | } |
| 205 | |
| 206 | inline void |
| 207 | Data::setFreshnessPeriod(Milliseconds freshnessPeriod) |
| 208 | { |
| 209 | onChanged(); |
| 210 | metaInfo_.setFreshnessPeriod(freshnessPeriod); |
| 211 | } |
| 212 | |
| 213 | inline const Block& |
| 214 | Data::getContent() const |
| 215 | { |
| 216 | if (!content_.hasWire()) |
| 217 | content_.encode(); |
| 218 | return content_; |
| 219 | } |
| 220 | |
| 221 | inline void |
| 222 | Data::setContent(const uint8_t* content, size_t contentLength) |
| 223 | { |
| 224 | onChanged(); |
| 225 | |
| 226 | OBufferStream os; |
| 227 | Tlv::writeVarNumber(os, Tlv::Content); |
| 228 | Tlv::writeVarNumber(os, contentLength); |
| 229 | os.write(reinterpret_cast<const char *>(content), contentLength); |
| 230 | |
| 231 | content_ = Block(os.buf()); |
| 232 | } |
| 233 | |
| 234 | inline void |
| 235 | Data::setContent(const ConstBufferPtr &contentValue) |
| 236 | { |
| 237 | onChanged(); |
| 238 | |
| 239 | content_ = Block(Tlv::Content, contentValue); // not real a wire encoding yet |
| 240 | } |
| 241 | |
| 242 | inline void |
| 243 | Data::setContent(const Block& content) |
| 244 | { |
| 245 | onChanged(); |
| 246 | |
| 247 | content_ = content; |
| 248 | } |
| 249 | |
| 250 | inline const Signature& |
| 251 | Data::getSignature() const |
| 252 | { |
| 253 | return signature_; |
| 254 | } |
| 255 | |
| 256 | inline Data& |
| 257 | Data::setSignature(const Signature& signature) |
| 258 | { |
| 259 | onChanged(); |
| 260 | signature_ = signature; |
| 261 | |
| 262 | return *this; |
| 263 | } |
Alexander Afanasyev | fadc97d | 2014-01-03 13:22:10 -0800 | [diff] [blame] | 264 | |
| 265 | inline void |
| 266 | Data::onChanged() |
| 267 | { |
Alexander Afanasyev | 2ba8f66 | 2014-01-05 22:53:18 -0800 | [diff] [blame] | 268 | // The values have changed, so the wire format is invalidated |
| 269 | |
| 270 | // !!!Note!!! Signature is not invalidated and it is responsibility of |
| 271 | // the application to do proper re-signing if necessary |
| 272 | |
| 273 | wire_ = Block(); |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 274 | } |
| 275 | |
Alexander Afanasyev | 4ff3c91 | 2014-01-03 15:25:02 -0800 | [diff] [blame] | 276 | std::ostream& |
| 277 | operator << (std::ostream &os, const Data &data); |
| 278 | |
Alexander Afanasyev | fadc97d | 2014-01-03 13:22:10 -0800 | [diff] [blame] | 279 | } // namespace ndn |
| 280 | |
Jeff Thompson | 5cae5e5 | 2013-07-10 19:41:20 -0700 | [diff] [blame] | 281 | #endif |