summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeo C2018-07-28 15:59:40 +0200
committerLeo C2018-07-28 16:00:34 +0200
commit4077419cee470571ea8f7f202b141faf385b6e5a (patch)
treeda51506eb21f58d71eba4a48aadcc006fa2e385f
parentdab74a42d544d3f45777eff471f1ee0166b4aaae (diff)
downloadz180-stamp-4077419cee470571ea8f7f202b141faf385b6e5a.zip
Find (top level) subcommands without recursion.
-rw-r--r--avr/command.c99
1 files changed, 33 insertions, 66 deletions
diff --git a/avr/command.c b/avr/command.c
index b4a972c..085dfdc 100644
--- a/avr/command.c
+++ b/avr/command.c
@@ -98,71 +98,46 @@ cmd_tbl_t *get_cmd_tbl_base(cmd_tbl_t *cmdtp)
/*
* find command table entry for a command
*/
-typedef struct {
- size_t len;
- uint_fast8_t level;
- bool opt_debug;
- } find_cmd_para_t;
-cmd_tbl_t *_find_cmd (const char *cmd, cmd_tbl_t *table, find_cmd_para_t *para)
+cmd_tbl_t *find_cmd (const char *cmd, cmd_tbl_t *table)
{
- cmd_tbl_t *cmdtp_ret = NULL;
- uint_fast8_t n_found = 0, sub_found = 0;
-
- for (cmd_tbl_t *cmdtp = table; cmdtp->name != NULL; cmdtp++) {
- if (strncmp_P(cmd, cmdtp->name, para->len) == 0 &&
- (para->opt_debug || !(cmdtp->flags & CTBL_DBG))) {
- if (para->len == strlen_P(cmdtp->name))
- return cmdtp; /* full match */
-
- cmdtp_ret = cmdtp; /* abbreviated command ? */
- n_found++;
- } else if (cmdtp->subcmd) {
- cmd_tbl_t *sub = _find_cmd(cmd, cmdtp->subcmd, para);
- if (sub && sub->flags & CTBL_SUBCMDAUTO) {
- cmdtp_ret = sub;
- ++n_found;
- }
- }
- }
- if (n_found == 1) { /* exactly one match */
- if (sub_found)
- para->level++;
- return cmdtp_ret;
- }
-
- return NULL; /* not found or ambiguous command */
-}
-
-
-cmd_tbl_t *find_cmd (const char *cmd, cmd_tbl_t *table, uint_fast8_t *cmdlevel)
-{
- find_cmd_para_t para;
-
if (!cmd)
return NULL;
char *optenv = getenv_str(PSTR("cmd"));
- para.level = 0;
- para.opt_debug = optenv && strstr_P(optenv, PSTR("debug")) != NULL;
- para.len = strlen(cmd);
-
- cmd_tbl_t *cmdtp = _find_cmd(cmd, table, &para);
+ uint8_t opt_debug = optenv && strstr_P(optenv, PSTR("debug")) != NULL;
- if (cmdlevel)
- *cmdlevel = para.level;
- return cmdtp;
-}
+ cmd_tbl_t *cmdtp_ret = NULL;
+ uint_fast8_t n_found = 0;
+ uint_fast8_t len = strlen(cmd);
-cmd_tbl_t *find_cmd_sub(const char *cmd, cmd_tbl_t *table)
-{
- cmd_tbl_t *entry = NULL;
+ for (cmd_tbl_t *cmdtp = table; cmdtp->name != NULL; cmdtp++) {
+ if (cmdtp->subcmd) {
+ for (cmd_tbl_t *sub = cmdtp->subcmd; sub->name != NULL; sub++) {
+ if (sub->flags & CTBL_SUBCMDAUTO &&
+ strncmp_P(cmd, sub->name, len) == 0 &&
+ (opt_debug || !(sub->flags & CTBL_DBG))) {
+ if (len == strlen_P(sub->name))
+ return sub; /* full match */
+ cmdtp_ret = sub; /* abbreviated command ? */
+ ++n_found;
+ }
+ }
+ }
+ if ((cmdtp->flags & CTBL_SUBCMDAUTO) == 0 &&
+ strncmp_P(cmd, cmdtp->name, len) == 0 &&
+ (opt_debug || !(cmdtp->flags & CTBL_DBG))) {
+ if (len == strlen_P(cmdtp->name))
+ return cmdtp; /* full match */
+ cmdtp_ret = cmdtp; /* abbreviated command ? */
+ ++n_found;
+ }
+ }
- for (cmd_tbl_t *tp = get_cmd_tbl_base(table); tp->name && entry == NULL; tp++)
- if (tp->subcmd && tp->flags & CTBL_SUBCMDAUTO)
- entry = find_cmd(cmd, tp->subcmd, NULL);
+ if (n_found == 1)
+ return cmdtp_ret; /* exactly one match */
- return entry;
+ return NULL; /* not found or ambiguous command */
}
/*
@@ -237,8 +212,7 @@ command_ret_t do_help(cmd_tbl_t *cmdtp, uint_fast8_t flag UNUSED, int argc, char
* command help (long version)
*/
for (uint8_t i = 1; i < argc; ++i) {
- if ((cmdtp = find_cmd(argv[i], tbl_start, NULL)) != NULL &&
- (opt_debug || !(cmdtp->flags & CTBL_DBG))) {
+ if ((cmdtp = find_cmd(argv[i], tbl_start)) != NULL) {
cmd_usage(cmdtp);
} else {
printf_P(PSTR("Unknown command '%s' - try 'help'"
@@ -569,16 +543,15 @@ command_ret_t cmd_process(uint_fast8_t flag, int argc, char * const argv[],
{
command_ret_t rc = CMD_RET_SUCCESS;
cmd_tbl_t *cmdtp;
- uint_fast8_t cmdlevel;
/* Look up command in command table */
- cmdtp = find_cmd(argv[0], cmd_tbl, &cmdlevel);
+ cmdtp = find_cmd(argv[0], cmd_tbl);
if (cmdtp != NULL) {
/* Check if this command has subcommands */
if (cmdtp->subcmd && argc > 1) {
/* Look up subcommand in subcommand table */
- cmd_tbl_t *cmdtpsub = find_cmd(argv[1], cmdtp->subcmd, &cmdlevel);
+ cmd_tbl_t *cmdtpsub = find_cmd(argv[1], cmdtp->subcmd);
if (cmdtpsub == NULL) {
printf_P(PSTR("Unknown '%s' subcommand '%s' - try '%s help'\n"), argv[0], argv[1], argv[0]);
return CMD_RET_FAILURE;
@@ -588,12 +561,6 @@ command_ret_t cmd_process(uint_fast8_t flag, int argc, char * const argv[],
++argv;
}
}
-#if 0
- else {
- /* Search subcommands */
- cmdtp = find_cmd_sub(argv[0], cmd_tbl, &cmdlevel);
- }
-#endif
if (cmdtp == NULL) {
printf_P(PSTR("Unknown command '%s' - try 'help'\n"), argv[0]);