[asterisk-commits] trunk - r7238 /trunk/apps/app_directory.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Wed Nov 30 14:10:03 CST 2005
Author: russell
Date: Wed Nov 30 14:09:58 2005
New Revision: 7238
URL: http://svn.digium.com/view/asterisk?rev=7238&view=rev
Log:
use app arg parsing macros (issue #5681)
Modified:
trunk/apps/app_directory.c
Modified: trunk/apps/app_directory.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_directory.c?rev=7238&r1=7237&r2=7238&view=diff
==============================================================================
--- trunk/apps/app_directory.c (original)
+++ trunk/apps/app_directory.c Wed Nov 30 14:09:58 2005
@@ -41,6 +41,7 @@
#include "asterisk/config.h"
#include "asterisk/say.h"
#include "asterisk/utils.h"
+#include "asterisk/app.h"
static char *tdesc = "Extension Directory";
static char *app = "Directory";
@@ -414,7 +415,12 @@
struct localuser *u;
struct ast_config *cfg;
int last = 1;
- char *context, *dialcontext, *dirintro, *options;
+ char *dirintro, *parse;
+ AST_DECLARE_APP_ARGS(args,
+ AST_APP_ARG(vmcontext);
+ AST_APP_ARG(dialcontext);
+ AST_APP_ARG(options);
+ );
if (ast_strlen_zero(data)) {
ast_log(LOG_WARNING, "Directory requires an argument (context[,dialcontext])\n");
@@ -423,28 +429,32 @@
LOCAL_USER_ADD(u);
- context = ast_strdupa(data);
- dialcontext = strchr(context, '|');
- if (dialcontext) {
- *dialcontext = '\0';
- dialcontext++;
- options = strchr(dialcontext, '|');
- if (options) {
- *options = '\0';
- options++;
- if (strchr(options, 'f'))
- last = 0;
- }
- } else
- dialcontext = context;
-
- cfg = realtime_directory(context);
+ parse = ast_strdupa(data);
+
+ if (!parse) {
+ ast_log(LOG_ERROR, "Out of memory!\n");
+ LOCAL_USER_REMOVE(u);
+ return -1;
+ }
+
+ AST_STANDARD_APP_ARGS(args, parse);
+
+ if (args.options) {
+ if (strchr(args.options, 'f'))
+ last = 0;
+ }
+
+ if (ast_strlen_zero(args.dialcontext))
+ args.dialcontext = args.vmcontext;
+
+ cfg = realtime_directory(args.vmcontext);
if (!cfg) {
+ ast_log(LOG_ERROR, "Unable to read the configuration data!\n");
LOCAL_USER_REMOVE(u);
return -1;
}
- dirintro = ast_variable_retrieve(cfg, context, "directoryintro");
+ dirintro = ast_variable_retrieve(cfg, args.vmcontext, "directoryintro");
if (ast_strlen_zero(dirintro))
dirintro = ast_variable_retrieve(cfg, "general", "directoryintro");
if (ast_strlen_zero(dirintro)) {
@@ -466,7 +476,7 @@
if (!res)
res = ast_waitfordigit(chan, 5000);
if (res > 0) {
- res = do_directory(chan, cfg, context, dialcontext, res, last);
+ res = do_directory(chan, cfg, args.vmcontext, args.dialcontext, res, last);
if (res > 0) {
res = ast_waitstream(chan, AST_DIGIT_ANY);
ast_stopstream(chan);
More information about the asterisk-commits
mailing list