Files
asterisk/apps/app_record.c
T

319 lines
8.1 KiB
C
Raw Normal View History

2001-04-13 02:12:18 +00:00
/*
* Asterisk -- A telephony toolkit for Linux.
*
* Trivial application to record a sound file
*
* Copyright (C) 2001, Linux Support Services, Inc.
*
* Matthew Fredrickson <creslin@linux-support.net>
*
* This program is free software, distributed under the terms of
* the GNU General Public License
*/
2002-06-19 02:35:40 +00:00
#include <asterisk/lock.h>
2001-04-13 02:12:18 +00:00
#include <asterisk/file.h>
#include <asterisk/logger.h>
#include <asterisk/channel.h>
#include <asterisk/pbx.h>
#include <asterisk/module.h>
#include <asterisk/translate.h>
2003-04-28 05:07:52 +00:00
#include <asterisk/dsp.h>
2004-10-28 19:08:02 +00:00
#include <asterisk/utils.h>
2001-04-13 02:12:18 +00:00
#include <string.h>
#include <stdlib.h>
static char *tdesc = "Trivial Record Application";
static char *app = "Record";
static char *synopsis = "Record to a file";
static char *descrip =
2004-10-28 19:08:02 +00:00
" Record(filename.format|silence[|maxduration][|options])\n\n"
2004-06-30 16:04:28 +00:00
"Records from the channel into a given filename. If the file exists it will\n"
"be overwritten.\n"
"- 'format' is the format of the file type to be recorded (wav, gsm, etc).\n"
2004-06-30 16:04:28 +00:00
"- 'silence' is the number of seconds of silence to allow before returning.\n"
"- 'maxduration' is the maximum recording duration in seconds. If missing\n"
"or 0 there is no maximum.\n"
2004-10-28 19:08:02 +00:00
"- 'options' may contain any of the following letters:\n"
" 's' : skip recording if the line is not yet answered\n"
" 'n' : do not answer, but record anyway if line not yet answered\n"
" 'a' : append to existing recording rather than replacing\n"
" 't' : use alternate '*' terminator key instead of default '#'\n"
"\n"
"If filename contains '%d', these characters will be replaced with a number\n"
"incremented by one each time the file is recorded. \n\n"
"Formats: g723, g729, gsm, h263, ulaw, alaw, vox, wav, WAV\n\n"
2004-05-25 15:53:28 +00:00
"User can press '#' to terminate the recording and continue to the next priority.\n\n"
2001-07-26 16:36:23 +00:00
"Returns -1 when the user hangs up.\n";
2001-04-13 02:12:18 +00:00
STANDARD_LOCAL_USER;
LOCAL_USER_DECL;
static int record_exec(struct ast_channel *chan, void *data)
{
int res = 0;
int count = 0;
int percentflag = 0;
2004-10-28 19:08:02 +00:00
char *filename, *ext = NULL, *silstr, *maxstr, *options;
char *vdata, *p;
2001-04-13 02:12:18 +00:00
int i = 0;
2004-10-28 19:08:02 +00:00
char tmp[256];
2003-04-28 05:07:52 +00:00
2001-04-13 02:12:18 +00:00
struct ast_filestream *s = '\0';
struct localuser *u;
2002-06-19 02:35:40 +00:00
struct ast_frame *f = NULL;
2001-04-13 02:12:18 +00:00
2003-10-28 14:07:19 +00:00
struct ast_dsp *sildet = NULL; /* silence detector dsp */
2003-04-28 05:07:52 +00:00
int totalsilence = 0;
int dspsilence = 0;
int silence = 0; /* amount of silence to allow */
int gotsilence = 0; /* did we timeout for silence? */
2004-06-30 16:04:28 +00:00
int maxduration = 0; /* max duration of recording */
int gottimeout = 0; /* did we timeout for maxduration exceeded? */
time_t timeout = 0;
int option_skip = 0;
int option_noanswer = 0;
2004-10-28 19:08:02 +00:00
int option_append = 0;
int terminator = '#';
2003-11-23 22:14:32 +00:00
int rfmt = 0;
2004-09-23 16:39:33 +00:00
int flags;
2004-10-28 19:08:02 +00:00
2004-09-23 16:39:33 +00:00
2003-04-28 05:07:52 +00:00
2001-04-13 02:12:18 +00:00
/* The next few lines of code parse out the filename and header from the input string */
2004-10-31 23:29:56 +00:00
if (!data || ast_strlen_zero(data)) { /* no data implies no filename or anything is present */
2001-04-13 02:12:18 +00:00
ast_log(LOG_WARNING, "Record requires an argument (filename)\n");
return -1;
}
2004-10-28 19:08:02 +00:00
/* Yay for strsep being easy */
2004-09-23 16:39:33 +00:00
vdata = ast_strdupa(data);
p = vdata;
2004-10-28 19:08:02 +00:00
filename = strsep(&p, "|");
silstr = strsep(&p, "|");
maxstr = strsep(&p, "|");
options = strsep(&p, "|");
if (filename) {
if (strstr(filename, "%d"))
percentflag = 1;
2004-11-23 02:35:46 +00:00
ext = strrchr(filename, '.'); /* to support filename with a . in the filename, not format */
2004-10-28 19:08:02 +00:00
if (!ext)
ext = strchr(filename, ':');
2004-10-28 22:14:08 +00:00
if (ext) {
*ext = '\0';
ext++;
}
2001-04-13 02:12:18 +00:00
}
if (!ext) {
ast_log(LOG_WARNING, "No extension specified to filename!\n");
return -1;
}
2004-10-28 19:08:02 +00:00
if (silstr) {
if ((sscanf(silstr, "%d", &i) == 1) && (i > -1)) {
silence = i * 1000;
} else if (!ast_strlen_zero(silstr)) {
2004-10-28 19:08:02 +00:00
ast_log(LOG_WARNING, "'%s' is not a valid silence duration\n", silstr);
}
2004-06-30 16:04:28 +00:00
}
2004-10-28 19:08:02 +00:00
if (maxstr) {
if ((sscanf(maxstr, "%d", &i) == 1) && (i > -1))
maxduration = i;
else if (!ast_strlen_zero(maxstr))
ast_log(LOG_WARNING, "'%s' is not a valid maximum duration\n", maxstr);
}
if (options) {
/* Retain backwards compatibility with old style options */
if (!strcasecmp(options, "skip"))
option_skip = 1;
else if (!strcasecmp(options, "noanswer"))
option_noanswer = 1;
else {
if (strchr(options, 's'))
option_skip = 1;
if (strchr(options, 'n'))
option_noanswer = 1;
if (strchr(options, 'a'))
option_append = 1;
if (strchr(options, 't'))
terminator = '*';
}
2003-04-28 05:07:52 +00:00
}
2001-04-13 02:12:18 +00:00
/* done parsing */
/* these are to allow the use of the %d in the config file for a wild card of sort to
create a new file with the inputed name scheme */
if (percentflag) {
do {
2004-10-28 19:08:02 +00:00
snprintf(tmp, sizeof(tmp), filename, count);
2001-04-13 02:12:18 +00:00
count++;
} while ( ast_fileexists(tmp, ext, chan->language) != -1 );
pbx_builtin_setvar_helper(chan, "RECORDED_FILE", tmp);
2001-04-13 02:12:18 +00:00
} else
2004-10-28 19:08:02 +00:00
strncpy(tmp, filename, sizeof(tmp)-1);
2001-04-13 02:12:18 +00:00
/* end of routine mentioned */
2001-04-13 02:12:18 +00:00
LOCAL_USER_ADD(u);
2002-07-12 09:03:50 +00:00
if (chan->_state != AST_STATE_UP) {
2004-06-30 16:04:28 +00:00
if (option_skip) {
/* At the user's option, skip if the line is not up */
LOCAL_USER_REMOVE(u);
return 0;
} else if (!option_noanswer) {
/* Otherwise answer unless we're supposed to record while on-hook */
res = ast_answer(chan);
}
2001-04-13 02:12:18 +00:00
}
if (!res) {
/* Some code to play a nice little beep to signify the start of the record operation */
res = ast_streamfile(chan, "beep", chan->language);
if (!res) {
res = ast_waitstream(chan, "");
} else {
ast_log(LOG_WARNING, "ast_streamfile failed on %s\n", chan->name);
}
ast_stopstream(chan);
2001-04-13 02:12:18 +00:00
/* The end of beep code. Now the recording starts */
2003-04-28 05:07:52 +00:00
if (silence > 0) {
rfmt = chan->readformat;
res = ast_set_read_format(chan, AST_FORMAT_SLINEAR);
if (res < 0) {
ast_log(LOG_WARNING, "Unable to set to linear mode, giving up\n");
return -1;
}
2003-04-28 05:07:52 +00:00
sildet = ast_dsp_new();
if (!sildet) {
ast_log(LOG_WARNING, "Unable to create silence detector :(\n");
return -1;
}
2003-04-28 05:07:52 +00:00
ast_dsp_set_threshold(sildet, 256);
}
2004-10-28 19:08:02 +00:00
flags = option_append ? O_CREAT|O_APPEND|O_WRONLY : O_CREAT|O_TRUNC|O_WRONLY;
2004-09-23 16:39:33 +00:00
s = ast_writefile( tmp, ext, NULL, flags , 0, 0644);
2001-04-13 02:12:18 +00:00
if (s) {
2004-06-30 16:04:28 +00:00
if (maxduration > 0)
timeout = time(NULL) + (time_t)maxduration;
2002-06-19 02:35:40 +00:00
while (ast_waitfor(chan, -1) > -1) {
2004-06-30 16:04:28 +00:00
if (maxduration > 0 && time(NULL) > timeout) {
gottimeout = 1;
break;
}
2002-06-19 02:35:40 +00:00
f = ast_read(chan);
if (!f) {
res = -1;
break;
}
2001-04-13 02:12:18 +00:00
if (f->frametype == AST_FRAME_VOICE) {
res = ast_writestream(s, f);
if (res) {
ast_log(LOG_WARNING, "Problem writing frame\n");
break;
}
2003-04-28 05:07:52 +00:00
if (silence > 0) {
dspsilence = 0;
ast_dsp_silence(sildet, f, &dspsilence);
if (dspsilence) {
totalsilence = dspsilence;
} else {
totalsilence = 0;
}
if (totalsilence > silence) {
/* Ended happily with silence */
2003-04-28 05:07:52 +00:00
ast_frfree(f);
gotsilence = 1;
break;
}
2003-04-28 05:07:52 +00:00
}
2001-04-13 02:12:18 +00:00
}
2003-06-29 03:24:39 +00:00
if (f->frametype == AST_FRAME_VIDEO) {
res = ast_writestream(s, f);
if (res) {
ast_log(LOG_WARNING, "Problem writing frame\n");
break;
}
}
2001-07-26 16:36:23 +00:00
if ((f->frametype == AST_FRAME_DTMF) &&
2004-10-28 19:08:02 +00:00
(f->subclass == terminator)) {
2001-07-26 16:36:23 +00:00
ast_frfree(f);
break;
}
ast_frfree(f);
2001-04-13 02:12:18 +00:00
}
if (!f) {
ast_log(LOG_DEBUG, "Got hangup\n");
res = -1;
2001-04-13 02:12:18 +00:00
}
2003-04-28 05:07:52 +00:00
if (gotsilence) {
ast_stream_rewind(s, silence-1000);
ast_truncstream(s);
2004-06-30 16:04:28 +00:00
} else if (!gottimeout) {
2003-04-28 05:07:52 +00:00
/* Strip off the last 1/4 second of it */
ast_stream_rewind(s, 250);
ast_truncstream(s);
}
2001-04-13 02:12:18 +00:00
ast_closestream(s);
} else
2004-10-28 19:08:02 +00:00
ast_log(LOG_WARNING, "Could not create file %s\n", filename);
2001-04-13 02:12:18 +00:00
} else
ast_log(LOG_WARNING, "Could not answer channel '%s'\n", chan->name);
2001-04-13 02:12:18 +00:00
LOCAL_USER_REMOVE(u);
2004-10-12 21:30:53 +00:00
if ((silence > 0) && rfmt) {
res = ast_set_read_format(chan, rfmt);
if (res)
ast_log(LOG_WARNING, "Unable to restore read format on '%s'\n", chan->name);
2003-10-28 14:07:19 +00:00
if (sildet)
ast_dsp_free(sildet);
2003-04-28 05:07:52 +00:00
}
2001-04-13 02:12:18 +00:00
return res;
}
int unload_module(void)
{
STANDARD_HANGUP_LOCALUSERS;
return ast_unregister_application(app);
}
int load_module(void)
{
return ast_register_application(app, record_exec, synopsis, descrip);
}
char *description(void)
{
return tdesc;
}
int usecount(void)
{
int res;
STANDARD_USECOUNT(res);
return res;
}
char *key()
{
return ASTERISK_GPL_KEY;
}