2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2005, Digium, Inc.
6 * Mark Spencer <markster@digium.com>
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
20 * \brief Trivial application to control playback of a sound file
22 * \ingroup applications
31 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
33 #include "asterisk/lock.h"
34 #include "asterisk/file.h"
35 #include "asterisk/logger.h"
36 #include "asterisk/channel.h"
37 #include "asterisk/pbx.h"
38 #include "asterisk/app.h"
39 #include "asterisk/module.h"
40 #include "asterisk/translate.h"
41 #include "asterisk/utils.h"
42 #include "asterisk/options.h"
44 static const char *tdesc = "Control Playback Application";
46 static const char *app = "ControlPlayback";
48 static const char *synopsis = "Play a file with fast forward and rewind";
50 static const char *descrip =
51 " ControlPlayback(file[|skipms[|ff[|rew[|stop[|pause[|restart|options]]]]]]]):\n"
52 "This application will play back the given filename. By default, the '*' key\n"
53 "can be used to rewind, and the '#' key can be used to fast-forward.\n"
55 " skipms - This is number of milliseconds to skip when rewinding or\n"
57 " ff - Fast-forward when this DTMF digit is received.\n"
58 " rew - Rewind when this DTMF digit is received.\n"
59 " stop - Stop playback when this DTMF digit is received.\n"
60 " pause - Pause playback when this DTMF digit is received.\n"
61 " restart - Restart playback when this DTMF digit is received.\n"
63 " j - Jump to priority n+101 if the requested file is not found.\n"
64 "This application sets the following channel variable upon completion:\n"
65 " CPLAYBACKSTATUS - This variable contains the status of the attempt as a text\n"
66 " string, one of: SUCCESS | USERSTOPPED | ERROR\n";
72 static int is_on_phonepad(char key)
74 return key == 35 || key == 42 || (key >= 48 && key <= 57);
77 static int controlplayback_exec(struct ast_channel *chan, void *data)
79 int res = 0, priority_jump = 0;
96 if (ast_strlen_zero(data)) {
97 ast_log(LOG_WARNING, "ControlPlayback requires an argument (filename)\n");
103 tmp = ast_strdupa(data);
104 memset(argv, 0, sizeof(argv));
106 argc = ast_app_separate_args(tmp, '|', argv, sizeof(argv) / sizeof(argv[0]));
109 ast_log(LOG_WARNING, "ControlPlayback requires an argument (filename)\n");
110 LOCAL_USER_REMOVE(u);
114 skipms = argv[arg_skip] ? atoi(argv[arg_skip]) : 3000;
118 if (!argv[arg_fwd] || !is_on_phonepad(*argv[arg_fwd]))
120 if (!argv[arg_rev] || !is_on_phonepad(*argv[arg_rev]))
122 if (argv[arg_stop] && !is_on_phonepad(*argv[arg_stop]))
123 argv[arg_stop] = NULL;
124 if (argv[arg_pause] && !is_on_phonepad(*argv[arg_pause]))
125 argv[arg_pause] = NULL;
126 if (argv[arg_restart] && !is_on_phonepad(*argv[arg_restart]))
127 argv[arg_restart] = NULL;
130 if (strchr(argv[options], 'j'))
134 res = ast_control_streamfile(chan, argv[arg_file], argv[arg_fwd], argv[arg_rev], argv[arg_stop], argv[arg_pause], argv[arg_restart], skipms);
136 /* If we stopped on one of our stop keys, return 0 */
137 if (argv[arg_stop] && strchr(argv[arg_stop], res)) {
139 pbx_builtin_setvar_helper(chan, "CPLAYBACKSTATUS", "USERSTOPPED");
142 if (priority_jump || option_priority_jumping) {
143 if (ast_goto_if_exists(chan, chan->context, chan->exten, chan->priority + 101)) {
144 ast_log(LOG_WARNING, "ControlPlayback tried to jump to priority n+101 as requested, but priority didn't exist\n");
148 pbx_builtin_setvar_helper(chan, "CPLAYBACKSTATUS", "ERROR");
150 pbx_builtin_setvar_helper(chan, "CPLAYBACKSTATUS", "SUCCESS");
153 LOCAL_USER_REMOVE(u);
158 int unload_module(void)
162 res = ast_unregister_application(app);
164 STANDARD_HANGUP_LOCALUSERS;
169 int load_module(void)
171 return ast_register_application(app, controlplayback_exec, synopsis, descrip);
174 char *description(void)
176 return (char *) tdesc;
183 STANDARD_USECOUNT(res);
189 return ASTERISK_GPL_KEY;