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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189
  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 || obj->len == 0) {
  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 || obj->len == 0) {
  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 || obj->len == 0) {
  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 || obj->len == 0) {
  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. }