aboutsummaryrefslogtreecommitdiffstats
path: root/pbx.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-11-22 22:11:10 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-11-22 22:11:10 +0000
commit0858b615953e6a492a1f5fafe4b97b93a48aeed2 (patch)
treedfd168516c18f196d90ca6b18db8c2b6ab1a8f84 /pbx.c
parentc39e49d86c0255adf048cbcede0f817ec2b89372 (diff)
Add improved macro functionality (bug #2905)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4317 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx.c')
-rwxr-xr-xpbx.c146
1 files changed, 91 insertions, 55 deletions
diff --git a/pbx.c b/pbx.c
index 7141ad266..14fcf26cb 100755
--- a/pbx.c
+++ b/pbx.c
@@ -4935,64 +4935,14 @@ static int pbx_builtin_dtimeout(struct ast_channel *chan, void *data)
static int pbx_builtin_goto(struct ast_channel *chan, void *data)
{
- char *s;
- char *exten, *pri, *context;
- char *stringp=NULL;
- int ipri;
- int mode = 0;
-
- if (!data || ast_strlen_zero(data)) {
- ast_log(LOG_WARNING, "Goto requires an argument (optional context|optional extension|priority)\n");
- return -1;
- }
- s = ast_strdupa((void *) data);
- stringp=s;
- context = strsep(&stringp, "|");
- exten = strsep(&stringp, "|");
- if (!exten) {
- /* Only a priority in this one */
- pri = context;
- exten = NULL;
- context = NULL;
- } else {
- pri = strsep(&stringp, "|");
- if (!pri) {
- /* Only an extension and priority in this one */
- pri = exten;
- exten = context;
- context = NULL;
- }
- }
- if (*pri == '+') {
- mode = 1;
- pri++;
- } else if (*pri == '-') {
- mode = -1;
- pri++;
- }
- if (sscanf(pri, "%i", &ipri) != 1) {
- if ((ipri = ast_findlabel_extension(chan, context ? context : chan->context, (exten && strcasecmp(exten, "BYEXTENSION")) ? exten : chan->exten,
- pri, chan->cid.cid_num)) < 1) {
- ast_log(LOG_WARNING, "Priority '%s' must be a number > 0, or valid label\n", pri);
- return -1;
- } else
- mode = 0;
- }
- /* At this point we have a priority and maybe an extension and a context */
- if (mode)
- chan->priority += mode * ipri - 1;
- else
- chan->priority = ipri - 1;
- if (exten && strcasecmp(exten, "BYEXTENSION"))
- strncpy(chan->exten, exten, sizeof(chan->exten)-1);
- if (context)
- strncpy(chan->context, context, sizeof(chan->context)-1);
- if (option_verbose > 2)
+ int res;
+ res = ast_parseable_goto(chan, (const char *) data);
+ if (!res && (option_verbose > 2))
ast_verbose( VERBOSE_PREFIX_3 "Goto (%s,%s,%d)\n", chan->context,chan->exten, chan->priority+1);
- ast_cdr_update(chan);
- return 0;
+ return res;
}
+
int pbx_builtin_serialize_variables(struct ast_channel *chan, char *buf, size_t size)
{
struct ast_var_t *variables;
@@ -5469,3 +5419,89 @@ int ast_context_verify_includes(struct ast_context *con)
return res;
}
+
+int ast_goto_if_exists(struct ast_channel *chan, char* context, char *exten, int priority)
+{
+ if(chan) {
+ if(ast_exists_extension(chan,
+ context ? context : chan->context,
+ exten ? exten : chan->exten,
+ priority ? priority : chan->priority,
+ chan->cid.cid_num)) {
+ return ast_async_goto(chan,
+ context ? context : chan->context,
+ exten ? exten : chan->exten,
+ priority ? priority : chan->priority);
+ } else
+ return -3;
+ }
+
+ return -2;
+}
+
+int ast_parseable_goto(struct ast_channel *chan, const char *goto_string)
+{
+ char *s;
+ char *exten, *pri, *context;
+ char *stringp=NULL;
+ int ipri;
+ int mode = 0;
+
+ if (!goto_string || ast_strlen_zero(goto_string)) {
+ ast_log(LOG_WARNING, "Goto requires an argument (optional context|optional extension|priority)\n");
+ return -1;
+ }
+ s = ast_strdupa(goto_string);
+ stringp=s;
+ context = strsep(&stringp, "|");
+ exten = strsep(&stringp, "|");
+ if (!exten) {
+ /* Only a priority in this one */
+ pri = context;
+ exten = NULL;
+ context = NULL;
+ } else {
+ pri = strsep(&stringp, "|");
+ if (!pri) {
+ /* Only an extension and priority in this one */
+ pri = exten;
+ exten = context;
+ context = NULL;
+ }
+ }
+ if (*pri == '+') {
+ mode = 1;
+ pri++;
+ } else if (*pri == '-') {
+ mode = -1;
+ pri++;
+ }
+ if (sscanf(pri, "%i", &ipri) != 1) {
+ if ((ipri = ast_findlabel_extension(chan, context ? context : chan->context, (exten && strcasecmp(exten, "BYEXTENSION")) ? exten : chan->exten,
+ pri, chan->cid.cid_num)) < 1) {
+ ast_log(LOG_WARNING, "Priority '%s' must be a number > 0, or valid label\n", pri);
+ return -1;
+ } else
+ mode = 0;
+ }
+ /* At this point we have a priority and maybe an extension and a context */
+
+ if (exten && !strcasecmp(exten, "BYEXTENSION"))
+ exten = NULL;
+
+ if (mode)
+ ipri = chan->priority + (ipri * mode);
+
+ /* This channel is currently in the PBX */
+ if (context && !ast_strlen_zero(context))
+ strncpy(chan->context, context, sizeof(chan->context) - 1);
+ if (exten && !ast_strlen_zero(exten))
+ strncpy(chan->exten, exten, sizeof(chan->context) - 1);
+ chan->priority = ipri - 1;
+
+ ast_cdr_update(chan);
+ return 0;
+
+}
+
+