aboutsummaryrefslogtreecommitdiffstats
path: root/main/cli.c
diff options
context:
space:
mode:
authorrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-17 21:50:55 +0000
committerrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-17 21:50:55 +0000
commiteaad3b43af6568b6aa808697fd2aed688596adc1 (patch)
tree321f7436cb6a8903929a4ec2b64b99fcf9c9796d /main/cli.c
parent232e6716374193c3d07165d500a27a7c100be228 (diff)
describe a bit the patterns that you can have in the commands,
and add support for wildcard (spelled as '%'). On passing fix a bug in the expansion code which was hidden and appeared when implementing the wildcard The fix is just the line 'src != argindex', in case someone wants to test this on 1.4 - but i would just keep this in trunk. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@47813 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/cli.c')
-rw-r--r--main/cli.c19
1 files changed, 17 insertions, 2 deletions
diff --git a/main/cli.c b/main/cli.c
index a790c3bdf..30836fc75 100644
--- a/main/cli.c
+++ b/main/cli.c
@@ -1036,7 +1036,7 @@ static struct ast_cli_entry cli_cli[] = {
/*!
* Some regexp characters in cli arguments are reserved and used as separators.
*/
-static const char cli_rsvd[] = "[]{}|*";
+static const char cli_rsvd[] = "[]{}|*%";
/*!
* initialize the _full_cmd string and related parameters,
@@ -1111,6 +1111,12 @@ static struct ast_cli_entry *cli_next(struct cli_iterator *i)
* match a word in the CLI entry.
* returns -1 on mismatch, 0 on match of an optional word,
* 1 on match of a full word.
+ *
+ * The pattern can be
+ * any_word match for equal
+ * [foo|bar|baz] optionally, one of these words
+ * {foo|bar|baz} exactly, one of these words
+ * % any word
*/
static int word_match(const char *cmd, const char *cli_word)
{
@@ -1123,6 +1129,10 @@ static int word_match(const char *cmd, const char *cli_word)
return (strcasecmp(cmd, cli_word) == 0) ? 1 : -1;
/* regexp match, takes [foo|bar] or {foo|bar} */
l = strlen(cmd);
+ /* wildcard match - will extend in the future */
+ if (l > 0 && cli_word[0] == '%') {
+ return 1; /* wildcard */
+ }
pos = strcasestr(cli_word, cmd);
if (pos == NULL) /* not found, say ok if optional */
return cli_word[0] == '[' ? 0 : -1;
@@ -1158,8 +1168,13 @@ static char *is_prefix(const char *word, const char *token,
return (pos != 0) ? NULL : strdup(token);
}
/* now handle regexp match */
+
+ /* Wildcard always matches, so we never do is_prefix on them */
+
t1 = ast_strdupa(token + 1); /* copy, skipping first char */
while (pos >= 0 && (s = strsep(&t1, cli_rsvd)) && *s) {
+ if (*s == '%') /* wildcard */
+ continue;
if (strncasecmp(s, word, lw)) /* no match */
continue;
(*actual)++;
@@ -1608,7 +1623,7 @@ static char *__ast_cli_generator(const char *text, const char *word, int state,
break;
}
- if (src < argindex) /* not a match */
+ if (src != argindex) /* not a match */
continue;
ret = is_prefix(argv[src], e->cmda[dst], state - matchnum, &n);
matchnum += n; /* this many matches here */