提交 302a768c authored 作者: Anthony Minessale's avatar Anthony Minessale

make substitution dynamic

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3794 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 643ef8cc
...@@ -150,11 +150,19 @@ static int parse_exten(switch_core_session_t *session, switch_xml_t xexten, swit ...@@ -150,11 +150,19 @@ static int parse_exten(switch_core_session_t *session, switch_xml_t xexten, swit
for (xaction = switch_xml_child(xcond, "action"); xaction; xaction = xaction->next) { for (xaction = switch_xml_child(xcond, "action"); xaction; xaction = xaction->next) {
char *application = (char*) switch_xml_attr_soft(xaction, "application"); char *application = (char*) switch_xml_attr_soft(xaction, "application");
char *data = (char *) switch_xml_attr_soft(xaction, "data"); char *data = (char *) switch_xml_attr_soft(xaction, "data");
char substituted[1024] = ""; char *substituted = NULL;
switch_size_t len = 0;
char *app_data = NULL; char *app_data = NULL;
if (field && strchr(expression, '(')) { if (field && strchr(expression, '(')) {
switch_perform_substitution(re, proceed, data, field_data, substituted, sizeof(substituted), ovector); len = strlen(data) + strlen(field_data) + 10;
if (!(substituted = malloc(len))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "memory error!\n");
proceed = 0;
goto done;
}
memset(substituted, 0, len);
switch_perform_substitution(re, proceed, data, field_data, substituted, len, ovector);
app_data = substituted; app_data = substituted;
} else { } else {
app_data = data; app_data = data;
...@@ -170,6 +178,7 @@ static int parse_exten(switch_core_session_t *session, switch_xml_t xexten, swit ...@@ -170,6 +178,7 @@ static int parse_exten(switch_core_session_t *session, switch_xml_t xexten, swit
} }
switch_caller_extension_add_application(session, *extension, application, app_data); switch_caller_extension_add_application(session, *extension, application, app_data);
switch_safe_free(substituted);
} }
switch_clean_re(re); switch_clean_re(re);
......
...@@ -4487,17 +4487,26 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_phrase_macro(switch_core_session_t *s ...@@ -4487,17 +4487,26 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_phrase_macro(switch_core_session_t *s
if (pattern) { if (pattern) {
pcre *re = NULL; pcre *re = NULL;
int proceed = 0, ovector[30]; int proceed = 0, ovector[30];
char substituted[1024] = ""; char *substituted = NULL;
switch_size_t len = 0;
char *odata = NULL; char *odata = NULL;
char *expanded = NULL; char *expanded = NULL;
if ((proceed = switch_perform_regex(data, pattern, &re, ovector, sizeof(ovector) / sizeof(ovector[0])))) { if ((proceed = switch_perform_regex(data, pattern, &re, ovector, sizeof(ovector) / sizeof(ovector[0])))) {
for (action = switch_xml_child(input, "action"); action; action = action->next) { for (action = switch_xml_child(input, "action"); action; action = action->next) {
char *adata = (char *) switch_xml_attr_soft(action, "data"); char *adata = (char *) switch_xml_attr_soft(action, "data");
char *func = (char *) switch_xml_attr_soft(action, "function"); char *func = (char *) switch_xml_attr_soft(action, "function");
if (strchr(pattern, '(') && strchr(adata, '$')) { if (strchr(pattern, '(') && strchr(adata, '$')) {
switch_perform_substitution(re, proceed, adata, data, substituted, sizeof(substituted), ovector); len = strlen(data) + strlen(adata) + 10;
if (!(substituted = malloc(len))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Memory Error!\n");
switch_clean_re(re);
switch_safe_free(expanded);
goto done;
}
memset(substituted, 0, len);
switch_perform_substitution(re, proceed, adata, data, substituted, len, ovector);
odata = substituted; odata = substituted;
} else { } else {
odata = adata; odata = adata;
...@@ -4566,6 +4575,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_phrase_macro(switch_core_session_t *s ...@@ -4566,6 +4575,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_phrase_macro(switch_core_session_t *s
switch_clean_re(re); switch_clean_re(re);
switch_safe_free(expanded); switch_safe_free(expanded);
switch_safe_free(substituted);
} }
input = input->next; input = input->next;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论