blob: 9407ccf9477582418714873f24319bcf2958ac0b [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 */
Junxiao Shi1a750b42015-02-28 22:20:45 -0700143 DEPRECATED(
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700144 static bool
Junxiao Shi1a750b42015-02-28 22:20:45 -0700145 fromBuffer(const ConstBufferPtr& buffer, size_t offset, Block& block))
Junxiao Shi02a4bf32015-02-21 21:07:46 -0700146 {
147 bool isOk = false;
148 std::tie(isOk, block) = Block::fromBuffer(buffer, offset);
149 return isOk;
150 }
151
152 /** @brief Try to construct block from raw buffer
153 * @param buffer the raw buffer to copy bytes from
154 * @param maxSize the maximum size of constructed block;
155 * @p buffer must have a size of at least @p maxSize
156 *
157 * This method does not throw upon decoding error.
158 * This method copies the bytes into a new Buffer.
159 *
160 * @return true and the Block, if Block is successfully created; otherwise false
161 */
162 static std::tuple<bool, Block>
163 fromBuffer(const uint8_t* buffer, size_t maxSize);
164
165 /** @deprecated use fromBuffer(const uint8_t*, size_t)
166 */
Junxiao Shi1a750b42015-02-28 22:20:45 -0700167 DEPRECATED(
Junxiao Shi02a4bf32015-02-21 21:07:46 -0700168 static bool
Junxiao Shi1a750b42015-02-28 22:20:45 -0700169 fromBuffer(const uint8_t* buffer, size_t maxSize, Block& block))
Junxiao Shi02a4bf32015-02-21 21:07:46 -0700170 {
171 bool isOk = false;
172 std::tie(isOk, block) = Block::fromBuffer(buffer, maxSize);
173 return isOk;
174 }
Alexander Afanasyev196b9aa2014-01-31 17:19:16 -0800175
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700176public: // wire format
177 /** @brief Check if the Block is empty
Alexander Afanasyev196b9aa2014-01-31 17:19:16 -0800178 */
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700179 bool
Alexander Afanasyev196b9aa2014-01-31 17:19:16 -0800180 empty() const;
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700181
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700182 /** @brief Check if the Block has fully encoded wire
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800183 */
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700184 bool
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800185 hasWire() const;
186
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700187 /** @brief Reset wire buffer of the element
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800188 */
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700189 void
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800190 reset();
191
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700192 /** @brief Reset wire buffer but keep sub elements (if any)
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800193 */
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700194 void
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800195 resetWire();
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800196
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700197 Buffer::const_iterator
198 begin() const;
199
200 Buffer::const_iterator
201 end() const;
202
203 const uint8_t*
204 wire() const;
205
206 size_t
207 size() const;
208
209public: // type and value
210 uint32_t
211 type() const;
212
213 /** @brief Check if the Block has value block (no type and length are encoded)
214 */
215 bool
216 hasValue() const;
217
218 Buffer::const_iterator
219 value_begin() const;
220
221 Buffer::const_iterator
222 value_end() const;
223
224 const uint8_t*
225 value() const;
226
227 size_t
228 value_size() const;
229
230public: // sub elements
231 /** @brief Parse wire buffer into subblocks
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800232 *
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700233 * This method is not really const, but it does not modify any data. It simply
234 * parses contents of the buffer into subblocks
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800235 */
236 void
237 parse() const;
238
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700239 /** @brief Encode subblocks into wire buffer
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800240 */
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800241 void
242 encode();
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700243
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700244 /** @brief Get the first subelement of the requested type
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800245 */
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700246 const Block&
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800247 get(uint32_t type) const;
248
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700249 element_const_iterator
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800250 find(uint32_t type) const;
251
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700252 void
Alexander Afanasyevf5c35ae2014-01-17 16:06:31 -0800253 remove(uint32_t type);
254
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700255 element_iterator
Joao Pereira7476ebf2015-07-07 14:54:39 -0400256 erase(element_const_iterator position);
Alexander Afanasyevf5c35ae2014-01-17 16:06:31 -0800257
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700258 element_iterator
Joao Pereira7476ebf2015-07-07 14:54:39 -0400259 erase(element_const_iterator first, element_const_iterator last);
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700260
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700261 void
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700262 push_back(const Block& element);
263
Joao Pereira7476ebf2015-07-07 14:54:39 -0400264 /**
265 * @brief insert Insert a new element in a specific position
266 * @param pos Position to insert the new element
267 * @param element Element to be inserted
268 * @return An iterator that points to the first of the newly inserted elements.
269 */
270 element_iterator
271 insert(element_const_iterator pos, const Block& element);
272
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700273 /** @brief Get all subelements
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800274 */
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700275 const element_container&
276 elements() const;
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800277
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700278 element_const_iterator
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800279 elements_begin() const;
280
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700281 element_const_iterator
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800282 elements_end() const;
283
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700284 size_t
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800285 elements_size() const;
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700286
Yingdi Yu4270f202014-01-28 14:19:16 -0800287 Block
288 blockFromValue() const;
289
Alexander Afanasyev74633892015-02-08 18:08:46 -0800290 /**
291 * @brief Get underlying buffer
292 */
293 shared_ptr<const Buffer>
294 getBuffer() const;
295
Junxiao Shiaf8eeea2014-03-31 20:10:56 -0700296public: // EqualityComparable concept
297 bool
298 operator==(const Block& other) const;
299
300 bool
301 operator!=(const Block& other) const;
302
Alexander Afanasyev6a05b4b2014-07-18 17:23:00 -0700303public: // ConvertibleToConstBuffer
304 operator boost::asio::const_buffer() const;
305
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800306protected:
Alexander Afanasyev74633892015-02-08 18:08:46 -0800307 shared_ptr<const Buffer> m_buffer;
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800308
309 uint32_t m_type;
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700310
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800311 Buffer::const_iterator m_begin;
312 Buffer::const_iterator m_end;
313 uint32_t m_size;
Alexander Afanasyev937aa782014-03-21 13:17:57 -0700314
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800315 Buffer::const_iterator m_value_begin;
316 Buffer::const_iterator m_value_end;
317
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800318 mutable element_container m_subBlocks;
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800319};
320
321////////////////////////////////////////////////////////////////////////////////
322////////////////////////////////////////////////////////////////////////////////
323////////////////////////////////////////////////////////////////////////////////
324
Alexander Afanasyev74633892015-02-08 18:08:46 -0800325inline shared_ptr<const Buffer>
326Block::getBuffer() const
327{
328 return m_buffer;
329}
330
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700331inline uint32_t
332Block::type() const
333{
334 return m_type;
335}
336
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800337inline Buffer::const_iterator
338Block::value_begin() const
339{
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800340 return m_value_begin;
341}
342
343inline Buffer::const_iterator
344Block::value_end() const
345{
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800346 return m_value_end;
347}
348
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800349inline const Block::element_container&
Alexander Afanasyeva465e972014-03-22 17:21:49 -0700350Block::elements() const
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800351{
352 return m_subBlocks;
353}
354
Junxiao Shi81a6c5d2014-11-30 00:14:42 -0700355} // namespace ndn
Alexander Afanasyev13bb51a2014-01-02 19:13:26 -0800356
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700357#endif // NDN_ENCODING_BLOCK_HPP