blob: 9685fc5bc8b95903bf2d969f9f07dc72df57a57c [file] [log] [blame]
Radek Krejcid3ca0632019-04-16 16:54:54 +02001/**
2 * @file printer.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
Radek Krejcie7b95092019-05-15 11:03:07 +02004 * @brief Generic libyang printers functions.
Radek Krejcid3ca0632019-04-16 16:54:54 +02005 *
6 * Copyright (c) 2015 - 2019 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
Radek Krejci535ea9f2020-05-29 16:01:05 +020015#define _GNU_SOURCE
Radek Krejcid3ca0632019-04-16 16:54:54 +020016
Radek Krejci535ea9f2020-05-29 16:01:05 +020017#include "printer.h"
18
19#include <assert.h>
Radek Krejcid3ca0632019-04-16 16:54:54 +020020#include <errno.h>
21#include <stdarg.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020022#include <stdio.h>
23#include <stdlib.h>
Radek Krejcid3ca0632019-04-16 16:54:54 +020024#include <string.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020025#include <unistd.h>
Radek Krejcid3ca0632019-04-16 16:54:54 +020026
Radek Krejci535ea9f2020-05-29 16:01:05 +020027#include "common.h"
28#include "config.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020029#include "log.h"
Michal Vasko9b368d32020-02-14 13:53:31 +010030#include "plugins_types.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020031#include "printer_data.h"
32#include "printer_internal.h"
33#include "tree.h"
34#include "tree_schema.h"
Radek Krejcid3ca0632019-04-16 16:54:54 +020035
36/**
37 * @brief informational structure shared by printers
38 */
39struct ext_substmt_info_s ext_substmt_info[] = {
40 {NULL, NULL, 0}, /**< LYEXT_SUBSTMT_SELF */
41 {"argument", "name", SUBST_FLAG_ID}, /**< LYEXT_SUBSTMT_ARGUMENT */
42 {"base", "name", SUBST_FLAG_ID}, /**< LYEXT_SUBSTMT_BASE */
43 {"belongs-to", "module", SUBST_FLAG_ID}, /**< LYEXT_SUBSTMT_BELONGSTO */
44 {"contact", "text", SUBST_FLAG_YIN}, /**< LYEXT_SUBSTMT_CONTACT */
45 {"default", "value", 0}, /**< LYEXT_SUBSTMT_DEFAULT */
46 {"description", "text", SUBST_FLAG_YIN}, /**< LYEXT_SUBSTMT_DESCRIPTION */
47 {"error-app-tag", "value", 0}, /**< LYEXT_SUBSTMT_ERRTAG */
48 {"error-message", "value", SUBST_FLAG_YIN}, /**< LYEXT_SUBSTMT_ERRMSG */
49 {"key", "value", 0}, /**< LYEXT_SUBSTMT_KEY */
50 {"namespace", "uri", 0}, /**< LYEXT_SUBSTMT_NAMESPACE */
51 {"organization", "text", SUBST_FLAG_YIN}, /**< LYEXT_SUBSTMT_ORGANIZATION */
52 {"path", "value", 0}, /**< LYEXT_SUBSTMT_PATH */
53 {"prefix", "value", SUBST_FLAG_ID}, /**< LYEXT_SUBSTMT_PREFIX */
54 {"presence", "value", 0}, /**< LYEXT_SUBSTMT_PRESENCE */
55 {"reference", "text", SUBST_FLAG_YIN}, /**< LYEXT_SUBSTMT_REFERENCE */
56 {"revision-date", "date", SUBST_FLAG_ID}, /**< LYEXT_SUBSTMT_REVISIONDATE */
57 {"units", "name", 0}, /**< LYEXT_SUBSTMT_UNITS */
58 {"value", "value", SUBST_FLAG_ID}, /**< LYEXT_SUBSTMT_VALUE */
59 {"yang-version", "value", SUBST_FLAG_ID}, /**< LYEXT_SUBSTMT_VERSION */
60 {"modifier", "value", SUBST_FLAG_ID}, /**< LYEXT_SUBSTMT_MODIFIER */
61 {"require-instance", "value", SUBST_FLAG_ID}, /**< LYEXT_SUBSTMT_REQINST */
62 {"yin-element", "value", SUBST_FLAG_ID}, /**< LYEXT_SUBSTMT_YINELEM */
63 {"config", "value", SUBST_FLAG_ID}, /**< LYEXT_SUBSTMT_CONFIG */
64 {"mandatory", "value", SUBST_FLAG_ID}, /**< LYEXT_SUBSTMT_MANDATORY */
65 {"ordered-by", "value", SUBST_FLAG_ID}, /**< LYEXT_SUBSTMT_ORDEREDBY */
66 {"status", "value", SUBST_FLAG_ID}, /**< LYEXT_SUBSTMT_STATUS */
67 {"fraction-digits", "value", SUBST_FLAG_ID}, /**< LYEXT_SUBSTMT_DIGITS */
68 {"max-elements", "value", SUBST_FLAG_ID}, /**< LYEXT_SUBSTMT_MAX */
69 {"min-elements", "value", SUBST_FLAG_ID}, /**< LYEXT_SUBSTMT_MIN */
70 {"position", "value", SUBST_FLAG_ID}, /**< LYEXT_SUBSTMT_POSITION */
71 {"unique", "tag", 0}, /**< LYEXT_SUBSTMT_UNIQUE */
72};
73
Michal Vasko6f4cbb62020-02-28 11:15:47 +010074int
Michal Vasko9b368d32020-02-14 13:53:31 +010075ly_is_default(const struct lyd_node *node)
76{
77 const struct lysc_node_leaf *leaf;
78 const struct lysc_node_leaflist *llist;
79 const struct lyd_node_term *term;
Radek Krejci7eb54ba2020-05-18 16:30:04 +020080 LY_ARRAY_SIZE_TYPE u;
Michal Vasko9b368d32020-02-14 13:53:31 +010081
82 assert(node->schema->nodetype & LYD_NODE_TERM);
83 term = (const struct lyd_node_term *)node;
84
85 if (node->schema->nodetype == LYS_LEAF) {
86 leaf = (const struct lysc_node_leaf *)node->schema;
87 if (!leaf->dflt) {
88 return 0;
89 }
90
91 /* compare with the default value */
92 if (leaf->type->plugin->compare(&term->value, leaf->dflt)) {
93 return 0;
94 }
95 } else {
96 llist = (const struct lysc_node_leaflist *)node->schema;
97 if (!llist->dflts) {
98 return 0;
99 }
100
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200101 LY_ARRAY_FOR(llist->dflts, u) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100102 /* compare with each possible default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200103 if (llist->type->plugin->compare(&term->value, llist->dflts[u])) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100104 return 0;
105 }
106 }
107 }
108
109 return 1;
110}
111
112int
113ly_should_print(const struct lyd_node *node, int options)
114{
115 const struct lyd_node *next, *elem;
116
117 if (options & LYDP_WD_TRIM) {
118 /* do not print default nodes */
119 if (node->flags & LYD_DEFAULT) {
120 /* implicit default node/NP container with only default nodes */
121 return 0;
122 } else if (node->schema->nodetype & LYD_NODE_TERM) {
123 if (ly_is_default(node)) {
124 /* explicit default node */
125 return 0;
126 }
127 }
128 } else if ((node->flags & LYD_DEFAULT) && !(options & LYDP_WD_MASK) && !(node->schema->flags & LYS_CONFIG_R)) {
Radek Krejci241f6b52020-05-21 18:13:49 +0200129 /* LYDP_WD_EXPLICIT
Michal Vasko9b368d32020-02-14 13:53:31 +0100130 * - print only if it contains status data in its subtree */
131 LYD_TREE_DFS_BEGIN(node, next, elem) {
Michal Vaskodb4f9e42020-06-01 17:29:56 +0200132 if ((elem->schema->nodetype != LYS_CONTAINER) || (elem->schema->flags & LYS_PRESENCE)) {
133 if (elem->schema->flags & LYS_CONFIG_R) {
134 return 1;
135 }
Michal Vasko9b368d32020-02-14 13:53:31 +0100136 }
137 LYD_TREE_DFS_END(node, next, elem)
138 }
139 return 0;
140 } else if ((node->flags & LYD_DEFAULT) && (node->schema->nodetype == LYS_CONTAINER) && !(options & LYDP_KEEPEMPTYCONT)) {
141 /* avoid empty default containers */
142 LYD_TREE_DFS_BEGIN(node, next, elem) {
143 if (elem->schema->nodetype != LYS_CONTAINER) {
144 return 1;
145 }
146 assert(elem->flags & LYD_DEFAULT);
147 LYD_TREE_DFS_END(node, next, elem)
148 }
149 return 0;
150 }
151
152 return 1;
153}
154
Radek Krejci241f6b52020-05-21 18:13:49 +0200155API LY_OUT_TYPE
156ly_out_type(const struct ly_out *out)
Radek Krejcia5bba312020-01-09 15:41:20 +0100157{
Radek Krejci241f6b52020-05-21 18:13:49 +0200158 LY_CHECK_ARG_RET(NULL, out, LY_OUT_ERROR);
Radek Krejcia5bba312020-01-09 15:41:20 +0100159 return out->type;
160}
161
Radek Krejci241f6b52020-05-21 18:13:49 +0200162API struct ly_out *
163ly_out_new_clb(ssize_t (*writeclb)(void *arg, const void *buf, size_t count), void *arg)
Radek Krejcia5bba312020-01-09 15:41:20 +0100164{
Radek Krejci241f6b52020-05-21 18:13:49 +0200165 struct ly_out *out;
Radek Krejcia5bba312020-01-09 15:41:20 +0100166
167 out = calloc(1, sizeof *out);
168 LY_CHECK_ERR_RET(!out, LOGMEM(NULL), NULL);
169
Radek Krejci241f6b52020-05-21 18:13:49 +0200170 out->type = LY_OUT_CALLBACK;
Radek Krejcia5bba312020-01-09 15:41:20 +0100171 out->method.clb.func = writeclb;
172 out->method.clb.arg = arg;
173
174 return out;
175}
176
Radek Krejci241f6b52020-05-21 18:13:49 +0200177API ssize_t (*ly_out_clb(struct ly_out *out, ssize_t (*writeclb)(void *arg, const void *buf, size_t count)))(void *arg, const void *buf, size_t count)
Radek Krejcia5bba312020-01-09 15:41:20 +0100178{
179 void *prev_clb;
180
Radek Krejci241f6b52020-05-21 18:13:49 +0200181 LY_CHECK_ARG_RET(NULL, out, out->type == LY_OUT_CALLBACK, NULL);
Radek Krejcia5bba312020-01-09 15:41:20 +0100182
183 prev_clb = out->method.clb.func;
184
185 if (writeclb) {
186 out->method.clb.func = writeclb;
187 }
188
189 return prev_clb;
190}
191
192API void *
Radek Krejci241f6b52020-05-21 18:13:49 +0200193ly_out_clb_arg(struct ly_out *out, void *arg)
Radek Krejcia5bba312020-01-09 15:41:20 +0100194{
195 void *prev_arg;
196
Radek Krejci241f6b52020-05-21 18:13:49 +0200197 LY_CHECK_ARG_RET(NULL, out, out->type == LY_OUT_CALLBACK, NULL);
Radek Krejcia5bba312020-01-09 15:41:20 +0100198
199 prev_arg = out->method.clb.arg;
200
201 if (arg) {
202 out->method.clb.arg = arg;
203 }
204
205 return prev_arg;
206}
207
Radek Krejci241f6b52020-05-21 18:13:49 +0200208API struct ly_out *
209ly_out_new_fd(int fd)
Radek Krejcia5bba312020-01-09 15:41:20 +0100210{
Radek Krejci241f6b52020-05-21 18:13:49 +0200211 struct ly_out *out;
Radek Krejcia5bba312020-01-09 15:41:20 +0100212
213 out = calloc(1, sizeof *out);
214 LY_CHECK_ERR_RET(!out, LOGMEM(NULL), NULL);
215
216#ifdef HAVE_VDPRINTF
Radek Krejci241f6b52020-05-21 18:13:49 +0200217 out->type = LY_OUT_FD;
Radek Krejcia5bba312020-01-09 15:41:20 +0100218 out->method.fd = fd;
219#else
220 /* Without vdfprintf(), change the printing method to printing to a FILE stream.
221 * To preserve the original file descriptor, duplicate it and use it to open file stream. */
Radek Krejci241f6b52020-05-21 18:13:49 +0200222 out->type = LY_OUT_FDSTREAM;
Radek Krejcia5bba312020-01-09 15:41:20 +0100223 out->method.fdstream.fd = fd;
224
225 fd = dup(out->method.fdstream.fd);
226 if (fd < 0) {
227 LOGERR(NULL, LY_ESYS, "Unable to duplicate provided file descriptor (%d) for printing the output (%s).",
228 out->method.fdstream.fd, strerror(errno));
229 free(out);
230 return NULL;
231 }
232 out->method.fdstream.f = fdopen(fd, "a");
233 if (!out->method.fdstream.f) {
234 LOGERR(NULL, LY_ESYS, "Unable to open provided file descriptor (%d) for printing the output (%s).",
235 out->method.fdstream.fd, strerror(errno));
236 free(out);
237 fclose(fd);
238 return NULL;
239 }
240#endif
241
242 return out;
243}
244
245API int
Radek Krejci241f6b52020-05-21 18:13:49 +0200246ly_out_fd(struct ly_out *out, int fd)
Radek Krejcia5bba312020-01-09 15:41:20 +0100247{
248 int prev_fd;
249
Radek Krejci241f6b52020-05-21 18:13:49 +0200250 LY_CHECK_ARG_RET(NULL, out, out->type <= LY_OUT_FDSTREAM, -1);
Radek Krejcia5bba312020-01-09 15:41:20 +0100251
Radek Krejci241f6b52020-05-21 18:13:49 +0200252 if (out->type == LY_OUT_FDSTREAM) {
Radek Krejcia5bba312020-01-09 15:41:20 +0100253 prev_fd = out->method.fdstream.fd;
Radek Krejci241f6b52020-05-21 18:13:49 +0200254 } else { /* LY_OUT_FD */
Radek Krejcia5bba312020-01-09 15:41:20 +0100255 prev_fd = out->method.fd;
256 }
257
258 if (fd != -1) {
259 /* replace output stream */
Radek Krejci241f6b52020-05-21 18:13:49 +0200260 if (out->type == LY_OUT_FDSTREAM) {
Radek Krejcia5bba312020-01-09 15:41:20 +0100261 int streamfd;
262 FILE *stream;
263
264 streamfd = dup(fd);
265 if (streamfd < 0) {
266 LOGERR(NULL, LY_ESYS, "Unable to duplicate provided file descriptor (%d) for printing the output (%s).", fd, strerror(errno));
267 return -1;
268 }
269 stream = fdopen(streamfd, "a");
270 if (!stream) {
271 LOGERR(NULL, LY_ESYS, "Unable to open provided file descriptor (%d) for printing the output (%s).", fd, strerror(errno));
272 close(streamfd);
273 return -1;
274 }
275 /* close only the internally created stream, file descriptor is returned and supposed to be closed by the caller */
276 fclose(out->method.fdstream.f);
277 out->method.fdstream.f = stream;
278 out->method.fdstream.fd = streamfd;
Radek Krejci241f6b52020-05-21 18:13:49 +0200279 } else { /* LY_OUT_FD */
Radek Krejcia5bba312020-01-09 15:41:20 +0100280 out->method.fd = fd;
281 }
282 }
283
284 return prev_fd;
285}
286
Radek Krejci241f6b52020-05-21 18:13:49 +0200287API struct ly_out *
288ly_out_new_file(FILE *f)
Radek Krejcia5bba312020-01-09 15:41:20 +0100289{
Radek Krejci241f6b52020-05-21 18:13:49 +0200290 struct ly_out *out;
Radek Krejcia5bba312020-01-09 15:41:20 +0100291
292 out = calloc(1, sizeof *out);
293 LY_CHECK_ERR_RET(!out, LOGMEM(NULL), NULL);
294
Radek Krejci241f6b52020-05-21 18:13:49 +0200295 out->type = LY_OUT_FILE;
Radek Krejcia5bba312020-01-09 15:41:20 +0100296 out->method.f = f;
297
298 return out;
299}
300
301API FILE *
Radek Krejci241f6b52020-05-21 18:13:49 +0200302ly_out_file(struct ly_out *out, FILE *f)
Radek Krejcia5bba312020-01-09 15:41:20 +0100303{
304 FILE *prev_f;
305
Radek Krejci241f6b52020-05-21 18:13:49 +0200306 LY_CHECK_ARG_RET(NULL, out, out->type == LY_OUT_FILE, NULL);
Radek Krejcia5bba312020-01-09 15:41:20 +0100307
308 prev_f = out->method.f;
309
310 if (f) {
311 out->method.f = f;
312 }
313
314 return prev_f;
315}
316
Radek Krejci241f6b52020-05-21 18:13:49 +0200317API struct ly_out *
318ly_out_new_memory(char **strp, size_t size)
Radek Krejcia5bba312020-01-09 15:41:20 +0100319{
Radek Krejci241f6b52020-05-21 18:13:49 +0200320 struct ly_out *out;
Radek Krejcia5bba312020-01-09 15:41:20 +0100321
322 out = calloc(1, sizeof *out);
323 LY_CHECK_ERR_RET(!out, LOGMEM(NULL), NULL);
324
Radek Krejci241f6b52020-05-21 18:13:49 +0200325 out->type = LY_OUT_MEMORY;
Radek Krejcia5bba312020-01-09 15:41:20 +0100326 out->method.mem.buf = strp;
327 if (!size) {
328 /* buffer is supposed to be allocated */
329 *strp = NULL;
330 } else if (*strp) {
331 /* there is already buffer to use */
332 out->method.mem.size = size;
333 }
334
335 return out;
336}
337
338char *
Radek Krejci241f6b52020-05-21 18:13:49 +0200339ly_out_memory(struct ly_out *out, char **strp, size_t size)
Radek Krejcia5bba312020-01-09 15:41:20 +0100340{
341 char *data;
342
Radek Krejci241f6b52020-05-21 18:13:49 +0200343 LY_CHECK_ARG_RET(NULL, out, out->type == LY_OUT_MEMORY, NULL);
Radek Krejcia5bba312020-01-09 15:41:20 +0100344
345 data = *out->method.mem.buf;
346
347 if (strp) {
348 out->method.mem.buf = strp;
349 out->method.mem.len = out->method.mem.size = 0;
350 out->printed = 0;
351 if (!size) {
352 /* buffer is supposed to be allocated */
353 *strp = NULL;
354 } else if (*strp) {
355 /* there is already buffer to use */
356 out->method.mem.size = size;
357 }
358 }
359
360 return data;
361}
362
363API LY_ERR
Radek Krejci241f6b52020-05-21 18:13:49 +0200364ly_out_reset(struct ly_out *out)
Radek Krejcia5bba312020-01-09 15:41:20 +0100365{
366 LY_CHECK_ARG_RET(NULL, out, LY_EINVAL);
367
368 switch(out->type) {
Radek Krejci241f6b52020-05-21 18:13:49 +0200369 case LY_OUT_ERROR:
Radek Krejcia5bba312020-01-09 15:41:20 +0100370 LOGINT(NULL);
371 return LY_EINT;
Radek Krejci241f6b52020-05-21 18:13:49 +0200372 case LY_OUT_FD:
Radek Krejcia5bba312020-01-09 15:41:20 +0100373 if ((lseek(out->method.fd, 0, SEEK_SET) == -1) && errno != ESPIPE) {
374 LOGERR(NULL, LY_ESYS, "Seeking output file descriptor failed (%s).", strerror(errno));
375 return LY_ESYS;
376 }
Radek Krejcic5a12e12020-05-27 17:09:59 +0200377 if (errno != ESPIPE && ftruncate(out->method.fd, 0) == -1) {
378 LOGERR(NULL, LY_ESYS, "Truncating output file failed (%s).", strerror(errno));
379 return LY_ESYS;
380 }
Radek Krejcia5bba312020-01-09 15:41:20 +0100381 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200382 case LY_OUT_FDSTREAM:
383 case LY_OUT_FILE:
384 case LY_OUT_FILEPATH:
Radek Krejcia5bba312020-01-09 15:41:20 +0100385 if ((fseek(out->method.f, 0, SEEK_SET) == -1) && errno != ESPIPE) {
386 LOGERR(NULL, LY_ESYS, "Seeking output file stream failed (%s).", strerror(errno));
387 return LY_ESYS;
388 }
Radek Krejcic5a12e12020-05-27 17:09:59 +0200389 if (errno != ESPIPE && ftruncate(fileno(out->method.f), 0) == -1) {
390 LOGERR(NULL, LY_ESYS, "Truncating output file failed (%s).", strerror(errno));
391 return LY_ESYS;
392 }
Radek Krejcia5bba312020-01-09 15:41:20 +0100393 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200394 case LY_OUT_MEMORY:
Radek Krejcic5a12e12020-05-27 17:09:59 +0200395 if (out->method.mem.buf && *out->method.mem.buf) {
396 memset(*out->method.mem.buf, 0, out->method.mem.len);
397 }
Radek Krejcia5bba312020-01-09 15:41:20 +0100398 out->printed = 0;
399 out->method.mem.len = 0;
400 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200401 case LY_OUT_CALLBACK:
Radek Krejcia5bba312020-01-09 15:41:20 +0100402 /* nothing to do (not seekable) */
403 break;
404 }
405
406 return LY_SUCCESS;
407}
408
Radek Krejci241f6b52020-05-21 18:13:49 +0200409API struct ly_out *
410ly_out_new_filepath(const char *filepath)
Radek Krejcia5bba312020-01-09 15:41:20 +0100411{
Radek Krejci241f6b52020-05-21 18:13:49 +0200412 struct ly_out *out;
Radek Krejcia5bba312020-01-09 15:41:20 +0100413
414 out = calloc(1, sizeof *out);
415 LY_CHECK_ERR_RET(!out, LOGMEM(NULL), NULL);
416
Radek Krejci241f6b52020-05-21 18:13:49 +0200417 out->type = LY_OUT_FILEPATH;
Radek Krejcia5bba312020-01-09 15:41:20 +0100418 out->method.fpath.f = fopen(filepath, "w");
419 if (!out->method.fpath.f) {
420 LOGERR(NULL, LY_ESYS, "Failed to open file \"%s\" (%s).", filepath, strerror(errno));
421 return NULL;
422 }
423 out->method.fpath.filepath = strdup(filepath);
424 return out;
425}
426
427API const char *
Radek Krejci241f6b52020-05-21 18:13:49 +0200428ly_out_filepath(struct ly_out *out, const char *filepath)
Radek Krejcia5bba312020-01-09 15:41:20 +0100429{
430 FILE *f;
431
Radek Krejci241f6b52020-05-21 18:13:49 +0200432 LY_CHECK_ARG_RET(NULL, out, out->type == LY_OUT_FILEPATH, filepath ? NULL : ((void *)-1));
Radek Krejcia5bba312020-01-09 15:41:20 +0100433
434 if (!filepath) {
435 return out->method.fpath.filepath;
436 }
437
438 /* replace filepath */
439 f = out->method.fpath.f;
440 out->method.fpath.f = fopen(filepath, "w");
441 if (!out->method.fpath.f) {
442 LOGERR(NULL, LY_ESYS, "Failed to open file \"%s\" (%s).", filepath, strerror(errno));
443 out->method.fpath.f = f;
444 return ((void *)-1);
445 }
446 fclose(f);
447 free(out->method.fpath.filepath);
448 out->method.fpath.filepath = strdup(filepath);
449
450 return NULL;
451}
452
453API void
Radek Krejci241f6b52020-05-21 18:13:49 +0200454ly_out_free(struct ly_out *out, void (*clb_arg_destructor)(void *arg), int destroy)
Radek Krejcia5bba312020-01-09 15:41:20 +0100455{
456 if (!out) {
457 return;
458 }
459
460 switch (out->type) {
Radek Krejci241f6b52020-05-21 18:13:49 +0200461 case LY_OUT_CALLBACK:
Radek Krejcia5bba312020-01-09 15:41:20 +0100462 if (clb_arg_destructor) {
463 clb_arg_destructor(out->method.clb.arg);
464 }
465 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200466 case LY_OUT_FDSTREAM:
Radek Krejcia5bba312020-01-09 15:41:20 +0100467 fclose(out->method.fdstream.f);
468 if (destroy) {
469 close(out->method.fdstream.fd);
470 }
471 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200472 case LY_OUT_FD:
Radek Krejcia5bba312020-01-09 15:41:20 +0100473 if (destroy) {
474 close(out->method.fd);
475 }
476 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200477 case LY_OUT_FILE:
Radek Krejcia5bba312020-01-09 15:41:20 +0100478 if (destroy) {
479 fclose(out->method.f);
480 }
481 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200482 case LY_OUT_MEMORY:
Radek Krejcia5bba312020-01-09 15:41:20 +0100483 if (destroy) {
484 free(*out->method.mem.buf);
485 }
486 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200487 case LY_OUT_FILEPATH:
Radek Krejcia5bba312020-01-09 15:41:20 +0100488 free(out->method.fpath.filepath);
Radek Krejci2aae3752020-05-27 18:16:30 +0200489 fclose(out->method.fpath.f);
Radek Krejcia5bba312020-01-09 15:41:20 +0100490 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200491 case LY_OUT_ERROR:
Radek Krejcia5bba312020-01-09 15:41:20 +0100492 LOGINT(NULL);
493 }
494 free(out);
495}
496
Radek Krejcibaeb8382020-05-27 16:44:53 +0200497API ssize_t
Radek Krejci241f6b52020-05-21 18:13:49 +0200498ly_print(struct ly_out *out, const char *format, ...)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200499{
500 int count = 0;
501 char *msg = NULL, *aux;
502 va_list ap;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200503
Radek Krejcibaeb8382020-05-27 16:44:53 +0200504 LYOUT_CHECK(out, -1 * out->status);
Radek Krejci56cc0872019-04-30 09:22:27 +0200505
Radek Krejcid3ca0632019-04-16 16:54:54 +0200506 va_start(ap, format);
507
508 switch (out->type) {
Radek Krejci241f6b52020-05-21 18:13:49 +0200509 case LY_OUT_FD:
Radek Krejcid3ca0632019-04-16 16:54:54 +0200510#ifdef HAVE_VDPRINTF
511 count = vdprintf(out->method.fd, format, ap);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200512 break;
Radek Krejci4a0ed4a2019-04-18 15:08:34 +0200513#else
Radek Krejci241f6b52020-05-21 18:13:49 +0200514 /* never should be here since ly_out_fd() is supposed to set type to LY_OUT_FDSTREAM in case vdprintf() is missing */
Radek Krejcia5bba312020-01-09 15:41:20 +0100515 LOGINT(NULL);
Radek Krejcibaeb8382020-05-27 16:44:53 +0200516 va_end(ap);
517 return -LY_EINT;
Radek Krejci4a0ed4a2019-04-18 15:08:34 +0200518#endif
Radek Krejci241f6b52020-05-21 18:13:49 +0200519 case LY_OUT_FDSTREAM:
520 case LY_OUT_FILEPATH:
521 case LY_OUT_FILE:
Radek Krejcid3ca0632019-04-16 16:54:54 +0200522 count = vfprintf(out->method.f, format, ap);
523 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200524 case LY_OUT_MEMORY:
Radek Krejci897ad2e2019-04-29 16:43:07 +0200525 if ((count = vasprintf(&msg, format, ap)) < 0) {
526 break;
527 }
Radek Krejcid3ca0632019-04-16 16:54:54 +0200528 if (out->method.mem.len + count + 1 > out->method.mem.size) {
Radek Krejcia5bba312020-01-09 15:41:20 +0100529 aux = ly_realloc(*out->method.mem.buf, out->method.mem.len + count + 1);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200530 if (!aux) {
531 out->method.mem.buf = NULL;
532 out->method.mem.len = 0;
533 out->method.mem.size = 0;
534 LOGMEM(NULL);
535 va_end(ap);
Radek Krejcibaeb8382020-05-27 16:44:53 +0200536 return -LY_EMEM;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200537 }
Radek Krejcia5bba312020-01-09 15:41:20 +0100538 *out->method.mem.buf = aux;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200539 out->method.mem.size = out->method.mem.len + count + 1;
540 }
Radek Krejcia5bba312020-01-09 15:41:20 +0100541 memcpy(&(*out->method.mem.buf)[out->method.mem.len], msg, count);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200542 out->method.mem.len += count;
Radek Krejcia5bba312020-01-09 15:41:20 +0100543 (*out->method.mem.buf)[out->method.mem.len] = '\0';
Radek Krejcid3ca0632019-04-16 16:54:54 +0200544 free(msg);
545 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200546 case LY_OUT_CALLBACK:
Radek Krejci897ad2e2019-04-29 16:43:07 +0200547 if ((count = vasprintf(&msg, format, ap)) < 0) {
548 break;
549 }
Radek Krejcia5bba312020-01-09 15:41:20 +0100550 count = out->method.clb.func(out->method.clb.arg, msg, count);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200551 free(msg);
552 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200553 case LY_OUT_ERROR:
Radek Krejcia5bba312020-01-09 15:41:20 +0100554 LOGINT(NULL);
Radek Krejcibaeb8382020-05-27 16:44:53 +0200555 va_end(ap);
556 return -LY_EINT;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200557 }
558
559 va_end(ap);
560
561 if (count < 0) {
Radek Krejci897ad2e2019-04-29 16:43:07 +0200562 LOGERR(out->ctx, LY_ESYS, "%s: writing data failed (%s).", __func__, strerror(errno));
Radek Krejci56cc0872019-04-30 09:22:27 +0200563 out->status = LY_ESYS;
Radek Krejcibaeb8382020-05-27 16:44:53 +0200564 return -LY_ESYS;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200565 } else {
Radek Krejci241f6b52020-05-21 18:13:49 +0200566 if (out->type == LY_OUT_FDSTREAM) {
Radek Krejcia5bba312020-01-09 15:41:20 +0100567 /* move the original file descriptor to the end of the output file */
568 lseek(out->method.fdstream.fd, 0, SEEK_END);
569 }
Radek Krejci897ad2e2019-04-29 16:43:07 +0200570 out->printed += count;
Radek Krejcibaeb8382020-05-27 16:44:53 +0200571 return count;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200572 }
573}
574
Radek Krejci2aae3752020-05-27 18:16:30 +0200575API void
Radek Krejci241f6b52020-05-21 18:13:49 +0200576ly_print_flush(struct ly_out *out)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200577{
578 switch (out->type) {
Radek Krejci241f6b52020-05-21 18:13:49 +0200579 case LY_OUT_FDSTREAM:
Radek Krejcia5bba312020-01-09 15:41:20 +0100580 /* move the original file descriptor to the end of the output file */
581 lseek(out->method.fdstream.fd, 0, SEEK_END);
582 fflush(out->method.fdstream.f);
583 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200584 case LY_OUT_FILEPATH:
585 case LY_OUT_FILE:
Radek Krejcid3ca0632019-04-16 16:54:54 +0200586 fflush(out->method.f);
587 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200588 case LY_OUT_FD:
Radek Krejcie7b95092019-05-15 11:03:07 +0200589 fsync(out->method.fd);
590 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200591 case LY_OUT_MEMORY:
592 case LY_OUT_CALLBACK:
Radek Krejcid3ca0632019-04-16 16:54:54 +0200593 /* nothing to do */
594 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200595 case LY_OUT_ERROR:
Radek Krejcia5bba312020-01-09 15:41:20 +0100596 LOGINT(NULL);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200597 }
Radek Krejcie7b95092019-05-15 11:03:07 +0200598
599 free(out->buffered);
600 out->buf_size = out->buf_len = 0;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200601}
602
Radek Krejcibaeb8382020-05-27 16:44:53 +0200603API ssize_t
Radek Krejci241f6b52020-05-21 18:13:49 +0200604ly_write(struct ly_out *out, const char *buf, size_t len)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200605{
606 int written = 0;
607
Radek Krejcibaeb8382020-05-27 16:44:53 +0200608 LYOUT_CHECK(out, -1 * out->status);
Radek Krejci56cc0872019-04-30 09:22:27 +0200609
Radek Krejcid3ca0632019-04-16 16:54:54 +0200610 if (out->hole_count) {
611 /* we are buffering data after a hole */
Radek Krejcie7b95092019-05-15 11:03:07 +0200612 if (out->buf_len + len > out->buf_size) {
613 out->buffered = ly_realloc(out->buffered, out->buf_len + len);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200614 if (!out->buffered) {
615 out->buf_len = 0;
616 out->buf_size = 0;
Radek Krejcibaeb8382020-05-27 16:44:53 +0200617 LOGMEM(NULL);
618 return -LY_EMEM;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200619 }
Radek Krejcie7b95092019-05-15 11:03:07 +0200620 out->buf_size = out->buf_len + len;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200621 }
622
Radek Krejcie7b95092019-05-15 11:03:07 +0200623 memcpy(&out->buffered[out->buf_len], buf, len);
624 out->buf_len += len;
Radek Krejcibaeb8382020-05-27 16:44:53 +0200625 return len;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200626 }
627
Radek Krejci897ad2e2019-04-29 16:43:07 +0200628repeat:
Radek Krejcid3ca0632019-04-16 16:54:54 +0200629 switch (out->type) {
Radek Krejci241f6b52020-05-21 18:13:49 +0200630 case LY_OUT_MEMORY:
Radek Krejcie7b95092019-05-15 11:03:07 +0200631 if (out->method.mem.len + len + 1 > out->method.mem.size) {
Radek Krejcia5bba312020-01-09 15:41:20 +0100632 *out->method.mem.buf = ly_realloc(*out->method.mem.buf, out->method.mem.len + len + 1);
633 if (!*out->method.mem.buf) {
Radek Krejcid3ca0632019-04-16 16:54:54 +0200634 out->method.mem.len = 0;
635 out->method.mem.size = 0;
Radek Krejcibaeb8382020-05-27 16:44:53 +0200636 LOGMEM(NULL);
637 return -LY_EMEM;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200638 }
Radek Krejcie7b95092019-05-15 11:03:07 +0200639 out->method.mem.size = out->method.mem.len + len + 1;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200640 }
Radek Krejcia5bba312020-01-09 15:41:20 +0100641 memcpy(&(*out->method.mem.buf)[out->method.mem.len], buf, len);
Radek Krejcie7b95092019-05-15 11:03:07 +0200642 out->method.mem.len += len;
Radek Krejcia5bba312020-01-09 15:41:20 +0100643 (*out->method.mem.buf)[out->method.mem.len] = '\0';
Radek Krejci897ad2e2019-04-29 16:43:07 +0200644
Radek Krejcie7b95092019-05-15 11:03:07 +0200645 out->printed += len;
Radek Krejcibaeb8382020-05-27 16:44:53 +0200646 return len;
Radek Krejci241f6b52020-05-21 18:13:49 +0200647 case LY_OUT_FD:
Radek Krejcie7b95092019-05-15 11:03:07 +0200648 written = write(out->method.fd, buf, len);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200649 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200650 case LY_OUT_FDSTREAM:
651 case LY_OUT_FILEPATH:
652 case LY_OUT_FILE:
Radek Krejcie7b95092019-05-15 11:03:07 +0200653 written = fwrite(buf, sizeof *buf, len, out->method.f);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200654 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200655 case LY_OUT_CALLBACK:
Radek Krejcia5bba312020-01-09 15:41:20 +0100656 written = out->method.clb.func(out->method.clb.arg, buf, len);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200657 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200658 case LY_OUT_ERROR:
Radek Krejcia5bba312020-01-09 15:41:20 +0100659 LOGINT(NULL);
Radek Krejcibaeb8382020-05-27 16:44:53 +0200660 return -LY_EINT;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200661 }
662
663 if (written < 0) {
Radek Krejci897ad2e2019-04-29 16:43:07 +0200664 if (errno == EAGAIN || errno == EWOULDBLOCK) {
665 goto repeat;
666 }
667 LOGERR(out->ctx, LY_ESYS, "%s: writing data failed (%s).", __func__, strerror(errno));
Radek Krejci56cc0872019-04-30 09:22:27 +0200668 out->status = LY_ESYS;
Radek Krejcibaeb8382020-05-27 16:44:53 +0200669 return -LY_ESYS;
Radek Krejcie7b95092019-05-15 11:03:07 +0200670 } else if ((size_t)written != len) {
671 LOGERR(out->ctx, LY_ESYS, "%s: writing data failed (unable to write %u from %u data).", __func__, len - (size_t)written, len);
Radek Krejci56cc0872019-04-30 09:22:27 +0200672 out->status = LY_ESYS;
Radek Krejcibaeb8382020-05-27 16:44:53 +0200673 return -LY_ESYS;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200674 } else {
Radek Krejci241f6b52020-05-21 18:13:49 +0200675 if (out->type == LY_OUT_FDSTREAM) {
Radek Krejcia5bba312020-01-09 15:41:20 +0100676 /* move the original file descriptor to the end of the output file */
677 lseek(out->method.fdstream.fd, 0, SEEK_END);
678 }
Radek Krejci897ad2e2019-04-29 16:43:07 +0200679 out->printed += written;
Radek Krejcibaeb8382020-05-27 16:44:53 +0200680 return written;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200681 }
682}
683
Radek Krejcibaeb8382020-05-27 16:44:53 +0200684ssize_t
Radek Krejci241f6b52020-05-21 18:13:49 +0200685ly_write_skip(struct ly_out *out, size_t count, size_t *position)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200686{
Radek Krejcibaeb8382020-05-27 16:44:53 +0200687 LYOUT_CHECK(out, -1 * out->status);
Radek Krejci56cc0872019-04-30 09:22:27 +0200688
Radek Krejcid3ca0632019-04-16 16:54:54 +0200689 switch (out->type) {
Radek Krejci241f6b52020-05-21 18:13:49 +0200690 case LY_OUT_MEMORY:
Radek Krejcid3ca0632019-04-16 16:54:54 +0200691 if (out->method.mem.len + count > out->method.mem.size) {
Radek Krejcia5bba312020-01-09 15:41:20 +0100692 *out->method.mem.buf = ly_realloc(*out->method.mem.buf, out->method.mem.len + count);
693 if (!(*out->method.mem.buf)) {
Radek Krejcid3ca0632019-04-16 16:54:54 +0200694 out->method.mem.len = 0;
695 out->method.mem.size = 0;
Radek Krejcibaeb8382020-05-27 16:44:53 +0200696 out->status = LY_EMEM;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200697 LOGMEM_RET(NULL);
698 }
699 out->method.mem.size = out->method.mem.len + count;
700 }
701
702 /* save the current position */
703 *position = out->method.mem.len;
704
705 /* skip the memory */
706 out->method.mem.len += count;
Radek Krejci897ad2e2019-04-29 16:43:07 +0200707
708 /* update printed bytes counter despite we actually printed just a hole */
709 out->printed += count;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200710 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200711 case LY_OUT_FD:
712 case LY_OUT_FDSTREAM:
713 case LY_OUT_FILEPATH:
714 case LY_OUT_FILE:
715 case LY_OUT_CALLBACK:
Radek Krejcid3ca0632019-04-16 16:54:54 +0200716 /* buffer the hole */
717 if (out->buf_len + count > out->buf_size) {
718 out->buffered = ly_realloc(out->buffered, out->buf_len + count);
719 if (!out->buffered) {
720 out->buf_len = 0;
721 out->buf_size = 0;
Radek Krejcibaeb8382020-05-27 16:44:53 +0200722 out->status = LY_EMEM;
723 LOGMEM(NULL);
724 return -LY_EMEM;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200725 }
726 out->buf_size = out->buf_len + count;
727 }
728
729 /* save the current position */
730 *position = out->buf_len;
731
732 /* skip the memory */
733 out->buf_len += count;
734
735 /* increase hole counter */
736 ++out->hole_count;
Radek Krejcia5bba312020-01-09 15:41:20 +0100737
738 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200739 case LY_OUT_ERROR:
Radek Krejcia5bba312020-01-09 15:41:20 +0100740 LOGINT(NULL);
Radek Krejcibaeb8382020-05-27 16:44:53 +0200741 return -LY_EINT;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200742 }
743
Radek Krejcibaeb8382020-05-27 16:44:53 +0200744 return count;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200745}
746
Radek Krejcibaeb8382020-05-27 16:44:53 +0200747ssize_t
Radek Krejci241f6b52020-05-21 18:13:49 +0200748ly_write_skipped(struct ly_out *out, size_t position, const char *buf, size_t count)
Radek Krejcid3ca0632019-04-16 16:54:54 +0200749{
Radek Krejcibaeb8382020-05-27 16:44:53 +0200750 ssize_t ret = LY_SUCCESS;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200751
Radek Krejcibaeb8382020-05-27 16:44:53 +0200752 LYOUT_CHECK(out, -1 * out->status);
Radek Krejci56cc0872019-04-30 09:22:27 +0200753
Radek Krejcid3ca0632019-04-16 16:54:54 +0200754 switch (out->type) {
Radek Krejci241f6b52020-05-21 18:13:49 +0200755 case LY_OUT_MEMORY:
Radek Krejcid3ca0632019-04-16 16:54:54 +0200756 /* write */
Radek Krejcia5bba312020-01-09 15:41:20 +0100757 memcpy(&(*out->method.mem.buf)[position], buf, count);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200758 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200759 case LY_OUT_FD:
760 case LY_OUT_FDSTREAM:
761 case LY_OUT_FILEPATH:
762 case LY_OUT_FILE:
763 case LY_OUT_CALLBACK:
Radek Krejcid3ca0632019-04-16 16:54:54 +0200764 if (out->buf_len < position + count) {
Radek Krejcibaeb8382020-05-27 16:44:53 +0200765 out->status = LY_EMEM;
766 LOGMEM(NULL);
767 return -LY_EMEM;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200768 }
769
770 /* write into the hole */
771 memcpy(&out->buffered[position], buf, count);
772
773 /* decrease hole counter */
774 --out->hole_count;
775
776 if (!out->hole_count) {
Radek Krejci897ad2e2019-04-29 16:43:07 +0200777 /* all holes filled, we can write the buffer,
778 * printed bytes counter is updated by ly_write() */
Radek Krejci241f6b52020-05-21 18:13:49 +0200779 ret = ly_write(out, out->buffered, out->buf_len);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200780 out->buf_len = 0;
781 }
782 break;
Radek Krejci241f6b52020-05-21 18:13:49 +0200783 case LY_OUT_ERROR:
Radek Krejcia5bba312020-01-09 15:41:20 +0100784 LOGINT(NULL);
Radek Krejcibaeb8382020-05-27 16:44:53 +0200785 return -LY_EINT;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200786 }
787
Radek Krejci241f6b52020-05-21 18:13:49 +0200788 if (out->type == LY_OUT_FILEPATH) {
Radek Krejcia5bba312020-01-09 15:41:20 +0100789 /* move the original file descriptor to the end of the output file */
790 lseek(out->method.fdstream.fd, 0, SEEK_END);
791 }
Radek Krejcibaeb8382020-05-27 16:44:53 +0200792 return ret < 0 ? (-1 * ret) : LY_SUCCESS;
Radek Krejcid3ca0632019-04-16 16:54:54 +0200793}