aboutsummaryrefslogtreecommitdiffstats
path: root/funcs
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-08-06 17:02:06 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-08-06 17:02:06 +0000
commit6af56b14087ffe1ed265621f1a82288605a21c76 (patch)
treeb965a708beadf6f1a6220a8f790c085ea974d73e /funcs
parentcbd9bdced355dae5d4dfed21fb9dda1c6a2be569 (diff)
Merged revisions 136112 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r136112 | tilghman | 2008-08-06 11:58:42 -0500 (Wed, 06 Aug 2008) | 7 lines Persist DIALGROUP() values in astdb (closes issue #13138) Reported by: Corydon76 Patches: 20080725__bug13138.diff.txt uploaded by Corydon76 (license 14) Tested by: pj ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@136113 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs')
-rw-r--r--funcs/func_dialgroup.c93
1 files changed, 80 insertions, 13 deletions
diff --git a/funcs/func_dialgroup.c b/funcs/func_dialgroup.c
index 746784ba9..6a9596e62 100644
--- a/funcs/func_dialgroup.c
+++ b/funcs/func_dialgroup.c
@@ -37,6 +37,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk/utils.h"
#include "asterisk/app.h"
#include "asterisk/astobj2.h"
+#include "asterisk/astdb.h"
static struct ao2_container *group_container = NULL;
@@ -94,13 +95,18 @@ static int dialgroup_read(struct ast_channel *chan, const char *cmd, char *data,
struct group_entry *entry;
size_t bufused = 0;
int trunc_warning = 0;
+ int res = 0;
if (!grhead) {
- ast_log(LOG_WARNING, "No such dialgroup '%s'\n", data);
+ if (!ast_strlen_zero(cmd)) {
+ ast_log(LOG_WARNING, "No such dialgroup '%s'\n", data);
+ }
return -1;
}
- i = ao2_iterator_init(grhead->entries, 0);
+ buf[0] = '\0';
+
+ i = ao2_iterator_init(grhead->entries, OBJ_POINTER);
while ((entry = ao2_iterator_next(&i))) {
int tmp = strlen(entry->name);
/* Ensure that we copy only complete names, not partials */
@@ -109,10 +115,43 @@ static int dialgroup_read(struct ast_channel *chan, const char *cmd, char *data,
buf[bufused++] = '&';
ast_copy_string(buf + bufused, entry->name, len - bufused);
bufused += tmp;
- } else if (trunc_warning++ == 0)
- ast_log(LOG_WARNING, "Dialgroup '%s' is too large. Truncating list.\n", data);
+ } else if (trunc_warning++ == 0) {
+ if (!ast_strlen_zero(cmd)) {
+ ast_log(LOG_WARNING, "Dialgroup '%s' is too large. Truncating list.\n", data);
+ } else {
+ res = 1;
+ ao2_ref(entry, -1);
+ break;
+ }
+ }
+ ao2_ref(entry, -1);
}
+ return res;
+}
+
+static int dialgroup_refreshdb(struct ast_channel *chan, const char *cdialgroup)
+{
+ int len = 500, res = 0;
+ char *buf = NULL;
+ char *dialgroup = ast_strdupa(cdialgroup);
+
+ do {
+ len *= 2;
+ buf = ast_realloc(buf, len);
+
+ if ((res = dialgroup_read(chan, "", dialgroup, buf, len)) < 0) {
+ ast_free(buf);
+ return -1;
+ }
+ } while (res == 1);
+
+ if (ast_strlen_zero(buf)) {
+ ast_db_del("dialgroup", cdialgroup);
+ } else {
+ ast_db_put("dialgroup", cdialgroup, buf);
+ }
+ ast_free(buf);
return 0;
}
@@ -120,7 +159,7 @@ static int dialgroup_write(struct ast_channel *chan, const char *cmd, char *data
{
struct group *grhead;
struct group_entry *entry;
- int j;
+ int j, needrefresh = 1;
AST_DECLARE_APP_ARGS(args,
AST_APP_ARG(group);
AST_APP_ARG(op);
@@ -133,7 +172,7 @@ static int dialgroup_write(struct ast_channel *chan, const char *cmd, char *data
AST_STANDARD_APP_ARGS(args, data);
AST_NONSTANDARD_APP_ARGS(inter, value, '&');
- if (!(grhead = ao2_find(group_container, data, 0))) {
+ if (!(grhead = ao2_find(group_container, args.group, 0))) {
/* Create group */
grhead = ao2_alloc(sizeof(*grhead), group_destroy);
if (!grhead)
@@ -153,8 +192,11 @@ static int dialgroup_write(struct ast_channel *chan, const char *cmd, char *data
/* Remove all existing */
ao2_ref(grhead->entries, -1);
- if (!(grhead->entries = ao2_container_alloc(37, entry_hash_fn, entry_cmp_fn)))
+ if (!(grhead->entries = ao2_container_alloc(37, entry_hash_fn, entry_cmp_fn))) {
+ ao2_unlink(group_container, grhead);
+ ao2_ref(grhead, -1);
return -1;
+ }
}
if (strcasecmp(args.op, "add") == 0) {
@@ -162,18 +204,28 @@ static int dialgroup_write(struct ast_channel *chan, const char *cmd, char *data
if ((entry = ao2_alloc(sizeof(*entry), NULL))) {
ast_copy_string(entry->name, inter.faces[j], sizeof(entry->name));
ao2_link(grhead->entries, entry);
- } else
+ ao2_ref(entry, -1);
+ } else {
ast_log(LOG_WARNING, "Unable to add '%s' to dialgroup '%s'\n", inter.faces[j], grhead->name);
+ }
}
} else if (strncasecmp(args.op, "del", 3) == 0) {
for (j = 0; j < inter.argc; j++) {
- if ((entry = ao2_find(grhead->entries, inter.faces[j], OBJ_UNLINK)))
+ if ((entry = ao2_find(grhead->entries, inter.faces[j], OBJ_UNLINK))) {
ao2_ref(entry, -1);
- else
+ } else {
ast_log(LOG_WARNING, "Interface '%s' not found in dialgroup '%s'\n", inter.faces[j], grhead->name);
+ }
}
- } else
+ } else {
ast_log(LOG_ERROR, "Unrecognized operation: %s\n", args.op);
+ needrefresh = 0;
+ }
+ ao2_ref(grhead, -1);
+
+ if (needrefresh) {
+ dialgroup_refreshdb(chan, args.group);
+ }
return 0;
}
@@ -211,10 +263,25 @@ static int unload_module(void)
static int load_module(void)
{
- if ((group_container = ao2_container_alloc(37, group_hash_fn, group_cmp_fn)))
+ struct ast_db_entry *dbtree, *tmp;
+ char groupname[AST_MAX_EXTENSION], *ptr;
+
+ if ((group_container = ao2_container_alloc(37, group_hash_fn, group_cmp_fn))) {
+ /* Refresh groups from astdb */
+ if ((dbtree = ast_db_gettree("dialgroup", NULL))) {
+ for (tmp = dbtree; tmp; tmp = tmp->next) {
+ ast_copy_string(groupname, tmp->key, sizeof(groupname));
+ if ((ptr = strrchr(groupname, '/'))) {
+ ptr++;
+ dialgroup_write(NULL, "", ptr, tmp->data);
+ }
+ }
+ ast_db_freetree(dbtree);
+ }
return ast_custom_function_register(&dialgroup_function);
- else
+ } else {
return AST_MODULE_LOAD_DECLINE;
+ }
}
AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Dialgroup dialplan function");