From 07e5f314998a2524cdf18e19789a555081eeafab Mon Sep 17 00:00:00 2001 From: rizzo Date: Wed, 10 May 2006 22:14:56 +0000 Subject: replace a macro with actual code; mark dubious code with XXX. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@26686 f38db490-d61c-443f-a65b-d21fe96a405b --- pbx.c | 74 ++++++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 38 insertions(+), 36 deletions(-) (limited to 'pbx.c') diff --git a/pbx.c b/pbx.c index 1238a7cd3..8aae28a88 100644 --- a/pbx.c +++ b/pbx.c @@ -4218,7 +4218,9 @@ static void null_datad(void *foo) { } -/*! \brief add the extension in the priority chain */ +/*! \brief add the extension in the priority chain. + * returns 0 on success, -1 on failure + */ static int add_pri(struct ast_context *con, struct ast_exten *tmp, struct ast_exten *el, struct ast_exten *e, int replace) { @@ -4306,21 +4308,6 @@ int ast_add_extension2(struct ast_context *con, const char *application, void *data, void (*datad)(void *), const char *registrar) { - -#define LOG do { if (option_debug) {\ - if (tmp->matchcid) { \ - ast_log(LOG_DEBUG, "Added extension '%s' priority %d (CID match '%s') to %s\n", tmp->exten, tmp->priority, tmp->cidmatch, con->name); \ - } else { \ - ast_log(LOG_DEBUG, "Added extension '%s' priority %d to %s\n", tmp->exten, tmp->priority, con->name); \ - } \ - } else if (option_verbose > 2) { \ - if (tmp->matchcid) { \ - ast_verbose( VERBOSE_PREFIX_3 "Added extension '%s' priority %d (CID match '%s')to %s\n", tmp->exten, tmp->priority, tmp->cidmatch, con->name); \ - } else { \ - ast_verbose( VERBOSE_PREFIX_3 "Added extension '%s' priority %d to %s\n", tmp->exten, tmp->priority, con->name); \ - } \ - } } while(0) - /* * Sort extensions (or patterns) according to the rules indicated above. * These are implemented by the function ext_cmp()). @@ -4337,7 +4324,7 @@ int ast_add_extension2(struct ast_context *con, contains variable references, then expand them */ ast_mutex_lock(&globalslock); - if ((priority == PRIORITY_HINT) && AST_LIST_FIRST(&globals) && strstr(application, "${")) { + if (priority == PRIORITY_HINT && AST_LIST_FIRST(&globals) && strstr(application, "${")) { pbx_substitute_variables_varshead(&globals, application, expand_buf, sizeof(expand_buf)); application = expand_buf; } @@ -4402,28 +4389,43 @@ int ast_add_extension2(struct ast_context *con, break; } if (e && res == 0) { /* exact match, insert in the pri chain */ - int ret = add_pri(con, tmp, el, e, replace); + res = add_pri(con, tmp, el, e, replace); ast_mutex_unlock(&con->lock); - if (ret < 0) - errno = EEXIST; - else { - LOG; + if (res < 0) { + errno = EEXIST; /* XXX do we care ? */ + return 0; /* XXX should we return -1 maybe ? */ + } + } else { + /* + * not an exact match, this is the first entry with this pattern, + * so insert in the main list right before 'e' (if any) + */ + tmp->next = e; + if (el) + el->next = tmp; + else + con->root = tmp; + ast_mutex_unlock(&con->lock); + if (tmp->priority == PRIORITY_HINT) + ast_add_hint(tmp); + } + if (option_debug) { + if (tmp->matchcid) { + ast_log(LOG_DEBUG, "Added extension '%s' priority %d (CID match '%s') to %s\n", + tmp->exten, tmp->priority, tmp->cidmatch, con->name); + } else { + ast_log(LOG_DEBUG, "Added extension '%s' priority %d to %s\n", + tmp->exten, tmp->priority, con->name); + } + } else if (option_verbose > 2) { + if (tmp->matchcid) { + ast_verbose( VERBOSE_PREFIX_3 "Added extension '%s' priority %d (CID match '%s')to %s\n", + tmp->exten, tmp->priority, tmp->cidmatch, con->name); + } else { + ast_verbose( VERBOSE_PREFIX_3 "Added extension '%s' priority %d to %s\n", + tmp->exten, tmp->priority, con->name); } - return ret; } - /* - * not an exact match, this is the first entry with this pattern, - * so insert in the main list right before 'e' (if any) - */ - tmp->next = e; - if (el) - el->next = tmp; - else - con->root = tmp; - ast_mutex_unlock(&con->lock); - if (tmp->priority == PRIORITY_HINT) - ast_add_hint(tmp); - LOG; return 0; } -- cgit v1.2.3