2 * libuci - Library for the Unified Configuration Interface
3 * Copyright (C) 2008 Felix Fietkau <nbd@openwrt.org>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License version 2.1
7 * as published by the Free Software Foundation
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
16 * This file contains some common code for the uci library
19 #include <sys/types.h>
27 static const char *uci_errstr[] = {
29 [UCI_ERR_MEM] = "Out of memory",
30 [UCI_ERR_INVAL] = "Invalid argument",
31 [UCI_ERR_NOTFOUND] = "Entry not found",
32 [UCI_ERR_IO] = "I/O error",
33 [UCI_ERR_PARSE] = "Parse error",
34 [UCI_ERR_DUPLICATE] = "Duplicate entry",
35 [UCI_ERR_UNKNOWN] = "Unknown error",
42 /* exported functions */
43 struct uci_context *uci_alloc_context(void)
45 struct uci_context *ctx;
47 ctx = (struct uci_context *) malloc(sizeof(struct uci_context));
48 memset(ctx, 0, sizeof(struct uci_context));
49 uci_list_init(&ctx->root);
50 ctx->flags = UCI_FLAG_STRICT;
55 void uci_free_context(struct uci_context *ctx)
57 struct uci_element *e, *tmp;
59 UCI_TRAP_SAVE(ctx, ignore);
61 uci_foreach_element_safe(&ctx->root, tmp, e) {
62 uci_free_package(uci_to_package(e));
65 UCI_TRAP_RESTORE(ctx);
71 int uci_cleanup(struct uci_context *ctx)
74 uci_file_cleanup(ctx);
78 void uci_perror(struct uci_context *ctx, const char *prefix)
87 if ((err < 0) || (err >= UCI_ERR_LAST))
88 err = UCI_ERR_UNKNOWN;
91 fprintf(stderr, "%s: ", prefix);
93 fprintf(stderr, "%s: ", ctx->func);
98 fprintf(stderr, "%s (%s) at line %d, byte %d\n", uci_errstr[err], (ctx->pctx->reason ? ctx->pctx->reason : "unknown"), ctx->pctx->line, ctx->pctx->byte);
103 fprintf(stderr, "%s\n", uci_errstr[err]);