Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

ucl_emitter.c 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678
  1. /* Copyright (c) 2013, Vsevolod Stakhov
  2. * All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are met:
  6. * * Redistributions of source code must retain the above copyright
  7. * notice, this list of conditions and the following disclaimer.
  8. * * Redistributions in binary form must reproduce the above copyright
  9. * notice, this list of conditions and the following disclaimer in the
  10. * documentation and/or other materials provided with the distribution.
  11. *
  12. * THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY
  13. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  15. * DISCLAIMED. IN NO EVENT SHALL AUTHOR BE LIABLE FOR ANY
  16. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  17. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  18. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  19. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  20. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  21. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  22. */
  23. #ifdef HAVE_CONFIG_H
  24. #include "config.h"
  25. #endif
  26. #include "ucl.h"
  27. #include "ucl_internal.h"
  28. #include "ucl_chartable.h"
  29. #ifdef HAVE_FLOAT_H
  30. #include <float.h>
  31. #endif
  32. #ifdef HAVE_MATH_H
  33. #include <math.h>
  34. #endif
  35. /**
  36. * @file ucl_emitter.c
  37. * Serialise UCL object to various of output formats
  38. */
  39. static void ucl_emitter_common_elt (struct ucl_emitter_context *ctx,
  40. const ucl_object_t *obj, bool first, bool print_key, bool compact);
  41. #define UCL_EMIT_TYPE_OPS(type) \
  42. static void ucl_emit_ ## type ## _elt (struct ucl_emitter_context *ctx, \
  43. const ucl_object_t *obj, bool first, bool print_key); \
  44. static void ucl_emit_ ## type ## _start_obj (struct ucl_emitter_context *ctx, \
  45. const ucl_object_t *obj, bool print_key); \
  46. static void ucl_emit_ ## type## _start_array (struct ucl_emitter_context *ctx, \
  47. const ucl_object_t *obj, bool print_key); \
  48. static void ucl_emit_ ##type## _end_object (struct ucl_emitter_context *ctx, \
  49. const ucl_object_t *obj); \
  50. static void ucl_emit_ ##type## _end_array (struct ucl_emitter_context *ctx, \
  51. const ucl_object_t *obj)
  52. /*
  53. * JSON format operations
  54. */
  55. UCL_EMIT_TYPE_OPS(json);
  56. UCL_EMIT_TYPE_OPS(json_compact);
  57. UCL_EMIT_TYPE_OPS(config);
  58. UCL_EMIT_TYPE_OPS(yaml);
  59. UCL_EMIT_TYPE_OPS(msgpack);
  60. #define UCL_EMIT_TYPE_CONTENT(type) { \
  61. .ucl_emitter_write_elt = ucl_emit_ ## type ## _elt, \
  62. .ucl_emitter_start_object = ucl_emit_ ## type ##_start_obj, \
  63. .ucl_emitter_start_array = ucl_emit_ ## type ##_start_array, \
  64. .ucl_emitter_end_object = ucl_emit_ ## type ##_end_object, \
  65. .ucl_emitter_end_array = ucl_emit_ ## type ##_end_array \
  66. }
  67. const struct ucl_emitter_operations ucl_standartd_emitter_ops[] = {
  68. [UCL_EMIT_JSON] = UCL_EMIT_TYPE_CONTENT(json),
  69. [UCL_EMIT_JSON_COMPACT] = UCL_EMIT_TYPE_CONTENT(json_compact),
  70. [UCL_EMIT_CONFIG] = UCL_EMIT_TYPE_CONTENT(config),
  71. [UCL_EMIT_YAML] = UCL_EMIT_TYPE_CONTENT(yaml),
  72. [UCL_EMIT_MSGPACK] = UCL_EMIT_TYPE_CONTENT(msgpack)
  73. };
  74. /*
  75. * Utility to check whether we need a top object
  76. */
  77. #define UCL_EMIT_IDENT_TOP_OBJ(ctx, obj) ((ctx)->top != (obj) || \
  78. ((ctx)->id == UCL_EMIT_JSON_COMPACT || (ctx)->id == UCL_EMIT_JSON))
  79. /**
  80. * Add tabulation to the output buffer
  81. * @param buf target buffer
  82. * @param tabs number of tabs to add
  83. */
  84. static inline void
  85. ucl_add_tabs (const struct ucl_emitter_functions *func, unsigned int tabs,
  86. bool compact)
  87. {
  88. if (!compact && tabs > 0) {
  89. func->ucl_emitter_append_character (' ', tabs * 4, func->ud);
  90. }
  91. }
  92. /**
  93. * Print key for the element
  94. * @param ctx
  95. * @param obj
  96. */
  97. static void
  98. ucl_emitter_print_key (bool print_key, struct ucl_emitter_context *ctx,
  99. const ucl_object_t *obj, bool compact)
  100. {
  101. const struct ucl_emitter_functions *func = ctx->func;
  102. if (!print_key) {
  103. return;
  104. }
  105. if (ctx->id == UCL_EMIT_CONFIG) {
  106. if (obj->flags & UCL_OBJECT_NEED_KEY_ESCAPE) {
  107. ucl_elt_string_write_json (obj->key, obj->keylen, ctx);
  108. }
  109. else {
  110. func->ucl_emitter_append_len (obj->key, obj->keylen, func->ud);
  111. }
  112. if (obj->type != UCL_OBJECT && obj->type != UCL_ARRAY) {
  113. func->ucl_emitter_append_len (" = ", 3, func->ud);
  114. }
  115. else {
  116. func->ucl_emitter_append_character (' ', 1, func->ud);
  117. }
  118. }
  119. else if (ctx->id == UCL_EMIT_YAML) {
  120. if (obj->keylen > 0 && (obj->flags & UCL_OBJECT_NEED_KEY_ESCAPE)) {
  121. ucl_elt_string_write_json (obj->key, obj->keylen, ctx);
  122. }
  123. else if (obj->keylen > 0) {
  124. func->ucl_emitter_append_len (obj->key, obj->keylen, func->ud);
  125. }
  126. else {
  127. func->ucl_emitter_append_len ("null", 4, func->ud);
  128. }
  129. func->ucl_emitter_append_len (": ", 2, func->ud);
  130. }
  131. else {
  132. if (obj->keylen > 0) {
  133. ucl_elt_string_write_json (obj->key, obj->keylen, ctx);
  134. }
  135. else {
  136. func->ucl_emitter_append_len ("null", 4, func->ud);
  137. }
  138. if (compact) {
  139. func->ucl_emitter_append_character (':', 1, func->ud);
  140. }
  141. else {
  142. func->ucl_emitter_append_len (": ", 2, func->ud);
  143. }
  144. }
  145. }
  146. static void
  147. ucl_emitter_finish_object (struct ucl_emitter_context *ctx,
  148. const ucl_object_t *obj, bool compact, bool is_array)
  149. {
  150. const struct ucl_emitter_functions *func = ctx->func;
  151. if (ctx->id == UCL_EMIT_CONFIG && obj != ctx->top) {
  152. if (obj->type != UCL_OBJECT && obj->type != UCL_ARRAY) {
  153. if (!is_array) {
  154. /* Objects are split by ';' */
  155. func->ucl_emitter_append_len (";\n", 2, func->ud);
  156. }
  157. else {
  158. /* Use commas for arrays */
  159. func->ucl_emitter_append_len (",\n", 2, func->ud);
  160. }
  161. }
  162. else {
  163. func->ucl_emitter_append_character ('\n', 1, func->ud);
  164. }
  165. }
  166. }
  167. /**
  168. * End standard ucl object
  169. * @param ctx emitter context
  170. * @param compact compact flag
  171. */
  172. static void
  173. ucl_emitter_common_end_object (struct ucl_emitter_context *ctx,
  174. const ucl_object_t *obj, bool compact)
  175. {
  176. const struct ucl_emitter_functions *func = ctx->func;
  177. if (UCL_EMIT_IDENT_TOP_OBJ(ctx, obj)) {
  178. ctx->indent --;
  179. if (compact) {
  180. func->ucl_emitter_append_character ('}', 1, func->ud);
  181. }
  182. else {
  183. if (ctx->id != UCL_EMIT_CONFIG) {
  184. /* newline is already added for this format */
  185. func->ucl_emitter_append_character ('\n', 1, func->ud);
  186. }
  187. ucl_add_tabs (func, ctx->indent, compact);
  188. func->ucl_emitter_append_character ('}', 1, func->ud);
  189. }
  190. }
  191. ucl_emitter_finish_object (ctx, obj, compact, false);
  192. }
  193. /**
  194. * End standard ucl array
  195. * @param ctx emitter context
  196. * @param compact compact flag
  197. */
  198. static void
  199. ucl_emitter_common_end_array (struct ucl_emitter_context *ctx,
  200. const ucl_object_t *obj, bool compact)
  201. {
  202. const struct ucl_emitter_functions *func = ctx->func;
  203. ctx->indent --;
  204. if (compact) {
  205. func->ucl_emitter_append_character (']', 1, func->ud);
  206. }
  207. else {
  208. if (ctx->id != UCL_EMIT_CONFIG) {
  209. /* newline is already added for this format */
  210. func->ucl_emitter_append_character ('\n', 1, func->ud);
  211. }
  212. ucl_add_tabs (func, ctx->indent, compact);
  213. func->ucl_emitter_append_character (']', 1, func->ud);
  214. }
  215. ucl_emitter_finish_object (ctx, obj, compact, true);
  216. }
  217. /**
  218. * Start emit standard UCL array
  219. * @param ctx emitter context
  220. * @param obj object to write
  221. * @param compact compact flag
  222. */
  223. static void
  224. ucl_emitter_common_start_array (struct ucl_emitter_context *ctx,
  225. const ucl_object_t *obj, bool print_key, bool compact)
  226. {
  227. const ucl_object_t *cur;
  228. ucl_object_iter_t iter = NULL;
  229. const struct ucl_emitter_functions *func = ctx->func;
  230. bool first = true;
  231. ucl_emitter_print_key (print_key, ctx, obj, compact);
  232. if (compact) {
  233. func->ucl_emitter_append_character ('[', 1, func->ud);
  234. }
  235. else {
  236. func->ucl_emitter_append_len ("[\n", 2, func->ud);
  237. }
  238. ctx->indent ++;
  239. if (obj->type == UCL_ARRAY) {
  240. /* explicit array */
  241. while ((cur = ucl_iterate_object (obj, &iter, true)) != NULL) {
  242. ucl_emitter_common_elt (ctx, cur, first, false, compact);
  243. first = false;
  244. }
  245. }
  246. else {
  247. /* implicit array */
  248. cur = obj;
  249. while (cur) {
  250. ucl_emitter_common_elt (ctx, cur, first, false, compact);
  251. first = false;
  252. cur = cur->next;
  253. }
  254. }
  255. }
  256. /**
  257. * Start emit standard UCL object
  258. * @param ctx emitter context
  259. * @param obj object to write
  260. * @param compact compact flag
  261. */
  262. static void
  263. ucl_emitter_common_start_object (struct ucl_emitter_context *ctx,
  264. const ucl_object_t *obj, bool print_key, bool compact)
  265. {
  266. ucl_hash_iter_t it = NULL;
  267. const ucl_object_t *cur, *elt;
  268. const struct ucl_emitter_functions *func = ctx->func;
  269. bool first = true;
  270. ucl_emitter_print_key (print_key, ctx, obj, compact);
  271. /*
  272. * Print <ident_level>{
  273. * <ident_level + 1><object content>
  274. */
  275. if (UCL_EMIT_IDENT_TOP_OBJ(ctx, obj)) {
  276. if (compact) {
  277. func->ucl_emitter_append_character ('{', 1, func->ud);
  278. }
  279. else {
  280. func->ucl_emitter_append_len ("{\n", 2, func->ud);
  281. }
  282. ctx->indent ++;
  283. }
  284. while ((cur = ucl_hash_iterate (obj->value.ov, &it))) {
  285. if (ctx->id == UCL_EMIT_CONFIG) {
  286. LL_FOREACH (cur, elt) {
  287. ucl_emitter_common_elt (ctx, elt, first, true, compact);
  288. }
  289. }
  290. else {
  291. /* Expand implicit arrays */
  292. if (cur->next != NULL) {
  293. if (!first) {
  294. if (compact) {
  295. func->ucl_emitter_append_character (',', 1, func->ud);
  296. }
  297. else {
  298. func->ucl_emitter_append_len (",\n", 2, func->ud);
  299. }
  300. }
  301. ucl_add_tabs (func, ctx->indent, compact);
  302. ucl_emitter_common_start_array (ctx, cur, true, compact);
  303. ucl_emitter_common_end_array (ctx, cur, compact);
  304. }
  305. else {
  306. ucl_emitter_common_elt (ctx, cur, first, true, compact);
  307. }
  308. }
  309. first = false;
  310. }
  311. }
  312. /**
  313. * Common choice of object emitting
  314. * @param ctx emitter context
  315. * @param obj object to print
  316. * @param first flag to mark the first element
  317. * @param print_key print key of an object
  318. * @param compact compact output
  319. */
  320. static void
  321. ucl_emitter_common_elt (struct ucl_emitter_context *ctx,
  322. const ucl_object_t *obj, bool first, bool print_key, bool compact)
  323. {
  324. const struct ucl_emitter_functions *func = ctx->func;
  325. bool flag;
  326. struct ucl_object_userdata *ud;
  327. const ucl_object_t *comment = NULL, *cur_comment;
  328. const char *ud_out = "";
  329. if (ctx->id != UCL_EMIT_CONFIG && !first) {
  330. if (compact) {
  331. func->ucl_emitter_append_character (',', 1, func->ud);
  332. }
  333. else {
  334. if (ctx->id == UCL_EMIT_YAML && ctx->indent == 0) {
  335. func->ucl_emitter_append_len ("\n", 1, func->ud);
  336. } else {
  337. func->ucl_emitter_append_len (",\n", 2, func->ud);
  338. }
  339. }
  340. }
  341. ucl_add_tabs (func, ctx->indent, compact);
  342. if (ctx->comments && ctx->id == UCL_EMIT_CONFIG) {
  343. comment = ucl_object_find_keyl (ctx->comments, (const char *)&obj,
  344. sizeof (void *));
  345. if (comment) {
  346. if (!(comment->flags & UCL_OBJECT_INHERITED)) {
  347. DL_FOREACH (comment, cur_comment) {
  348. func->ucl_emitter_append_len (cur_comment->value.sv,
  349. cur_comment->len,
  350. func->ud);
  351. func->ucl_emitter_append_character ('\n', 1, func->ud);
  352. ucl_add_tabs (func, ctx->indent, compact);
  353. }
  354. comment = NULL;
  355. }
  356. }
  357. }
  358. switch (obj->type) {
  359. case UCL_INT:
  360. ucl_emitter_print_key (print_key, ctx, obj, compact);
  361. func->ucl_emitter_append_int (ucl_object_toint (obj), func->ud);
  362. ucl_emitter_finish_object (ctx, obj, compact, !print_key);
  363. break;
  364. case UCL_FLOAT:
  365. case UCL_TIME:
  366. ucl_emitter_print_key (print_key, ctx, obj, compact);
  367. func->ucl_emitter_append_double (ucl_object_todouble (obj), func->ud);
  368. ucl_emitter_finish_object (ctx, obj, compact, !print_key);
  369. break;
  370. case UCL_BOOLEAN:
  371. ucl_emitter_print_key (print_key, ctx, obj, compact);
  372. flag = ucl_object_toboolean (obj);
  373. if (flag) {
  374. func->ucl_emitter_append_len ("true", 4, func->ud);
  375. }
  376. else {
  377. func->ucl_emitter_append_len ("false", 5, func->ud);
  378. }
  379. ucl_emitter_finish_object (ctx, obj, compact, !print_key);
  380. break;
  381. case UCL_STRING:
  382. ucl_emitter_print_key (print_key, ctx, obj, compact);
  383. if (ctx->id == UCL_EMIT_CONFIG && ucl_maybe_long_string (obj)) {
  384. ucl_elt_string_write_multiline (obj->value.sv, obj->len, ctx);
  385. }
  386. else {
  387. ucl_elt_string_write_json (obj->value.sv, obj->len, ctx);
  388. }
  389. ucl_emitter_finish_object (ctx, obj, compact, !print_key);
  390. break;
  391. case UCL_NULL:
  392. ucl_emitter_print_key (print_key, ctx, obj, compact);
  393. func->ucl_emitter_append_len ("null", 4, func->ud);
  394. ucl_emitter_finish_object (ctx, obj, compact, !print_key);
  395. break;
  396. case UCL_OBJECT:
  397. ucl_emitter_common_start_object (ctx, obj, print_key, compact);
  398. ucl_emitter_common_end_object (ctx, obj, compact);
  399. break;
  400. case UCL_ARRAY:
  401. ucl_emitter_common_start_array (ctx, obj, print_key, compact);
  402. ucl_emitter_common_end_array (ctx, obj, compact);
  403. break;
  404. case UCL_USERDATA:
  405. ud = (struct ucl_object_userdata *)obj;
  406. ucl_emitter_print_key (print_key, ctx, obj, compact);
  407. if (ud->emitter) {
  408. ud_out = ud->emitter (obj->value.ud);
  409. if (ud_out == NULL) {
  410. ud_out = "null";
  411. }
  412. }
  413. ucl_elt_string_write_json (ud_out, strlen (ud_out), ctx);
  414. ucl_emitter_finish_object (ctx, obj, compact, !print_key);
  415. break;
  416. }
  417. if (comment) {
  418. DL_FOREACH (comment, cur_comment) {
  419. func->ucl_emitter_append_len (cur_comment->value.sv,
  420. cur_comment->len,
  421. func->ud);
  422. func->ucl_emitter_append_character ('\n', 1, func->ud);
  423. if (cur_comment->next) {
  424. ucl_add_tabs (func, ctx->indent, compact);
  425. }
  426. }
  427. }
  428. }
  429. /*
  430. * Specific standard implementations of the emitter functions
  431. */
  432. #define UCL_EMIT_TYPE_IMPL(type, compact) \
  433. static void ucl_emit_ ## type ## _elt (struct ucl_emitter_context *ctx, \
  434. const ucl_object_t *obj, bool first, bool print_key) { \
  435. ucl_emitter_common_elt (ctx, obj, first, print_key, (compact)); \
  436. } \
  437. static void ucl_emit_ ## type ## _start_obj (struct ucl_emitter_context *ctx, \
  438. const ucl_object_t *obj, bool print_key) { \
  439. ucl_emitter_common_start_object (ctx, obj, print_key, (compact)); \
  440. } \
  441. static void ucl_emit_ ## type## _start_array (struct ucl_emitter_context *ctx, \
  442. const ucl_object_t *obj, bool print_key) { \
  443. ucl_emitter_common_start_array (ctx, obj, print_key, (compact)); \
  444. } \
  445. static void ucl_emit_ ##type## _end_object (struct ucl_emitter_context *ctx, \
  446. const ucl_object_t *obj) { \
  447. ucl_emitter_common_end_object (ctx, obj, (compact)); \
  448. } \
  449. static void ucl_emit_ ##type## _end_array (struct ucl_emitter_context *ctx, \
  450. const ucl_object_t *obj) { \
  451. ucl_emitter_common_end_array (ctx, obj, (compact)); \
  452. }
  453. UCL_EMIT_TYPE_IMPL(json, false)
  454. UCL_EMIT_TYPE_IMPL(json_compact, true)
  455. UCL_EMIT_TYPE_IMPL(config, false)
  456. UCL_EMIT_TYPE_IMPL(yaml, false)
  457. static void
  458. ucl_emit_msgpack_elt (struct ucl_emitter_context *ctx,
  459. const ucl_object_t *obj, bool first, bool print_key)
  460. {
  461. ucl_object_iter_t it;
  462. struct ucl_object_userdata *ud;
  463. const char *ud_out;
  464. const ucl_object_t *cur, *celt;
  465. switch (obj->type) {
  466. case UCL_INT:
  467. ucl_emitter_print_key_msgpack (print_key, ctx, obj);
  468. ucl_emitter_print_int_msgpack (ctx, ucl_object_toint (obj));
  469. break;
  470. case UCL_FLOAT:
  471. case UCL_TIME:
  472. ucl_emitter_print_key_msgpack (print_key, ctx, obj);
  473. ucl_emitter_print_double_msgpack (ctx, ucl_object_todouble (obj));
  474. break;
  475. case UCL_BOOLEAN:
  476. ucl_emitter_print_key_msgpack (print_key, ctx, obj);
  477. ucl_emitter_print_bool_msgpack (ctx, ucl_object_toboolean (obj));
  478. break;
  479. case UCL_STRING:
  480. ucl_emitter_print_key_msgpack (print_key, ctx, obj);
  481. if (obj->flags & UCL_OBJECT_BINARY) {
  482. ucl_emitter_print_binary_string_msgpack (ctx, obj->value.sv,
  483. obj->len);
  484. }
  485. else {
  486. ucl_emitter_print_string_msgpack (ctx, obj->value.sv, obj->len);
  487. }
  488. break;
  489. case UCL_NULL:
  490. ucl_emitter_print_key_msgpack (print_key, ctx, obj);
  491. ucl_emitter_print_null_msgpack (ctx);
  492. break;
  493. case UCL_OBJECT:
  494. ucl_emitter_print_key_msgpack (print_key, ctx, obj);
  495. ucl_emit_msgpack_start_obj (ctx, obj, print_key);
  496. it = NULL;
  497. while ((cur = ucl_iterate_object (obj, &it, true)) != NULL) {
  498. LL_FOREACH (cur, celt) {
  499. ucl_emit_msgpack_elt (ctx, celt, false, true);
  500. /* XXX:
  501. * in msgpack the length of objects is encoded within a single elt
  502. * so in case of multi-value keys we are using merely the first
  503. * element ignoring others
  504. */
  505. break;
  506. }
  507. }
  508. break;
  509. case UCL_ARRAY:
  510. ucl_emitter_print_key_msgpack (print_key, ctx, obj);
  511. ucl_emit_msgpack_start_array (ctx, obj, print_key);
  512. it = NULL;
  513. while ((cur = ucl_iterate_object (obj, &it, true)) != NULL) {
  514. ucl_emit_msgpack_elt (ctx, cur, false, false);
  515. }
  516. break;
  517. case UCL_USERDATA:
  518. ud = (struct ucl_object_userdata *)obj;
  519. ucl_emitter_print_key_msgpack (print_key, ctx, obj);
  520. if (ud->emitter) {
  521. ud_out = ud->emitter (obj->value.ud);
  522. if (ud_out == NULL) {
  523. ud_out = "null";
  524. }
  525. }
  526. ucl_emitter_print_string_msgpack (ctx, obj->value.sv, obj->len);
  527. break;
  528. }
  529. }
  530. static void
  531. ucl_emit_msgpack_start_obj (struct ucl_emitter_context *ctx,
  532. const ucl_object_t *obj, bool print_key)
  533. {
  534. ucl_emitter_print_object_msgpack (ctx, obj->len);
  535. }
  536. static void
  537. ucl_emit_msgpack_start_array (struct ucl_emitter_context *ctx,
  538. const ucl_object_t *obj, bool print_key)
  539. {
  540. ucl_emitter_print_array_msgpack (ctx, obj->len);
  541. }
  542. static void
  543. ucl_emit_msgpack_end_object (struct ucl_emitter_context *ctx,
  544. const ucl_object_t *obj)
  545. {
  546. }
  547. static void
  548. ucl_emit_msgpack_end_array (struct ucl_emitter_context *ctx,
  549. const ucl_object_t *obj)
  550. {
  551. }
  552. unsigned char *
  553. ucl_object_emit (const ucl_object_t *obj, enum ucl_emitter emit_type)
  554. {
  555. return ucl_object_emit_len (obj, emit_type, NULL);
  556. }
  557. unsigned char *
  558. ucl_object_emit_len (const ucl_object_t *obj, enum ucl_emitter emit_type,
  559. size_t *outlen)
  560. {
  561. unsigned char *res = NULL;
  562. struct ucl_emitter_functions *func;
  563. UT_string *s;
  564. if (obj == NULL) {
  565. return NULL;
  566. }
  567. func = ucl_object_emit_memory_funcs ((void **)&res);
  568. if (func != NULL) {
  569. s = func->ud;
  570. ucl_object_emit_full (obj, emit_type, func, NULL);
  571. if (outlen != NULL) {
  572. *outlen = s->i;
  573. }
  574. ucl_object_emit_funcs_free (func);
  575. }
  576. return res;
  577. }
  578. bool
  579. ucl_object_emit_full (const ucl_object_t *obj, enum ucl_emitter emit_type,
  580. struct ucl_emitter_functions *emitter,
  581. const ucl_object_t *comments)
  582. {
  583. const struct ucl_emitter_context *ctx;
  584. struct ucl_emitter_context my_ctx;
  585. bool res = false;
  586. ctx = ucl_emit_get_standard_context (emit_type);
  587. if (ctx != NULL) {
  588. memcpy (&my_ctx, ctx, sizeof (my_ctx));
  589. my_ctx.func = emitter;
  590. my_ctx.indent = 0;
  591. my_ctx.top = obj;
  592. my_ctx.comments = comments;
  593. my_ctx.ops->ucl_emitter_write_elt (&my_ctx, obj, true, false);
  594. res = true;
  595. }
  596. return res;
  597. }