X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuci.git;a=blobdiff_plain;f=cli.c;h=e42555468d9f8c44a071a5d2997954bd0ae3629b;hp=2ee1e36f6b69b03c6dbe6377fc12a94088b0a78f;hb=950437eecd6048dd29eb3e11f4343372b2ddce60;hpb=ec302c635b27e212c2df5ce3378fd94edfbfd886 diff --git a/cli.c b/cli.c index 2ee1e36..e425554 100644 --- a/cli.c +++ b/cli.c @@ -14,6 +14,8 @@ #include #include #include +#include +#include #include #include "uci.h" @@ -168,6 +170,18 @@ static void cli_perror(void) uci_perror(ctx, appname); } +static void cli_error(const char *fmt, ...) +{ + va_list ap; + + if (flags & CLI_FLAG_QUIET) + return; + + va_start(ap, fmt); + vfprintf(stderr, fmt, ap); + va_end(ap); +} + static void uci_print_value(FILE *f, const char *v) { fprintf(f, "'"); @@ -286,7 +300,7 @@ static int package_cmd(int cmd, char *tuple) { struct uci_element *e = NULL; struct uci_ptr ptr; - int ret = 0; + int ret = 1; if (uci_lookup_ptr(ctx, &ptr, tuple, true) != UCI_OK) { cli_perror(); @@ -299,21 +313,25 @@ static int package_cmd(int cmd, char *tuple) uci_show_changes(ptr.p); break; case CMD_COMMIT: - if (flags & CLI_FLAG_NOCOMMIT) - return 0; + if (flags & CLI_FLAG_NOCOMMIT) { + ret = 0; + goto out; + } if (uci_commit(ctx, &ptr.p, false) != UCI_OK) { cli_perror(); - ret = 1; + goto out; } break; case CMD_EXPORT: - uci_export(ctx, stdout, ptr.p, true); + if (uci_export(ctx, stdout, ptr.p, true) != UCI_OK) { + goto out; + } break; case CMD_SHOW: if (!(ptr.flags & UCI_LOOKUP_COMPLETE)) { ctx->err = UCI_ERR_NOTFOUND; cli_perror(); - ret = 1; + goto out; } switch(e->type) { case UCI_TYPE_PACKAGE: @@ -327,11 +345,14 @@ static int package_cmd(int cmd, char *tuple) break; default: /* should not happen */ - return 1; + goto out; } break; } + ret = 0; + +out: if (ptr.p) uci_unload(ctx, ptr.p); return ret; @@ -531,7 +552,7 @@ static int uci_batch_cmd(void) for(i = 0; i <= MAX_ARGS; i++) { if (i == MAX_ARGS) { - fprintf(stderr, "Too many arguments\n"); + cli_error("Too many arguments\n"); return 1; } argv[i] = NULL; @@ -544,7 +565,7 @@ static int uci_batch_cmd(void) break; argv[i] = strdup(argv[i]); if (!argv[i]) { - perror("uci"); + cli_error("uci: %s", strerror(errno)); return 1; } } @@ -576,7 +597,7 @@ static int uci_batch(void) if (ret == 254) return 0; else if (ret == 255) - fprintf(stderr, "Unknown command\n"); + cli_error("Unknown command\n"); /* clean up */ uci_foreach_element_safe(&ctx->root, tmp, e) { @@ -666,7 +687,7 @@ int main(int argc, char **argv) input = stdin; ctx = uci_alloc_context(); if (!ctx) { - fprintf(stderr, "Out of memory\n"); + cli_error("Out of memory\n"); return 1; } @@ -680,13 +701,14 @@ int main(int argc, char **argv) break; case 'f': if (input != stdin) { - perror("uci"); + fclose(input); + cli_error("Too many input files.\n"); return 1; } input = fopen(optarg, "r"); if (!input) { - perror("uci"); + cli_error("uci: %s", strerror(errno)); return 1; } break;