mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-08 06:12:45 +00:00
res_pjsip: Add "like" processing to pjsip list and show commands
Add the ability to filter output from pjsip list and show commands using the "like" predicate like chan_sip. For endpoints, aors, auths, registrations, identifyies and transports, the modification was a simple change of an ast_sorcery_retrieve_by_fields call to ast_sorcery_retrieve_by_regex. For channels and contacts a little more work had to be done because neither of those objects are true sorcery objects. That was just removing the non-matching object from the final container. Of course, a little extra plumbing in the common pjsip_cli code was needed to parse the "like" and pass the regex to the get_container callbacks. Some of the get_container code in res_pjsip_endpoint_identifier was also refactored for simplicity. ASTERISK-25477 #close Reported by: Bryant Zimmerman Tested by: George Joseph Change-Id: I646d9326b778aac26bb3e2bcd7fa1346d24434f1
This commit is contained in:
@@ -594,13 +594,12 @@ struct ast_sip_endpoint_formatter endpoint_aor_formatter = {
|
||||
.format_ami = format_ami_endpoint_aor
|
||||
};
|
||||
|
||||
static struct ao2_container *cli_aor_get_container(void)
|
||||
static struct ao2_container *cli_aor_get_container(const char *regex)
|
||||
{
|
||||
RAII_VAR(struct ao2_container *, container, NULL, ao2_cleanup);
|
||||
struct ao2_container *s_container;
|
||||
|
||||
container = ast_sorcery_retrieve_by_fields(ast_sip_get_sorcery(), "aor",
|
||||
AST_RETRIEVE_FLAG_MULTIPLE | AST_RETRIEVE_FLAG_ALL, NULL);
|
||||
container = ast_sorcery_retrieve_by_regex(ast_sip_get_sorcery(), "aor", regex);
|
||||
if (!container) {
|
||||
return NULL;
|
||||
}
|
||||
@@ -698,12 +697,25 @@ static int cli_contact_iterate(void *container, ao2_callback_fn callback, void *
|
||||
return ast_sip_for_each_contact(container, callback, args);
|
||||
}
|
||||
|
||||
static struct ao2_container *cli_contact_get_container(void)
|
||||
static int cli_filter_contacts(void *obj, void *arg, int flags)
|
||||
{
|
||||
struct ast_sip_contact_wrapper *wrapper = obj;
|
||||
regex_t *regexbuf = arg;
|
||||
|
||||
if (!regexec(regexbuf, wrapper->contact_id, 0, NULL, 0)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
return CMP_MATCH;
|
||||
}
|
||||
|
||||
static struct ao2_container *cli_contact_get_container(const char *regex)
|
||||
{
|
||||
RAII_VAR(struct ao2_container *, parent_container, NULL, ao2_cleanup);
|
||||
struct ao2_container *child_container;
|
||||
regex_t regexbuf;
|
||||
|
||||
parent_container = cli_aor_get_container();
|
||||
parent_container = cli_aor_get_container("");
|
||||
if (!parent_container) {
|
||||
return NULL;
|
||||
}
|
||||
@@ -716,12 +728,23 @@ static struct ao2_container *cli_contact_get_container(void)
|
||||
|
||||
ao2_callback(parent_container, OBJ_NODATA, cli_aor_gather_contacts, child_container);
|
||||
|
||||
if (!ast_strlen_zero(regex)) {
|
||||
if (regcomp(®exbuf, regex, REG_EXTENDED | REG_NOSUB)) {
|
||||
ao2_ref(child_container, -1);
|
||||
return NULL;
|
||||
}
|
||||
ao2_callback(child_container, OBJ_UNLINK | OBJ_MULTIPLE | OBJ_NODATA, cli_filter_contacts, ®exbuf);
|
||||
regfree(®exbuf);
|
||||
}
|
||||
|
||||
return child_container;
|
||||
}
|
||||
|
||||
static void *cli_contact_retrieve_by_id(const char *id)
|
||||
{
|
||||
return ao2_find(cli_contact_get_container(), id, OBJ_KEY | OBJ_NOLOCK);
|
||||
RAII_VAR(struct ao2_container *, container, cli_contact_get_container(""), ao2_cleanup);
|
||||
|
||||
return ao2_find(container, id, OBJ_KEY | OBJ_NOLOCK);
|
||||
}
|
||||
|
||||
static int cli_contact_print_header(void *obj, void *arg, int flags)
|
||||
@@ -858,12 +881,14 @@ static int cli_aor_print_body(void *obj, void *arg, int flags)
|
||||
static struct ast_cli_entry cli_commands[] = {
|
||||
AST_CLI_DEFINE(ast_sip_cli_traverse_objects, "List PJSIP Aors",
|
||||
.command = "pjsip list aors",
|
||||
.usage = "Usage: pjsip list aors\n"
|
||||
" List the configured PJSIP Aors\n"),
|
||||
.usage = "Usage: pjsip list aors [ like <pattern> ]\n"
|
||||
" List the configured PJSIP Aors\n"
|
||||
" Optional regular expression pattern is used to filter the list.\n"),
|
||||
AST_CLI_DEFINE(ast_sip_cli_traverse_objects, "Show PJSIP Aors",
|
||||
.command = "pjsip show aors",
|
||||
.usage = "Usage: pjsip show aors\n"
|
||||
" Show the configured PJSIP Aors\n"),
|
||||
.usage = "Usage: pjsip show aors [ like <pattern> ]\n"
|
||||
" Show the configured PJSIP Aors\n"
|
||||
" Optional regular expression pattern is used to filter the list.\n"),
|
||||
AST_CLI_DEFINE(ast_sip_cli_traverse_objects, "Show PJSIP Aor",
|
||||
.command = "pjsip show aor",
|
||||
.usage = "Usage: pjsip show aor <id>\n"
|
||||
@@ -871,12 +896,14 @@ static struct ast_cli_entry cli_commands[] = {
|
||||
|
||||
AST_CLI_DEFINE(ast_sip_cli_traverse_objects, "List PJSIP Contacts",
|
||||
.command = "pjsip list contacts",
|
||||
.usage = "Usage: pjsip list contacts\n"
|
||||
" List the configured PJSIP contacts\n"),
|
||||
.usage = "Usage: pjsip list contacts [ like <pattern> ]\n"
|
||||
" List the configured PJSIP contacts\n"
|
||||
" Optional regular expression pattern is used to filter the list.\n"),
|
||||
AST_CLI_DEFINE(ast_sip_cli_traverse_objects, "Show PJSIP Contacts",
|
||||
.command = "pjsip show contacts",
|
||||
.usage = "Usage: pjsip show contacts\n"
|
||||
" Show the configured PJSIP contacts\n"),
|
||||
.usage = "Usage: pjsip show contacts [ like <pattern> ]\n"
|
||||
" Show the configured PJSIP contacts\n"
|
||||
" Optional regular expression pattern is used to filter the list.\n"),
|
||||
AST_CLI_DEFINE(ast_sip_cli_traverse_objects, "Show PJSIP Contact",
|
||||
.command = "pjsip show contact",
|
||||
.usage = "Usage: pjsip show contact\n"
|
||||
|
Reference in New Issue
Block a user