x3_parse.hpp 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873
  1. //
  2. // MessagePack for C++ deserializing routine
  3. //
  4. // Copyright (C) 2017 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_X3_PARSE_HPP
  11. #define MSGPACK_V2_X3_PARSE_HPP
  12. #if defined(MSGPACK_USE_X3_PARSE)
  13. #include <boost/version.hpp>
  14. #if BOOST_VERSION >= 106100
  15. #include "msgpack/versioning.hpp"
  16. #include "msgpack/x3_parse_decl.hpp"
  17. #if __GNUC__ >= 4
  18. #pragma GCC diagnostic push
  19. #pragma GCC diagnostic ignored "-Wunused-parameter"
  20. #endif // __GNUC__ >= 4
  21. #include <boost/config/warning_disable.hpp>
  22. #include <boost/spirit/home/x3.hpp>
  23. #include <boost/spirit/home/x3/binary.hpp>
  24. namespace msgpack {
  25. /// @cond
  26. MSGPACK_API_VERSION_NAMESPACE(v2) {
  27. /// @endcond
  28. namespace detail {
  29. namespace x3 = boost::spirit::x3;
  30. using x3::byte_;
  31. // byte range utility
  32. const auto byte_range = [](const std::uint8_t from, const std::uint8_t to) {
  33. const auto check = [from, to](auto& ctx)
  34. {
  35. const std::uint8_t value = x3::_attr(ctx);
  36. x3::_val(ctx) = value;
  37. x3::_pass(ctx) = from <= value && value <= to;
  38. };
  39. return x3::byte_ [check];
  40. };
  41. // MessagePack rule
  42. const auto mp_positive_fixint = byte_range(0x00, 0x7f);
  43. const auto mp_fixmap = byte_range(0x80, 0x8f);
  44. const auto mp_fixarray = byte_range(0x90, 0x9f);
  45. const auto mp_fixstr = byte_range(0xa0, 0xbf);
  46. const auto mp_nil = x3::byte_(0xc0);
  47. const auto mp_false = x3::byte_(0xc2);
  48. const auto mp_true = x3::byte_(0xc3);
  49. const auto mp_bin8 = x3::byte_(0xc4);
  50. const auto mp_bin16 = x3::byte_(0xc5);
  51. const auto mp_bin32 = x3::byte_(0xc6);
  52. const auto mp_ext8 = x3::byte_(0xc7);
  53. const auto mp_ext16 = x3::byte_(0xc8);
  54. const auto mp_ext32 = x3::byte_(0xc9);
  55. const auto mp_float32 = x3::byte_(0xca);
  56. const auto mp_float64 = x3::byte_(0xcb);
  57. const auto mp_uint8 = x3::byte_(0xcc);
  58. const auto mp_uint16 = x3::byte_(0xcd);
  59. const auto mp_uint32 = x3::byte_(0xce);
  60. const auto mp_uint64 = x3::byte_(0xcf);
  61. const auto mp_int8 = x3::byte_(0xd0);
  62. const auto mp_int16 = x3::byte_(0xd1);
  63. const auto mp_int32 = x3::byte_(0xd2);
  64. const auto mp_int64 = x3::byte_(0xd3);
  65. const auto mp_fixext1 = x3::byte_(0xd4);
  66. const auto mp_fixext2 = x3::byte_(0xd5);
  67. const auto mp_fixext4 = x3::byte_(0xd6);
  68. const auto mp_fixext8 = x3::byte_(0xd7);
  69. const auto mp_fixext16 = x3::byte_(0xd8);
  70. const auto mp_str8 = x3::byte_(0xd9);
  71. const auto mp_str16 = x3::byte_(0xda);
  72. const auto mp_str32 = x3::byte_(0xdb);
  73. const auto mp_array16 = x3::byte_(0xdc);
  74. const auto mp_array32 = x3::byte_(0xdd);
  75. const auto mp_map16 = x3::byte_(0xde);
  76. const auto mp_map32 = x3::byte_(0xdf);
  77. const auto mp_negative_fixint = byte_range(0xe0, 0xff);
  78. const auto mp_d_uint8 = x3::byte_;
  79. const auto mp_d_uint16 = x3::big_word;
  80. const auto mp_d_uint32 = x3::big_dword;
  81. const auto mp_d_uint64 = x3::big_qword;
  82. const auto mp_d_int8 = x3::byte_;
  83. const auto mp_d_int16 = x3::big_word;
  84. const auto mp_d_int32 = x3::big_dword;
  85. const auto mp_d_int64 = x3::big_qword;
  86. x3::rule<class mp_object> const mp_object("mp_object");
  87. x3::rule<class array_items> const array_item("array_item");
  88. x3::rule<class map_items> const map_item("map_item");
  89. x3::rule<class kv> const kv("kv");
  90. struct tag_app_specific {};
  91. struct index_size {
  92. enum struct type_t {
  93. array,
  94. map,
  95. other
  96. };
  97. index_size(std::size_t size, type_t type = type_t::other):size(size), type(type) {}
  98. std::size_t index = 0;
  99. std::size_t size;
  100. type_t type;
  101. };
  102. template <typename Visitor>
  103. struct app_specific {
  104. template <typename Vis>
  105. app_specific(Vis&& vis):vis(vis) {}
  106. std::vector<index_size> index_sizes;
  107. Visitor vis;
  108. };
  109. template <typename Visitor>
  110. app_specific<Visitor> make_app_specific(Visitor&& vis) {
  111. return app_specific<Visitor>(std::forward<Visitor>(vis));
  112. }
  113. const auto more = [](auto &ctx) {
  114. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  115. _pass(ctx) = app_specific.index_sizes.back().index++ < app_specific.index_sizes.back().size;
  116. };
  117. const auto done = [](auto &ctx) {
  118. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  119. if (app_specific.index_sizes.back().index == app_specific.index_sizes.back().size + 1) {
  120. _pass(ctx) = true;
  121. switch (app_specific.index_sizes.back().type) {
  122. case index_size::type_t::array:
  123. app_specific.vis.end_array();
  124. break;
  125. case index_size::type_t::map:
  126. app_specific.vis.end_map();
  127. break;
  128. case index_size::type_t::other:
  129. break;
  130. }
  131. app_specific.index_sizes.pop_back();
  132. }
  133. else {
  134. _pass(ctx) = false;
  135. }
  136. };
  137. const auto mp_object_def =
  138. // -----------------------------------------------
  139. mp_nil [
  140. (
  141. [](auto& ctx){
  142. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  143. app_specific.vis.visit_nil();
  144. }
  145. )
  146. ]
  147. |
  148. // -----------------------------------------------
  149. mp_true [
  150. (
  151. [](auto& ctx){
  152. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  153. app_specific.vis.visit_boolean(true);
  154. }
  155. )
  156. ]
  157. |
  158. // -----------------------------------------------
  159. mp_false [
  160. (
  161. [](auto& ctx){
  162. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  163. app_specific.vis.visit_boolean(false);
  164. }
  165. )
  166. ]
  167. |
  168. // -----------------------------------------------
  169. mp_positive_fixint [
  170. (
  171. [](auto& ctx){
  172. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  173. app_specific.vis.visit_positive_integer(_attr(ctx));
  174. }
  175. )
  176. ]
  177. |
  178. // -----------------------------------------------
  179. mp_negative_fixint [
  180. (
  181. [](auto& ctx){
  182. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  183. std::int8_t val = _attr(ctx);
  184. app_specific.vis.visit_negative_integer(val);
  185. }
  186. )
  187. ]
  188. |
  189. // -----------------------------------------------
  190. mp_uint8 >> mp_d_uint8 [
  191. (
  192. [](auto& ctx){
  193. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  194. app_specific.vis.visit_negative_integer(_attr(ctx));
  195. }
  196. )
  197. ]
  198. |
  199. // -----------------------------------------------
  200. mp_uint16 >> mp_d_uint16 [
  201. (
  202. [](auto& ctx){
  203. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  204. app_specific.vis.visit_positive_integer(_attr(ctx));
  205. }
  206. )
  207. ]
  208. |
  209. // -----------------------------------------------
  210. mp_uint32 >> mp_d_uint32 [
  211. (
  212. [](auto& ctx){
  213. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  214. app_specific.vis.visit_positive_integer(_attr(ctx));
  215. }
  216. )
  217. ]
  218. |
  219. // -----------------------------------------------
  220. mp_uint64 >> mp_d_uint64 [
  221. (
  222. [](auto& ctx){
  223. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  224. app_specific.vis.visit_positive_integer(_attr(ctx));
  225. }
  226. )
  227. ]
  228. |
  229. // -----------------------------------------------
  230. mp_int8 >> mp_d_int8 [
  231. (
  232. [](auto& ctx){
  233. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  234. std::int8_t val = _attr(ctx);
  235. app_specific.vis.visit_negative_integer(val);
  236. }
  237. )
  238. ]
  239. |
  240. // -----------------------------------------------
  241. mp_int16 >> mp_d_int16 [
  242. (
  243. [](auto& ctx){
  244. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  245. std::int16_t val = _attr(ctx);
  246. app_specific.vis.visit_negative_integer(val);
  247. }
  248. )
  249. ]
  250. |
  251. // -----------------------------------------------
  252. mp_int32 >> mp_d_int32 [
  253. (
  254. [](auto& ctx){
  255. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  256. std::int32_t val = _attr(ctx);
  257. app_specific.vis.visit_negative_integer(val);
  258. }
  259. )
  260. ]
  261. |
  262. // -----------------------------------------------
  263. mp_int64 >> mp_d_int64 [
  264. (
  265. [](auto& ctx){
  266. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  267. std::int64_t val = _attr(ctx);
  268. app_specific.vis.visit_negative_integer(val);
  269. }
  270. )
  271. ]
  272. |
  273. // -----------------------------------------------
  274. mp_float32 >> mp_d_uint32 [
  275. (
  276. [](auto& ctx){
  277. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  278. union { uint32_t i; float f; } mem = { _attr(ctx) };
  279. app_specific.vis.visit_float32(mem.f);
  280. }
  281. )
  282. ]
  283. |
  284. // -----------------------------------------------
  285. mp_float64 >> mp_d_uint64 [
  286. (
  287. [](auto& ctx){
  288. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  289. union { uint64_t i; double f; } mem = { _attr(ctx) };
  290. #if defined(TARGET_OS_IPHONE)
  291. // ok
  292. #elif defined(__arm__) && !(__ARM_EABI__) // arm-oabi
  293. // https://github.com/msgpack/msgpack-perl/pull/1
  294. mem.i = (mem.i & 0xFFFFFFFFUL) << 32UL | (mem.i >> 32UL);
  295. #endif
  296. app_specific.vis.visit_float64(mem.f);
  297. }
  298. )
  299. ]
  300. |
  301. // -----------------------------------------------
  302. mp_fixstr [
  303. (
  304. [](auto& ctx){
  305. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  306. std::size_t size = _attr(ctx) & 0b00011111;
  307. app_specific.index_sizes.emplace_back(size);
  308. }
  309. )
  310. ]
  311. >>
  312. x3::raw [
  313. *(x3::eps [more] >> x3::char_)
  314. >> x3::eps [done]
  315. ][
  316. (
  317. [](auto& ctx){
  318. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  319. auto const& str = _attr(ctx);
  320. std::size_t size = std::distance(str.begin(), str.end());
  321. app_specific.vis.visit_str(size ? &str.front() : nullptr, size);
  322. }
  323. )
  324. ]
  325. |
  326. // -----------------------------------------------
  327. mp_str8 >> mp_d_uint8 [
  328. (
  329. [](auto& ctx){
  330. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  331. app_specific.index_sizes.emplace_back(_attr(ctx));
  332. }
  333. )
  334. ]
  335. >>
  336. x3::raw [
  337. *(x3::eps [more] >> x3::char_)
  338. >> x3::eps [done]
  339. ][
  340. (
  341. [](auto& ctx){
  342. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  343. auto const& str = _attr(ctx);
  344. std::size_t size = std::distance(str.begin(), str.end());
  345. app_specific.vis.visit_str(size ? &str.front() : nullptr, size);
  346. }
  347. )
  348. ]
  349. |
  350. // -----------------------------------------------
  351. mp_str16 >> mp_d_uint16 [
  352. (
  353. [](auto& ctx){
  354. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  355. app_specific.index_sizes.emplace_back(_attr(ctx));
  356. }
  357. )
  358. ]
  359. >>
  360. x3::raw [
  361. *(x3::eps [more] >> x3::char_)
  362. >> x3::eps [done]
  363. ][
  364. (
  365. [](auto& ctx){
  366. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  367. auto const& str = _attr(ctx);
  368. std::size_t size = std::distance(str.begin(), str.end());
  369. app_specific.vis.visit_str(size ? &str.front() : nullptr, size);
  370. }
  371. )
  372. ]
  373. |
  374. // -----------------------------------------------
  375. mp_str32 >> mp_d_uint32 [
  376. (
  377. [](auto& ctx){
  378. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  379. app_specific.index_sizes.emplace_back(_attr(ctx));
  380. }
  381. )
  382. ]
  383. >>
  384. x3::raw [
  385. *(x3::eps [more] >> x3::char_)
  386. >> x3::eps [done]
  387. ][
  388. (
  389. [](auto& ctx){
  390. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  391. auto const& str = _attr(ctx);
  392. std::size_t size = std::distance(str.begin(), str.end());
  393. app_specific.vis.visit_str(size ? &str.front() : nullptr, size);
  394. }
  395. )
  396. ]
  397. |
  398. // -----------------------------------------------
  399. mp_bin8 >> mp_d_uint8 [
  400. (
  401. [](auto& ctx){
  402. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  403. app_specific.index_sizes.emplace_back(_attr(ctx));
  404. }
  405. )
  406. ]
  407. >>
  408. x3::raw [
  409. *(x3::eps [more] >> x3::char_)
  410. >> x3::eps [done]
  411. ][
  412. (
  413. [](auto& ctx){
  414. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  415. auto const& bin = _attr(ctx);
  416. std::size_t size = std::distance(bin.begin(), bin.end());
  417. app_specific.vis.visit_bin(size ? &bin.front() : nullptr, size);
  418. }
  419. )
  420. ]
  421. |
  422. // -----------------------------------------------
  423. mp_bin16 >> mp_d_uint16 [
  424. (
  425. [](auto& ctx){
  426. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  427. app_specific.index_sizes.emplace_back(_attr(ctx));
  428. }
  429. )
  430. ]
  431. >>
  432. x3::raw [
  433. *(x3::eps [more] >> x3::char_)
  434. >> x3::eps [done]
  435. ][
  436. (
  437. [](auto& ctx){
  438. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  439. auto const& bin = _attr(ctx);
  440. std::size_t size = std::distance(bin.begin(), bin.end());
  441. app_specific.vis.visit_bin(size ? &bin.front() : nullptr, size);
  442. }
  443. )
  444. ]
  445. |
  446. // -----------------------------------------------
  447. mp_bin32 >> mp_d_uint32 [
  448. (
  449. [](auto& ctx){
  450. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  451. app_specific.index_sizes.emplace_back(_attr(ctx));
  452. }
  453. )
  454. ]
  455. >>
  456. x3::raw [
  457. *(x3::eps [more] >> x3::char_)
  458. >> x3::eps [done]
  459. ][
  460. (
  461. [](auto& ctx){
  462. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  463. auto const& bin = _attr(ctx);
  464. std::size_t size = std::distance(bin.begin(), bin.end());
  465. app_specific.vis.visit_bin(size ? &bin.front() : nullptr, size);
  466. }
  467. )
  468. ]
  469. |
  470. // -----------------------------------------------
  471. mp_fixarray [
  472. (
  473. [](auto& ctx){
  474. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  475. std::size_t size = _attr(ctx) & 0b00001111;
  476. app_specific.index_sizes.emplace_back(size, index_size::type_t::array);
  477. app_specific.vis.start_array(size);
  478. }
  479. )
  480. ]
  481. >> *(x3::eps [more] >> array_item)
  482. >> x3::eps [done]
  483. |
  484. // -----------------------------------------------
  485. mp_array16 >> mp_d_uint16 [
  486. (
  487. [](auto& ctx){
  488. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  489. std::size_t size = _attr(ctx);
  490. app_specific.index_sizes.emplace_back(size, index_size::type_t::array);
  491. app_specific.vis.start_array(size);
  492. }
  493. )
  494. ]
  495. >> *(x3::eps [more] >> array_item)
  496. >> x3::eps [done]
  497. |
  498. // -----------------------------------------------
  499. mp_array32 >> mp_d_uint32 [
  500. (
  501. [](auto& ctx){
  502. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  503. std::size_t size = _attr(ctx);
  504. app_specific.index_sizes.emplace_back(size, index_size::type_t::array);
  505. app_specific.vis.start_array(size);
  506. }
  507. )
  508. ]
  509. >> *(x3::eps [more] >> array_item)
  510. >> x3::eps [done]
  511. |
  512. // -----------------------------------------------
  513. mp_fixmap [
  514. (
  515. [](auto& ctx){
  516. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  517. std::size_t size = _attr(ctx) & 0b00001111;
  518. app_specific.index_sizes.emplace_back(size, index_size::type_t::map);
  519. app_specific.vis.start_map(size);
  520. }
  521. )
  522. ]
  523. >> *(x3::eps [more] >> map_item)
  524. >> x3::eps [done]
  525. |
  526. // -----------------------------------------------
  527. mp_map16 >> mp_d_uint16 [
  528. (
  529. [](auto& ctx){
  530. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  531. std::size_t size = _attr(ctx);
  532. app_specific.index_sizes.emplace_back(size, index_size::type_t::map);
  533. app_specific.vis.start_map(size);
  534. }
  535. )
  536. ]
  537. >> *(x3::eps [more] >> map_item)
  538. >> x3::eps [done]
  539. |
  540. // -----------------------------------------------
  541. mp_map32 >> mp_d_uint32 [
  542. (
  543. [](auto& ctx){
  544. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  545. std::size_t size = _attr(ctx);
  546. app_specific.index_sizes.emplace_back(size, index_size::type_t::map);
  547. app_specific.vis.start_map(size);
  548. }
  549. )
  550. ]
  551. >> *(x3::eps [more] >> map_item)
  552. >> x3::eps [done]
  553. |
  554. // -----------------------------------------------
  555. mp_fixext1 [
  556. (
  557. [](auto& ctx){
  558. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  559. app_specific.index_sizes.emplace_back(1+1);
  560. }
  561. )
  562. ]
  563. >>
  564. x3::raw [
  565. *(x3::eps [more] >> x3::char_)
  566. >> x3::eps [done]
  567. ][
  568. (
  569. [](auto& ctx){
  570. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  571. auto const& ext = _attr(ctx);
  572. std::size_t size = std::distance(ext.begin(), ext.end());
  573. app_specific.vis.visit_ext(size ? &ext.front() : nullptr, size);
  574. }
  575. )
  576. ]
  577. |
  578. // -----------------------------------------------
  579. mp_fixext2 [
  580. (
  581. [](auto& ctx){
  582. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  583. app_specific.index_sizes.emplace_back(2+1);
  584. }
  585. )
  586. ]
  587. >>
  588. x3::raw [
  589. *(x3::eps [more] >> x3::char_)
  590. >> x3::eps [done]
  591. ][
  592. (
  593. [](auto& ctx){
  594. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  595. auto const& ext = _attr(ctx);
  596. std::size_t size = std::distance(ext.begin(), ext.end());
  597. app_specific.vis.visit_ext(size ? &ext.front() : nullptr, size);
  598. }
  599. )
  600. ]
  601. |
  602. // -----------------------------------------------
  603. mp_fixext4 [
  604. (
  605. [](auto& ctx){
  606. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  607. app_specific.index_sizes.emplace_back(4+1);
  608. }
  609. )
  610. ]
  611. >>
  612. x3::raw [
  613. *(x3::eps [more] >> x3::char_)
  614. >> x3::eps [done]
  615. ][
  616. (
  617. [](auto& ctx){
  618. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  619. auto const& ext = _attr(ctx);
  620. std::size_t size = std::distance(ext.begin(), ext.end());
  621. app_specific.vis.visit_ext(size ? &ext.front() : nullptr, size);
  622. }
  623. )
  624. ]
  625. |
  626. // -----------------------------------------------
  627. mp_fixext8 [
  628. (
  629. [](auto& ctx){
  630. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  631. app_specific.index_sizes.emplace_back(8+1);
  632. }
  633. )
  634. ]
  635. >>
  636. x3::raw [
  637. *(x3::eps [more] >> x3::char_)
  638. >> x3::eps [done]
  639. ][
  640. (
  641. [](auto& ctx){
  642. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  643. auto const& ext = _attr(ctx);
  644. std::size_t size = std::distance(ext.begin(), ext.end());
  645. app_specific.vis.visit_ext(size ? &ext.front() : nullptr, size);
  646. }
  647. )
  648. ]
  649. |
  650. // -----------------------------------------------
  651. mp_fixext16 [
  652. (
  653. [](auto& ctx){
  654. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  655. app_specific.index_sizes.emplace_back(16+1);
  656. }
  657. )
  658. ]
  659. >>
  660. x3::raw [
  661. *(x3::eps [more] >> x3::char_)
  662. >> x3::eps [done]
  663. ][
  664. (
  665. [](auto& ctx){
  666. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  667. auto const& ext = _attr(ctx);
  668. std::size_t size = std::distance(ext.begin(), ext.end());
  669. app_specific.vis.visit_ext(size ? &ext.front() : nullptr, size);
  670. }
  671. )
  672. ]
  673. |
  674. // -----------------------------------------------
  675. mp_ext8 >> mp_d_uint8 [
  676. (
  677. [](auto& ctx){
  678. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  679. app_specific.index_sizes.emplace_back(_attr(ctx)+1);
  680. }
  681. )
  682. ]
  683. >>
  684. x3::raw [
  685. *(x3::eps [more] >> x3::char_)
  686. >> x3::eps [done]
  687. ][
  688. (
  689. [](auto& ctx){
  690. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  691. auto const& ext = _attr(ctx);
  692. std::size_t size = std::distance(ext.begin(), ext.end());
  693. app_specific.vis.visit_ext(size ? &ext.front() : nullptr, size);
  694. }
  695. )
  696. ]
  697. |
  698. // -----------------------------------------------
  699. mp_ext16 >> mp_d_uint16 [
  700. (
  701. [](auto& ctx){
  702. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  703. app_specific.index_sizes.emplace_back(_attr(ctx)+1);
  704. }
  705. )
  706. ]
  707. >>
  708. x3::raw [
  709. *(x3::eps [more] >> x3::char_)
  710. >> x3::eps [done]
  711. ][
  712. (
  713. [](auto& ctx){
  714. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  715. auto const& ext = _attr(ctx);
  716. std::size_t size = std::distance(ext.begin(), ext.end());
  717. app_specific.vis.visit_ext(size ? &ext.front() : nullptr, size);
  718. }
  719. )
  720. ]
  721. |
  722. // -----------------------------------------------
  723. mp_ext32 >> mp_d_uint32 [
  724. (
  725. [](auto& ctx){
  726. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  727. app_specific.index_sizes.emplace_back(_attr(ctx)+1);
  728. }
  729. )
  730. ]
  731. >>
  732. x3::raw [
  733. *(x3::eps [more] >> x3::char_)
  734. >> x3::eps [done]
  735. ][
  736. (
  737. [](auto& ctx){
  738. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  739. auto const& ext = _attr(ctx);
  740. std::size_t size = std::distance(ext.begin(), ext.end());
  741. app_specific.vis.visit_ext(size ? &ext.front() : nullptr, size);
  742. }
  743. )
  744. ];
  745. const auto array_item_def =
  746. x3::eps[
  747. (
  748. [](auto& ctx){
  749. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  750. app_specific.vis.start_array_item();
  751. _pass(ctx) = true;
  752. }
  753. )
  754. ]
  755. >>
  756. mp_object
  757. >>
  758. x3::eps[
  759. (
  760. [](auto& ctx){
  761. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  762. app_specific.vis.end_array_item();
  763. _pass(ctx) = true;
  764. }
  765. )
  766. ];
  767. const auto map_item_def = kv;
  768. const auto kv_def =
  769. x3::eps[
  770. (
  771. [](auto& ctx){
  772. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  773. app_specific.vis.start_map_key();
  774. _pass(ctx) = true;
  775. }
  776. )
  777. ]
  778. >>
  779. mp_object
  780. >>
  781. x3::eps[
  782. (
  783. [](auto& ctx){
  784. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  785. app_specific.vis.end_map_key();
  786. _pass(ctx) = true;
  787. }
  788. )
  789. ]
  790. >>
  791. x3::eps[
  792. (
  793. [](auto& ctx){
  794. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  795. app_specific.vis.start_map_value();
  796. _pass(ctx) = true;
  797. }
  798. )
  799. ]
  800. >>
  801. mp_object
  802. >>
  803. x3::eps[
  804. (
  805. [](auto& ctx){
  806. auto& app_specific = x3::get<tag_app_specific>(ctx).get();
  807. app_specific.vis.end_map_value();
  808. _pass(ctx) = true;
  809. }
  810. )
  811. ];
  812. BOOST_SPIRIT_DEFINE(
  813. mp_object, array_item, map_item, kv
  814. );
  815. const auto rule = mp_object;
  816. } // namespace detail
  817. template <typename Iterator, typename Visitor>
  818. inline bool parse(Iterator&& begin, Iterator&& end, Visitor&& vis) {
  819. auto data = detail::make_app_specific(std::forward<Visitor>(vis));
  820. return detail::x3::parse(
  821. std::forward<Iterator>(begin),
  822. std::forward<Iterator>(end),
  823. detail::x3::with<detail::tag_app_specific>(std::ref(data))[detail::rule]
  824. );
  825. }
  826. /// @cond
  827. } // MSGPACK_API_VERSION_NAMESPACE(v2)
  828. /// @endcond
  829. } // namespace msgpack
  830. #if __GNUC__ >= 4
  831. #pragma GCC diagnostic pop
  832. #endif // __GNUC__ >= 4
  833. #else // BOOST_VERSION >= 106100
  834. #error Boost 1.61.0 or later is required to use x3 parse
  835. #endif // BOOST_VERSION >= 106100
  836. #endif // defined(MSGPACK_USE_X3_PARSE)
  837. #endif // MSGPACK_V2_X3_PARSE_HPP