|
|
|
@ -58,75 +58,75 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
|
|
|
|
#include "asterisk/utils.h"
|
|
|
|
|
#include "asterisk/lock.h"
|
|
|
|
|
#include "asterisk/options.h"
|
|
|
|
|
#include "asterisk/app.h"
|
|
|
|
|
|
|
|
|
|
#define FESTIVAL_CONFIG "festival.conf"
|
|
|
|
|
#define MAXLEN 180
|
|
|
|
|
#define MAXFESTLEN 2048
|
|
|
|
|
|
|
|
|
|
static char *app = "Festival";
|
|
|
|
|
|
|
|
|
|
static char *synopsis = "Say text to the user";
|
|
|
|
|
|
|
|
|
|
static char *descrip =
|
|
|
|
|
" Festival(text[|intkeys]): Connect to Festival, send the argument, get back the waveform,"
|
|
|
|
|
" Festival(text[,intkeys]): Connect to Festival, send the argument, get back the waveform,"
|
|
|
|
|
"play it to the user, allowing any given interrupt keys to immediately terminate and return\n"
|
|
|
|
|
"the value, or 'any' to allow any number back (useful in dialplan)\n";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static char *socket_receive_file_to_buff(int fd,int *size)
|
|
|
|
|
static char *socket_receive_file_to_buff(int fd, int *size)
|
|
|
|
|
{
|
|
|
|
|
/* Receive file (probably a waveform file) from socket using */
|
|
|
|
|
/* Festival key stuff technique, but long winded I know, sorry */
|
|
|
|
|
/* but will receive any file without closing the stream or */
|
|
|
|
|
/* using OOB data */
|
|
|
|
|
/* Receive file (probably a waveform file) from socket using
|
|
|
|
|
* Festival key stuff technique, but long winded I know, sorry
|
|
|
|
|
* but will receive any file without closing the stream or
|
|
|
|
|
* using OOB data
|
|
|
|
|
*/
|
|
|
|
|
static char *file_stuff_key = "ft_StUfF_key"; /* must == Festival's key */
|
|
|
|
|
char *buff;
|
|
|
|
|
char *buff, *tmp;
|
|
|
|
|
int bufflen;
|
|
|
|
|
int n,k,i;
|
|
|
|
|
char c;
|
|
|
|
|
|
|
|
|
|
bufflen = 1024;
|
|
|
|
|
if (!(buff = ast_malloc(bufflen)))
|
|
|
|
|
{
|
|
|
|
|
/* TODO: Handle memory allocation failure */
|
|
|
|
|
}
|
|
|
|
|
*size=0;
|
|
|
|
|
|
|
|
|
|
for (k=0; file_stuff_key[k] != '\0';)
|
|
|
|
|
{
|
|
|
|
|
n = read(fd,&c,1);
|
|
|
|
|
if (n==0) break; /* hit stream eof before end of file */
|
|
|
|
|
if ((*size)+k+1 >= bufflen)
|
|
|
|
|
{ /* +1 so you can add a NULL if you want */
|
|
|
|
|
bufflen += bufflen/4;
|
|
|
|
|
if (!(buff = ast_realloc(buff, bufflen)))
|
|
|
|
|
{
|
|
|
|
|
/* TODO: Handle memory allocation failure */
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
*size = 0;
|
|
|
|
|
|
|
|
|
|
for (k = 0; file_stuff_key[k] != '\0';) {
|
|
|
|
|
n = read(fd, &c, 1);
|
|
|
|
|
if (n == 0)
|
|
|
|
|
break; /* hit stream eof before end of file */
|
|
|
|
|
if ((*size) + k + 1 >= bufflen) {
|
|
|
|
|
/* +1 so you can add a terminating NULL if you want */
|
|
|
|
|
bufflen += bufflen / 4;
|
|
|
|
|
if (!(tmp = ast_realloc(buff, bufflen))) {
|
|
|
|
|
ast_free(buff);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
buff = tmp;
|
|
|
|
|
}
|
|
|
|
|
if (file_stuff_key[k] == c)
|
|
|
|
|
k++;
|
|
|
|
|
else if ((c == 'X') && (file_stuff_key[k+1] == '\0'))
|
|
|
|
|
{ /* It looked like the key but wasn't */
|
|
|
|
|
for (i=0; i < k; i++,(*size)++)
|
|
|
|
|
else if ((c == 'X') && (file_stuff_key[k+1] == '\0')) {
|
|
|
|
|
/* It looked like the key but wasn't */
|
|
|
|
|
for (i = 0; i < k; i++, (*size)++)
|
|
|
|
|
buff[*size] = file_stuff_key[i];
|
|
|
|
|
k=0;
|
|
|
|
|
k = 0;
|
|
|
|
|
/* omit the stuffed 'X' */
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
for (i=0; i < k; i++,(*size)++)
|
|
|
|
|
} else {
|
|
|
|
|
for (i = 0; i < k; i++, (*size)++)
|
|
|
|
|
buff[*size] = file_stuff_key[i];
|
|
|
|
|
k=0;
|
|
|
|
|
k = 0;
|
|
|
|
|
buff[*size] = c;
|
|
|
|
|
(*size)++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return buff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int send_waveform_to_fd(char *waveform, int length, int fd) {
|
|
|
|
|
|
|
|
|
|
static int send_waveform_to_fd(char *waveform, int length, int fd)
|
|
|
|
|
{
|
|
|
|
|
int res;
|
|
|
|
|
int x;
|
|
|
|
|
#ifdef __PPC__
|
|
|
|
@ -144,7 +144,7 @@ static int send_waveform_to_fd(char *waveform, int length, int fd) {
|
|
|
|
|
pthread_sigmask(SIG_SETMASK, &oldset, NULL);
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
for (x=0;x<256;x++) {
|
|
|
|
|
for (x = 0; x < 256; x++) {
|
|
|
|
|
if (x != fd)
|
|
|
|
|
close(x);
|
|
|
|
|
}
|
|
|
|
@ -152,26 +152,22 @@ static int send_waveform_to_fd(char *waveform, int length, int fd) {
|
|
|
|
|
ast_set_priority(0);
|
|
|
|
|
signal(SIGPIPE, SIG_DFL);
|
|
|
|
|
pthread_sigmask(SIG_UNBLOCK, &fullset, NULL);
|
|
|
|
|
/*IAS */
|
|
|
|
|
#ifdef __PPC__
|
|
|
|
|
for( x=0; x<length; x+=2)
|
|
|
|
|
{
|
|
|
|
|
c = *(waveform+x+1);
|
|
|
|
|
*(waveform+x+1)=*(waveform+x);
|
|
|
|
|
*(waveform+x)=c;
|
|
|
|
|
for (x = 0; x < length; x += 2) {
|
|
|
|
|
c = *(waveform + x + 1);
|
|
|
|
|
*(waveform + x + 1) = *(waveform + x);
|
|
|
|
|
*(waveform + x) = c;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
write(fd,waveform,length);
|
|
|
|
|
write(fd, waveform, length);
|
|
|
|
|
close(fd);
|
|
|
|
|
exit(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int send_waveform_to_channel(struct ast_channel *chan, char *waveform, int length, char *intkeys) {
|
|
|
|
|
int res=0;
|
|
|
|
|
static int send_waveform_to_channel(struct ast_channel *chan, char *waveform, int length, char *intkeys)
|
|
|
|
|
{
|
|
|
|
|
int res = 0;
|
|
|
|
|
int fds[2];
|
|
|
|
|
int ms = -1;
|
|
|
|
|
int pid = -1;
|
|
|
|
|
int needed = 0;
|
|
|
|
|
int owriteformat;
|
|
|
|
@ -202,14 +198,13 @@ static int send_waveform_to_channel(struct ast_channel *chan, char *waveform, in
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
res=send_waveform_to_fd(waveform,length,fds[1]);
|
|
|
|
|
res = send_waveform_to_fd(waveform, length, fds[1]);
|
|
|
|
|
if (res >= 0) {
|
|
|
|
|
pid = res;
|
|
|
|
|
/* Order is important -- there's almost always going to be mp3... we want to prioritize the
|
|
|
|
|
user */
|
|
|
|
|
for (;;) {
|
|
|
|
|
ms = 1000;
|
|
|
|
|
res = ast_waitfor(chan, ms);
|
|
|
|
|
res = ast_waitfor(chan, 1000);
|
|
|
|
|
if (res < 1) {
|
|
|
|
|
res = -1;
|
|
|
|
|
break;
|
|
|
|
@ -252,7 +247,7 @@ static int send_waveform_to_channel(struct ast_channel *chan, char *waveform, in
|
|
|
|
|
}
|
|
|
|
|
if (res < needed) { /* last frame */
|
|
|
|
|
ast_debug(1, "Last frame\n");
|
|
|
|
|
res=0;
|
|
|
|
|
res = 0;
|
|
|
|
|
ast_frfree(f);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
@ -267,23 +262,19 @@ static int send_waveform_to_channel(struct ast_channel *chan, char *waveform, in
|
|
|
|
|
close(fds[0]);
|
|
|
|
|
close(fds[1]);
|
|
|
|
|
|
|
|
|
|
/* if (pid > -1) */
|
|
|
|
|
/* kill(pid, SIGKILL); */
|
|
|
|
|
#if 0
|
|
|
|
|
if (pid > -1)
|
|
|
|
|
kill(pid, SIGKILL);
|
|
|
|
|
#endif
|
|
|
|
|
if (!res && owriteformat)
|
|
|
|
|
ast_set_write_format(chan, owriteformat);
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define MAXLEN 180
|
|
|
|
|
#define MAXFESTLEN 2048
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int festival_exec(struct ast_channel *chan, void *vdata)
|
|
|
|
|
{
|
|
|
|
|
int usecache;
|
|
|
|
|
int res=0;
|
|
|
|
|
int res = 0;
|
|
|
|
|
struct sockaddr_in serv_addr;
|
|
|
|
|
struct hostent *serverhost;
|
|
|
|
|
struct ast_hostent ahp;
|
|
|
|
@ -293,7 +284,7 @@ static int festival_exec(struct ast_channel *chan, void *vdata)
|
|
|
|
|
const char *cachedir;
|
|
|
|
|
const char *temp;
|
|
|
|
|
const char *festivalcommand;
|
|
|
|
|
int port=1314;
|
|
|
|
|
int port = 1314;
|
|
|
|
|
int n;
|
|
|
|
|
char ack[4];
|
|
|
|
|
char *waveform;
|
|
|
|
@ -306,16 +297,19 @@ static int festival_exec(struct ast_channel *chan, void *vdata)
|
|
|
|
|
char MD5Hex[33] = "";
|
|
|
|
|
char koko[4] = "";
|
|
|
|
|
char cachefile[MAXFESTLEN]="";
|
|
|
|
|
int readcache=0;
|
|
|
|
|
int writecache=0;
|
|
|
|
|
int readcache = 0;
|
|
|
|
|
int writecache = 0;
|
|
|
|
|
int strln;
|
|
|
|
|
int fdesc = -1;
|
|
|
|
|
char buffer[16384];
|
|
|
|
|
int seekpos = 0;
|
|
|
|
|
char *data;
|
|
|
|
|
char *intstr;
|
|
|
|
|
struct ast_config *cfg;
|
|
|
|
|
char *newfestivalcommand;
|
|
|
|
|
AST_DECLARE_APP_ARGS(args,
|
|
|
|
|
AST_APP_ARG(text);
|
|
|
|
|
AST_APP_ARG(interrupt);
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (ast_strlen_zero(vdata)) {
|
|
|
|
|
ast_log(LOG_WARNING, "festival requires an argument (text)\n");
|
|
|
|
@ -336,7 +330,7 @@ static int festival_exec(struct ast_channel *chan, void *vdata)
|
|
|
|
|
port = atoi(temp);
|
|
|
|
|
}
|
|
|
|
|
if (!(temp = ast_variable_retrieve(cfg, "general", "usecache"))) {
|
|
|
|
|
usecache=0;
|
|
|
|
|
usecache = 0;
|
|
|
|
|
} else {
|
|
|
|
|
usecache = ast_true(temp);
|
|
|
|
|
}
|
|
|
|
@ -364,22 +358,18 @@ static int festival_exec(struct ast_channel *chan, void *vdata)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
data = ast_strdupa(vdata);
|
|
|
|
|
AST_STANDARD_APP_ARGS(args, data);
|
|
|
|
|
|
|
|
|
|
intstr = strchr(data, '|');
|
|
|
|
|
if (intstr) {
|
|
|
|
|
*intstr = '\0';
|
|
|
|
|
intstr++;
|
|
|
|
|
if (!strcasecmp(intstr, "any"))
|
|
|
|
|
intstr = AST_DIGIT_ANY;
|
|
|
|
|
}
|
|
|
|
|
if (args.interrupt && !strcasecmp(args.interrupt, "any"))
|
|
|
|
|
args.interrupt = AST_DIGIT_ANY;
|
|
|
|
|
|
|
|
|
|
ast_debug(1, "Text passed to festival server : %s\n",(char *)data);
|
|
|
|
|
ast_debug(1, "Text passed to festival server : %s\n", args.text);
|
|
|
|
|
/* Connect to local festival server */
|
|
|
|
|
|
|
|
|
|
fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
|
|
|
|
|
|
|
|
|
|
if (fd < 0) {
|
|
|
|
|
ast_log(LOG_WARNING,"festival_client: can't get socket\n");
|
|
|
|
|
ast_log(LOG_WARNING, "festival_client: can't get socket\n");
|
|
|
|
|
ast_config_destroy(cfg);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
@ -390,109 +380,107 @@ static int festival_exec(struct ast_channel *chan, void *vdata)
|
|
|
|
|
/* its a name rather than an ipnum */
|
|
|
|
|
serverhost = ast_gethostbyname(host, &ahp);
|
|
|
|
|
|
|
|
|
|
if (serverhost == (struct hostent *)0) {
|
|
|
|
|
ast_log(LOG_WARNING,"festival_client: gethostbyname failed\n");
|
|
|
|
|
if (serverhost == NULL) {
|
|
|
|
|
ast_log(LOG_WARNING, "festival_client: gethostbyname failed\n");
|
|
|
|
|
ast_config_destroy(cfg);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
memmove(&serv_addr.sin_addr,serverhost->h_addr, serverhost->h_length);
|
|
|
|
|
memmove(&serv_addr.sin_addr, serverhost->h_addr, serverhost->h_length);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
serv_addr.sin_family = AF_INET;
|
|
|
|
|
serv_addr.sin_port = htons(port);
|
|
|
|
|
|
|
|
|
|
if (connect(fd, (struct sockaddr *)&serv_addr, sizeof(serv_addr)) != 0) {
|
|
|
|
|
ast_log(LOG_WARNING,"festival_client: connect to server failed\n");
|
|
|
|
|
ast_log(LOG_WARNING, "festival_client: connect to server failed\n");
|
|
|
|
|
ast_config_destroy(cfg);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Compute MD5 sum of string */
|
|
|
|
|
MD5Init(&md5ctx);
|
|
|
|
|
MD5Update(&md5ctx,(unsigned char const *)data,strlen(data));
|
|
|
|
|
MD5Final(MD5Res,&md5ctx);
|
|
|
|
|
MD5Update(&md5ctx, (unsigned char *)args.text, strlen(args.text));
|
|
|
|
|
MD5Final(MD5Res, &md5ctx);
|
|
|
|
|
MD5Hex[0] = '\0';
|
|
|
|
|
|
|
|
|
|
/* Convert to HEX and look if there is any matching file in the cache
|
|
|
|
|
directory */
|
|
|
|
|
for (i=0;i<16;i++) {
|
|
|
|
|
snprintf(koko, sizeof(koko), "%X",MD5Res[i]);
|
|
|
|
|
for (i = 0; i < 16; i++) {
|
|
|
|
|
snprintf(koko, sizeof(koko), "%X", MD5Res[i]);
|
|
|
|
|
strncat(MD5Hex, koko, sizeof(MD5Hex) - strlen(MD5Hex) - 1);
|
|
|
|
|
}
|
|
|
|
|
readcache=0;
|
|
|
|
|
writecache=0;
|
|
|
|
|
if (strlen(cachedir)+strlen(MD5Hex)+1<=MAXFESTLEN && (usecache==-1)) {
|
|
|
|
|
readcache = 0;
|
|
|
|
|
writecache = 0;
|
|
|
|
|
if (strlen(cachedir) + strlen(MD5Hex) + 1 <= MAXFESTLEN && (usecache == -1)) {
|
|
|
|
|
snprintf(cachefile, sizeof(cachefile), "%s/%s", cachedir, MD5Hex);
|
|
|
|
|
fdesc=open(cachefile,O_RDWR);
|
|
|
|
|
if (fdesc==-1) {
|
|
|
|
|
fdesc=open(cachefile,O_CREAT|O_RDWR,AST_FILE_MODE);
|
|
|
|
|
if (fdesc!=-1) {
|
|
|
|
|
writecache=1;
|
|
|
|
|
strln=strlen((char *)data);
|
|
|
|
|
ast_debug(1,"line length : %d\n",strln);
|
|
|
|
|
write(fdesc,&strln,sizeof(int));
|
|
|
|
|
write(fdesc,data,strln);
|
|
|
|
|
seekpos=lseek(fdesc,0,SEEK_CUR);
|
|
|
|
|
ast_debug(1,"Seek position : %d\n",seekpos);
|
|
|
|
|
fdesc = open(cachefile, O_RDWR);
|
|
|
|
|
if (fdesc == -1) {
|
|
|
|
|
fdesc = open(cachefile, O_CREAT | O_RDWR, AST_FILE_MODE);
|
|
|
|
|
if (fdesc != -1) {
|
|
|
|
|
writecache = 1;
|
|
|
|
|
strln = strlen(args.text);
|
|
|
|
|
ast_debug(1, "line length : %d\n", strln);
|
|
|
|
|
write(fdesc, &strln, sizeof(strln));
|
|
|
|
|
write(fdesc, args.text, strln);
|
|
|
|
|
seekpos = lseek(fdesc, 0, SEEK_CUR);
|
|
|
|
|
ast_debug(1, "Seek position : %d\n", seekpos);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
read(fdesc,&strln,sizeof(int));
|
|
|
|
|
ast_debug(1,"Cache file exists, strln=%d, strlen=%d\n",strln,(int)strlen((char *)data));
|
|
|
|
|
if (strlen((char *)data)==strln) {
|
|
|
|
|
ast_debug(1,"Size OK\n");
|
|
|
|
|
read(fdesc,&bigstring,strln);
|
|
|
|
|
read(fdesc, &strln, sizeof(strln));
|
|
|
|
|
ast_debug(1, "Cache file exists, strln=%d, strlen=%d\n", strln, (int)strlen(args.text));
|
|
|
|
|
if (strlen(args.text) == strln) {
|
|
|
|
|
ast_debug(1, "Size OK\n");
|
|
|
|
|
read(fdesc, &bigstring, strln);
|
|
|
|
|
bigstring[strln] = 0;
|
|
|
|
|
if (strcmp(bigstring,data)==0) {
|
|
|
|
|
readcache=1;
|
|
|
|
|
if (strcmp(bigstring, args.text) == 0) {
|
|
|
|
|
readcache = 1;
|
|
|
|
|
} else {
|
|
|
|
|
ast_log(LOG_WARNING,"Strings do not match\n");
|
|
|
|
|
ast_log(LOG_WARNING, "Strings do not match\n");
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
ast_log(LOG_WARNING,"Size mismatch\n");
|
|
|
|
|
ast_log(LOG_WARNING, "Size mismatch\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (readcache==1) {
|
|
|
|
|
if (readcache == 1) {
|
|
|
|
|
close(fd);
|
|
|
|
|
fd=fdesc;
|
|
|
|
|
ast_debug(1,"Reading from cache...\n");
|
|
|
|
|
fd = fdesc;
|
|
|
|
|
ast_debug(1, "Reading from cache...\n");
|
|
|
|
|
} else {
|
|
|
|
|
ast_debug(1,"Passing text to festival...\n");
|
|
|
|
|
fs=fdopen(dup(fd),"wb");
|
|
|
|
|
fprintf(fs,festivalcommand,(char *)data);
|
|
|
|
|
ast_debug(1, "Passing text to festival...\n");
|
|
|
|
|
fs = fdopen(dup(fd), "wb");
|
|
|
|
|
fprintf(fs, festivalcommand, args.text);
|
|
|
|
|
fflush(fs);
|
|
|
|
|
fclose(fs);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Write to cache and then pass it down */
|
|
|
|
|
if (writecache==1) {
|
|
|
|
|
ast_debug(1,"Writing result to cache...\n");
|
|
|
|
|
while ((strln=read(fd,buffer,16384))!=0) {
|
|
|
|
|
write(fdesc,buffer,strln);
|
|
|
|
|
if (writecache == 1) {
|
|
|
|
|
ast_debug(1, "Writing result to cache...\n");
|
|
|
|
|
while ((strln = read(fd, buffer, 16384)) != 0) {
|
|
|
|
|
write(fdesc, buffer, strln);
|
|
|
|
|
}
|
|
|
|
|
close(fd);
|
|
|
|
|
close(fdesc);
|
|
|
|
|
fd=open(cachefile,O_RDWR);
|
|
|
|
|
lseek(fd,seekpos,SEEK_SET);
|
|
|
|
|
fd = open(cachefile, O_RDWR);
|
|
|
|
|
lseek(fd, seekpos, SEEK_SET);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ast_debug(1,"Passing data to channel...\n");
|
|
|
|
|
ast_debug(1, "Passing data to channel...\n");
|
|
|
|
|
|
|
|
|
|
/* Read back info from server */
|
|
|
|
|
/* This assumes only one waveform will come back, also LP is unlikely */
|
|
|
|
|
wave = 0;
|
|
|
|
|
do {
|
|
|
|
|
int read_data;
|
|
|
|
|
for (n=0; n < 3; )
|
|
|
|
|
{
|
|
|
|
|
read_data = read(fd,ack+n,3-n);
|
|
|
|
|
for (n = 0; n < 3; ) {
|
|
|
|
|
read_data = read(fd, ack + n, 3 - n);
|
|
|
|
|
/* this avoids falling in infinite loop
|
|
|
|
|
* in case that festival server goes down
|
|
|
|
|
* */
|
|
|
|
|
if ( read_data == -1 )
|
|
|
|
|
{
|
|
|
|
|
ast_log(LOG_WARNING,"Unable to read from cache/festival fd\n");
|
|
|
|
|
*/
|
|
|
|
|
if (read_data == -1) {
|
|
|
|
|
ast_log(LOG_WARNING, "Unable to read from cache/festival fd\n");
|
|
|
|
|
close(fd);
|
|
|
|
|
ast_config_destroy(cfg);
|
|
|
|
|
return -1;
|
|
|
|
@ -500,29 +488,29 @@ static int festival_exec(struct ast_channel *chan, void *vdata)
|
|
|
|
|
n += read_data;
|
|
|
|
|
}
|
|
|
|
|
ack[3] = '\0';
|
|
|
|
|
if (strcmp(ack,"WV\n") == 0) { /* receive a waveform */
|
|
|
|
|
ast_debug(1,"Festival WV command\n");
|
|
|
|
|
waveform = socket_receive_file_to_buff(fd,&filesize);
|
|
|
|
|
res = send_waveform_to_channel(chan,waveform,filesize, intstr);
|
|
|
|
|
if (strcmp(ack, "WV\n") == 0) { /* receive a waveform */
|
|
|
|
|
ast_debug(1, "Festival WV command\n");
|
|
|
|
|
if ((waveform = socket_receive_file_to_buff(fd, &filesize))) {
|
|
|
|
|
res = send_waveform_to_channel(chan, waveform, filesize, args.interrupt);
|
|
|
|
|
ast_free(waveform);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
else if (strcmp(ack,"LP\n") == 0) { /* receive an s-expr */
|
|
|
|
|
ast_debug(1,"Festival LP command\n");
|
|
|
|
|
waveform = socket_receive_file_to_buff(fd,&filesize);
|
|
|
|
|
waveform[filesize]='\0';
|
|
|
|
|
ast_log(LOG_WARNING,"Festival returned LP : %s\n",waveform);
|
|
|
|
|
break;
|
|
|
|
|
} else if (strcmp(ack, "LP\n") == 0) { /* receive an s-expr */
|
|
|
|
|
ast_debug(1, "Festival LP command\n");
|
|
|
|
|
if ((waveform = socket_receive_file_to_buff(fd, &filesize))) {
|
|
|
|
|
waveform[filesize] = '\0';
|
|
|
|
|
ast_log(LOG_WARNING, "Festival returned LP : %s\n", waveform);
|
|
|
|
|
ast_free(waveform);
|
|
|
|
|
} else if (strcmp(ack,"ER\n") == 0) { /* server got an error */
|
|
|
|
|
ast_log(LOG_WARNING,"Festival returned ER\n");
|
|
|
|
|
res=-1;
|
|
|
|
|
}
|
|
|
|
|
} else if (strcmp(ack, "ER\n") == 0) { /* server got an error */
|
|
|
|
|
ast_log(LOG_WARNING, "Festival returned ER\n");
|
|
|
|
|
res = -1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
} while (strcmp(ack,"OK\n") != 0);
|
|
|
|
|
} while (strcmp(ack, "OK\n") != 0);
|
|
|
|
|
close(fd);
|
|
|
|
|
ast_config_destroy(cfg);
|
|
|
|
|
return res;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int unload_module(void)
|
|
|
|
|