mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
automerge commit
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2-netsec@42372 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -41,6 +41,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
|||||||
#include "asterisk/dsp.h"
|
#include "asterisk/dsp.h"
|
||||||
#include "asterisk/utils.h"
|
#include "asterisk/utils.h"
|
||||||
#include "asterisk/options.h"
|
#include "asterisk/options.h"
|
||||||
|
#include "asterisk/app.h"
|
||||||
|
|
||||||
static char *tdesc = "Trivial Record Application";
|
static char *tdesc = "Trivial Record Application";
|
||||||
|
|
||||||
@@ -183,8 +184,35 @@ static int record_exec(struct ast_channel *chan, void *data)
|
|||||||
/* these are to allow the use of the %d in the config file for a wild card of sort to
|
/* 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 */
|
create a new file with the inputed name scheme */
|
||||||
if (percentflag) {
|
if (percentflag) {
|
||||||
|
AST_DECLARE_APP_ARGS(fname,
|
||||||
|
AST_APP_ARG(piece)[100];
|
||||||
|
);
|
||||||
|
char *tmp2 = ast_strdupa(filename);
|
||||||
|
char countstring[15];
|
||||||
|
int i;
|
||||||
|
|
||||||
|
/* Separate each piece out by the format specifier */
|
||||||
|
/* AST_NONSTANDARD_APP_ARGS(fname, tmp2, '%'); */
|
||||||
|
fname.argc = ast_app_separate_args(tmp2, '%', fname.argv, (sizeof(fname) - sizeof(fname.argc)) / sizeof(fname.argv[0]));
|
||||||
do {
|
do {
|
||||||
snprintf(tmp, sizeof(tmp), filename, count);
|
int tmplen;
|
||||||
|
/* First piece has no leading percent, so it's copied verbatim */
|
||||||
|
ast_copy_string(tmp, fname.piece[0], sizeof(tmp));
|
||||||
|
tmplen = strlen(tmp);
|
||||||
|
for (i = 1; i < fname.argc; i++) {
|
||||||
|
if (fname.piece[i][0] == 'd') {
|
||||||
|
/* Substitute the count */
|
||||||
|
snprintf(countstring, sizeof(countstring), "%d", count);
|
||||||
|
ast_copy_string(tmp + tmplen, countstring, sizeof(tmp) - tmplen);
|
||||||
|
tmplen += strlen(countstring);
|
||||||
|
} else if (tmplen + 2 < sizeof(tmp)) {
|
||||||
|
/* Unknown format specifier - just copy it verbatim */
|
||||||
|
tmp[tmplen++] = '%';
|
||||||
|
tmp[tmplen++] = fname.piece[i][0];
|
||||||
|
}
|
||||||
|
/* Copy the remaining portion of the piece */
|
||||||
|
ast_copy_string(tmp + tmplen, &(fname.piece[i][1]), sizeof(tmp) - tmplen);
|
||||||
|
}
|
||||||
count++;
|
count++;
|
||||||
} while ( ast_fileexists(tmp, ext, chan->language) != -1 );
|
} while ( ast_fileexists(tmp, ext, chan->language) != -1 );
|
||||||
pbx_builtin_setvar_helper(chan, "RECORDED_FILE", tmp);
|
pbx_builtin_setvar_helper(chan, "RECORDED_FILE", tmp);
|
||||||
|
Reference in New Issue
Block a user