unpack.hpp 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. //
  2. // MessagePack for C++ deserializing routine
  3. //
  4. // Copyright (C) 2016 KONDO Takatoshi
  5. //
  6. // Distributed under the Boost Software License, Version 1.0.
  7. // (See accompanying file LICENSE_1_0.txt or copy at
  8. // http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef MSGPACK_V2_UNPACK_HPP
  11. #define MSGPACK_V2_UNPACK_HPP
  12. #if MSGPACK_DEFAULT_API_VERSION >= 2
  13. #include "msgpack/unpack_decl.hpp"
  14. #include "msgpack/parse.hpp"
  15. #include "msgpack/create_object_visitor.hpp"
  16. namespace msgpack {
  17. /// @cond
  18. MSGPACK_API_VERSION_NAMESPACE(v2) {
  19. /// @endcond
  20. struct zone_push_finalizer {
  21. zone_push_finalizer(msgpack::zone& z):m_z(&z) {}
  22. void set_zone(msgpack::zone& z) { m_z = &z; }
  23. void operator()(char* buffer) {
  24. m_z->push_finalizer(&detail::decr_count, buffer);
  25. }
  26. msgpack::zone* m_z;
  27. };
  28. class unpacker : public parser<unpacker, zone_push_finalizer>,
  29. public detail::create_object_visitor {
  30. typedef parser<unpacker, zone_push_finalizer> parser_t;
  31. public:
  32. unpacker(unpack_reference_func f = &unpacker::default_reference_func,
  33. void* user_data = MSGPACK_NULLPTR,
  34. std::size_t initial_buffer_size = MSGPACK_UNPACKER_INIT_BUFFER_SIZE,
  35. unpack_limit const& limit = unpack_limit())
  36. :parser_t(m_finalizer, initial_buffer_size),
  37. detail::create_object_visitor(f, user_data, limit),
  38. m_z(new msgpack::zone),
  39. m_finalizer(*m_z) {
  40. set_zone(*m_z);
  41. set_referenced(false);
  42. }
  43. detail::create_object_visitor& visitor() { return *this; }
  44. /// Unpack one msgpack::object.
  45. /**
  46. *
  47. * @param result The object that contains unpacked data.
  48. * @param referenced If the unpacked object contains reference of the buffer,
  49. * then set as true, otherwise false.
  50. *
  51. * @return If one msgpack::object is unpacked, then return true, if msgpack::object is incomplete
  52. * and additional data is required, then return false. If data format is invalid, throw
  53. * msgpack::parse_error.
  54. *
  55. * See:
  56. * https://github.com/msgpack/msgpack-c/wiki/v1_1_cpp_unpacker#msgpack-controls-a-buffer
  57. */
  58. bool next(msgpack::object_handle& result, bool& referenced);
  59. /// Unpack one msgpack::object.
  60. /**
  61. *
  62. * @param result The object that contains unpacked data.
  63. *
  64. * @return If one msgpack::object is unpacked, then return true, if msgpack::object is incomplete
  65. * and additional data is required, then return false. If data format is invalid, throw
  66. * msgpack::parse_error.
  67. *
  68. * See:
  69. * https://github.com/msgpack/msgpack-c/wiki/v1_1_cpp_unpacker#msgpack-controls-a-buffer
  70. */
  71. bool next(msgpack::object_handle& result);
  72. msgpack::zone* release_zone();
  73. void reset_zone();
  74. bool flush_zone();
  75. private:
  76. static bool default_reference_func(msgpack::type::object_type /*type*/, std::size_t /*len*/, void*) {
  77. return true;
  78. }
  79. msgpack::unique_ptr<msgpack::zone> m_z;
  80. zone_push_finalizer m_finalizer;
  81. };
  82. inline bool unpacker::next(msgpack::object_handle& result, bool& referenced) {
  83. bool ret = parser_t::next();
  84. if (ret) {
  85. referenced = detail::create_object_visitor::referenced();
  86. result.zone().reset( release_zone() );
  87. result.set(data());
  88. reset();
  89. }
  90. else {
  91. result.zone().reset();
  92. result.set(msgpack::object());
  93. }
  94. return ret;
  95. }
  96. inline bool unpacker::next(msgpack::object_handle& result) {
  97. bool referenced;
  98. return next(result, referenced);
  99. }
  100. inline msgpack::zone* unpacker::release_zone()
  101. {
  102. if(!flush_zone()) {
  103. return MSGPACK_NULLPTR;
  104. }
  105. msgpack::zone* r = new msgpack::zone;
  106. msgpack::zone* old = m_z.release();
  107. m_z.reset(r);
  108. set_zone(*m_z);
  109. m_finalizer.set_zone(*m_z);
  110. return old;
  111. }
  112. inline void unpacker::reset_zone()
  113. {
  114. m_z->clear();
  115. }
  116. inline bool unpacker::flush_zone()
  117. {
  118. if(referenced()) {
  119. try {
  120. m_z->push_finalizer(&detail::decr_count, get_raw_buffer());
  121. } catch (...) {
  122. return false;
  123. }
  124. set_referenced(false);
  125. detail::incr_count(get_raw_buffer());
  126. }
  127. return true;
  128. }
  129. inline msgpack::object_handle unpack(
  130. const char* data, std::size_t len, std::size_t& off, bool& referenced,
  131. unpack_reference_func f, void* user_data,
  132. unpack_limit const& limit
  133. )
  134. {
  135. msgpack::object obj;
  136. msgpack::unique_ptr<msgpack::zone> z(new msgpack::zone);
  137. referenced = false;
  138. std::size_t noff = off;
  139. parse_return ret = detail::unpack_imp(
  140. data, len, noff, *z, obj, referenced, f, user_data, limit);
  141. switch(ret) {
  142. case PARSE_SUCCESS:
  143. off = noff;
  144. return msgpack::object_handle(obj, msgpack::move(z));
  145. case PARSE_EXTRA_BYTES:
  146. off = noff;
  147. return msgpack::object_handle(obj, msgpack::move(z));
  148. default:
  149. break;
  150. }
  151. return msgpack::object_handle();
  152. }
  153. inline msgpack::object_handle unpack(
  154. const char* data, std::size_t len, std::size_t& off,
  155. unpack_reference_func f, void* user_data,
  156. unpack_limit const& limit)
  157. {
  158. bool referenced;
  159. return msgpack::v2::unpack(data, len, off, referenced, f, user_data, limit);
  160. }
  161. inline msgpack::object_handle unpack(
  162. const char* data, std::size_t len, bool& referenced,
  163. unpack_reference_func f, void* user_data,
  164. unpack_limit const& limit)
  165. {
  166. std::size_t off = 0;
  167. return msgpack::v2::unpack(data, len, off, referenced, f, user_data, limit);
  168. }
  169. inline msgpack::object_handle unpack(
  170. const char* data, std::size_t len,
  171. unpack_reference_func f, void* user_data,
  172. unpack_limit const& limit)
  173. {
  174. bool referenced;
  175. std::size_t off = 0;
  176. return msgpack::v2::unpack(data, len, off, referenced, f, user_data, limit);
  177. }
  178. inline void unpack(
  179. msgpack::object_handle& result,
  180. const char* data, std::size_t len, std::size_t& off, bool& referenced,
  181. unpack_reference_func f, void* user_data,
  182. unpack_limit const& limit)
  183. {
  184. msgpack::object obj;
  185. msgpack::unique_ptr<msgpack::zone> z(new msgpack::zone);
  186. referenced = false;
  187. std::size_t noff = off;
  188. parse_return ret = detail::unpack_imp(
  189. data, len, noff, *z, obj, referenced, f, user_data, limit);
  190. switch(ret) {
  191. case PARSE_SUCCESS:
  192. off = noff;
  193. result.set(obj);
  194. result.zone() = msgpack::move(z);
  195. return;
  196. case PARSE_EXTRA_BYTES:
  197. off = noff;
  198. result.set(obj);
  199. result.zone() = msgpack::move(z);
  200. return;
  201. default:
  202. return;
  203. }
  204. }
  205. inline void unpack(
  206. msgpack::object_handle& result,
  207. const char* data, std::size_t len, std::size_t& off,
  208. unpack_reference_func f, void* user_data,
  209. unpack_limit const& limit)
  210. {
  211. bool referenced;
  212. msgpack::v2::unpack(result, data, len, off, referenced, f, user_data, limit);
  213. }
  214. inline void unpack(
  215. msgpack::object_handle& result,
  216. const char* data, std::size_t len, bool& referenced,
  217. unpack_reference_func f, void* user_data,
  218. unpack_limit const& limit)
  219. {
  220. std::size_t off = 0;
  221. msgpack::v2::unpack(result, data, len, off, referenced, f, user_data, limit);
  222. }
  223. inline void unpack(
  224. msgpack::object_handle& result,
  225. const char* data, std::size_t len,
  226. unpack_reference_func f, void* user_data,
  227. unpack_limit const& limit)
  228. {
  229. bool referenced;
  230. std::size_t off = 0;
  231. msgpack::v2::unpack(result, data, len, off, referenced, f, user_data, limit);
  232. }
  233. inline msgpack::object unpack(
  234. msgpack::zone& z,
  235. const char* data, std::size_t len, std::size_t& off, bool& referenced,
  236. unpack_reference_func f, void* user_data,
  237. unpack_limit const& limit)
  238. {
  239. msgpack::object obj;
  240. std::size_t noff = off;
  241. referenced = false;
  242. parse_return ret = detail::unpack_imp(
  243. data, len, noff, z, obj, referenced, f, user_data, limit);
  244. switch(ret) {
  245. case PARSE_SUCCESS:
  246. off = noff;
  247. return obj;
  248. case PARSE_EXTRA_BYTES:
  249. off = noff;
  250. return obj;
  251. default:
  252. break;
  253. }
  254. return obj;
  255. }
  256. inline msgpack::object unpack(
  257. msgpack::zone& z,
  258. const char* data, std::size_t len, std::size_t& off,
  259. unpack_reference_func f, void* user_data,
  260. unpack_limit const& limit)
  261. {
  262. bool referenced;
  263. return msgpack::v2::unpack(z, data, len, off, referenced, f, user_data, limit);
  264. }
  265. inline msgpack::object unpack(
  266. msgpack::zone& z,
  267. const char* data, std::size_t len, bool& referenced,
  268. unpack_reference_func f, void* user_data,
  269. unpack_limit const& limit)
  270. {
  271. std::size_t off = 0;
  272. return msgpack::v2::unpack(z, data, len, off, referenced, f, user_data, limit);
  273. }
  274. inline msgpack::object unpack(
  275. msgpack::zone& z,
  276. const char* data, std::size_t len,
  277. unpack_reference_func f, void* user_data,
  278. unpack_limit const& limit)
  279. {
  280. bool referenced;
  281. std::size_t off = 0;
  282. return msgpack::v2::unpack(z, data, len, off, referenced, f, user_data, limit);
  283. }
  284. namespace detail {
  285. inline parse_return
  286. unpack_imp(const char* data, std::size_t len, std::size_t& off,
  287. msgpack::zone& result_zone, msgpack::object& result, bool& referenced,
  288. unpack_reference_func f = MSGPACK_NULLPTR, void* user_data = MSGPACK_NULLPTR,
  289. unpack_limit const& limit = unpack_limit())
  290. {
  291. create_object_visitor v(f, user_data, limit);
  292. v.set_zone(result_zone);
  293. referenced = false;
  294. v.set_referenced(referenced);
  295. parse_return ret = parse_imp(data, len, off, v);
  296. referenced = v.referenced();
  297. result = v.data();
  298. return ret;
  299. }
  300. } // namespace detail
  301. /// @cond
  302. } // MSGPACK_API_VERSION_NAMESPACE(v2)
  303. /// @endcond
  304. } // namespace msgpack
  305. #endif // MSGPACK_DEFAULT_API_VERSION >= 2
  306. #endif // MSGPACK_V2_UNPACK_HPP