blob: 7bd6a88925aebaeef587029d84045fb7bd806bb6 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07002/**
Alexander Afanasyevaf99f462015-01-19 21:43:09 -08003 * Copyright (c) 2013-2015 Regents of the University of California.
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -08004 *
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07005 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -08006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * 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 Afanasyevdfa52c42014-04-24 21:10:11 -070020 *
21 * @author Alexander Afanasyev <http://lasr.cs.ucla.edu/afanasyev/index.html>
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -080022 */
23
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070024#ifndef NDN_ENCODING_BLOCK_HPP
25#define NDN_ENCODING_BLOCK_HPP
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -080026
Alexander Afanasyev19508852014-01-29 01:01:51 -080027#include "../common.hpp"
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -080028
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -080029#include "buffer.hpp"
30#include "tlv.hpp"
Alexander Afanasyev74633892015-02-08 18:08:46 -080031#include "encoding-buffer-fwd.hpp"
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -080032
Alexander Afanasyev6a05b4b2014-07-18 17:23:00 -070033namespace boost {
34namespace asio {
35class const_buffer;
36} // namespace asio
37} // namespace boost
38
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -080039namespace ndn {
40
Junxiao Shi81a6c5d2014-11-30 00:14:42 -070041/** @brief Class representing a wire element of NDN-TLV packet format
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -080042 */
43class Block
44{
45public:
Alexander Afanasyev8ea763d2014-02-06 20:32:52 -080046 typedef std::vector<Block> element_container;
47 typedef element_container::iterator element_iterator;
48 typedef element_container::const_iterator element_const_iterator;
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -080049
Steve DiBenedetto54ce6682014-07-22 13:22:57 -060050 class Error : public tlv::Error
Alexander Afanasyev937aa782014-03-21 13:17:57 -070051 {
Alexander Afanasyeva465e972014-03-22 17:21:49 -070052 public:
53 explicit
54 Error(const std::string& what)
Steve DiBenedetto54ce6682014-07-22 13:22:57 -060055 : tlv::Error(what)
Alexander Afanasyeva465e972014-03-22 17:21:49 -070056 {
57 }
Alexander Afanasyev937aa782014-03-21 13:17:57 -070058 };
59
Junxiao Shi81a6c5d2014-11-30 00:14:42 -070060public: // constructor, creation, assignment
61 /** @brief Create an empty Block
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -080062 */
63 Block();
64
Junxiao Shi81a6c5d2014-11-30 00:14:42 -070065 /** @brief Create a Block based on EncodingBuffer object
Alexander Afanasyev15151312014-02-16 00:53:51 -080066 */
67 explicit
68 Block(const EncodingBuffer& buffer);
Alexander Afanasyev937aa782014-03-21 13:17:57 -070069
Junxiao Shi81a6c5d2014-11-30 00:14:42 -070070 /** @brief Create a Block from the raw buffer with Type-Length parsing
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -080071 */
Alexander Afanasyev197e5652014-06-13 16:56:31 -070072 explicit
Alexander Afanasyev937aa782014-03-21 13:17:57 -070073 Block(const ConstBufferPtr& buffer);
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -080074
Junxiao Shi81a6c5d2014-11-30 00:14:42 -070075 /** @brief Create a Block from a buffer, directly specifying boundaries
76 * of the block within the buffer
Alexander Afanasyev187bc482014-02-06 15:04:04 -080077 *
Junxiao Shi81a6c5d2014-11-30 00:14:42 -070078 * This overload will automatically detect type and position of the value within the block
Alexander Afanasyev187bc482014-02-06 15:04:04 -080079 */
Alexander Afanasyev937aa782014-03-21 13:17:57 -070080 Block(const ConstBufferPtr& buffer,
81 const Buffer::const_iterator& begin, const Buffer::const_iterator& end,
Alexander Afanasyev5964fb72014-02-18 12:42:45 -080082 bool verifyLength = true);
Alexander Afanasyev937aa782014-03-21 13:17:57 -070083
Junxiao Shi81a6c5d2014-11-30 00:14:42 -070084 /** @brief Create a Block from the raw buffer with Type-Length parsing
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -080085 */
Alexander Afanasyev937aa782014-03-21 13:17:57 -070086 Block(const uint8_t* buffer, size_t maxlength);
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -080087
Junxiao Shi81a6c5d2014-11-30 00:14:42 -070088 /** @brief Create a Block from the raw buffer with Type-Length parsing
89 */
Alexander Afanasyev937aa782014-03-21 13:17:57 -070090 Block(const void* buffer, size_t maxlength);
Yingdi Yu27158392014-01-20 13:04:20 -080091
Junxiao Shi81a6c5d2014-11-30 00:14:42 -070092 /** @brief Create a Block from the wire buffer (no parsing)
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -080093 *
Junxiao Shi81a6c5d2014-11-30 00:14:42 -070094 * This overload does not do any parsing
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -080095 */
Alexander Afanasyev937aa782014-03-21 13:17:57 -070096 Block(const ConstBufferPtr& wire,
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -080097 uint32_t type,
Alexander Afanasyev937aa782014-03-21 13:17:57 -070098 const Buffer::const_iterator& begin, const Buffer::const_iterator& end,
99 const Buffer::const_iterator& valueBegin, const Buffer::const_iterator& valueEnd);
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800100
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700101 /** @brief Create Block of a specific type with empty wire buffer
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800102 */
Alexander Afanasyevf42ce132014-01-07 13:32:30 -0800103 explicit
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800104 Block(uint32_t type);
105
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700106 /** @brief Create a Block of a specific type with the specified value
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800107 *
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700108 * The underlying buffer holds only value Additional operations are needed
109 * to construct wire encoding, one need to prepend the wire buffer with type
110 * and value-length VAR-NUMBERs
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800111 */
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700112 Block(uint32_t type, const ConstBufferPtr& value);
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800113
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700114 /** @brief Create a nested Block of a specific type with the specified value
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800115 *
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700116 * The underlying buffer holds only value. Additional operations are needed
117 * to construct wire encoding, one need to prepend the wire buffer with type
118 * and value-length VAR-NUMBERs
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800119 */
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700120 Block(uint32_t type, const Block& value);
121
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700122 /** @brief Create a Block from an input stream
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700123 */
Alexander Afanasyev9c578182014-05-14 17:28:28 -0700124 static Block
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700125 fromStream(std::istream& is);
126
Junxiao Shi02a4bf32015-02-21 21:07:46 -0700127 /** @brief Try to construct block from Buffer
128 * @param buffer the buffer to construct block from
129 * @note buffer is passed by value because the constructed block
130 * takes shared ownership of the buffer
131 * @param offset offset from beginning of \p buffer to construct Block from
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700132 *
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700133 * This method does not throw upon decoding error.
Junxiao Shi02a4bf32015-02-21 21:07:46 -0700134 * This method does not copy the bytes.
135 *
136 * @return true and the Block, if Block is successfully created; otherwise false
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700137 */
Junxiao Shi02a4bf32015-02-21 21:07:46 -0700138 static std::tuple<bool, Block>
139 fromBuffer(ConstBufferPtr buffer, size_t offset);
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700140
Junxiao Shi02a4bf32015-02-21 21:07:46 -0700141 /** @deprecated use fromBuffer(ConstBufferPtr, size_t)
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700142 */
143 static bool
Junxiao Shi02a4bf32015-02-21 21:07:46 -0700144 fromBuffer(const ConstBufferPtr& buffer, size_t offset, Block& block)
145 {
146 bool isOk = false;
147 std::tie(isOk, block) = Block::fromBuffer(buffer, offset);
148 return isOk;
149 }
150
151 /** @brief Try to construct block from raw buffer
152 * @param buffer the raw buffer to copy bytes from
153 * @param maxSize the maximum size of constructed block;
154 * @p buffer must have a size of at least @p maxSize
155 *
156 * This method does not throw upon decoding error.
157 * This method copies the bytes into a new Buffer.
158 *
159 * @return true and the Block, if Block is successfully created; otherwise false
160 */
161 static std::tuple<bool, Block>
162 fromBuffer(const uint8_t* buffer, size_t maxSize);
163
164 /** @deprecated use fromBuffer(const uint8_t*, size_t)
165 */
166 static bool
167 fromBuffer(const uint8_t* buffer, size_t maxSize, Block& block)
168 {
169 bool isOk = false;
170 std::tie(isOk, block) = Block::fromBuffer(buffer, maxSize);
171 return isOk;
172 }
Alexander Afanasyev196b9aa2014-01-31 17:19:16 -0800173
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700174public: // wire format
175 /** @brief Check if the Block is empty
Alexander Afanasyev196b9aa2014-01-31 17:19:16 -0800176 */
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700177 bool
Alexander Afanasyev196b9aa2014-01-31 17:19:16 -0800178 empty() const;
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700179
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700180 /** @brief Check if the Block has fully encoded wire
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800181 */
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700182 bool
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800183 hasWire() const;
184
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700185 /** @brief Reset wire buffer of the element
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800186 */
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700187 void
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800188 reset();
189
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700190 /** @brief Reset wire buffer but keep sub elements (if any)
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800191 */
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700192 void
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800193 resetWire();
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800194
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700195 Buffer::const_iterator
196 begin() const;
197
198 Buffer::const_iterator
199 end() const;
200
201 const uint8_t*
202 wire() const;
203
204 size_t
205 size() const;
206
207public: // type and value
208 uint32_t
209 type() const;
210
211 /** @brief Check if the Block has value block (no type and length are encoded)
212 */
213 bool
214 hasValue() const;
215
216 Buffer::const_iterator
217 value_begin() const;
218
219 Buffer::const_iterator
220 value_end() const;
221
222 const uint8_t*
223 value() const;
224
225 size_t
226 value_size() const;
227
228public: // sub elements
229 /** @brief Parse wire buffer into subblocks
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800230 *
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700231 * This method is not really const, but it does not modify any data. It simply
232 * parses contents of the buffer into subblocks
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800233 */
234 void
235 parse() const;
236
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700237 /** @brief Encode subblocks into wire buffer
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800238 */
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800239 void
240 encode();
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700241
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700242 /** @brief Get the first subelement of the requested type
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800243 */
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700244 const Block&
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800245 get(uint32_t type) const;
246
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700247 element_const_iterator
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800248 find(uint32_t type) const;
249
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700250 void
Alexander Afanasyevf5c35ae2014-01-17 16:06:31 -0800251 remove(uint32_t type);
252
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700253 element_iterator
Alexander Afanasyevf5c35ae2014-01-17 16:06:31 -0800254 erase(element_iterator position);
255
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700256 element_iterator
Alexander Afanasyevf5c35ae2014-01-17 16:06:31 -0800257 erase(element_iterator first, element_iterator last);
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700258
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700259 void
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700260 push_back(const Block& element);
261
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700262 /** @brief Get all subelements
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800263 */
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700264 const element_container&
265 elements() const;
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800266
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700267 element_const_iterator
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800268 elements_begin() const;
269
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700270 element_const_iterator
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800271 elements_end() const;
272
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700273 size_t
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800274 elements_size() const;
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700275
Yingdi Yu4270f202014-01-28 14:19:16 -0800276 Block
277 blockFromValue() const;
278
Alexander Afanasyev74633892015-02-08 18:08:46 -0800279 /**
280 * @brief Get underlying buffer
281 */
282 shared_ptr<const Buffer>
283 getBuffer() const;
284
Junxiao Shiaf8eeea2014-03-31 20:10:56 -0700285public: // EqualityComparable concept
286 bool
287 operator==(const Block& other) const;
288
289 bool
290 operator!=(const Block& other) const;
291
Alexander Afanasyev6a05b4b2014-07-18 17:23:00 -0700292public: // ConvertibleToConstBuffer
293 operator boost::asio::const_buffer() const;
294
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800295protected:
Alexander Afanasyev74633892015-02-08 18:08:46 -0800296 shared_ptr<const Buffer> m_buffer;
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800297
298 uint32_t m_type;
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700299
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800300 Buffer::const_iterator m_begin;
301 Buffer::const_iterator m_end;
302 uint32_t m_size;
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700303
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800304 Buffer::const_iterator m_value_begin;
305 Buffer::const_iterator m_value_end;
306
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800307 mutable element_container m_subBlocks;
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800308};
309
310////////////////////////////////////////////////////////////////////////////////
311////////////////////////////////////////////////////////////////////////////////
312////////////////////////////////////////////////////////////////////////////////
313
Alexander Afanasyev74633892015-02-08 18:08:46 -0800314inline shared_ptr<const Buffer>
315Block::getBuffer() const
316{
317 return m_buffer;
318}
319
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800320inline bool
Alexander Afanasyev196b9aa2014-01-31 17:19:16 -0800321Block::empty() const
322{
323 return m_type == std::numeric_limits<uint32_t>::max();
324}
325
Alexander Afanasyev196b9aa2014-01-31 17:19:16 -0800326inline bool
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800327Block::hasWire() const
328{
329 return m_buffer && (m_begin != m_end);
330}
331
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800332inline Buffer::const_iterator
333Block::begin() const
334{
335 if (!hasWire())
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700336 throw Error("Underlying wire buffer is empty");
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800337
338 return m_begin;
339}
340
341inline Buffer::const_iterator
342Block::end() const
343{
344 if (!hasWire())
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700345 throw Error("Underlying wire buffer is empty");
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800346
347 return m_end;
348}
349
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700350inline const uint8_t*
351Block::wire() const
352{
353 if (!hasWire())
354 throw Error("(Block::wire) Underlying wire buffer is empty");
355
356 return &*m_begin;
357}
358
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800359inline size_t
360Block::size() const
361{
362 if (hasWire() || hasValue()) {
363 return m_size;
364 }
365 else
366 throw Error("Block size cannot be determined (undefined block size)");
367}
368
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700369inline uint32_t
370Block::type() const
371{
372 return m_type;
373}
374
375inline bool
376Block::hasValue() const
377{
378 return static_cast<bool>(m_buffer);
379}
380
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800381inline Buffer::const_iterator
382Block::value_begin() const
383{
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800384 return m_value_begin;
385}
386
387inline Buffer::const_iterator
388Block::value_end() const
389{
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800390 return m_value_end;
391}
392
393inline const uint8_t*
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800394Block::value() const
395{
396 if (!hasValue())
Alexander Afanasyev380420b2014-02-09 20:52:29 -0800397 return 0;
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700398
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800399 return &*m_value_begin;
400}
401
402inline size_t
403Block::value_size() const
404{
405 if (!hasValue())
Alexander Afanasyev8ea763d2014-02-06 20:32:52 -0800406 return 0;
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800407
408 return m_value_end - m_value_begin;
409}
410
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700411inline Block::element_iterator
412Block::erase(Block::element_iterator position)
413{
414 resetWire();
415 return m_subBlocks.erase(position);
416}
417
418inline Block::element_iterator
419Block::erase(Block::element_iterator first, Block::element_iterator last)
420{
421 resetWire();
422 return m_subBlocks.erase(first, last);
423}
424
425inline void
426Block::push_back(const Block& element)
427{
428 resetWire();
429 m_subBlocks.push_back(element);
430}
431
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800432inline const Block::element_container&
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700433Block::elements() const
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800434{
435 return m_subBlocks;
436}
437
438inline Block::element_const_iterator
439Block::elements_begin() const
440{
441 return m_subBlocks.begin();
442}
443
444inline Block::element_const_iterator
445Block::elements_end() const
446{
447 return m_subBlocks.end();
448}
449
450inline size_t
451Block::elements_size() const
452{
453 return m_subBlocks.size();
454}
455
Junxiao Shiaf8eeea2014-03-31 20:10:56 -0700456inline bool
Junxiao Shiaf8eeea2014-03-31 20:10:56 -0700457Block::operator!=(const Block& other) const
458{
459 return !this->operator==(other);
460}
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800461
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700462} // namespace ndn
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800463
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700464#endif // NDN_ENCODING_BLOCK_HPP