aboutsummaryrefslogtreecommitdiffstats
path: root/funcs/func_strings.c
diff options
context:
space:
mode:
authorbweschke <bweschke@f38db490-d61c-443f-a65b-d21fe96a405b>2006-01-16 17:31:30 +0000
committerbweschke <bweschke@f38db490-d61c-443f-a65b-d21fe96a405b>2006-01-16 17:31:30 +0000
commit4bd6f6590263e339b0091d0279594d55fc22069e (patch)
tree2648dbd69a6cd6cec58d533fbac114846c944831 /funcs/func_strings.c
parentf70016e71ea1af7bbb2b317c60546071d3246a2b (diff)
More code optimization with the new argument macros #6253
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@8099 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs/func_strings.c')
-rw-r--r--funcs/func_strings.c28
1 files changed, 17 insertions, 11 deletions
diff --git a/funcs/func_strings.c b/funcs/func_strings.c
index cc540185a..8a9fed62b 100644
--- a/funcs/func_strings.c
+++ b/funcs/func_strings.c
@@ -174,10 +174,14 @@ struct ast_custom_function regex_function = {
static void builtin_function_array(struct ast_channel *chan, char *cmd, char *data, const char *value)
{
- char *varv[100];
- char *valuev[100];
+ AST_DECLARE_APP_ARGS(arg1,
+ AST_APP_ARG(var)[100];
+ );
+ AST_DECLARE_APP_ARGS(arg2,
+ AST_APP_ARG(val)[100];
+ );
char *var, *value2;
- int varcount, valuecount, i;
+ int i;
var = ast_strdupa(data);
value2 = ast_strdupa(value);
@@ -192,25 +196,27 @@ static void builtin_function_array(struct ast_channel *chan, char *cmd, char *da
* want them to be surprised by the result. Hence, we prefer commas as the
* delimiter, but we'll fall back to vertical bars if commas aren't found.
*/
+ ast_log(LOG_ERROR, "arrary (%s=%s)\n", var, value2);
if (strchr(var, ',')) {
- varcount = ast_app_separate_args(var, ',', varv, 100);
+ AST_NONSTANDARD_APP_ARGS(arg1, var, ',');
} else {
- varcount = ast_app_separate_args(var, '|', varv, 100);
+ AST_STANDARD_APP_ARGS(arg1, var);
}
if (strchr(value2, ',')) {
- valuecount = ast_app_separate_args(value2, ',', valuev, 100);
+ AST_NONSTANDARD_APP_ARGS(arg2, value2, ',');
} else {
- valuecount = ast_app_separate_args(value2, '|', valuev, 100);
+ AST_STANDARD_APP_ARGS(arg2, value2);
}
- for (i = 0; i < varcount; i++) {
- if (i < valuecount) {
- pbx_builtin_setvar_helper(chan, varv[i], valuev[i]);
+ for (i = 0; i < arg1.argc; i++) {
+ ast_log(LOG_ERROR, "arrary set value (%s=%s)\n", arg1.var[i], arg2.val[i]);
+ if (i < arg2.argc) {
+ pbx_builtin_setvar_helper(chan, arg1.var[i], arg2.val[i]);
} else {
/* We could unset the variable, by passing a NULL, but due to
* pushvar semantics, that could create some undesired behavior. */
- pbx_builtin_setvar_helper(chan, varv[i], "");
+ pbx_builtin_setvar_helper(chan, arg1.var[i], "");
}
}
}