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.

ucl_emitter.c 28KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191
  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. static const struct ucl_emitter_operations ucl_standart_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. }
  606. static const struct ucl_emitter_context ucl_standard_emitters[] = {
  607. [UCL_EMIT_JSON] = {
  608. .name = "json",
  609. .id = UCL_EMIT_JSON,
  610. .func = NULL,
  611. .ops = &ucl_standart_emitter_ops[UCL_EMIT_JSON]
  612. },
  613. [UCL_EMIT_JSON_COMPACT] = {
  614. .name = "json_compact",
  615. .id = UCL_EMIT_JSON_COMPACT,
  616. .func = NULL,
  617. .ops = &ucl_standart_emitter_ops[UCL_EMIT_JSON_COMPACT]
  618. },
  619. [UCL_EMIT_CONFIG] = {
  620. .name = "config",
  621. .id = UCL_EMIT_CONFIG,
  622. .func = NULL,
  623. .ops = &ucl_standart_emitter_ops[UCL_EMIT_CONFIG]
  624. },
  625. [UCL_EMIT_YAML] = {
  626. .name = "yaml",
  627. .id = UCL_EMIT_YAML,
  628. .func = NULL,
  629. .ops = &ucl_standart_emitter_ops[UCL_EMIT_YAML]
  630. },
  631. [UCL_EMIT_MSGPACK] = {
  632. .name = "msgpack",
  633. .id = UCL_EMIT_MSGPACK,
  634. .func = NULL,
  635. .ops = &ucl_standart_emitter_ops[UCL_EMIT_MSGPACK]
  636. }
  637. };
  638. /**
  639. * Get standard emitter context for a specified emit_type
  640. * @param emit_type type of emitter
  641. * @return context or NULL if input is invalid
  642. */
  643. const struct ucl_emitter_context *
  644. ucl_emit_get_standard_context (enum ucl_emitter emit_type)
  645. {
  646. if (emit_type >= UCL_EMIT_JSON && emit_type < UCL_EMIT_MAX) {
  647. return &ucl_standard_emitters[emit_type];
  648. }
  649. return NULL;
  650. }
  651. /**
  652. * Serialise string
  653. * @param str string to emit
  654. * @param buf target buffer
  655. */
  656. void
  657. ucl_elt_string_write_json (const char *str, size_t size,
  658. struct ucl_emitter_context *ctx)
  659. {
  660. const char *p = str, *c = str;
  661. size_t len = 0;
  662. const struct ucl_emitter_functions *func = ctx->func;
  663. func->ucl_emitter_append_character ('"', 1, func->ud);
  664. while (size) {
  665. if (ucl_test_character (*p, (UCL_CHARACTER_JSON_UNSAFE|
  666. UCL_CHARACTER_DENIED|
  667. UCL_CHARACTER_WHITESPACE_UNSAFE))) {
  668. if (len > 0) {
  669. func->ucl_emitter_append_len (c, len, func->ud);
  670. }
  671. switch (*p) {
  672. case '\0':
  673. func->ucl_emitter_append_len ("\\u0000", 6, func->ud);
  674. break;
  675. case '\n':
  676. func->ucl_emitter_append_len ("\\n", 2, func->ud);
  677. break;
  678. case '\r':
  679. func->ucl_emitter_append_len ("\\r", 2, func->ud);
  680. break;
  681. case '\b':
  682. func->ucl_emitter_append_len ("\\b", 2, func->ud);
  683. break;
  684. case '\t':
  685. func->ucl_emitter_append_len ("\\t", 2, func->ud);
  686. break;
  687. case '\f':
  688. func->ucl_emitter_append_len ("\\f", 2, func->ud);
  689. break;
  690. case '\v':
  691. func->ucl_emitter_append_len ("\\u000B", 6, func->ud);
  692. break;
  693. case '\\':
  694. func->ucl_emitter_append_len ("\\\\", 2, func->ud);
  695. break;
  696. case ' ':
  697. func->ucl_emitter_append_character (' ', 1, func->ud);
  698. break;
  699. case '"':
  700. func->ucl_emitter_append_len ("\\\"", 2, func->ud);
  701. break;
  702. default:
  703. /* Emit unicode unknown character */
  704. func->ucl_emitter_append_len ("\\uFFFD", 6, func->ud);
  705. break;
  706. }
  707. len = 0;
  708. c = ++p;
  709. }
  710. else {
  711. p ++;
  712. len ++;
  713. }
  714. size --;
  715. }
  716. if (len > 0) {
  717. func->ucl_emitter_append_len (c, len, func->ud);
  718. }
  719. func->ucl_emitter_append_character ('"', 1, func->ud);
  720. }
  721. void
  722. ucl_elt_string_write_squoted (const char *str, size_t size,
  723. struct ucl_emitter_context *ctx)
  724. {
  725. const char *p = str, *c = str;
  726. size_t len = 0;
  727. const struct ucl_emitter_functions *func = ctx->func;
  728. func->ucl_emitter_append_character ('\'', 1, func->ud);
  729. while (size) {
  730. if (*p == '\'') {
  731. if (len > 0) {
  732. func->ucl_emitter_append_len (c, len, func->ud);
  733. }
  734. len = 0;
  735. c = ++p;
  736. func->ucl_emitter_append_len ("\\\'", 2, func->ud);
  737. }
  738. else {
  739. p ++;
  740. len ++;
  741. }
  742. size --;
  743. }
  744. if (len > 0) {
  745. func->ucl_emitter_append_len (c, len, func->ud);
  746. }
  747. func->ucl_emitter_append_character ('\'', 1, func->ud);
  748. }
  749. void
  750. ucl_elt_string_write_multiline (const char *str, size_t size,
  751. struct ucl_emitter_context *ctx)
  752. {
  753. const struct ucl_emitter_functions *func = ctx->func;
  754. func->ucl_emitter_append_len ("<<EOD\n", sizeof ("<<EOD\n") - 1, func->ud);
  755. func->ucl_emitter_append_len (str, size, func->ud);
  756. func->ucl_emitter_append_len ("\nEOD", sizeof ("\nEOD") - 1, func->ud);
  757. }
  758. /*
  759. * Generic utstring output
  760. */
  761. static int
  762. ucl_utstring_append_character (unsigned char c, size_t len, void *ud)
  763. {
  764. UT_string *buf = ud;
  765. if (len == 1) {
  766. utstring_append_c (buf, c);
  767. }
  768. else {
  769. utstring_reserve (buf, len + 1);
  770. memset (&buf->d[buf->i], c, len);
  771. buf->i += len;
  772. buf->d[buf->i] = '\0';
  773. }
  774. return 0;
  775. }
  776. static int
  777. ucl_utstring_append_len (const unsigned char *str, size_t len, void *ud)
  778. {
  779. UT_string *buf = ud;
  780. utstring_append_len (buf, str, len);
  781. return 0;
  782. }
  783. static int
  784. ucl_utstring_append_int (int64_t val, void *ud)
  785. {
  786. UT_string *buf = ud;
  787. utstring_printf (buf, "%jd", (intmax_t)val);
  788. return 0;
  789. }
  790. static int
  791. ucl_utstring_append_double (double val, void *ud)
  792. {
  793. UT_string *buf = ud;
  794. const double delta = 0.0000001;
  795. if (val == (double)(int)val) {
  796. utstring_printf (buf, "%.1lf", val);
  797. }
  798. else if (fabs (val - (double)(int)val) < delta) {
  799. /* Write at maximum precision */
  800. utstring_printf (buf, "%.*lg", DBL_DIG, val);
  801. }
  802. else {
  803. utstring_printf (buf, "%lf", val);
  804. }
  805. return 0;
  806. }
  807. /*
  808. * Generic file output
  809. */
  810. static int
  811. ucl_file_append_character (unsigned char c, size_t len, void *ud)
  812. {
  813. FILE *fp = ud;
  814. while (len --) {
  815. fputc (c, fp);
  816. }
  817. return 0;
  818. }
  819. static int
  820. ucl_file_append_len (const unsigned char *str, size_t len, void *ud)
  821. {
  822. FILE *fp = ud;
  823. fwrite (str, len, 1, fp);
  824. return 0;
  825. }
  826. static int
  827. ucl_file_append_int (int64_t val, void *ud)
  828. {
  829. FILE *fp = ud;
  830. fprintf (fp, "%jd", (intmax_t)val);
  831. return 0;
  832. }
  833. static int
  834. ucl_file_append_double (double val, void *ud)
  835. {
  836. FILE *fp = ud;
  837. const double delta = 0.0000001;
  838. if (val == (double)(int)val) {
  839. fprintf (fp, "%.1lf", val);
  840. }
  841. else if (fabs (val - (double)(int)val) < delta) {
  842. /* Write at maximum precision */
  843. fprintf (fp, "%.*lg", DBL_DIG, val);
  844. }
  845. else {
  846. fprintf (fp, "%lf", val);
  847. }
  848. return 0;
  849. }
  850. /*
  851. * Generic file descriptor writing functions
  852. */
  853. static int
  854. ucl_fd_append_character (unsigned char c, size_t len, void *ud)
  855. {
  856. int fd = *(int *)ud;
  857. unsigned char *buf;
  858. if (len == 1) {
  859. return write (fd, &c, 1);
  860. }
  861. else {
  862. buf = malloc (len);
  863. if (buf == NULL) {
  864. /* Fallback */
  865. while (len --) {
  866. if (write (fd, &c, 1) == -1) {
  867. return -1;
  868. }
  869. }
  870. }
  871. else {
  872. memset (buf, c, len);
  873. if (write (fd, buf, len) == -1) {
  874. free(buf);
  875. return -1;
  876. }
  877. free (buf);
  878. }
  879. }
  880. return 0;
  881. }
  882. static int
  883. ucl_fd_append_len (const unsigned char *str, size_t len, void *ud)
  884. {
  885. int fd = *(int *)ud;
  886. return write (fd, str, len);
  887. }
  888. static int
  889. ucl_fd_append_int (int64_t val, void *ud)
  890. {
  891. int fd = *(int *)ud;
  892. char intbuf[64];
  893. snprintf (intbuf, sizeof (intbuf), "%jd", (intmax_t)val);
  894. return write (fd, intbuf, strlen (intbuf));
  895. }
  896. static int
  897. ucl_fd_append_double (double val, void *ud)
  898. {
  899. int fd = *(int *)ud;
  900. const double delta = 0.0000001;
  901. char nbuf[64];
  902. if (val == (double)(int)val) {
  903. snprintf (nbuf, sizeof (nbuf), "%.1lf", val);
  904. }
  905. else if (fabs (val - (double)(int)val) < delta) {
  906. /* Write at maximum precision */
  907. snprintf (nbuf, sizeof (nbuf), "%.*lg", DBL_DIG, val);
  908. }
  909. else {
  910. snprintf (nbuf, sizeof (nbuf), "%lf", val);
  911. }
  912. return write (fd, nbuf, strlen (nbuf));
  913. }
  914. struct ucl_emitter_functions*
  915. ucl_object_emit_memory_funcs (void **pmem)
  916. {
  917. struct ucl_emitter_functions *f;
  918. UT_string *s;
  919. f = calloc (1, sizeof (*f));
  920. if (f != NULL) {
  921. f->ucl_emitter_append_character = ucl_utstring_append_character;
  922. f->ucl_emitter_append_double = ucl_utstring_append_double;
  923. f->ucl_emitter_append_int = ucl_utstring_append_int;
  924. f->ucl_emitter_append_len = ucl_utstring_append_len;
  925. f->ucl_emitter_free_func = free;
  926. utstring_new (s);
  927. f->ud = s;
  928. *pmem = s->d;
  929. s->pd = pmem;
  930. }
  931. return f;
  932. }
  933. struct ucl_emitter_functions*
  934. ucl_object_emit_file_funcs (FILE *fp)
  935. {
  936. struct ucl_emitter_functions *f;
  937. f = calloc (1, sizeof (*f));
  938. if (f != NULL) {
  939. f->ucl_emitter_append_character = ucl_file_append_character;
  940. f->ucl_emitter_append_double = ucl_file_append_double;
  941. f->ucl_emitter_append_int = ucl_file_append_int;
  942. f->ucl_emitter_append_len = ucl_file_append_len;
  943. f->ucl_emitter_free_func = NULL;
  944. f->ud = fp;
  945. }
  946. return f;
  947. }
  948. struct ucl_emitter_functions*
  949. ucl_object_emit_fd_funcs (int fd)
  950. {
  951. struct ucl_emitter_functions *f;
  952. int *ip;
  953. f = calloc (1, sizeof (*f));
  954. if (f != NULL) {
  955. ip = malloc (sizeof (fd));
  956. if (ip == NULL) {
  957. free (f);
  958. return NULL;
  959. }
  960. memcpy (ip, &fd, sizeof (fd));
  961. f->ucl_emitter_append_character = ucl_fd_append_character;
  962. f->ucl_emitter_append_double = ucl_fd_append_double;
  963. f->ucl_emitter_append_int = ucl_fd_append_int;
  964. f->ucl_emitter_append_len = ucl_fd_append_len;
  965. f->ucl_emitter_free_func = free;
  966. f->ud = ip;
  967. }
  968. return f;
  969. }
  970. void
  971. ucl_object_emit_funcs_free (struct ucl_emitter_functions *f)
  972. {
  973. if (f != NULL) {
  974. if (f->ucl_emitter_free_func != NULL) {
  975. f->ucl_emitter_free_func (f->ud);
  976. }
  977. free (f);
  978. }
  979. }
  980. unsigned char *
  981. ucl_object_emit_single_json (const ucl_object_t *obj)
  982. {
  983. UT_string *buf = NULL;
  984. unsigned char *res = NULL;
  985. if (obj == NULL) {
  986. return NULL;
  987. }
  988. utstring_new (buf);
  989. if (buf != NULL) {
  990. switch (obj->type) {
  991. case UCL_OBJECT:
  992. ucl_utstring_append_len ("object", 6, buf);
  993. break;
  994. case UCL_ARRAY:
  995. ucl_utstring_append_len ("array", 5, buf);
  996. break;
  997. case UCL_INT:
  998. ucl_utstring_append_int (obj->value.iv, buf);
  999. break;
  1000. case UCL_FLOAT:
  1001. case UCL_TIME:
  1002. ucl_utstring_append_double (obj->value.dv, buf);
  1003. break;
  1004. case UCL_NULL:
  1005. ucl_utstring_append_len ("null", 4, buf);
  1006. break;
  1007. case UCL_BOOLEAN:
  1008. if (obj->value.iv) {
  1009. ucl_utstring_append_len ("true", 4, buf);
  1010. }
  1011. else {
  1012. ucl_utstring_append_len ("false", 5, buf);
  1013. }
  1014. break;
  1015. case UCL_STRING:
  1016. ucl_utstring_append_len (obj->value.sv, obj->len, buf);
  1017. break;
  1018. case UCL_USERDATA:
  1019. ucl_utstring_append_len ("userdata", 8, buf);
  1020. break;
  1021. }
  1022. res = utstring_body (buf);
  1023. free (buf);
  1024. }
  1025. return res;
  1026. }
  1027. #define LONG_STRING_LIMIT 80
  1028. bool
  1029. ucl_maybe_long_string (const ucl_object_t *obj)
  1030. {
  1031. if (obj->len > LONG_STRING_LIMIT || (obj->flags & UCL_OBJECT_MULTILINE)) {
  1032. /* String is long enough, so search for newline characters in it */
  1033. if (memchr (obj->value.sv, '\n', obj->len) != NULL) {
  1034. return true;
  1035. }
  1036. }
  1037. return false;
  1038. }