blob: 29a38d6d4840dd45172157eb8777174c84578921 [file] [log] [blame]
Jeff Thompson25b4e612013-10-10 16:03:24 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Jeff Thompson5cae5e52013-07-10 19:41:20 -07002/**
Jeff Thompson7687dc02013-09-13 11:54:07 -07003 * Copyright (C) 2013 Regents of the University of California.
4 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompson5cae5e52013-07-10 19:41:20 -07005 * See COPYING for copyright and distribution information.
6 */
7
Jeff Thompson56ec9e22013-08-02 11:34:07 -07008#ifndef NDN_DATA_HPP
Jeff Thompsona0d18c92013-08-06 13:55:32 -07009#define NDN_DATA_HPP
Jeff Thompson5cae5e52013-07-10 19:41:20 -070010
Jeff Thompson46bd45f2013-08-08 16:46:41 -070011#include "common.hpp"
Jeff Thompson53412192013-08-06 13:35:50 -070012#include "name.hpp"
Alexander Afanasyevfadc97d2014-01-03 13:22:10 -080013#include "encoding/block.hpp"
Jeff Thompson25b4e612013-10-10 16:03:24 -070014
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080015#include "signature.hpp"
16#include "meta-info.hpp"
17#include "key-locator.hpp"
Jeff Thompson5cae5e52013-07-10 19:41:20 -070018
19namespace ndn {
Jeff Thompson5cae5e52013-07-10 19:41:20 -070020
Jeff Thompson56ec9e22013-08-02 11:34:07 -070021class Data {
Jeff Thompson5cae5e52013-07-10 19:41:20 -070022public:
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080023 struct Error : public std::runtime_error { Error(const std::string &what) : std::runtime_error(what) {} };
24
Jeff Thompson20af0732013-09-12 17:01:45 -070025 /**
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080026 * @brief Create an empty Data object
Jeff Thompson20af0732013-09-12 17:01:45 -070027 */
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080028 inline
29 Data();
30
Jeff Thompson20af0732013-09-12 17:01:45 -070031 /**
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080032 * @brief Create a new Data object with the given name
Jeff Thompson20af0732013-09-12 17:01:45 -070033 * @param name A reference to the name which is copied.
34 */
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080035 inline
36 Data(const Name& name);
Jeff Thompson25bfdca2013-10-16 17:05:41 -070037
38 /**
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080039 * @brief The virtual destructor.
Jeff Thompsonc69163b2013-10-12 13:49:50 -070040 */
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080041 inline virtual
42 ~Data();
Jeff Thompsonc69163b2013-10-12 13:49:50 -070043
44 /**
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080045 * @brief Encode this Data for a wire format.
Jeff Thompsonb7aefa002013-09-16 18:22:00 -070046 * @return The encoded byte array.
47 */
Alexander Afanasyevfadc97d2014-01-03 13:22:10 -080048 const Block&
49 wireEncode() const;
50
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080051 /**
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 Afanasyevfadc97d2014-01-03 13:22:10 -080055 void
56 wireDecode(const Block &wire);
Alexander Afanasyevfadc97d2014-01-03 13:22:10 -080057
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080058 inline const Name&
59 getName() const;
Jeff Thompson5cae5e52013-07-10 19:41:20 -070060
61 /**
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080062 * @brief Set name to a copy of the given Name.
63 *
Jeff Thompson0cd8c4a2013-09-13 17:46:40 -070064 * @param name The Name which is copied.
Jeff Thompson6d591972013-10-17 11:16:32 -070065 * @return This Data so that you can chain calls to update values.
Jeff Thompson0cd8c4a2013-09-13 17:46:40 -070066 */
Alexander Afanasyeva61757b2014-01-03 15:09:29 -080067 inline void
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080068 setName(const Name& name);
69
70 inline const MetaInfo&
71 getMetaInfo() const;
Jeff Thompson46bd45f2013-08-08 16:46:41 -070072
Jeff Thompson0cd8c4a2013-09-13 17:46:40 -070073 /**
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080074 * @brief Set metaInfo to a copy of the given MetaInfo.
Jeff Thompson0cd8c4a2013-09-13 17:46:40 -070075 * @param metaInfo The MetaInfo which is copied.
Jeff Thompson6d591972013-10-17 11:16:32 -070076 * @return This Data so that you can chain calls to update values.
Jeff Thompson0cd8c4a2013-09-13 17:46:40 -070077 */
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080078 inline void
79 setMetaInfo(const MetaInfo& metaInfo);
Jeff Thompson46bd45f2013-08-08 16:46:41 -070080
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080081 ///////////////////////////////////////////////////////////////
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 Afanasyevfadc97d2014-01-03 13:22:10 -0800103
Jeff Thompson0899c0f2013-09-12 12:15:31 -0700104 /**
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800105 * @brief Set the content to a copy of the data in the vector.
Jeff Thompson0899c0f2013-09-12 12:15:31 -0700106 * @param content A vector whose contents are copied.
Jeff Thompson6d591972013-10-17 11:16:32 -0700107 * @return This Data so that you can chain calls to update values.
Jeff Thompson0899c0f2013-09-12 12:15:31 -0700108 */
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800109 inline void
110 setContent(const uint8_t* content, size_t contentLength);
Alexander Afanasyevfadc97d2014-01-03 13:22:10 -0800111
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800112 inline void
113 setContent(const Block& content);
114
115 inline void
116 setContent(const ConstBufferPtr &contentValue);
Alexander Afanasyevfadc97d2014-01-03 13:22:10 -0800117
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800118 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.
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800124 */
Alexander Afanasyevad39b182014-01-03 15:38:58 -0800125 inline void
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800126 setSignature(const Signature& signature);
Jeff Thompsonc2b7b142013-09-12 15:29:04 -0700127
Alexander Afanasyevad39b182014-01-03 15:38:58 -0800128 inline void
129 setSignatureValue(const Block &value);
130
Jeff Thompson5cae5e52013-07-10 19:41:20 -0700131private:
Jeff Thompsonb7aefa002013-09-16 18:22:00 -0700132 /**
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800133 * @brief Clear the wire encoding.
Jeff Thompsonb7aefa002013-09-16 18:22:00 -0700134 */
Alexander Afanasyevfadc97d2014-01-03 13:22:10 -0800135 inline void
Jeff Thompson0050abe2013-09-17 12:50:25 -0700136 onChanged();
Alexander Afanasyevfadc97d2014-01-03 13:22:10 -0800137
138private:
Jeff Thompson5cae5e52013-07-10 19:41:20 -0700139 Name name_;
Jeff Thompsonfec716d2013-09-11 13:54:36 -0700140 MetaInfo metaInfo_;
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800141 mutable Block content_;
Alexander Afanasyevfadc97d2014-01-03 13:22:10 -0800142 Signature signature_;
143
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800144 mutable Block wire_;
Jeff Thompson5cae5e52013-07-10 19:41:20 -0700145};
Alexander Afanasyevfadc97d2014-01-03 13:22:10 -0800146
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800147inline
148Data::Data()
Alexander Afanasyevec3cbad2013-12-30 17:06:45 -0800149 : content_(Tlv::Content) // empty content
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800150{
151}
152
153inline
154Data::Data(const Name& name)
155 : name_(name)
156{
157}
158
159inline
160Data::~Data()
161{
162}
163
164inline const Name&
165Data::getName() const
166{
167 return name_;
168}
169
170inline void
171Data::setName(const Name& name)
172{
173 onChanged();
174 name_ = name;
175}
176
177inline const MetaInfo&
178Data::getMetaInfo() const
179{
180 return metaInfo_;
181}
182
183inline void
184Data::setMetaInfo(const MetaInfo& metaInfo)
185{
186 onChanged();
187 metaInfo_ = metaInfo;
188}
189
190inline uint32_t
191Data::getContentType() const
192{
193 return metaInfo_.getType();
194}
195
196inline void
197Data::setContentType(uint32_t type)
198{
199 onChanged();
200 metaInfo_.setType(type);
201}
202
203inline Milliseconds
204Data::getFreshnessPeriod() const
205{
206 return metaInfo_.getFreshnessPeriod();
207}
208
209inline void
210Data::setFreshnessPeriod(Milliseconds freshnessPeriod)
211{
212 onChanged();
213 metaInfo_.setFreshnessPeriod(freshnessPeriod);
214}
215
216inline const Block&
217Data::getContent() const
218{
Alexander Afanasyev196b9aa2014-01-31 17:19:16 -0800219 if (content_.empty())
220 content_ = dataBlock(Tlv::Content, reinterpret_cast<const uint8_t*>(0), 0);
221
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800222 if (!content_.hasWire())
223 content_.encode();
224 return content_;
225}
226
227inline void
228Data::setContent(const uint8_t* content, size_t contentLength)
229{
230 onChanged();
231
Alexander Afanasyev277f4692014-01-03 15:29:55 -0800232 content_ = dataBlock(Tlv::Content, content, contentLength);
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800233}
234
235inline void
236Data::setContent(const ConstBufferPtr &contentValue)
237{
238 onChanged();
239
240 content_ = Block(Tlv::Content, contentValue); // not real a wire encoding yet
241}
242
243inline void
244Data::setContent(const Block& content)
Alexander Afanasyeve0c02f52013-12-28 20:44:25 -0800245{
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800246 onChanged();
247
Alexander Afanasyeve0c02f52013-12-28 20:44:25 -0800248 if (content.type() == Tlv::Content)
249 content_ = content;
250 else {
251 content_ = Block(Tlv::Content, content);
252 }
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800253}
254
255inline const Signature&
256Data::getSignature() const
257{
258 return signature_;
259}
260
Alexander Afanasyevad39b182014-01-03 15:38:58 -0800261inline void
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800262Data::setSignature(const Signature& signature)
263{
264 onChanged();
265 signature_ = signature;
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800266}
Alexander Afanasyevfadc97d2014-01-03 13:22:10 -0800267
Alexander Afanasyevad39b182014-01-03 15:38:58 -0800268inline void
269Data::setSignatureValue(const Block &value)
270{
271 onChanged();
272 signature_.setValue(value);
273}
274
275
Alexander Afanasyevfadc97d2014-01-03 13:22:10 -0800276inline void
277Data::onChanged()
278{
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800279 // The values have changed, so the wire format is invalidated
280
281 // !!!Note!!! Signature is not invalidated and it is responsibility of
282 // the application to do proper re-signing if necessary
283
Alexander Afanasyevad39b182014-01-03 15:38:58 -0800284 wire_.reset();
Jeff Thompson5cae5e52013-07-10 19:41:20 -0700285}
286
Alexander Afanasyev4ff3c912014-01-03 15:25:02 -0800287std::ostream&
288operator << (std::ostream &os, const Data &data);
289
Alexander Afanasyevfadc97d2014-01-03 13:22:10 -0800290} // namespace ndn
291
Jeff Thompson5cae5e52013-07-10 19:41:20 -0700292#endif