You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686
  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_object_iterate (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_lookup_len (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) {
  384. if (ucl_maybe_long_string (obj)) {
  385. ucl_elt_string_write_multiline (obj->value.sv, obj->len, ctx);
  386. } else {
  387. if (obj->flags & UCL_OBJECT_SQUOTED) {
  388. ucl_elt_string_write_squoted (obj->value.sv, obj->len, ctx);
  389. } else {
  390. ucl_elt_string_write_json (obj->value.sv, obj->len, ctx);
  391. }
  392. }
  393. }
  394. else {
  395. ucl_elt_string_write_json (obj->value.sv, obj->len, ctx);
  396. }
  397. ucl_emitter_finish_object (ctx, obj, compact, !print_key);
  398. break;
  399. case UCL_NULL:
  400. ucl_emitter_print_key (print_key, ctx, obj, compact);
  401. func->ucl_emitter_append_len ("null", 4, func->ud);
  402. ucl_emitter_finish_object (ctx, obj, compact, !print_key);
  403. break;
  404. case UCL_OBJECT:
  405. ucl_emitter_common_start_object (ctx, obj, print_key, compact);
  406. ucl_emitter_common_end_object (ctx, obj, compact);
  407. break;
  408. case UCL_ARRAY:
  409. ucl_emitter_common_start_array (ctx, obj, print_key, compact);
  410. ucl_emitter_common_end_array (ctx, obj, compact);
  411. break;
  412. case UCL_USERDATA:
  413. ud = (struct ucl_object_userdata *)obj;
  414. ucl_emitter_print_key (print_key, ctx, obj, compact);
  415. if (ud->emitter) {
  416. ud_out = ud->emitter (obj->value.ud);
  417. if (ud_out == NULL) {
  418. ud_out = "null";
  419. }
  420. }
  421. ucl_elt_string_write_json (ud_out, strlen (ud_out), ctx);
  422. ucl_emitter_finish_object (ctx, obj, compact, !print_key);
  423. break;
  424. }
  425. if (comment) {
  426. DL_FOREACH (comment, cur_comment) {
  427. func->ucl_emitter_append_len (cur_comment->value.sv,
  428. cur_comment->len,
  429. func->ud);
  430. func->ucl_emitter_append_character ('\n', 1, func->ud);
  431. if (cur_comment->next) {
  432. ucl_add_tabs (func, ctx->indent, compact);
  433. }
  434. }
  435. }
  436. }
  437. /*
  438. * Specific standard implementations of the emitter functions
  439. */
  440. #define UCL_EMIT_TYPE_IMPL(type, compact) \
  441. static void ucl_emit_ ## type ## _elt (struct ucl_emitter_context *ctx, \
  442. const ucl_object_t *obj, bool first, bool print_key) { \
  443. ucl_emitter_common_elt (ctx, obj, first, print_key, (compact)); \
  444. } \
  445. static void ucl_emit_ ## type ## _start_obj (struct ucl_emitter_context *ctx, \
  446. const ucl_object_t *obj, bool print_key) { \
  447. ucl_emitter_common_start_object (ctx, obj, print_key, (compact)); \
  448. } \
  449. static void ucl_emit_ ## type## _start_array (struct ucl_emitter_context *ctx, \
  450. const ucl_object_t *obj, bool print_key) { \
  451. ucl_emitter_common_start_array (ctx, obj, print_key, (compact)); \
  452. } \
  453. static void ucl_emit_ ##type## _end_object (struct ucl_emitter_context *ctx, \
  454. const ucl_object_t *obj) { \
  455. ucl_emitter_common_end_object (ctx, obj, (compact)); \
  456. } \
  457. static void ucl_emit_ ##type## _end_array (struct ucl_emitter_context *ctx, \
  458. const ucl_object_t *obj) { \
  459. ucl_emitter_common_end_array (ctx, obj, (compact)); \
  460. }
  461. UCL_EMIT_TYPE_IMPL(json, false)
  462. UCL_EMIT_TYPE_IMPL(json_compact, true)
  463. UCL_EMIT_TYPE_IMPL(config, false)
  464. UCL_EMIT_TYPE_IMPL(yaml, false)
  465. static void
  466. ucl_emit_msgpack_elt (struct ucl_emitter_context *ctx,
  467. const ucl_object_t *obj, bool first, bool print_key)
  468. {
  469. ucl_object_iter_t it;
  470. struct ucl_object_userdata *ud;
  471. const char *ud_out;
  472. const ucl_object_t *cur, *celt;
  473. switch (obj->type) {
  474. case UCL_INT:
  475. ucl_emitter_print_key_msgpack (print_key, ctx, obj);
  476. ucl_emitter_print_int_msgpack (ctx, ucl_object_toint (obj));
  477. break;
  478. case UCL_FLOAT:
  479. case UCL_TIME:
  480. ucl_emitter_print_key_msgpack (print_key, ctx, obj);
  481. ucl_emitter_print_double_msgpack (ctx, ucl_object_todouble (obj));
  482. break;
  483. case UCL_BOOLEAN:
  484. ucl_emitter_print_key_msgpack (print_key, ctx, obj);
  485. ucl_emitter_print_bool_msgpack (ctx, ucl_object_toboolean (obj));
  486. break;
  487. case UCL_STRING:
  488. ucl_emitter_print_key_msgpack (print_key, ctx, obj);
  489. if (obj->flags & UCL_OBJECT_BINARY) {
  490. ucl_emitter_print_binary_string_msgpack (ctx, obj->value.sv,
  491. obj->len);
  492. }
  493. else {
  494. ucl_emitter_print_string_msgpack (ctx, obj->value.sv, obj->len);
  495. }
  496. break;
  497. case UCL_NULL:
  498. ucl_emitter_print_key_msgpack (print_key, ctx, obj);
  499. ucl_emitter_print_null_msgpack (ctx);
  500. break;
  501. case UCL_OBJECT:
  502. ucl_emitter_print_key_msgpack (print_key, ctx, obj);
  503. ucl_emit_msgpack_start_obj (ctx, obj, print_key);
  504. it = NULL;
  505. while ((cur = ucl_object_iterate (obj, &it, true)) != NULL) {
  506. LL_FOREACH (cur, celt) {
  507. ucl_emit_msgpack_elt (ctx, celt, false, true);
  508. /* XXX:
  509. * in msgpack the length of objects is encoded within a single elt
  510. * so in case of multi-value keys we are using merely the first
  511. * element ignoring others
  512. */
  513. break;
  514. }
  515. }
  516. break;
  517. case UCL_ARRAY:
  518. ucl_emitter_print_key_msgpack (print_key, ctx, obj);
  519. ucl_emit_msgpack_start_array (ctx, obj, print_key);
  520. it = NULL;
  521. while ((cur = ucl_object_iterate (obj, &it, true)) != NULL) {
  522. ucl_emit_msgpack_elt (ctx, cur, false, false);
  523. }
  524. break;
  525. case UCL_USERDATA:
  526. ud = (struct ucl_object_userdata *)obj;
  527. ucl_emitter_print_key_msgpack (print_key, ctx, obj);
  528. if (ud->emitter) {
  529. ud_out = ud->emitter (obj->value.ud);
  530. if (ud_out == NULL) {
  531. ud_out = "null";
  532. }
  533. }
  534. ucl_emitter_print_string_msgpack (ctx, obj->value.sv, obj->len);
  535. break;
  536. }
  537. }
  538. static void
  539. ucl_emit_msgpack_start_obj (struct ucl_emitter_context *ctx,
  540. const ucl_object_t *obj, bool print_key)
  541. {
  542. ucl_emitter_print_object_msgpack (ctx, obj->len);
  543. }
  544. static void
  545. ucl_emit_msgpack_start_array (struct ucl_emitter_context *ctx,
  546. const ucl_object_t *obj, bool print_key)
  547. {
  548. ucl_emitter_print_array_msgpack (ctx, obj->len);
  549. }
  550. static void
  551. ucl_emit_msgpack_end_object (struct ucl_emitter_context *ctx,
  552. const ucl_object_t *obj)
  553. {
  554. }
  555. static void
  556. ucl_emit_msgpack_end_array (struct ucl_emitter_context *ctx,
  557. const ucl_object_t *obj)
  558. {
  559. }
  560. unsigned char *
  561. ucl_object_emit (const ucl_object_t *obj, enum ucl_emitter emit_type)
  562. {
  563. return ucl_object_emit_len (obj, emit_type, NULL);
  564. }
  565. unsigned char *
  566. ucl_object_emit_len (const ucl_object_t *obj, enum ucl_emitter emit_type,
  567. size_t *outlen)
  568. {
  569. unsigned char *res = NULL;
  570. struct ucl_emitter_functions *func;
  571. UT_string *s;
  572. if (obj == NULL) {
  573. return NULL;
  574. }
  575. func = ucl_object_emit_memory_funcs ((void **)&res);
  576. if (func != NULL) {
  577. s = func->ud;
  578. ucl_object_emit_full (obj, emit_type, func, NULL);
  579. if (outlen != NULL) {
  580. *outlen = s->i;
  581. }
  582. ucl_object_emit_funcs_free (func);
  583. }
  584. return res;
  585. }
  586. bool
  587. ucl_object_emit_full (const ucl_object_t *obj, enum ucl_emitter emit_type,
  588. struct ucl_emitter_functions *emitter,
  589. const ucl_object_t *comments)
  590. {
  591. const struct ucl_emitter_context *ctx;
  592. struct ucl_emitter_context my_ctx;
  593. bool res = false;
  594. ctx = ucl_emit_get_standard_context (emit_type);
  595. if (ctx != NULL) {
  596. memcpy (&my_ctx, ctx, sizeof (my_ctx));
  597. my_ctx.func = emitter;
  598. my_ctx.indent = 0;
  599. my_ctx.top = obj;
  600. my_ctx.comments = comments;
  601. my_ctx.ops->ucl_emitter_write_elt (&my_ctx, obj, true, false);
  602. res = true;
  603. }
  604. return res;
  605. }