X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuci.git;a=blobdiff_plain;f=cli.c;h=f8b45dba091f088f84e22dc98503fe9e6e1fd7e3;hp=a1f4ce35f97a10bba7f00561d8b1cb4eed915efb;hb=c4df32b386c7bb29568140d135d7315e76c934b7;hpb=29bdad8620257c45dcbff5d15f26ac0b61c7b419 diff --git a/cli.c b/cli.c index a1f4ce3..f8b45db 100644 --- a/cli.c +++ b/cli.c @@ -14,6 +14,8 @@ #include #include #include +#include +#include #include #include "uci.h" @@ -26,6 +28,7 @@ static enum { CLI_FLAG_QUIET = (1 << 1), CLI_FLAG_NOCOMMIT = (1 << 2), CLI_FLAG_BATCH = (1 << 3), + CLI_FLAG_SHOW_EXT = (1 << 4), } flags; static FILE *input; @@ -36,9 +39,11 @@ enum { CMD_GET, CMD_SET, CMD_ADD_LIST, + CMD_DEL_LIST, CMD_DEL, CMD_RENAME, CMD_REVERT, + CMD_REORDER, /* package cmds */ CMD_SHOW, CMD_CHANGES, @@ -50,8 +55,81 @@ enum { CMD_HELP, }; +struct uci_type_list { + unsigned int idx; + const char *name; + struct uci_type_list *next; +}; + +static struct uci_type_list *type_list = NULL; +static char *typestr = NULL; +static const char *cur_section_ref = NULL; + static int uci_cmd(int argc, char **argv); +static void +uci_reset_typelist(void) +{ + struct uci_type_list *type; + while (type_list != NULL) { + type = type_list; + type_list = type_list->next; + free(type); + } + if (typestr) { + free(typestr); + typestr = NULL; + } + cur_section_ref = NULL; +} + +static char * +uci_lookup_section_ref(struct uci_section *s) +{ + struct uci_type_list *ti = type_list; + char *ret; + int maxlen; + + if (!(flags & CLI_FLAG_SHOW_EXT)) + return s->e.name; + + /* look up in section type list */ + while (ti) { + if (strcmp(ti->name, s->type) == 0) + break; + ti = ti->next; + } + if (!ti) { + ti = malloc(sizeof(struct uci_type_list)); + if (!ti) + return NULL; + memset(ti, 0, sizeof(struct uci_type_list)); + ti->next = type_list; + type_list = ti; + ti->name = s->type; + } + + 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 { + ret = s->e.name; + } + + ti->idx++; + + return ret; +} + static void uci_usage(void) { fprintf(stderr, @@ -64,12 +142,14 @@ static void uci_usage(void) "\tcommit []\n" "\tadd \n" "\tadd_list .
.