mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-02 19:16:15 +00:00
cli: Enable ast_cli_completion_add on public completion generators.
* ast_cli_complete * ast_complete_channels * ast_complete_applications These generators will now use ast_cli_completion_add if state == -1. Change-Id: I7ff311f0873099be0e43a3dc5415c0cd06d15756
This commit is contained in:
24
main/cli.c
24
main/cli.c
@@ -1655,8 +1655,15 @@ char *ast_cli_complete(const char *word, const char * const choices[], int state
|
||||
len = ast_strlen_zero(word) ? 0 : strlen(word);
|
||||
|
||||
for (i = 0; choices[i]; i++) {
|
||||
if ((!len || !strncasecmp(word, choices[i], len)) && ++which > state)
|
||||
return ast_strdup(choices[i]);
|
||||
if ((!len || !strncasecmp(word, choices[i], len)) && ++which > state) {
|
||||
if (state != -1) {
|
||||
return ast_strdup(choices[i]);
|
||||
}
|
||||
|
||||
if (ast_cli_completion_add(ast_strdup(choices[i]))) {
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
@@ -1682,9 +1689,16 @@ char *ast_complete_channels(const char *line, const char *word, int pos, int sta
|
||||
struct ast_channel_snapshot *snapshot = stasis_message_data(msg);
|
||||
|
||||
if (!strncasecmp(word, snapshot->name, wordlen) && (++which > state)) {
|
||||
ret = ast_strdup(snapshot->name);
|
||||
ao2_ref(msg, -1);
|
||||
break;
|
||||
if (state != -1) {
|
||||
ret = ast_strdup(snapshot->name);
|
||||
ao2_ref(msg, -1);
|
||||
break;
|
||||
}
|
||||
|
||||
if (ast_cli_completion_add(ast_strdup(snapshot->name))) {
|
||||
ao2_ref(msg, -1);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
ao2_iterator_destroy(&iter);
|
||||
|
Reference in New Issue
Block a user