X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuci.git;a=blobdiff_plain;f=cli.c;h=deb670b62583679234fc68477d4fe6be38b84f71;hp=e1e0a66a9b0c62c812a0abc8b12f725357816a50;hb=7daf94275cce4c9dd74fe4eb846b0f4d40486f1d;hpb=f34c2de12f6f79c72c0b0b9a4f3649ed24817bc8 diff --git a/cli.c b/cli.c index e1e0a66..deb670b 100644 --- a/cli.c +++ b/cli.c @@ -14,6 +14,8 @@ #include #include #include +#include +#include #include #include "uci.h" @@ -85,9 +87,10 @@ static char * uci_lookup_section_ref(struct uci_section *s) { struct uci_type_list *ti = type_list; + char *ret; int maxlen; - if (!s->anonymous || !(flags & CLI_FLAG_SHOW_EXT)) + if (!(flags & CLI_FLAG_SHOW_EXT)) return s->e.name; /* look up in section type list */ @@ -106,19 +109,25 @@ uci_lookup_section_ref(struct uci_section *s) ti->name = s->type; } - maxlen = strlen(s->type) + 1 + 2 + 10; - if (!typestr) { - typestr = malloc(maxlen); + if (s->anonymous) { + maxlen = strlen(s->type) + 1 + 2 + 10; + if (!typestr) { + typestr = malloc(maxlen); + } else { + typestr = realloc(typestr, maxlen); + } + + if (typestr) + sprintf(typestr, "@%s[%d]", ti->name, ti->idx); + + ret = typestr; } else { - typestr = realloc(typestr, maxlen); + ret = s->e.name; } - if (typestr) - sprintf(typestr, "@%s[%d]", ti->name, ti->idx); - ti->idx++; - return typestr; + return ret; } static void uci_usage(void) @@ -147,8 +156,6 @@ static void uci_usage(void) "\t-d set the delimiter for list values in uci show\n" "\t-f use as input instead of stdin\n" "\t-m when importing, merge data into an existing package\n" - "\t-n name unnamed sections on export (default)\n" - "\t-N don't name unnamed sections\n" "\t-p add a search path for config change files\n" "\t-P add a search path for config change files and use as default\n" "\t-q quiet mode (don't print error messages)\n" @@ -168,6 +175,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, "'"); @@ -538,7 +557,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; @@ -551,7 +570,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; } } @@ -583,7 +602,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) { @@ -673,7 +692,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; } @@ -688,13 +707,13 @@ int main(int argc, char **argv) case 'f': if (input != stdin) { fclose(input); - perror("uci"); + 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; @@ -708,12 +727,6 @@ int main(int argc, char **argv) ctx->flags &= ~UCI_FLAG_STRICT; ctx->flags |= UCI_FLAG_PERROR; break; - case 'n': - ctx->flags |= UCI_FLAG_EXPORT_NAME; - break; - case 'N': - ctx->flags &= ~UCI_FLAG_EXPORT_NAME; - break; case 'p': uci_add_delta_path(ctx, optarg); break; @@ -728,6 +741,10 @@ int main(int argc, char **argv) case 'X': flags &= ~CLI_FLAG_SHOW_EXT; break; + case 'n': + case 'N': + /* obsolete */ + break; default: uci_usage(); return 0;