| 
									
										
										
										
											2001-08-05 21:56:28 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2005-09-14 20:46:50 +00:00
										 |  |  |  * Asterisk -- An open source telephony toolkit. | 
					
						
							| 
									
										
										
										
											2001-08-05 21:56:28 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-01-21 07:06:25 +00:00
										 |  |  |  * Copyright (C) 1999 - 2005, Digium, Inc. | 
					
						
							| 
									
										
										
										
											2001-08-05 21:56:28 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  |  * Mark Spencer <markster@digium.com> | 
					
						
							| 
									
										
										
										
											2001-08-05 21:56:28 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-09-14 20:46:50 +00:00
										 |  |  |  * See http://www.asterisk.org for more information about
 | 
					
						
							|  |  |  |  * the Asterisk project. Please do not directly contact | 
					
						
							|  |  |  |  * any of the maintainers of this project for assistance; | 
					
						
							|  |  |  |  * the project provides a web site, mailing lists and IRC | 
					
						
							|  |  |  |  * channels for your use. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2001-08-05 21:56:28 +00:00
										 |  |  |  * This program is free software, distributed under the terms of | 
					
						
							| 
									
										
										
										
											2005-09-14 20:46:50 +00:00
										 |  |  |  * the GNU General Public License Version 2. See the LICENSE file | 
					
						
							|  |  |  |  * at the top of the source tree. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-24 20:12:06 +00:00
										 |  |  | /*! \file
 | 
					
						
							| 
									
										
										
										
											2005-09-14 20:46:50 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-10-24 20:12:06 +00:00
										 |  |  |  * \brief Convenient Application Routines | 
					
						
							| 
									
										
										
										
											2005-12-30 21:18:06 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * \author Mark Spencer <markster@digium.com>  | 
					
						
							| 
									
										
										
										
											2001-08-05 21:56:28 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-07 18:54:56 +00:00
										 |  |  | #include "asterisk.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ASTERISK_FILE_VERSION(__FILE__, "$Revision$") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-24 13:48:48 +00:00
										 |  |  | #ifdef HAVE_SYS_STAT_H
 | 
					
						
							| 
									
										
										
										
											2005-02-28 23:18:03 +00:00
										 |  |  | #include <sys/stat.h>
 | 
					
						
							| 
									
										
										
										
											2007-11-24 13:48:48 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | #include <regex.h>
 | 
					
						
							| 
									
										
										
										
											2007-11-24 16:53:24 +00:00
										 |  |  | #include <sys/file.h> /* added this to allow to compile, sorry! */
 | 
					
						
							| 
									
										
										
										
											2008-04-16 22:57:54 +00:00
										 |  |  | #include <signal.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-22 13:11:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-20 23:16:15 +00:00
										 |  |  | #include "asterisk/paths.h"	/* use ast_config_AST_DATA_DIR */
 | 
					
						
							| 
									
										
										
										
											2005-04-21 06:02:45 +00:00
										 |  |  | #include "asterisk/channel.h"
 | 
					
						
							|  |  |  | #include "asterisk/pbx.h"
 | 
					
						
							|  |  |  | #include "asterisk/file.h"
 | 
					
						
							|  |  |  | #include "asterisk/app.h"
 | 
					
						
							|  |  |  | #include "asterisk/dsp.h"
 | 
					
						
							|  |  |  | #include "asterisk/utils.h"
 | 
					
						
							|  |  |  | #include "asterisk/lock.h"
 | 
					
						
							|  |  |  | #include "asterisk/indications.h"
 | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | #include "asterisk/linkedlists.h"
 | 
					
						
							| 
									
										
										
										
											2001-08-05 21:56:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | #define MAX_OTHER_FORMATS 10
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-13 18:23:12 +00:00
										 |  |  | static AST_RWLIST_HEAD_STATIC(groups, ast_group_info); | 
					
						
							| 
									
										
										
										
											2005-01-05 19:56:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-04 15:56:13 +00:00
										 |  |  | /*!
 | 
					
						
							|  |  |  |  * \brief This function presents a dialtone and reads an extension into 'collect'  | 
					
						
							|  |  |  |  * which must be a pointer to a **pre-initialized** array of char having a  | 
					
						
							|  |  |  |  * size of 'size' suitable for writing to.  It will collect no more than the smaller  | 
					
						
							|  |  |  |  * of 'maxlen' or 'size' minus the original strlen() of collect digits. | 
					
						
							|  |  |  |  * \param chan struct. | 
					
						
							|  |  |  |  * \param context  | 
					
						
							|  |  |  |  * \param collect  | 
					
						
							|  |  |  |  * \param size  | 
					
						
							|  |  |  |  * \param maxlen | 
					
						
							|  |  |  |  * \param timeout timeout in seconds | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * \return 0 if extension does not exist, 1 if extension exists | 
					
						
							| 
									
										
										
										
											2005-02-17 20:04:10 +00:00
										 |  |  | */ | 
					
						
							| 
									
										
										
										
											2005-01-05 19:56:47 +00:00
										 |  |  | int ast_app_dtget(struct ast_channel *chan, const char *context, char *collect, size_t size, int maxlen, int timeout)  | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-12-25 06:38:09 +00:00
										 |  |  | 	struct ind_tone_zone_sound *ts; | 
					
						
							| 
									
										
										
										
											2007-06-06 18:51:42 +00:00
										 |  |  | 	int res = 0, x = 0; | 
					
						
							| 
									
										
										
										
											2005-01-05 19:56:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-10 17:42:12 +00:00
										 |  |  | 	if (maxlen > size) | 
					
						
							| 
									
										
										
										
											2005-02-17 20:04:10 +00:00
										 |  |  | 		maxlen = size; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2006-07-10 17:42:12 +00:00
										 |  |  | 	if (!timeout && chan->pbx) | 
					
						
							| 
									
										
										
										
											2008-05-01 23:06:23 +00:00
										 |  |  | 		timeout = chan->pbx->dtimeoutms / 1000.0; | 
					
						
							| 
									
										
										
										
											2006-07-10 17:42:12 +00:00
										 |  |  | 	else if (!timeout) | 
					
						
							| 
									
										
										
										
											2005-01-05 19:56:47 +00:00
										 |  |  | 		timeout = 5; | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if ((ts = ast_get_indication_tone(chan->zone, "dial")) && ts->data[0]) | 
					
						
							| 
									
										
										
										
											2005-03-23 05:56:32 +00:00
										 |  |  | 		res = ast_playtones_start(chan, 0, ts->data, 0); | 
					
						
							|  |  |  | 	else  | 
					
						
							| 
									
										
										
										
											2008-03-04 23:04:29 +00:00
										 |  |  | 		ast_log(LOG_NOTICE, "Huh....? no dial for indications?\n"); | 
					
						
							| 
									
										
										
										
											2005-01-05 19:56:47 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2006-03-28 14:30:31 +00:00
										 |  |  | 	for (x = strlen(collect); x < maxlen; ) { | 
					
						
							| 
									
										
										
										
											2005-01-05 19:56:47 +00:00
										 |  |  | 		res = ast_waitfordigit(chan, timeout); | 
					
						
							|  |  |  | 		if (!ast_ignore_pattern(context, collect)) | 
					
						
							|  |  |  | 			ast_playtones_stop(chan); | 
					
						
							|  |  |  | 		if (res < 1) | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2007-04-03 18:02:47 +00:00
										 |  |  | 		if (res == '#') | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2005-01-05 19:56:47 +00:00
										 |  |  | 		collect[x++] = res; | 
					
						
							| 
									
										
										
										
											2007-04-03 18:02:47 +00:00
										 |  |  | 		if (!ast_matchmore_extension(chan, context, collect, 1, chan->cid.cid_num)) | 
					
						
							| 
									
										
										
										
											2005-01-05 19:56:47 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-06-06 17:08:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-28 14:30:31 +00:00
										 |  |  | 	if (res >= 0) | 
					
						
							|  |  |  | 		res = ast_exists_extension(chan, context, collect, 1, chan->cid.cid_num) ? 1 : 0; | 
					
						
							| 
									
										
										
										
											2007-06-06 17:08:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-01-05 19:56:47 +00:00
										 |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-04 15:56:13 +00:00
										 |  |  | /*!
 | 
					
						
							|  |  |  |  * \brief ast_app_getdata | 
					
						
							|  |  |  |  * \param c The channel to read from | 
					
						
							|  |  |  |  * \param prompt The file to stream to the channel | 
					
						
							|  |  |  |  * \param s The string to read in to.  Must be at least the size of your length | 
					
						
							|  |  |  |  * \param maxlen How many digits to read (maximum) | 
					
						
							|  |  |  |  * \param timeout set timeout to 0 for "standard" timeouts. Set timeout to -1 for  | 
					
						
							| 
									
										
										
										
											2006-10-30 16:33:02 +00:00
										 |  |  |  *      "ludicrous time" (essentially never times out) */ | 
					
						
							| 
									
										
										
										
											2006-11-10 03:59:48 +00:00
										 |  |  | int ast_app_getdata(struct ast_channel *c, const char *prompt, char *s, int maxlen, int timeout) | 
					
						
							| 
									
										
										
										
											2001-08-05 21:56:28 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-11-10 03:59:48 +00:00
										 |  |  | 	int res = 0, to, fto; | 
					
						
							|  |  |  | 	char *front, *filename; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-23 06:00:11 +00:00
										 |  |  | 	/* XXX Merge with full version? XXX */ | 
					
						
							| 
									
										
										
										
											2006-11-10 03:59:48 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2004-09-02 13:52:58 +00:00
										 |  |  | 	if (maxlen) | 
					
						
							|  |  |  | 		s[0] = '\0'; | 
					
						
							| 
									
										
										
										
											2006-11-10 03:59:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-11 17:00:36 +00:00
										 |  |  | 	if (!prompt) | 
					
						
							| 
									
										
										
										
											2008-03-04 23:04:29 +00:00
										 |  |  | 		prompt = ""; | 
					
						
							| 
									
										
										
										
											2006-11-10 03:59:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	filename = ast_strdupa(prompt); | 
					
						
							|  |  |  | 	while ((front = strsep(&filename, "&"))) { | 
					
						
							| 
									
										
										
										
											2006-12-11 17:00:36 +00:00
										 |  |  | 		if (!ast_strlen_zero(front)) { | 
					
						
							|  |  |  | 			res = ast_streamfile(c, front, c->language); | 
					
						
							|  |  |  | 			if (res) | 
					
						
							|  |  |  | 				continue; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2006-11-10 03:59:48 +00:00
										 |  |  | 		if (ast_strlen_zero(filename)) { | 
					
						
							|  |  |  | 			/* set timeouts for the last prompt */ | 
					
						
							| 
									
										
										
										
											2008-05-01 23:06:23 +00:00
										 |  |  | 			fto = c->pbx ? c->pbx->rtimeoutms : 6000; | 
					
						
							|  |  |  | 			to = c->pbx ? c->pbx->dtimeoutms : 2000; | 
					
						
							| 
									
										
										
										
											2006-11-10 03:59:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (timeout > 0)  | 
					
						
							|  |  |  | 				fto = to = timeout; | 
					
						
							|  |  |  | 			if (timeout < 0)  | 
					
						
							|  |  |  | 				fto = to = 1000000000; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			/* there is more than one prompt, so
 | 
					
						
							|  |  |  | 			   get rid of the long timeout between  | 
					
						
							|  |  |  | 			   prompts, and make it 50ms */ | 
					
						
							|  |  |  | 			fto = 50; | 
					
						
							| 
									
										
										
										
											2008-05-01 23:06:23 +00:00
										 |  |  | 			to = c->pbx ? c->pbx->dtimeoutms : 2000; | 
					
						
							| 
									
										
										
										
											2006-11-10 03:59:48 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		res = ast_readstring(c, s, maxlen, to, fto, "#"); | 
					
						
							|  |  |  | 		if (!ast_strlen_zero(s)) | 
					
						
							| 
									
										
										
										
											2001-08-05 21:56:28 +00:00
										 |  |  | 			return res; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-11-10 03:59:48 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2001-08-05 21:56:28 +00:00
										 |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-28 16:28:26 +00:00
										 |  |  | /* The lock type used by ast_lock_path() / ast_unlock_path() */ | 
					
						
							|  |  |  | static enum AST_LOCK_TYPE ast_lock_type = AST_LOCK_TYPE_LOCKFILE; | 
					
						
							| 
									
										
										
										
											2003-02-23 06:00:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | int ast_app_getdata_full(struct ast_channel *c, char *prompt, char *s, int maxlen, int timeout, int audiofd, int ctrlfd) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 	int res, to = 2000, fto = 6000; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!ast_strlen_zero(prompt)) { | 
					
						
							| 
									
										
										
										
											2003-02-23 06:00:11 +00:00
										 |  |  | 		res = ast_streamfile(c, prompt, c->language); | 
					
						
							|  |  |  | 		if (res < 0) | 
					
						
							|  |  |  | 			return res; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2005-03-23 05:56:32 +00:00
										 |  |  | 	if (timeout > 0)  | 
					
						
							|  |  |  | 		fto = to = timeout; | 
					
						
							|  |  |  | 	if (timeout < 0)  | 
					
						
							|  |  |  | 		fto = to = 1000000000; | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-23 06:00:11 +00:00
										 |  |  | 	res = ast_readstring_full(c, s, maxlen, to, fto, "#", audiofd, ctrlfd); | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-23 06:00:11 +00:00
										 |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-31 01:11:33 +00:00
										 |  |  | static int (*ast_has_voicemail_func)(const char *mailbox, const char *folder) = NULL; | 
					
						
							| 
									
										
										
										
											2008-07-02 21:27:53 +00:00
										 |  |  | static int (*ast_inboxcount_func)(const char *mailbox, int *newmsgs, int *oldmsgs) = NULL; | 
					
						
							|  |  |  | static int (*ast_inboxcount2_func)(const char *mailbox, int *urgentmsgs, int *newmsgs, int *oldmsgs) = NULL; | 
					
						
							| 
									
										
										
										
											2008-04-28 22:38:07 +00:00
										 |  |  | static int (*ast_sayname_func)(struct ast_channel *chan, const char *mailbox, const char *context) = NULL; | 
					
						
							| 
									
										
										
										
											2006-05-19 18:21:31 +00:00
										 |  |  | static int (*ast_messagecount_func)(const char *context, const char *mailbox, const char *folder) = NULL; | 
					
						
							| 
									
										
										
										
											2004-12-31 01:11:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | void ast_install_vm_functions(int (*has_voicemail_func)(const char *mailbox, const char *folder), | 
					
						
							| 
									
										
										
										
											2008-07-02 21:27:53 +00:00
										 |  |  | 			      int (*inboxcount_func)(const char *mailbox, int *newmsgs, int *oldmsgs), | 
					
						
							|  |  |  | 			      int (*inboxcount2_func)(const char *mailbox, int *urgentmsgs, int *newmsgs, int *oldmsgs), | 
					
						
							| 
									
										
										
										
											2008-04-28 22:38:07 +00:00
										 |  |  | 			      int (*messagecount_func)(const char *context, const char *mailbox, const char *folder), | 
					
						
							|  |  |  | 			      int (*sayname_func)(struct ast_channel *chan, const char *mailbox, const char *context)) | 
					
						
							| 
									
										
										
										
											2004-12-31 01:11:33 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	ast_has_voicemail_func = has_voicemail_func; | 
					
						
							| 
									
										
										
										
											2006-05-19 18:21:31 +00:00
										 |  |  | 	ast_inboxcount_func = inboxcount_func; | 
					
						
							| 
									
										
										
										
											2008-07-02 21:27:53 +00:00
										 |  |  | 	ast_inboxcount2_func = inboxcount2_func; | 
					
						
							| 
									
										
										
										
											2004-12-31 01:11:33 +00:00
										 |  |  | 	ast_messagecount_func = messagecount_func; | 
					
						
							| 
									
										
										
										
											2008-04-28 22:38:07 +00:00
										 |  |  | 	ast_sayname_func = sayname_func; | 
					
						
							| 
									
										
										
										
											2004-12-31 01:11:33 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ast_uninstall_vm_functions(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	ast_has_voicemail_func = NULL; | 
					
						
							| 
									
										
										
										
											2006-05-19 18:21:31 +00:00
										 |  |  | 	ast_inboxcount_func = NULL; | 
					
						
							| 
									
										
										
										
											2008-07-02 21:27:53 +00:00
										 |  |  | 	ast_inboxcount2_func = NULL; | 
					
						
							| 
									
										
										
										
											2004-12-31 01:11:33 +00:00
										 |  |  | 	ast_messagecount_func = NULL; | 
					
						
							| 
									
										
										
										
											2008-04-28 22:38:07 +00:00
										 |  |  | 	ast_sayname_func = NULL; | 
					
						
							| 
									
										
										
										
											2004-12-31 01:11:33 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-03 21:18:27 +00:00
										 |  |  | int ast_app_has_voicemail(const char *mailbox, const char *folder) | 
					
						
							| 
									
										
										
										
											2003-01-30 15:03:20 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-01-04 20:54:36 +00:00
										 |  |  | 	static int warned = 0; | 
					
						
							| 
									
										
										
										
											2004-12-31 01:11:33 +00:00
										 |  |  | 	if (ast_has_voicemail_func) | 
					
						
							|  |  |  | 		return ast_has_voicemail_func(mailbox, folder); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-26 15:49:18 +00:00
										 |  |  | 	if (!warned) { | 
					
						
							|  |  |  | 		ast_verb(3, "Message check requested for mailbox %s/folder %s but voicemail not loaded.\n", mailbox, folder ? folder : "INBOX"); | 
					
						
							| 
									
										
										
										
											2005-01-04 20:54:36 +00:00
										 |  |  | 		warned++; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-01-30 15:03:20 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2003-03-26 00:15:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-31 01:11:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-02 21:27:53 +00:00
										 |  |  | int ast_app_inboxcount(const char *mailbox, int *newmsgs, int *oldmsgs) | 
					
						
							| 
									
										
										
										
											2003-03-26 00:15:11 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-01-04 20:54:36 +00:00
										 |  |  | 	static int warned = 0; | 
					
						
							| 
									
										
										
										
											2008-07-02 21:27:53 +00:00
										 |  |  | 	if (newmsgs) { | 
					
						
							| 
									
										
										
										
											2003-03-26 00:15:11 +00:00
										 |  |  | 		*newmsgs = 0; | 
					
						
							| 
									
										
										
										
											2008-07-02 21:27:53 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if (oldmsgs) { | 
					
						
							|  |  |  | 		*oldmsgs = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (ast_inboxcount_func) { | 
					
						
							|  |  |  | 		return ast_inboxcount_func(mailbox, newmsgs, oldmsgs); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!warned) { | 
					
						
							|  |  |  | 		warned++; | 
					
						
							|  |  |  | 		ast_verb(3, "Message count requested for mailbox %s but voicemail not loaded.\n", mailbox); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ast_app_inboxcount2(const char *mailbox, int *urgentmsgs, int *newmsgs, int *oldmsgs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	static int warned = 0; | 
					
						
							|  |  |  | 	if (newmsgs) { | 
					
						
							|  |  |  | 		*newmsgs = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (oldmsgs) { | 
					
						
							| 
									
										
										
										
											2003-03-26 00:15:11 +00:00
										 |  |  | 		*oldmsgs = 0; | 
					
						
							| 
									
										
										
										
											2008-07-02 21:27:53 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if (urgentmsgs) { | 
					
						
							| 
									
										
										
										
											2008-05-09 21:22:42 +00:00
										 |  |  | 		*urgentmsgs = 0; | 
					
						
							| 
									
										
										
										
											2008-07-02 21:27:53 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if (ast_inboxcount_func) { | 
					
						
							|  |  |  | 		return ast_inboxcount2_func(mailbox, urgentmsgs, newmsgs, oldmsgs); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-12-31 01:11:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-26 15:49:18 +00:00
										 |  |  | 	if (!warned) { | 
					
						
							| 
									
										
										
										
											2005-01-04 20:54:36 +00:00
										 |  |  | 		warned++; | 
					
						
							| 
									
										
										
										
											2007-07-26 15:49:18 +00:00
										 |  |  | 		ast_verb(3, "Message count requested for mailbox %s but voicemail not loaded.\n", mailbox); | 
					
						
							| 
									
										
										
										
											2005-01-04 20:54:36 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-12-31 01:11:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-26 00:15:11 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2004-05-07 20:39:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-28 22:38:07 +00:00
										 |  |  | int ast_app_sayname(struct ast_channel *chan, const char *mailbox, const char *context) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (ast_sayname_func) | 
					
						
							|  |  |  | 		return ast_sayname_func(chan, mailbox, context); | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-19 18:21:31 +00:00
										 |  |  | int ast_app_messagecount(const char *context, const char *mailbox, const char *folder) | 
					
						
							| 
									
										
										
										
											2006-05-19 15:44:33 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	static int warned = 0; | 
					
						
							| 
									
										
										
										
											2006-05-19 18:21:31 +00:00
										 |  |  | 	if (ast_messagecount_func) | 
					
						
							|  |  |  | 		return ast_messagecount_func(context, mailbox, folder); | 
					
						
							| 
									
										
										
										
											2006-05-19 15:44:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-26 15:49:18 +00:00
										 |  |  | 	if (!warned) { | 
					
						
							| 
									
										
										
										
											2006-05-19 15:44:33 +00:00
										 |  |  | 		warned++; | 
					
						
							| 
									
										
										
										
											2007-07-26 15:49:18 +00:00
										 |  |  | 		ast_verb(3, "Message count requested for mailbox %s@%s/%s but voicemail not loaded.\n", mailbox, context, folder); | 
					
						
							| 
									
										
										
										
											2006-05-19 15:44:33 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-06 21:52:30 +00:00
										 |  |  | int ast_dtmf_stream(struct ast_channel *chan, struct ast_channel *peer, const char *digits, int between, unsigned int duration)  | 
					
						
							| 
									
										
										
										
											2004-05-07 21:14:55 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-01-11 05:23:19 +00:00
										 |  |  | 	const char *ptr; | 
					
						
							| 
									
										
										
										
											2005-09-07 21:01:31 +00:00
										 |  |  | 	int res = 0; | 
					
						
							| 
									
										
										
										
											2008-03-25 14:39:45 +00:00
										 |  |  | 	struct ast_silence_generator *silgen = NULL; | 
					
						
							| 
									
										
										
										
											2006-01-11 05:23:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-07 21:14:55 +00:00
										 |  |  | 	if (!between) | 
					
						
							|  |  |  | 		between = 100; | 
					
						
							| 
									
										
										
										
											2004-05-07 20:39:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-07 21:14:55 +00:00
										 |  |  | 	if (peer) | 
					
						
							|  |  |  | 		res = ast_autoservice_start(peer); | 
					
						
							| 
									
										
										
										
											2004-05-07 20:39:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-11 05:23:19 +00:00
										 |  |  | 	if (!res) | 
					
						
							|  |  |  | 		res = ast_waitfor(chan, 100); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* ast_waitfor will return the number of remaining ms on success */ | 
					
						
							| 
									
										
										
										
											2008-07-30 18:33:12 +00:00
										 |  |  | 	if (res < 0) { | 
					
						
							|  |  |  | 		if (peer) { | 
					
						
							|  |  |  | 			ast_autoservice_stop(peer); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2006-01-11 05:23:19 +00:00
										 |  |  | 		return res; | 
					
						
							| 
									
										
										
										
											2008-07-30 18:33:12 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-01-11 05:23:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-25 14:39:45 +00:00
										 |  |  | 	if (ast_opt_transmit_silence) { | 
					
						
							|  |  |  | 		silgen = ast_channel_start_silence_generator(chan); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-11 05:23:19 +00:00
										 |  |  | 	for (ptr = digits; *ptr; ptr++) { | 
					
						
							|  |  |  | 		if (*ptr == 'w') { | 
					
						
							|  |  |  | 			/* 'w' -- wait half a second */ | 
					
						
							|  |  |  | 			if ((res = ast_safe_sleep(chan, 500))) | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 		} else if (strchr("0123456789*#abcdfABCDF", *ptr)) { | 
					
						
							|  |  |  | 			/* Character represents valid DTMF */ | 
					
						
							|  |  |  | 			if (*ptr == 'f' || *ptr == 'F') { | 
					
						
							|  |  |  | 				/* ignore return values if not supported by channel */ | 
					
						
							|  |  |  | 				ast_indicate(chan, AST_CONTROL_FLASH); | 
					
						
							| 
									
										
										
										
											2006-08-31 01:59:02 +00:00
										 |  |  | 			} else | 
					
						
							| 
									
										
										
										
											2007-08-06 21:52:30 +00:00
										 |  |  | 				ast_senddigit(chan, *ptr, duration); | 
					
						
							| 
									
										
										
										
											2006-01-11 05:23:19 +00:00
										 |  |  | 			/* pause between digits */ | 
					
						
							|  |  |  | 			if ((res = ast_safe_sleep(chan, between))) | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 		} else | 
					
						
							| 
									
										
										
										
											2008-03-04 23:04:29 +00:00
										 |  |  | 			ast_log(LOG_WARNING, "Illegal DTMF character '%c' in string. (0-9*#aAbBcCdD allowed)\n", *ptr); | 
					
						
							| 
									
										
										
										
											2004-05-07 21:14:55 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-01-11 05:23:19 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (peer) { | 
					
						
							|  |  |  | 		/* Stop autoservice on the peer channel, but don't overwrite any error condition 
 | 
					
						
							|  |  |  | 		   that has occurred previously while acting on the primary channel */ | 
					
						
							|  |  |  | 		if (ast_autoservice_stop(peer) && !res) | 
					
						
							|  |  |  | 			res = -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-25 14:39:45 +00:00
										 |  |  | 	if (silgen) { | 
					
						
							|  |  |  | 		ast_channel_stop_silence_generator(chan, silgen); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-07 21:14:55 +00:00
										 |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											2004-05-07 20:39:14 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2004-05-13 19:01:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct linear_state { | 
					
						
							|  |  |  | 	int fd; | 
					
						
							|  |  |  | 	int autoclose; | 
					
						
							|  |  |  | 	int allowoverride; | 
					
						
							|  |  |  | 	int origwfmt; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void linear_release(struct ast_channel *chan, void *params) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct linear_state *ls = params; | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	if (ls->origwfmt && ast_set_write_format(chan, ls->origwfmt)) | 
					
						
							| 
									
										
										
										
											2004-05-13 19:01:10 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to restore channel '%s' to format '%d'\n", chan->name, ls->origwfmt); | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-13 19:01:10 +00:00
										 |  |  | 	if (ls->autoclose) | 
					
						
							|  |  |  | 		close(ls->fd); | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-06 21:20:11 +00:00
										 |  |  | 	ast_free(params); | 
					
						
							| 
									
										
										
										
											2004-05-13 19:01:10 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int linear_generator(struct ast_channel *chan, void *data, int len, int samples) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	short buf[2048 + AST_FRIENDLY_OFFSET / 2]; | 
					
						
							|  |  |  | 	struct linear_state *ls = data; | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 	struct ast_frame f = { | 
					
						
							| 
									
										
										
										
											2008-03-04 23:04:29 +00:00
										 |  |  | 		.frametype = AST_FRAME_VOICE, | 
					
						
							|  |  |  | 		.subclass = AST_FORMAT_SLINEAR, | 
					
						
							| 
									
										
										
										
											2008-05-22 16:29:54 +00:00
										 |  |  | 		.data.ptr = buf + AST_FRIENDLY_OFFSET / 2, | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 		.offset = AST_FRIENDLY_OFFSET, | 
					
						
							| 
									
										
										
										
											2008-03-04 23:04:29 +00:00
										 |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2004-05-13 19:01:10 +00:00
										 |  |  | 	int res; | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-13 19:01:10 +00:00
										 |  |  | 	len = samples * 2; | 
					
						
							|  |  |  | 	if (len > sizeof(buf) - AST_FRIENDLY_OFFSET) { | 
					
						
							| 
									
										
										
										
											2008-03-04 23:04:29 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Can't generate %d bytes of data!\n" , len); | 
					
						
							| 
									
										
										
										
											2004-05-13 19:01:10 +00:00
										 |  |  | 		len = sizeof(buf) - AST_FRIENDLY_OFFSET; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	res = read(ls->fd, buf + AST_FRIENDLY_OFFSET/2, len); | 
					
						
							|  |  |  | 	if (res > 0) { | 
					
						
							|  |  |  | 		f.datalen = res; | 
					
						
							|  |  |  | 		f.samples = res / 2; | 
					
						
							|  |  |  | 		ast_write(chan, &f); | 
					
						
							|  |  |  | 		if (res == len) | 
					
						
							|  |  |  | 			return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void *linear_alloc(struct ast_channel *chan, void *params) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 	struct linear_state *ls = params; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!params) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-13 19:01:10 +00:00
										 |  |  | 	/* In this case, params is already malloc'd */ | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 	if (ls->allowoverride) | 
					
						
							|  |  |  | 		ast_set_flag(chan, AST_FLAG_WRITE_INT); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		ast_clear_flag(chan, AST_FLAG_WRITE_INT); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ls->origwfmt = chan->writeformat; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (ast_set_write_format(chan, AST_FORMAT_SLINEAR)) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Unable to set '%s' to linear format (write)\n", chan->name); | 
					
						
							|  |  |  | 		ast_free(ls); | 
					
						
							|  |  |  | 		ls = params = NULL; | 
					
						
							| 
									
										
										
										
											2004-05-13 19:01:10 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-13 19:01:10 +00:00
										 |  |  | 	return params; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct ast_generator linearstream =  | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	alloc: linear_alloc, | 
					
						
							|  |  |  | 	release: linear_release, | 
					
						
							|  |  |  | 	generate: linear_generator, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ast_linear_stream(struct ast_channel *chan, const char *filename, int fd, int allowoverride) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct linear_state *lin; | 
					
						
							| 
									
										
										
										
											2005-09-07 21:01:31 +00:00
										 |  |  | 	char tmpf[256]; | 
					
						
							| 
									
										
										
										
											2004-05-13 19:01:10 +00:00
										 |  |  | 	int res = -1; | 
					
						
							|  |  |  | 	int autoclose = 0; | 
					
						
							|  |  |  | 	if (fd < 0) { | 
					
						
							| 
									
										
										
										
											2005-10-26 18:54:24 +00:00
										 |  |  | 		if (ast_strlen_zero(filename)) | 
					
						
							| 
									
										
										
										
											2004-05-13 19:01:10 +00:00
										 |  |  | 			return -1; | 
					
						
							|  |  |  | 		autoclose = 1; | 
					
						
							|  |  |  | 		if (filename[0] == '/')  | 
					
						
							| 
									
										
										
										
											2005-06-05 16:32:16 +00:00
										 |  |  | 			ast_copy_string(tmpf, filename, sizeof(tmpf)); | 
					
						
							| 
									
										
										
										
											2004-05-13 19:01:10 +00:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											2006-11-04 01:32:31 +00:00
										 |  |  | 			snprintf(tmpf, sizeof(tmpf), "%s/%s/%s", ast_config_AST_DATA_DIR, "sounds", filename); | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 		if ((fd = open(tmpf, O_RDONLY)) < 0) { | 
					
						
							| 
									
										
										
										
											2004-05-13 19:01:10 +00:00
										 |  |  | 			ast_log(LOG_WARNING, "Unable to open file '%s': %s\n", tmpf, strerror(errno)); | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-02-14 22:28:01 +00:00
										 |  |  | 	if ((lin = ast_calloc(1, sizeof(*lin)))) { | 
					
						
							| 
									
										
										
										
											2004-05-13 19:01:10 +00:00
										 |  |  | 		lin->fd = fd; | 
					
						
							|  |  |  | 		lin->allowoverride = allowoverride; | 
					
						
							|  |  |  | 		lin->autoclose = autoclose; | 
					
						
							|  |  |  | 		res = ast_activate_generator(chan, &linearstream, lin); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2004-05-26 15:22:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-08-22 19:06:42 +00:00
										 |  |  | int ast_control_streamfile(struct ast_channel *chan, const char *file, | 
					
						
							|  |  |  | 			   const char *fwd, const char *rev, | 
					
						
							| 
									
										
										
										
											2008-08-10 19:35:50 +00:00
										 |  |  | 			   const char *stop, const char *suspend, | 
					
						
							| 
									
										
										
										
											2007-06-08 21:02:46 +00:00
										 |  |  | 			   const char *restart, int skipms, long *offsetms)  | 
					
						
							| 
									
										
										
										
											2004-05-26 16:51:25 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-09-07 21:01:31 +00:00
										 |  |  | 	char *breaks = NULL; | 
					
						
							|  |  |  | 	char *end = NULL; | 
					
						
							|  |  |  | 	int blen = 2; | 
					
						
							|  |  |  | 	int res; | 
					
						
							| 
									
										
										
										
											2005-12-13 06:00:17 +00:00
										 |  |  | 	long pause_restart_point = 0; | 
					
						
							| 
									
										
										
										
											2007-06-08 21:02:46 +00:00
										 |  |  | 	long offset = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (offsetms)  | 
					
						
							|  |  |  | 		offset = *offsetms * 8; /* XXX Assumes 8kHz */ | 
					
						
							| 
									
										
										
										
											2004-06-01 18:50:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (stop) | 
					
						
							|  |  |  | 		blen += strlen(stop); | 
					
						
							| 
									
										
										
										
											2008-08-10 19:35:50 +00:00
										 |  |  | 	if (suspend) | 
					
						
							|  |  |  | 		blen += strlen(suspend); | 
					
						
							| 
									
										
										
										
											2005-08-22 19:06:42 +00:00
										 |  |  | 	if (restart) | 
					
						
							|  |  |  | 		blen += strlen(restart); | 
					
						
							| 
									
										
										
										
											2004-06-01 18:50:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-09-23 16:02:10 +00:00
										 |  |  | 	if (blen > 2) { | 
					
						
							| 
									
										
										
										
											2004-09-23 14:46:09 +00:00
										 |  |  | 		breaks = alloca(blen + 1); | 
					
						
							|  |  |  | 		breaks[0] = '\0'; | 
					
						
							| 
									
										
										
										
											2005-08-22 19:06:42 +00:00
										 |  |  | 		if (stop) | 
					
						
							|  |  |  | 			strcat(breaks, stop); | 
					
						
							| 
									
										
										
										
											2008-08-10 19:35:50 +00:00
										 |  |  | 		if (suspend) | 
					
						
							|  |  |  | 			strcat(breaks, suspend); | 
					
						
							| 
									
										
										
										
											2005-08-22 19:06:42 +00:00
										 |  |  | 		if (restart) | 
					
						
							|  |  |  | 			strcat(breaks, restart); | 
					
						
							| 
									
										
										
										
											2004-09-23 14:46:09 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-05-26 23:56:41 +00:00
										 |  |  | 	if (chan->_state != AST_STATE_UP) | 
					
						
							|  |  |  | 		res = ast_answer(chan); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-09-23 16:58:09 +00:00
										 |  |  | 	if (file) { | 
					
						
							| 
									
										
										
										
											2008-03-04 23:04:29 +00:00
										 |  |  | 		if ((end = strchr(file, ':'))) { | 
					
						
							| 
									
										
										
										
											2004-09-23 16:58:09 +00:00
										 |  |  | 			if (!strcasecmp(end, ":end")) { | 
					
						
							| 
									
										
										
										
											2004-09-23 16:39:33 +00:00
										 |  |  | 				*end = '\0'; | 
					
						
							|  |  |  | 				end++; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2004-09-23 16:02:10 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2004-09-23 16:58:09 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-09-23 16:39:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-27 00:07:18 +00:00
										 |  |  | 	for (;;) { | 
					
						
							| 
									
										
										
										
											2005-12-13 06:00:17 +00:00
										 |  |  | 		ast_stopstream(chan); | 
					
						
							| 
									
										
										
										
											2004-05-26 23:56:41 +00:00
										 |  |  | 		res = ast_streamfile(chan, file, chan->language); | 
					
						
							| 
									
										
										
										
											2004-05-27 00:07:18 +00:00
										 |  |  | 		if (!res) { | 
					
						
							| 
									
										
										
										
											2005-12-13 06:00:17 +00:00
										 |  |  | 			if (pause_restart_point) { | 
					
						
							|  |  |  | 				ast_seekstream(chan->stream, pause_restart_point, SEEK_SET); | 
					
						
							|  |  |  | 				pause_restart_point = 0; | 
					
						
							| 
									
										
										
										
											2004-05-26 23:56:41 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2007-06-08 21:02:46 +00:00
										 |  |  | 			else if (end || offset < 0) { | 
					
						
							|  |  |  | 				if (offset == -8)  | 
					
						
							|  |  |  | 					offset = 0; | 
					
						
							| 
									
										
										
										
											2007-07-26 15:49:18 +00:00
										 |  |  | 				ast_verb(3, "ControlPlayback seek to offset %ld from end\n", offset); | 
					
						
							| 
									
										
										
										
											2007-06-08 21:02:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				ast_seekstream(chan->stream, offset, SEEK_END); | 
					
						
							| 
									
										
										
										
											2005-12-13 06:00:17 +00:00
										 |  |  | 				end = NULL; | 
					
						
							| 
									
										
										
										
											2007-06-08 21:02:46 +00:00
										 |  |  | 				offset = 0; | 
					
						
							|  |  |  | 			} else if (offset) { | 
					
						
							| 
									
										
										
										
											2007-07-26 15:49:18 +00:00
										 |  |  | 				ast_verb(3, "ControlPlayback seek to offset %ld\n", offset); | 
					
						
							| 
									
										
										
										
											2007-06-08 21:02:46 +00:00
										 |  |  | 				ast_seekstream(chan->stream, offset, SEEK_SET); | 
					
						
							|  |  |  | 				offset = 0; | 
					
						
							| 
									
										
										
										
											2005-12-13 06:00:17 +00:00
										 |  |  | 			}; | 
					
						
							|  |  |  | 			res = ast_waitstream_fr(chan, breaks, fwd, rev, skipms); | 
					
						
							| 
									
										
										
										
											2004-05-26 23:56:41 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (res < 1) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-08-22 19:06:42 +00:00
										 |  |  | 		/* We go at next loop if we got the restart char */ | 
					
						
							|  |  |  | 		if (restart && strchr(restart, res)) { | 
					
						
							| 
									
										
										
										
											2007-06-14 19:39:12 +00:00
										 |  |  | 			ast_debug(1, "we'll restart the stream here at next loop\n"); | 
					
						
							| 
									
										
										
										
											2005-12-13 06:00:17 +00:00
										 |  |  | 			pause_restart_point = 0; | 
					
						
							| 
									
										
										
										
											2005-08-22 19:06:42 +00:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-10 19:35:50 +00:00
										 |  |  | 		if (suspend && strchr(suspend, res)) { | 
					
						
							| 
									
										
										
										
											2005-12-13 06:00:17 +00:00
										 |  |  | 			pause_restart_point = ast_tellstream(chan->stream); | 
					
						
							|  |  |  | 			for (;;) { | 
					
						
							|  |  |  | 				ast_stopstream(chan); | 
					
						
							| 
									
										
										
										
											2004-05-26 23:56:41 +00:00
										 |  |  | 				res = ast_waitfordigit(chan, 1000); | 
					
						
							| 
									
										
										
										
											2005-12-13 06:00:17 +00:00
										 |  |  | 				if (!res) | 
					
						
							| 
									
										
										
										
											2004-06-01 19:38:06 +00:00
										 |  |  | 					continue; | 
					
						
							| 
									
										
										
										
											2008-08-10 19:35:50 +00:00
										 |  |  | 				else if (res == -1 || strchr(suspend, res) || (stop && strchr(stop, res))) | 
					
						
							| 
									
										
										
										
											2004-05-26 23:56:41 +00:00
										 |  |  | 					break; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2008-08-10 19:35:50 +00:00
										 |  |  | 			if (res == *suspend) { | 
					
						
							| 
									
										
										
										
											2004-05-26 23:56:41 +00:00
										 |  |  | 				res = 0; | 
					
						
							|  |  |  | 				continue; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2005-12-13 06:00:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-27 00:07:18 +00:00
										 |  |  | 		if (res == -1) | 
					
						
							| 
									
										
										
										
											2004-05-26 23:56:41 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-15 20:33:26 +00:00
										 |  |  | 		/* if we get one of our stop chars, return it to the calling function */ | 
					
						
							| 
									
										
										
										
											2005-12-13 06:00:17 +00:00
										 |  |  | 		if (stop && strchr(stop, res)) | 
					
						
							| 
									
										
										
										
											2004-05-26 23:56:41 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-12-13 06:00:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-08 21:02:46 +00:00
										 |  |  | 	if (pause_restart_point) { | 
					
						
							|  |  |  | 		offset = pause_restart_point; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		if (chan->stream) { | 
					
						
							|  |  |  | 			offset = ast_tellstream(chan->stream); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			offset = -8;  /* indicate end of file */ | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (offsetms)  | 
					
						
							|  |  |  | 		*offsetms = offset / 8; /* samples --> ms ... XXX Assumes 8 kHz */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-19 16:40:52 +00:00
										 |  |  | 	/* If we are returning a digit cast it as char */ | 
					
						
							|  |  |  | 	if (res > 0 || chan->stream) | 
					
						
							|  |  |  | 		res = (char)res; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-13 06:00:17 +00:00
										 |  |  | 	ast_stopstream(chan); | 
					
						
							| 
									
										
										
										
											2004-05-26 23:56:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-26 16:51:25 +00:00
										 |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											2004-05-26 15:22:54 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-01-10 14:46:59 +00:00
										 |  |  | int ast_play_and_wait(struct ast_channel *chan, const char *fn) | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 	int d = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((d = ast_streamfile(chan, fn, chan->language))) | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 		return d; | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 	d = ast_waitstream(chan, AST_DIGIT_ANY); | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 	ast_stopstream(chan); | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 	return d; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int global_silence_threshold = 128; | 
					
						
							|  |  |  | static int global_maxsilence = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-05 19:10:11 +00:00
										 |  |  | /*! Optionally play a sound file or a beep, then record audio and video from the channel.
 | 
					
						
							| 
									
										
										
										
											2007-06-04 15:56:13 +00:00
										 |  |  |  * \param chan Channel to playback to/record from. | 
					
						
							|  |  |  |  * \param playfile Filename of sound to play before recording begins. | 
					
						
							|  |  |  |  * \param recordfile Filename to record to. | 
					
						
							|  |  |  |  * \param maxtime Maximum length of recording (in milliseconds). | 
					
						
							|  |  |  |  * \param fmt Format(s) to record message in. Multiple formats may be specified by separating them with a '|'. | 
					
						
							|  |  |  |  * \param duration Where to store actual length of the recorded message (in milliseconds). | 
					
						
							|  |  |  |  * \param beep Whether to play a beep before starting to record. | 
					
						
							|  |  |  |  * \param silencethreshold  | 
					
						
							|  |  |  |  * \param maxsilence Length of silence that will end a recording (in milliseconds). | 
					
						
							|  |  |  |  * \param path Optional filesystem path to unlock. | 
					
						
							|  |  |  |  * \param prepend If true, prepend the recorded audio to an existing file. | 
					
						
							|  |  |  |  * \param acceptdtmf DTMF digits that will end the recording. | 
					
						
							|  |  |  |  * \param canceldtmf DTMF digits that will cancel the recording. | 
					
						
							| 
									
										
										
										
											2006-05-05 19:10:11 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __ast_play_and_record(struct ast_channel *chan, const char *playfile, const char *recordfile, int maxtime, const char *fmt, int *duration, int beep, int silencethreshold, int maxsilence, const char *path, int prepend, const char *acceptdtmf, const char *canceldtmf) | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 	int d = 0; | 
					
						
							| 
									
										
										
										
											2005-06-05 15:04:43 +00:00
										 |  |  | 	char *fmts; | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 	char comment[256]; | 
					
						
							| 
									
										
										
										
											2006-05-04 21:26:04 +00:00
										 |  |  | 	int x, fmtcnt = 1, res = -1, outmsg = 0; | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 	struct ast_filestream *others[MAX_OTHER_FORMATS]; | 
					
						
							|  |  |  | 	char *sfmt[MAX_OTHER_FORMATS]; | 
					
						
							| 
									
										
										
										
											2006-05-04 21:26:04 +00:00
										 |  |  | 	char *stringp = NULL; | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 	time_t start, end; | 
					
						
							| 
									
										
										
										
											2006-05-04 21:26:04 +00:00
										 |  |  | 	struct ast_dsp *sildet = NULL;   /* silence detector dsp */ | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 	int totalsilence = 0; | 
					
						
							| 
									
										
										
										
											2006-05-04 21:26:04 +00:00
										 |  |  | 	int rfmt = 0; | 
					
						
							| 
									
										
										
										
											2005-11-01 17:22:25 +00:00
										 |  |  | 	struct ast_silence_generator *silgen = NULL; | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 	char prependfile[80]; | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (silencethreshold < 0) | 
					
						
							|  |  |  | 		silencethreshold = global_silence_threshold; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (maxsilence < 0) | 
					
						
							|  |  |  | 		maxsilence = global_maxsilence; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* barf if no pointer passed to store duration in */ | 
					
						
							| 
									
										
										
										
											2007-06-06 19:00:40 +00:00
										 |  |  | 	if (!duration) { | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Error play_and_record called without duration pointer\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-14 19:39:12 +00:00
										 |  |  | 	ast_debug(1, "play_and_record: %s, %s, '%s'\n", playfile ? playfile : "<None>", recordfile, fmt); | 
					
						
							| 
									
										
										
										
											2006-05-04 21:26:04 +00:00
										 |  |  | 	snprintf(comment, sizeof(comment), "Playing %s, Recording to: %s on %s\n", playfile ? playfile : "<None>", recordfile, chan->name); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 	if (playfile || beep) { | 
					
						
							|  |  |  | 		if (!beep) | 
					
						
							|  |  |  | 			d = ast_play_and_wait(chan, playfile); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 		if (d > -1) | 
					
						
							| 
									
										
										
										
											2006-11-17 23:18:51 +00:00
										 |  |  | 			d = ast_stream_and_wait(chan, "beep", ""); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 		if (d < 0) | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 	if (prepend) { | 
					
						
							|  |  |  | 		ast_copy_string(prependfile, recordfile, sizeof(prependfile));	 | 
					
						
							|  |  |  | 		strncat(prependfile, "-prepend", sizeof(prependfile) - strlen(prependfile) - 1); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 	fmts = ast_strdupa(fmt); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-04 21:26:04 +00:00
										 |  |  | 	stringp = fmts; | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 	strsep(&stringp, "|"); | 
					
						
							| 
									
										
										
										
											2007-06-14 19:39:12 +00:00
										 |  |  | 	ast_debug(1, "Recording Formats: sfmts=%s\n", fmts); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 	sfmt[0] = ast_strdupa(fmts); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-10 13:22:15 +00:00
										 |  |  | 	while ((fmt = strsep(&stringp, "|"))) { | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 		if (fmtcnt > MAX_OTHER_FORMATS - 1) { | 
					
						
							| 
									
										
										
										
											2006-02-20 23:02:31 +00:00
										 |  |  | 			ast_log(LOG_WARNING, "Please increase MAX_OTHER_FORMATS in app.c\n"); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		sfmt[fmtcnt++] = ast_strdupa(fmt); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-22 02:51:04 +00:00
										 |  |  | 	end = start = time(NULL);  /* pre-initialize end to be same as start in case we never get into loop */ | 
					
						
							| 
									
										
										
										
											2006-05-04 21:26:04 +00:00
										 |  |  | 	for (x = 0; x < fmtcnt; x++) { | 
					
						
							| 
									
										
										
										
											2006-12-21 19:44:20 +00:00
										 |  |  | 		others[x] = ast_writefile(prepend ? prependfile : recordfile, sfmt[x], comment, O_TRUNC, 0, AST_FILE_MODE); | 
					
						
							| 
									
										
										
										
											2007-07-26 15:49:18 +00:00
										 |  |  | 		ast_verb(3, "x=%d, open writing:  %s format: %s, %p\n", x, prepend ? prependfile : recordfile, sfmt[x], others[x]); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-10 17:42:12 +00:00
										 |  |  | 		if (!others[x]) | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-01-23 09:05:01 +00:00
										 |  |  | 	if (path) | 
					
						
							|  |  |  | 		ast_unlock_path(path); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 	if (maxsilence > 0) { | 
					
						
							| 
									
										
										
										
											2005-01-23 09:05:01 +00:00
										 |  |  | 		sildet = ast_dsp_new(); /* Create the silence detector */ | 
					
						
							|  |  |  | 		if (!sildet) { | 
					
						
							|  |  |  | 			ast_log(LOG_WARNING, "Unable to create silence detector :(\n"); | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		ast_dsp_set_threshold(sildet, silencethreshold); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 		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"); | 
					
						
							| 
									
										
										
										
											2005-01-23 09:05:01 +00:00
										 |  |  | 			ast_dsp_free(sildet); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-11-01 17:22:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 	if (!prepend) { | 
					
						
							|  |  |  | 		/* Request a video update */ | 
					
						
							|  |  |  | 		ast_indicate(chan, AST_CONTROL_VIDUPDATE); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 		if (ast_opt_transmit_silence) | 
					
						
							|  |  |  | 			silgen = ast_channel_start_silence_generator(chan); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-11-01 17:22:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 	if (x == fmtcnt) { | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 		/* Loop forever, writing the packets we read to the writer(s), until
 | 
					
						
							|  |  |  | 		   we read a digit or get a hangup */ | 
					
						
							|  |  |  | 		struct ast_frame *f; | 
					
						
							| 
									
										
										
										
											2006-05-04 21:26:04 +00:00
										 |  |  | 		for (;;) { | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 		 	res = ast_waitfor(chan, 2000); | 
					
						
							|  |  |  | 			if (!res) { | 
					
						
							| 
									
										
										
										
											2007-06-14 19:39:12 +00:00
										 |  |  | 				ast_debug(1, "One waitfor failed, trying another\n"); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 				/* Try one more time in case of masq */ | 
					
						
							|  |  |  | 			 	res = ast_waitfor(chan, 2000); | 
					
						
							|  |  |  | 				if (!res) { | 
					
						
							|  |  |  | 					ast_log(LOG_WARNING, "No audio available on %s??\n", chan->name); | 
					
						
							|  |  |  | 					res = -1; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (res < 0) { | 
					
						
							|  |  |  | 				f = NULL; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			f = ast_read(chan); | 
					
						
							|  |  |  | 			if (!f) | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			if (f->frametype == AST_FRAME_VOICE) { | 
					
						
							|  |  |  | 				/* write each format */ | 
					
						
							| 
									
										
										
										
											2006-05-04 21:26:04 +00:00
										 |  |  | 				for (x = 0; x < fmtcnt; x++) { | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 					if (prepend && !others[x]) | 
					
						
							|  |  |  | 						break; | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 					res = ast_writestream(others[x], f); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				/* Silence Detection */ | 
					
						
							|  |  |  | 				if (maxsilence > 0) { | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 					int dspsilence = 0; | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 					ast_dsp_silence(sildet, f, &dspsilence); | 
					
						
							|  |  |  | 					if (dspsilence) | 
					
						
							|  |  |  | 						totalsilence = dspsilence; | 
					
						
							|  |  |  | 					else | 
					
						
							|  |  |  | 						totalsilence = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					if (totalsilence > maxsilence) { | 
					
						
							| 
									
										
										
										
											2005-01-23 09:05:01 +00:00
										 |  |  | 						/* Ended happily with silence */ | 
					
						
							| 
									
										
										
										
											2007-07-26 15:49:18 +00:00
										 |  |  | 						ast_verb(3, "Recording automatically stopped after a silence of %d seconds\n", totalsilence/1000); | 
					
						
							| 
									
										
										
										
											2006-04-11 01:12:13 +00:00
										 |  |  | 						res = 'S'; | 
					
						
							| 
									
										
										
										
											2006-05-04 21:26:04 +00:00
										 |  |  | 						outmsg = 2; | 
					
						
							| 
									
										
										
										
											2005-01-23 09:05:01 +00:00
										 |  |  | 						break; | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				/* Exit on any error */ | 
					
						
							|  |  |  | 				if (res) { | 
					
						
							|  |  |  | 					ast_log(LOG_WARNING, "Error writing frame\n"); | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} else if (f->frametype == AST_FRAME_VIDEO) { | 
					
						
							|  |  |  | 				/* Write only once */ | 
					
						
							|  |  |  | 				ast_writestream(others[0], f); | 
					
						
							|  |  |  | 			} else if (f->frametype == AST_FRAME_DTMF) { | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 				if (prepend) { | 
					
						
							|  |  |  | 				/* stop recording with any digit */ | 
					
						
							| 
									
										
										
										
											2007-07-26 15:49:18 +00:00
										 |  |  | 					ast_verb(3, "User ended message by pressing %c\n", f->subclass); | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 					res = 't'; | 
					
						
							|  |  |  | 					outmsg = 2; | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2006-05-05 19:10:11 +00:00
										 |  |  | 				if (strchr(acceptdtmf, f->subclass)) { | 
					
						
							| 
									
										
										
										
											2007-07-26 15:49:18 +00:00
										 |  |  | 					ast_verb(3, "User ended message by pressing %c\n", f->subclass); | 
					
						
							| 
									
										
										
										
											2006-05-05 19:10:11 +00:00
										 |  |  | 					res = f->subclass; | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 					outmsg = 2; | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2006-05-05 19:10:11 +00:00
										 |  |  | 				if (strchr(canceldtmf, f->subclass)) { | 
					
						
							| 
									
										
										
										
											2007-07-26 15:49:18 +00:00
										 |  |  | 					ast_verb(3, "User cancelled message by pressing %c\n", f->subclass); | 
					
						
							| 
									
										
										
										
											2006-05-05 19:10:11 +00:00
										 |  |  | 					res = f->subclass; | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 					outmsg = 0; | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2005-10-26 15:02:23 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 			if (maxtime) { | 
					
						
							| 
									
										
										
										
											2006-05-22 02:51:04 +00:00
										 |  |  | 				end = time(NULL); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 				if (maxtime < (end - start)) { | 
					
						
							| 
									
										
										
										
											2007-07-26 15:49:18 +00:00
										 |  |  | 					ast_verb(3, "Took too long, cutting it short...\n"); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 					res = 't'; | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 					outmsg = 2; | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			ast_frfree(f); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (!f) { | 
					
						
							| 
									
										
										
										
											2007-07-26 15:49:18 +00:00
										 |  |  | 			ast_verb(3, "User hung up\n"); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 			res = -1; | 
					
						
							| 
									
										
										
										
											2006-05-04 21:26:04 +00:00
										 |  |  | 			outmsg = 1; | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 		} else { | 
					
						
							|  |  |  | 			ast_frfree(f); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Error creating writestream '%s', format '%s'\n", recordfile, sfmt[x]); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-05-04 21:26:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 	if (!prepend) { | 
					
						
							|  |  |  | 		if (silgen) | 
					
						
							|  |  |  | 			ast_channel_stop_silence_generator(chan, silgen); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-11-24 06:24:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/*!\note
 | 
					
						
							|  |  |  | 	 * Instead of asking how much time passed (end - start), calculate the number | 
					
						
							|  |  |  | 	 * of seconds of audio which actually went into the file.  This fixes a | 
					
						
							|  |  |  | 	 * problem where audio is stopped up on the network and never gets to us. | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * Note that we still want to use the number of seconds passed for the max | 
					
						
							|  |  |  | 	 * message, otherwise we could get a situation where this stream is never | 
					
						
							|  |  |  | 	 * closed (which would create a resource leak). | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2008-02-18 20:53:25 +00:00
										 |  |  | 	*duration = others[0] ? ast_tellstream(others[0]) / 8000 : 0; | 
					
						
							| 
									
										
										
										
											2006-05-04 21:26:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 	if (!prepend) { | 
					
						
							| 
									
										
										
										
											2006-05-04 21:26:04 +00:00
										 |  |  | 		for (x = 0; x < fmtcnt; x++) { | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 			if (!others[x]) | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2007-11-15 00:01:22 +00:00
										 |  |  | 			/*!\note
 | 
					
						
							|  |  |  | 			 * If we ended with silence, trim all but the first 200ms of silence | 
					
						
							|  |  |  | 			 * off the recording.  However, if we ended with '#', we don't want | 
					
						
							|  |  |  | 			 * to trim ANY part of the recording. | 
					
						
							|  |  |  | 			 */ | 
					
						
							|  |  |  | 			if (res > 0 && totalsilence) | 
					
						
							|  |  |  | 				ast_stream_rewind(others[x], totalsilence - 200); | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 			ast_truncstream(others[x]); | 
					
						
							|  |  |  | 			ast_closestream(others[x]); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-05-04 21:26:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 	if (prepend && outmsg) { | 
					
						
							|  |  |  | 		struct ast_filestream *realfiles[MAX_OTHER_FORMATS]; | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 		struct ast_frame *fr; | 
					
						
							| 
									
										
										
										
											2006-05-04 21:26:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		for (x = 0; x < fmtcnt; x++) { | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 			snprintf(comment, sizeof(comment), "Opening the real file %s.%s\n", recordfile, sfmt[x]); | 
					
						
							|  |  |  | 			realfiles[x] = ast_readfile(recordfile, sfmt[x], comment, O_RDONLY, 0, 0); | 
					
						
							|  |  |  | 			if (!others[x] || !realfiles[x]) | 
					
						
							|  |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2007-11-15 00:01:22 +00:00
										 |  |  | 			/*!\note Same logic as above. */ | 
					
						
							|  |  |  | 			if (totalsilence) | 
					
						
							|  |  |  | 				ast_stream_rewind(others[x], totalsilence - 200); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 			ast_truncstream(others[x]); | 
					
						
							|  |  |  | 			/* add the original file too */ | 
					
						
							|  |  |  | 			while ((fr = ast_readframe(realfiles[x]))) { | 
					
						
							| 
									
										
										
										
											2006-05-04 21:26:04 +00:00
										 |  |  | 				ast_writestream(others[x], fr); | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 				ast_frfree(fr); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			ast_closestream(others[x]); | 
					
						
							|  |  |  | 			ast_closestream(realfiles[x]); | 
					
						
							|  |  |  | 			ast_filerename(prependfile, recordfile, sfmt[x]); | 
					
						
							| 
									
										
										
										
											2007-07-26 15:49:18 +00:00
										 |  |  | 			ast_verb(4, "Recording Format: sfmts=%s, prependfile %s, recordfile %s\n", sfmt[x], prependfile, recordfile); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 			ast_filedelete(prependfile, sfmt[x]); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-15 00:53:04 +00:00
										 |  |  | 	if (rfmt && ast_set_read_format(chan, rfmt)) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Unable to restore format %s to channel '%s'\n", ast_getformatname(rfmt), chan->name); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-05-04 21:02:26 +00:00
										 |  |  | 	if (outmsg == 2) { | 
					
						
							| 
									
										
										
										
											2006-11-17 23:18:51 +00:00
										 |  |  | 		ast_stream_and_wait(chan, "auth-thankyou", ""); | 
					
						
							| 
									
										
										
										
											2006-05-04 21:26:04 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | 	if (sildet) | 
					
						
							|  |  |  | 		ast_dsp_free(sildet); | 
					
						
							| 
									
										
										
										
											2004-09-17 15:05:29 +00:00
										 |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-05 19:10:11 +00:00
										 |  |  | static char default_acceptdtmf[] = "#"; | 
					
						
							|  |  |  | static char default_canceldtmf[] = ""; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ast_play_and_record_full(struct ast_channel *chan, const char *playfile, const char *recordfile, int maxtime, const char *fmt, int *duration, int silencethreshold, int maxsilence, const char *path, const char *acceptdtmf, const char *canceldtmf) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return __ast_play_and_record(chan, playfile, recordfile, maxtime, fmt, duration, 0, silencethreshold, maxsilence, path, 0, S_OR(acceptdtmf, default_acceptdtmf), S_OR(canceldtmf, default_canceldtmf)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | int ast_play_and_record(struct ast_channel *chan, const char *playfile, const char *recordfile, int maxtime, const char *fmt, int *duration, int silencethreshold, int maxsilence, const char *path) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-05-05 19:10:11 +00:00
										 |  |  | 	return __ast_play_and_record(chan, playfile, recordfile, maxtime, fmt, duration, 0, silencethreshold, maxsilence, path, 0, default_acceptdtmf, default_canceldtmf); | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ast_play_and_prepend(struct ast_channel *chan, char *playfile, char *recordfile, int maxtime, char *fmt, int *duration, int beep, int silencethreshold, int maxsilence) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-05-05 19:10:11 +00:00
										 |  |  | 	return __ast_play_and_record(chan, playfile, recordfile, maxtime, fmt, duration, beep, silencethreshold, maxsilence, NULL, 1, default_acceptdtmf, default_canceldtmf); | 
					
						
							| 
									
										
										
										
											2006-05-04 20:29:13 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | /* Channel group core functions */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-03 19:25:33 +00:00
										 |  |  | int ast_app_group_split_group(const char *data, char *group, int group_max, char *category, int category_max) | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-06-06 17:10:52 +00:00
										 |  |  | 	int res = 0; | 
					
						
							| 
									
										
										
										
											2005-09-07 21:01:31 +00:00
										 |  |  | 	char tmp[256]; | 
					
						
							| 
									
										
										
										
											2007-06-06 17:10:52 +00:00
										 |  |  | 	char *grp = NULL, *cat = NULL; | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-26 18:54:24 +00:00
										 |  |  | 	if (!ast_strlen_zero(data)) { | 
					
						
							| 
									
										
										
										
											2005-06-05 16:32:16 +00:00
										 |  |  | 		ast_copy_string(tmp, data, sizeof(tmp)); | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | 		grp = tmp; | 
					
						
							|  |  |  | 		cat = strchr(tmp, '@'); | 
					
						
							|  |  |  | 		if (cat) { | 
					
						
							|  |  |  | 			*cat = '\0'; | 
					
						
							|  |  |  | 			cat++; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-26 18:54:24 +00:00
										 |  |  | 	if (!ast_strlen_zero(grp)) | 
					
						
							| 
									
										
										
										
											2005-06-05 16:32:16 +00:00
										 |  |  | 		ast_copy_string(group, grp, group_max); | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2007-09-24 16:40:12 +00:00
										 |  |  | 		*group = '\0'; | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | 	if (!ast_strlen_zero(cat)) | 
					
						
							|  |  |  | 		ast_copy_string(category, cat, category_max); | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-03 19:25:33 +00:00
										 |  |  | int ast_app_group_set_channel(struct ast_channel *chan, const char *data) | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | 	int res = 0; | 
					
						
							|  |  |  | 	char group[80] = "", category[80] = ""; | 
					
						
							|  |  |  | 	struct ast_group_info *gi = NULL; | 
					
						
							|  |  |  | 	size_t len = 0; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	if (ast_app_group_split_group(data, group, sizeof(group), category, sizeof(category))) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	/* Calculate memory we will need if this is new */ | 
					
						
							|  |  |  | 	len = sizeof(*gi) + strlen(group) + 1; | 
					
						
							|  |  |  | 	if (!ast_strlen_zero(category)) | 
					
						
							|  |  |  | 		len += strlen(category) + 1; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2007-06-13 18:23:12 +00:00
										 |  |  | 	AST_RWLIST_WRLOCK(&groups); | 
					
						
							|  |  |  | 	AST_RWLIST_TRAVERSE_SAFE_BEGIN(&groups, gi, list) { | 
					
						
							| 
									
										
										
										
											2007-06-13 18:18:51 +00:00
										 |  |  | 		if ((gi->chan == chan) && ((ast_strlen_zero(category) && ast_strlen_zero(gi->category)) || (!ast_strlen_zero(gi->category) && !strcasecmp(gi->category, category)))) { | 
					
						
							| 
									
										
										
										
											2007-11-08 05:28:47 +00:00
										 |  |  | 			AST_RWLIST_REMOVE_CURRENT(list); | 
					
						
							| 
									
										
										
										
											2007-06-13 18:18:51 +00:00
										 |  |  | 			free(gi); | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2007-06-13 18:18:51 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-11-08 05:28:47 +00:00
										 |  |  | 	AST_RWLIST_TRAVERSE_SAFE_END; | 
					
						
							| 
									
										
										
										
											2007-06-13 18:18:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-25 14:18:09 +00:00
										 |  |  | 	if (ast_strlen_zero(group)) { | 
					
						
							|  |  |  | 		/* Enable unsetting the group */ | 
					
						
							|  |  |  | 	} else if ((gi = calloc(1, len))) { | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | 		gi->chan = chan; | 
					
						
							|  |  |  | 		gi->group = (char *) gi + sizeof(*gi); | 
					
						
							|  |  |  | 		strcpy(gi->group, group); | 
					
						
							|  |  |  | 		if (!ast_strlen_zero(category)) { | 
					
						
							|  |  |  | 			gi->category = (char *) gi + sizeof(*gi) + strlen(group) + 1; | 
					
						
							|  |  |  | 			strcpy(gi->category, category); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2007-06-13 18:23:12 +00:00
										 |  |  | 		AST_RWLIST_INSERT_TAIL(&groups, gi, list); | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | 		res = -1; | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2007-06-13 18:23:12 +00:00
										 |  |  | 	AST_RWLIST_UNLOCK(&groups); | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-03 19:25:33 +00:00
										 |  |  | int ast_app_group_get_count(const char *group, const char *category) | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | 	struct ast_group_info *gi = NULL; | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | 	int count = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-26 18:54:24 +00:00
										 |  |  | 	if (ast_strlen_zero(group)) | 
					
						
							| 
									
										
										
										
											2005-06-06 02:29:18 +00:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2007-06-13 18:23:12 +00:00
										 |  |  | 	AST_RWLIST_RDLOCK(&groups); | 
					
						
							|  |  |  | 	AST_RWLIST_TRAVERSE(&groups, gi, list) { | 
					
						
							| 
									
										
										
										
											2007-07-10 14:51:09 +00:00
										 |  |  | 		if (!strcasecmp(gi->group, group) && (ast_strlen_zero(category) || (!ast_strlen_zero(gi->category) && !strcasecmp(gi->category, category)))) | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | 			count++; | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-06-13 18:23:12 +00:00
										 |  |  | 	AST_RWLIST_UNLOCK(&groups); | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return count; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-03 19:25:33 +00:00
										 |  |  | int ast_app_group_match_get_count(const char *groupmatch, const char *category) | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | 	struct ast_group_info *gi = NULL; | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | 	regex_t regexbuf; | 
					
						
							|  |  |  | 	int count = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-26 18:54:24 +00:00
										 |  |  | 	if (ast_strlen_zero(groupmatch)) | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* if regex compilation fails, return zero matches */ | 
					
						
							|  |  |  | 	if (regcomp(®exbuf, groupmatch, REG_EXTENDED | REG_NOSUB)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-13 18:23:12 +00:00
										 |  |  | 	AST_RWLIST_RDLOCK(&groups); | 
					
						
							|  |  |  | 	AST_RWLIST_TRAVERSE(&groups, gi, list) { | 
					
						
							| 
									
										
										
										
											2007-07-10 14:51:09 +00:00
										 |  |  | 		if (!regexec(®exbuf, gi->group, 0, NULL, 0) && (ast_strlen_zero(category) || (!ast_strlen_zero(gi->category) && !strcasecmp(gi->category, category)))) | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | 			count++; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-06-13 18:23:12 +00:00
										 |  |  | 	AST_RWLIST_UNLOCK(&groups); | 
					
						
							| 
									
										
										
										
											2004-10-03 16:34:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	regfree(®exbuf); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return count; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2004-12-29 13:06:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-07 21:47:08 +00:00
										 |  |  | int ast_app_group_update(struct ast_channel *old, struct ast_channel *new) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ast_group_info *gi = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-13 18:23:12 +00:00
										 |  |  | 	AST_RWLIST_WRLOCK(&groups); | 
					
						
							|  |  |  | 	AST_RWLIST_TRAVERSE(&groups, gi, list) { | 
					
						
							| 
									
										
										
										
											2007-05-07 21:47:08 +00:00
										 |  |  | 		if (gi->chan == old) | 
					
						
							|  |  |  | 			gi->chan = new; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-06-13 18:23:12 +00:00
										 |  |  | 	AST_RWLIST_UNLOCK(&groups); | 
					
						
							| 
									
										
										
										
											2007-05-07 21:47:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | int ast_app_group_discard(struct ast_channel *chan) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ast_group_info *gi = NULL; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2007-06-13 18:23:12 +00:00
										 |  |  | 	AST_RWLIST_WRLOCK(&groups); | 
					
						
							|  |  |  | 	AST_RWLIST_TRAVERSE_SAFE_BEGIN(&groups, gi, list) { | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | 		if (gi->chan == chan) { | 
					
						
							| 
									
										
										
										
											2007-11-08 05:28:47 +00:00
										 |  |  | 			AST_RWLIST_REMOVE_CURRENT(list); | 
					
						
							| 
									
										
										
										
											2007-06-06 21:20:11 +00:00
										 |  |  | 			ast_free(gi); | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-03-04 23:04:29 +00:00
										 |  |  | 	AST_RWLIST_TRAVERSE_SAFE_END; | 
					
						
							| 
									
										
										
										
											2007-06-13 18:23:12 +00:00
										 |  |  | 	AST_RWLIST_UNLOCK(&groups); | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-13 18:23:12 +00:00
										 |  |  | int ast_app_group_list_wrlock(void) | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-06-13 18:23:12 +00:00
										 |  |  | 	return AST_RWLIST_WRLOCK(&groups); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ast_app_group_list_rdlock(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return AST_RWLIST_RDLOCK(&groups); | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct ast_group_info *ast_app_group_list_head(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-06-13 18:23:12 +00:00
										 |  |  | 	return AST_RWLIST_FIRST(&groups); | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ast_app_group_list_unlock(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-06-13 18:23:12 +00:00
										 |  |  | 	return AST_RWLIST_UNLOCK(&groups); | 
					
						
							| 
									
										
										
										
											2007-04-25 19:27:42 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-03 21:19:11 +00:00
										 |  |  | unsigned int ast_app_separate_args(char *buf, char delim, char **array, int arraylen) | 
					
						
							| 
									
										
										
										
											2004-12-29 13:06:53 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-08-06 16:52:56 +00:00
										 |  |  | 	int argc; | 
					
						
							| 
									
										
										
										
											2008-06-20 22:04:37 +00:00
										 |  |  | 	char *scan, *wasdelim = NULL; | 
					
						
							| 
									
										
										
										
											2006-01-15 18:02:46 +00:00
										 |  |  | 	int paren = 0, quote = 0; | 
					
						
							| 
									
										
										
										
											2005-05-04 03:43:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!buf || !array || !arraylen) | 
					
						
							| 
									
										
										
										
											2004-12-29 13:06:53 +00:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2005-05-04 03:43:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	memset(array, 0, arraylen * sizeof(*array)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	scan = buf; | 
					
						
							| 
									
										
										
										
											2005-08-06 16:52:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (argc = 0; *scan && (argc < arraylen - 1); argc++) { | 
					
						
							|  |  |  | 		array[argc] = scan; | 
					
						
							|  |  |  | 		for (; *scan; scan++) { | 
					
						
							|  |  |  | 			if (*scan == '(') | 
					
						
							|  |  |  | 				paren++; | 
					
						
							|  |  |  | 			else if (*scan == ')') { | 
					
						
							|  |  |  | 				if (paren) | 
					
						
							|  |  |  | 					paren--; | 
					
						
							| 
									
										
										
										
											2006-08-14 04:25:13 +00:00
										 |  |  | 			} else if (*scan == '"' && delim != '"') { | 
					
						
							| 
									
										
										
										
											2006-01-15 18:02:46 +00:00
										 |  |  | 				quote = quote ? 0 : 1; | 
					
						
							|  |  |  | 				/* Remove quote character from argument */ | 
					
						
							|  |  |  | 				memmove(scan, scan + 1, strlen(scan)); | 
					
						
							|  |  |  | 				scan--; | 
					
						
							|  |  |  | 			} else if (*scan == '\\') { | 
					
						
							|  |  |  | 				/* Literal character, don't parse */ | 
					
						
							|  |  |  | 				memmove(scan, scan + 1, strlen(scan)); | 
					
						
							|  |  |  | 			} else if ((*scan == delim) && !paren && !quote) { | 
					
						
							| 
									
										
										
										
											2008-06-20 22:04:37 +00:00
										 |  |  | 				wasdelim = scan; | 
					
						
							| 
									
										
										
										
											2005-08-06 16:52:56 +00:00
										 |  |  | 				*scan++ = '\0'; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2004-12-29 13:24:10 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-05-04 03:43:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-20 22:04:37 +00:00
										 |  |  | 	/* If the last character in the original string was the delimiter, then
 | 
					
						
							|  |  |  | 	 * there is one additional argument. */ | 
					
						
							|  |  |  | 	if (*scan || (scan > buf && (scan - 1) == wasdelim)) { | 
					
						
							| 
									
										
										
										
											2005-08-06 16:52:56 +00:00
										 |  |  | 		array[argc++] = scan; | 
					
						
							| 
									
										
										
										
											2008-06-20 22:04:37 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-05-04 03:43:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-08-06 16:52:56 +00:00
										 |  |  | 	return argc; | 
					
						
							| 
									
										
										
										
											2004-12-29 13:06:53 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2005-01-07 07:23:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-28 16:28:26 +00:00
										 |  |  | static enum AST_LOCK_RESULT ast_lock_path_lockfile(const char *path) | 
					
						
							| 
									
										
										
										
											2005-01-23 09:05:01 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	char *s; | 
					
						
							|  |  |  | 	char *fs; | 
					
						
							|  |  |  | 	int res; | 
					
						
							|  |  |  | 	int fd; | 
					
						
							| 
									
										
										
										
											2006-03-28 14:30:31 +00:00
										 |  |  | 	int lp = strlen(path); | 
					
						
							| 
									
										
										
										
											2005-01-23 09:05:01 +00:00
										 |  |  | 	time_t start; | 
					
						
							| 
									
										
										
										
											2005-07-13 19:27:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-28 16:28:26 +00:00
										 |  |  | 	s = alloca(lp + 10);  | 
					
						
							|  |  |  | 	fs = alloca(lp + 20); | 
					
						
							| 
									
										
										
										
											2005-07-13 19:27:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-05 17:44:44 +00:00
										 |  |  | 	snprintf(fs, strlen(path) + 19, "%s/.lock-%08lx", path, ast_random()); | 
					
						
							| 
									
										
										
										
											2006-12-21 19:44:20 +00:00
										 |  |  | 	fd = open(fs, O_WRONLY | O_CREAT | O_EXCL, AST_FILE_MODE); | 
					
						
							| 
									
										
										
										
											2005-01-23 09:05:01 +00:00
										 |  |  | 	if (fd < 0) { | 
					
						
							| 
									
										
										
										
											2006-07-10 17:42:12 +00:00
										 |  |  | 		ast_log(LOG_ERROR, "Unable to create lock file '%s': %s\n", path, strerror(errno)); | 
					
						
							| 
									
										
										
										
											2005-07-13 19:27:09 +00:00
										 |  |  | 		return AST_LOCK_PATH_NOT_FOUND; | 
					
						
							| 
									
										
										
										
											2005-01-23 09:05:01 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	close(fd); | 
					
						
							| 
									
										
										
										
											2005-07-13 19:27:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	snprintf(s, strlen(path) + 9, "%s/.lock", path); | 
					
						
							| 
									
										
										
										
											2006-05-22 02:51:04 +00:00
										 |  |  | 	start = time(NULL); | 
					
						
							| 
									
										
										
										
											2005-01-23 09:05:01 +00:00
										 |  |  | 	while (((res = link(fs, s)) < 0) && (errno == EEXIST) && (time(NULL) - start < 5)) | 
					
						
							|  |  |  | 		usleep(1); | 
					
						
							| 
									
										
										
										
											2006-07-13 15:20:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	unlink(fs); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-13 19:27:09 +00:00
										 |  |  | 	if (res) { | 
					
						
							| 
									
										
										
										
											2005-01-23 09:05:01 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Failed to lock path '%s': %s\n", path, strerror(errno)); | 
					
						
							| 
									
										
										
										
											2005-07-13 19:27:09 +00:00
										 |  |  | 		return AST_LOCK_TIMEOUT; | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2007-06-14 19:39:12 +00:00
										 |  |  | 		ast_debug(1, "Locked path '%s'\n", path); | 
					
						
							| 
									
										
										
										
											2005-07-13 19:27:09 +00:00
										 |  |  | 		return AST_LOCK_SUCCESS; | 
					
						
							| 
									
										
										
										
											2005-01-23 09:05:01 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-28 16:28:26 +00:00
										 |  |  | static int ast_unlock_path_lockfile(const char *path) | 
					
						
							| 
									
										
										
										
											2005-01-23 09:05:01 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	char *s; | 
					
						
							| 
									
										
										
										
											2006-07-13 15:20:02 +00:00
										 |  |  | 	int res; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-28 16:28:26 +00:00
										 |  |  | 	s = alloca(strlen(path) + 10); | 
					
						
							| 
									
										
										
										
											2006-07-13 15:20:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-01-23 09:05:01 +00:00
										 |  |  | 	snprintf(s, strlen(path) + 9, "%s/%s", path, ".lock"); | 
					
						
							| 
									
										
										
										
											2006-07-13 15:20:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if ((res = unlink(s))) | 
					
						
							|  |  |  | 		ast_log(LOG_ERROR, "Could not unlock path '%s': %s\n", path, strerror(errno)); | 
					
						
							| 
									
										
										
										
											2006-10-03 15:53:07 +00:00
										 |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2007-06-14 19:39:12 +00:00
										 |  |  | 		ast_debug(1, "Unlocked path '%s'\n", path); | 
					
						
							| 
									
										
										
										
											2006-10-03 15:53:07 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-07-13 15:20:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											2005-01-23 09:05:01 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-28 16:28:26 +00:00
										 |  |  | struct path_lock { | 
					
						
							|  |  |  | 	AST_LIST_ENTRY(path_lock) le; | 
					
						
							|  |  |  | 	int fd; | 
					
						
							|  |  |  | 	char *path; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static AST_LIST_HEAD_STATIC(path_lock_list, path_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void path_lock_destroy(struct path_lock *obj) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (obj->fd >= 0) | 
					
						
							|  |  |  | 		close(obj->fd); | 
					
						
							|  |  |  | 	if (obj->path) | 
					
						
							|  |  |  | 		free(obj->path); | 
					
						
							|  |  |  | 	free(obj); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static enum AST_LOCK_RESULT ast_lock_path_flock(const char *path) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	char *fs; | 
					
						
							|  |  |  | 	int res; | 
					
						
							|  |  |  | 	int fd; | 
					
						
							|  |  |  | 	time_t start; | 
					
						
							|  |  |  | 	struct path_lock *pl; | 
					
						
							|  |  |  | 	struct stat st, ost; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fs = alloca(strlen(path) + 20); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snprintf(fs, strlen(path) + 19, "%s/lock", path); | 
					
						
							|  |  |  | 	if (lstat(fs, &st) == 0) { | 
					
						
							|  |  |  | 		if ((st.st_mode & S_IFMT) == S_IFLNK) { | 
					
						
							|  |  |  | 			ast_log(LOG_WARNING, "Unable to create lock file " | 
					
						
							|  |  |  | 					"'%s': it's already a symbolic link\n", | 
					
						
							|  |  |  | 					fs); | 
					
						
							|  |  |  | 			return AST_LOCK_FAILURE; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (st.st_nlink > 1) { | 
					
						
							|  |  |  | 			ast_log(LOG_WARNING, "Unable to create lock file " | 
					
						
							|  |  |  | 					"'%s': %u hard links exist\n", | 
					
						
							|  |  |  | 					fs, (unsigned int) st.st_nlink); | 
					
						
							|  |  |  | 			return AST_LOCK_FAILURE; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	fd = open(fs, O_WRONLY | O_CREAT, 0600); | 
					
						
							|  |  |  | 	if (fd < 0) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Unable to create lock file '%s': %s\n", | 
					
						
							|  |  |  | 				fs, strerror(errno)); | 
					
						
							|  |  |  | 		return AST_LOCK_PATH_NOT_FOUND; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	pl = ast_calloc(1, sizeof(*pl)); | 
					
						
							|  |  |  | 	if (!pl) { | 
					
						
							|  |  |  | 		/* We don't unlink the lock file here, on the possibility that
 | 
					
						
							|  |  |  | 		 * someone else created it - better to leave a little mess | 
					
						
							| 
									
										
										
										
											2007-09-20 19:22:10 +00:00
										 |  |  | 		 * than create a big one by destroying someone else's lock | 
					
						
							| 
									
										
										
										
											2007-08-28 16:28:26 +00:00
										 |  |  | 		 * and causing something to be corrupted. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		close(fd); | 
					
						
							|  |  |  | 		return AST_LOCK_FAILURE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	pl->fd = fd; | 
					
						
							|  |  |  | 	pl->path = strdup(path); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	time(&start); | 
					
						
							| 
									
										
										
										
											2007-09-12 16:24:45 +00:00
										 |  |  | 	while (( | 
					
						
							|  |  |  | 		#ifdef SOLARIS
 | 
					
						
							| 
									
										
										
										
											2008-03-04 23:04:29 +00:00
										 |  |  | 		(res = fcntl(pl->fd, F_SETLK, fcntl(pl->fd, F_GETFL) | O_NONBLOCK)) < 0) && | 
					
						
							| 
									
										
										
										
											2007-09-12 16:24:45 +00:00
										 |  |  | 		#else
 | 
					
						
							|  |  |  | 		(res = flock(pl->fd, LOCK_EX | LOCK_NB)) < 0) && | 
					
						
							|  |  |  | 		#endif
 | 
					
						
							|  |  |  | 			(errno == EWOULDBLOCK) &&  | 
					
						
							|  |  |  | 			(time(NULL) - start < 5)) | 
					
						
							| 
									
										
										
										
											2007-08-28 16:28:26 +00:00
										 |  |  | 		usleep(1000); | 
					
						
							|  |  |  | 	if (res) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Failed to lock path '%s': %s\n", | 
					
						
							|  |  |  | 				path, strerror(errno)); | 
					
						
							|  |  |  | 		/* No unlinking of lock done, since we tried and failed to
 | 
					
						
							|  |  |  | 		 * flock() it. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		path_lock_destroy(pl); | 
					
						
							|  |  |  | 		return AST_LOCK_TIMEOUT; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Check for the race where the file is recreated or deleted out from
 | 
					
						
							|  |  |  | 	 * underneath us. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (lstat(fs, &st) != 0 && fstat(pl->fd, &ost) != 0 && | 
					
						
							|  |  |  | 			st.st_dev != ost.st_dev && | 
					
						
							|  |  |  | 			st.st_ino != ost.st_ino) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Unable to create lock file '%s': " | 
					
						
							|  |  |  | 				"file changed underneath us\n", fs); | 
					
						
							|  |  |  | 		path_lock_destroy(pl); | 
					
						
							|  |  |  | 		return AST_LOCK_FAILURE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Success: file created, flocked, and is the one we started with */ | 
					
						
							|  |  |  | 	AST_LIST_LOCK(&path_lock_list); | 
					
						
							|  |  |  | 	AST_LIST_INSERT_TAIL(&path_lock_list, pl, le); | 
					
						
							|  |  |  | 	AST_LIST_UNLOCK(&path_lock_list); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ast_debug(1, "Locked path '%s'\n", path); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return AST_LOCK_SUCCESS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ast_unlock_path_flock(const char *path) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	char *s; | 
					
						
							|  |  |  | 	struct path_lock *p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	s = alloca(strlen(path) + 20); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	AST_LIST_LOCK(&path_lock_list); | 
					
						
							|  |  |  | 	AST_LIST_TRAVERSE_SAFE_BEGIN(&path_lock_list, p, le) { | 
					
						
							|  |  |  | 		if (!strcmp(p->path, path)) { | 
					
						
							| 
									
										
										
										
											2007-11-08 05:28:47 +00:00
										 |  |  | 			AST_LIST_REMOVE_CURRENT(le); | 
					
						
							| 
									
										
										
										
											2007-08-28 16:28:26 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	AST_LIST_TRAVERSE_SAFE_END; | 
					
						
							|  |  |  | 	AST_LIST_UNLOCK(&path_lock_list); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p) { | 
					
						
							|  |  |  | 		snprintf(s, strlen(path) + 19, "%s/lock", path); | 
					
						
							|  |  |  | 		unlink(s); | 
					
						
							|  |  |  | 		path_lock_destroy(p); | 
					
						
							|  |  |  | 		ast_log(LOG_DEBUG, "Unlocked path '%s'\n", path); | 
					
						
							|  |  |  | 	} else | 
					
						
							|  |  |  | 		ast_log(LOG_DEBUG, "Failed to unlock path '%s': " | 
					
						
							|  |  |  | 				"lock not found\n", path); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ast_set_lock_type(enum AST_LOCK_TYPE type) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	ast_lock_type = type; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum AST_LOCK_RESULT ast_lock_path(const char *path) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	enum AST_LOCK_RESULT r = AST_LOCK_FAILURE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (ast_lock_type) { | 
					
						
							|  |  |  | 	case AST_LOCK_TYPE_LOCKFILE: | 
					
						
							|  |  |  | 		r = ast_lock_path_lockfile(path); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case AST_LOCK_TYPE_FLOCK: | 
					
						
							|  |  |  | 		r = ast_lock_path_flock(path); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return r; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ast_unlock_path(const char *path) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int r = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (ast_lock_type) { | 
					
						
							|  |  |  | 	case AST_LOCK_TYPE_LOCKFILE: | 
					
						
							|  |  |  | 		r = ast_unlock_path_lockfile(path); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case AST_LOCK_TYPE_FLOCK: | 
					
						
							|  |  |  | 		r = ast_unlock_path_flock(path); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return r; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-01-23 09:05:01 +00:00
										 |  |  | int ast_record_review(struct ast_channel *chan, const char *playfile, const char *recordfile, int maxtime, const char *fmt, int *duration, const char *path)  | 
					
						
							| 
									
										
										
										
											2005-01-07 07:23:31 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-03-05 16:23:44 +00:00
										 |  |  | 	int silencethreshold;  | 
					
						
							| 
									
										
										
										
											2007-06-06 18:55:45 +00:00
										 |  |  | 	int maxsilence = 0; | 
					
						
							| 
									
										
										
										
											2005-01-07 07:23:31 +00:00
										 |  |  | 	int res = 0; | 
					
						
							|  |  |  | 	int cmd = 0; | 
					
						
							|  |  |  | 	int max_attempts = 3; | 
					
						
							|  |  |  | 	int attempts = 0; | 
					
						
							|  |  |  | 	int recorded = 0; | 
					
						
							|  |  |  | 	int message_exists = 0; | 
					
						
							|  |  |  | 	/* Note that urgent and private are for flagging messages as such in the future */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* barf if no pointer passed to store duration in */ | 
					
						
							| 
									
										
										
										
											2007-06-06 19:03:14 +00:00
										 |  |  | 	if (!duration) { | 
					
						
							| 
									
										
										
										
											2005-01-07 07:23:31 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Error ast_record_review called without duration pointer\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd = '3';	 /* Want to start by recording */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-05 16:23:44 +00:00
										 |  |  | 	silencethreshold = ast_dsp_get_threshold_from_settings(THRESHOLD_SILENCE); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-01-07 07:23:31 +00:00
										 |  |  | 	while ((cmd >= 0) && (cmd != 't')) { | 
					
						
							|  |  |  | 		switch (cmd) { | 
					
						
							|  |  |  | 		case '1': | 
					
						
							|  |  |  | 			if (!message_exists) { | 
					
						
							|  |  |  | 				/* In this case, 1 is to record a message */ | 
					
						
							|  |  |  | 				cmd = '3'; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2006-11-17 23:18:51 +00:00
										 |  |  | 				ast_stream_and_wait(chan, "vm-msgsaved", ""); | 
					
						
							| 
									
										
										
										
											2005-01-07 07:23:31 +00:00
										 |  |  | 				cmd = 't'; | 
					
						
							|  |  |  | 				return res; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		case '2': | 
					
						
							|  |  |  | 			/* Review */ | 
					
						
							| 
									
										
										
										
											2007-07-26 15:49:18 +00:00
										 |  |  | 			ast_verb(3, "Reviewing the recording\n"); | 
					
						
							| 
									
										
										
										
											2006-11-17 23:18:51 +00:00
										 |  |  | 			cmd = ast_stream_and_wait(chan, recordfile, AST_DIGIT_ANY); | 
					
						
							| 
									
										
										
										
											2005-01-07 07:23:31 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case '3': | 
					
						
							|  |  |  | 			message_exists = 0; | 
					
						
							|  |  |  | 			/* Record */ | 
					
						
							|  |  |  | 			if (recorded == 1) | 
					
						
							| 
									
										
										
										
											2007-07-26 15:49:18 +00:00
										 |  |  | 				ast_verb(3, "Re-recording\n"); | 
					
						
							| 
									
										
										
										
											2005-01-07 07:23:31 +00:00
										 |  |  | 			else	 | 
					
						
							| 
									
										
										
										
											2007-07-26 15:49:18 +00:00
										 |  |  | 				ast_verb(3, "Recording\n"); | 
					
						
							| 
									
										
										
										
											2005-01-07 07:23:31 +00:00
										 |  |  | 			recorded = 1; | 
					
						
							| 
									
										
										
										
											2005-01-23 09:05:01 +00:00
										 |  |  | 			cmd = ast_play_and_record(chan, playfile, recordfile, maxtime, fmt, duration, silencethreshold, maxsilence, path); | 
					
						
							| 
									
										
										
										
											2005-01-07 07:23:31 +00:00
										 |  |  | 			if (cmd == -1) { | 
					
						
							|  |  |  | 			/* User has hung up, no options to give */ | 
					
						
							|  |  |  | 				return cmd; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if (cmd == '0') { | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} else if (cmd == '*') { | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			}  | 
					
						
							|  |  |  | 			else { | 
					
						
							|  |  |  | 				/* If all is well, a message exists */ | 
					
						
							|  |  |  | 				message_exists = 1; | 
					
						
							|  |  |  | 				cmd = 0; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case '4': | 
					
						
							|  |  |  | 		case '5': | 
					
						
							|  |  |  | 		case '6': | 
					
						
							|  |  |  | 		case '7': | 
					
						
							|  |  |  | 		case '8': | 
					
						
							|  |  |  | 		case '9': | 
					
						
							|  |  |  | 		case '*': | 
					
						
							|  |  |  | 		case '#': | 
					
						
							|  |  |  | 			cmd = ast_play_and_wait(chan, "vm-sorry"); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			if (message_exists) { | 
					
						
							|  |  |  | 				cmd = ast_play_and_wait(chan, "vm-review"); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else { | 
					
						
							|  |  |  | 				cmd = ast_play_and_wait(chan, "vm-torerecord"); | 
					
						
							|  |  |  | 				if (!cmd) | 
					
						
							|  |  |  | 					cmd = ast_waitfordigit(chan, 600); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			if (!cmd) | 
					
						
							|  |  |  | 				cmd = ast_waitfordigit(chan, 6000); | 
					
						
							|  |  |  | 			if (!cmd) { | 
					
						
							|  |  |  | 				attempts++; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if (attempts > max_attempts) { | 
					
						
							|  |  |  | 				cmd = 't'; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (cmd == 't') | 
					
						
							|  |  |  | 		cmd = 0; | 
					
						
							|  |  |  | 	return cmd; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define RES_UPONE (1 << 16)
 | 
					
						
							|  |  |  | #define RES_EXIT  (1 << 17)
 | 
					
						
							|  |  |  | #define RES_REPEAT (1 << 18)
 | 
					
						
							|  |  |  | #define RES_RESTART ((1 << 19) | RES_REPEAT)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ast_ivr_menu_run_internal(struct ast_channel *chan, struct ast_ivr_menu *menu, void *cbdata); | 
					
						
							| 
									
										
										
										
											2006-07-10 17:42:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | static int ivr_dispatch(struct ast_channel *chan, struct ast_ivr_option *option, char *exten, void *cbdata) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int res; | 
					
						
							| 
									
										
										
										
											2005-03-05 21:06:26 +00:00
										 |  |  | 	int (*ivr_func)(struct ast_channel *, void *); | 
					
						
							|  |  |  | 	char *c; | 
					
						
							|  |  |  | 	char *n; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2007-01-23 00:11:32 +00:00
										 |  |  | 	switch (option->action) { | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 	case AST_ACTION_UPONE: | 
					
						
							|  |  |  | 		return RES_UPONE; | 
					
						
							|  |  |  | 	case AST_ACTION_EXIT: | 
					
						
							|  |  |  | 		return RES_EXIT | (((unsigned long)(option->adata)) & 0xffff); | 
					
						
							|  |  |  | 	case AST_ACTION_REPEAT: | 
					
						
							|  |  |  | 		return RES_REPEAT | (((unsigned long)(option->adata)) & 0xffff); | 
					
						
							|  |  |  | 	case AST_ACTION_RESTART: | 
					
						
							|  |  |  | 		return RES_RESTART ; | 
					
						
							|  |  |  | 	case AST_ACTION_NOOP: | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	case AST_ACTION_BACKGROUND: | 
					
						
							| 
									
										
										
										
											2006-11-17 23:18:51 +00:00
										 |  |  | 		res = ast_stream_and_wait(chan, (char *)option->adata, AST_DIGIT_ANY); | 
					
						
							| 
									
										
										
										
											2006-04-21 20:39:50 +00:00
										 |  |  | 		if (res < 0) { | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 			ast_log(LOG_NOTICE, "Unable to find file '%s'!\n", (char *)option->adata); | 
					
						
							|  |  |  | 			res = 0; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return res; | 
					
						
							|  |  |  | 	case AST_ACTION_PLAYBACK: | 
					
						
							| 
									
										
										
										
											2006-11-17 23:18:51 +00:00
										 |  |  | 		res = ast_stream_and_wait(chan, (char *)option->adata, ""); | 
					
						
							| 
									
										
										
										
											2006-04-21 20:39:50 +00:00
										 |  |  | 		if (res < 0) { | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 			ast_log(LOG_NOTICE, "Unable to find file '%s'!\n", (char *)option->adata); | 
					
						
							|  |  |  | 			res = 0; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return res; | 
					
						
							|  |  |  | 	case AST_ACTION_MENU: | 
					
						
							|  |  |  | 		res = ast_ivr_menu_run_internal(chan, (struct ast_ivr_menu *)option->adata, cbdata); | 
					
						
							| 
									
										
										
										
											2007-09-20 19:32:18 +00:00
										 |  |  | 		/* Do not pass entry errors back up, treat as though it was an "UPONE" */ | 
					
						
							| 
									
										
										
										
											2005-03-05 21:06:26 +00:00
										 |  |  | 		if (res == -2) | 
					
						
							|  |  |  | 			res = 0; | 
					
						
							|  |  |  | 		return res; | 
					
						
							|  |  |  | 	case AST_ACTION_WAITOPTION: | 
					
						
							| 
									
										
										
										
											2008-05-01 23:06:23 +00:00
										 |  |  | 		res = ast_waitfordigit(chan, chan->pbx ? chan->pbx->rtimeoutms : 10000); | 
					
						
							| 
									
										
										
										
											2005-03-05 21:06:26 +00:00
										 |  |  | 		if (!res) | 
					
						
							|  |  |  | 			return 't'; | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 		return res; | 
					
						
							|  |  |  | 	case AST_ACTION_CALLBACK: | 
					
						
							| 
									
										
										
										
											2005-03-05 21:06:26 +00:00
										 |  |  | 		ivr_func = option->adata; | 
					
						
							|  |  |  | 		res = ivr_func(chan, cbdata); | 
					
						
							|  |  |  | 		return res; | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 	case AST_ACTION_TRANSFER: | 
					
						
							| 
									
										
										
										
											2005-03-05 21:06:26 +00:00
										 |  |  | 		res = ast_parseable_goto(chan, option->adata); | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2005-03-05 21:06:26 +00:00
										 |  |  | 	case AST_ACTION_PLAYLIST: | 
					
						
							|  |  |  | 	case AST_ACTION_BACKLIST: | 
					
						
							|  |  |  | 		res = 0; | 
					
						
							|  |  |  | 		c = ast_strdupa(option->adata); | 
					
						
							| 
									
										
										
										
											2006-05-10 13:22:15 +00:00
										 |  |  | 		while ((n = strsep(&c, ";"))) { | 
					
						
							| 
									
										
										
										
											2006-11-17 23:18:51 +00:00
										 |  |  | 			if ((res = ast_stream_and_wait(chan, n, | 
					
						
							| 
									
										
										
										
											2006-05-10 13:22:15 +00:00
										 |  |  | 					(option->action == AST_ACTION_BACKLIST) ? AST_DIGIT_ANY : ""))) | 
					
						
							|  |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2005-03-05 21:06:26 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2006-05-10 13:22:15 +00:00
										 |  |  | 		ast_stopstream(chan); | 
					
						
							| 
									
										
										
										
											2005-03-05 21:06:26 +00:00
										 |  |  | 		return res; | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 	default: | 
					
						
							|  |  |  | 		ast_log(LOG_NOTICE, "Unknown dispatch function %d, ignoring!\n", option->action); | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int option_exists(struct ast_ivr_menu *menu, char *option) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int x; | 
					
						
							| 
									
										
										
										
											2006-07-10 17:42:12 +00:00
										 |  |  | 	for (x = 0; menu->options[x].option; x++) | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 		if (!strcasecmp(menu->options[x].option, option)) | 
					
						
							|  |  |  | 			return x; | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int option_matchmore(struct ast_ivr_menu *menu, char *option) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int x; | 
					
						
							| 
									
										
										
										
											2006-07-10 17:42:12 +00:00
										 |  |  | 	for (x = 0; menu->options[x].option; x++) | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 		if ((!strncasecmp(menu->options[x].option, option, strlen(option))) &&  | 
					
						
							|  |  |  | 				(menu->options[x].option[strlen(option)])) | 
					
						
							|  |  |  | 			return x; | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int read_newoption(struct ast_channel *chan, struct ast_ivr_menu *menu, char *exten, int maxexten) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-02-11 18:27:47 +00:00
										 |  |  | 	int res = 0; | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 	int ms; | 
					
						
							| 
									
										
										
										
											2006-07-10 17:42:12 +00:00
										 |  |  | 	while (option_matchmore(menu, exten)) { | 
					
						
							| 
									
										
										
										
											2008-05-01 23:06:23 +00:00
										 |  |  | 		ms = chan->pbx ? chan->pbx->dtimeoutms : 5000; | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 		if (strlen(exten) >= maxexten - 1)  | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		res = ast_waitfordigit(chan, ms); | 
					
						
							|  |  |  | 		if (res < 1) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		exten[strlen(exten) + 1] = '\0'; | 
					
						
							|  |  |  | 		exten[strlen(exten)] = res; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return res > 0 ? 0 : res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ast_ivr_menu_run_internal(struct ast_channel *chan, struct ast_ivr_menu *menu, void *cbdata) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* Execute an IVR menu structure */ | 
					
						
							| 
									
										
										
										
											2008-02-11 18:27:47 +00:00
										 |  |  | 	int res = 0; | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 	int pos = 0; | 
					
						
							|  |  |  | 	int retries = 0; | 
					
						
							|  |  |  | 	char exten[AST_MAX_EXTENSION] = "s"; | 
					
						
							|  |  |  | 	if (option_exists(menu, "s") < 0) { | 
					
						
							|  |  |  | 		strcpy(exten, "g"); | 
					
						
							|  |  |  | 		if (option_exists(menu, "g") < 0) { | 
					
						
							|  |  |  | 			ast_log(LOG_WARNING, "No 's' nor 'g' extension in menu '%s'!\n", menu->title); | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-01-23 00:11:32 +00:00
										 |  |  | 	while (!res) { | 
					
						
							|  |  |  | 		while (menu->options[pos].option) { | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 			if (!strcasecmp(menu->options[pos].option, exten)) { | 
					
						
							|  |  |  | 				res = ivr_dispatch(chan, menu->options + pos, exten, cbdata); | 
					
						
							| 
									
										
										
										
											2007-06-14 19:39:12 +00:00
										 |  |  | 				ast_debug(1, "IVR Dispatch of '%s' (pos %d) yields %d\n", exten, pos, res); | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 				if (res < 0) | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				else if (res & RES_UPONE) | 
					
						
							|  |  |  | 					return 0; | 
					
						
							|  |  |  | 				else if (res & RES_EXIT) | 
					
						
							|  |  |  | 					return res; | 
					
						
							|  |  |  | 				else if (res & RES_REPEAT) { | 
					
						
							|  |  |  | 					int maxretries = res & 0xffff; | 
					
						
							| 
									
										
										
										
											2005-03-05 21:06:26 +00:00
										 |  |  | 					if ((res & RES_RESTART) == RES_RESTART) { | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 						retries = 0; | 
					
						
							| 
									
										
										
										
											2005-03-05 21:06:26 +00:00
										 |  |  | 					} else | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 						retries++; | 
					
						
							|  |  |  | 					if (!maxretries) | 
					
						
							|  |  |  | 						maxretries = 3; | 
					
						
							| 
									
										
										
										
											2005-03-05 21:06:26 +00:00
										 |  |  | 					if ((maxretries > 0) && (retries >= maxretries)) { | 
					
						
							| 
									
										
										
										
											2007-06-14 19:39:12 +00:00
										 |  |  | 						ast_debug(1, "Max retries %d exceeded\n", maxretries); | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 						return -2; | 
					
						
							| 
									
										
										
										
											2005-03-05 21:06:26 +00:00
										 |  |  | 					} else { | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 						if (option_exists(menu, "g") > -1)  | 
					
						
							|  |  |  | 							strcpy(exten, "g"); | 
					
						
							|  |  |  | 						else if (option_exists(menu, "s") > -1) | 
					
						
							|  |  |  | 							strcpy(exten, "s"); | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2006-07-10 17:42:12 +00:00
										 |  |  | 					pos = 0; | 
					
						
							| 
									
										
										
										
											2005-03-05 21:06:26 +00:00
										 |  |  | 					continue; | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 				} else if (res && strchr(AST_DIGIT_ANY, res)) { | 
					
						
							| 
									
										
										
										
											2007-06-14 19:39:12 +00:00
										 |  |  | 					ast_debug(1, "Got start of extension, %c\n", res); | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 					exten[1] = '\0'; | 
					
						
							|  |  |  | 					exten[0] = res; | 
					
						
							|  |  |  | 					if ((res = read_newoption(chan, menu, exten, sizeof(exten)))) | 
					
						
							|  |  |  | 						break; | 
					
						
							| 
									
										
										
										
											2005-03-05 21:06:26 +00:00
										 |  |  | 					if (option_exists(menu, exten) < 0) { | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 						if (option_exists(menu, "i")) { | 
					
						
							| 
									
										
										
										
											2007-06-14 19:39:12 +00:00
										 |  |  | 							ast_debug(1, "Invalid extension entered, going to 'i'!\n"); | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 							strcpy(exten, "i"); | 
					
						
							|  |  |  | 							pos = 0; | 
					
						
							|  |  |  | 							continue; | 
					
						
							|  |  |  | 						} else { | 
					
						
							| 
									
										
										
										
											2007-06-14 19:39:12 +00:00
										 |  |  | 							ast_debug(1, "Aborting on invalid entry, with no 'i' option!\n"); | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 							res = -2; | 
					
						
							|  |  |  | 							break; | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} else { | 
					
						
							| 
									
										
										
										
											2007-06-14 19:39:12 +00:00
										 |  |  | 						ast_debug(1, "New existing extension: %s\n", exten); | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 						pos = 0; | 
					
						
							|  |  |  | 						continue; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			pos++; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2007-06-14 19:39:12 +00:00
										 |  |  | 		ast_debug(1, "Stopping option '%s', res is %d\n", exten, res); | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 		pos = 0; | 
					
						
							|  |  |  | 		if (!strcasecmp(exten, "s")) | 
					
						
							|  |  |  | 			strcpy(exten, "g"); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ast_ivr_menu_run(struct ast_channel *chan, struct ast_ivr_menu *menu, void *cbdata) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-07-10 17:42:12 +00:00
										 |  |  | 	int res = ast_ivr_menu_run_internal(chan, menu, cbdata); | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | 	/* Hide internal coding */ | 
					
						
							| 
									
										
										
										
											2006-07-10 17:42:12 +00:00
										 |  |  | 	return res > 0 ? 0 : res; | 
					
						
							| 
									
										
										
										
											2005-02-17 14:57:36 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2005-02-27 19:07:46 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | char *ast_read_textfile(const char *filename) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 	int fd, count = 0, res; | 
					
						
							| 
									
										
										
										
											2006-07-10 17:42:12 +00:00
										 |  |  | 	char *output = NULL; | 
					
						
							| 
									
										
										
										
											2005-02-27 19:07:46 +00:00
										 |  |  | 	struct stat filesize; | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-10 17:42:12 +00:00
										 |  |  | 	if (stat(filename, &filesize) == -1) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Error can't stat %s\n", filename); | 
					
						
							| 
									
										
										
										
											2005-02-27 19:07:46 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-10 17:42:12 +00:00
										 |  |  | 	count = filesize.st_size + 1; | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if ((fd = open(filename, O_RDONLY)) < 0) { | 
					
						
							| 
									
										
										
										
											2005-02-27 19:07:46 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Cannot open file '%s' for reading: %s\n", filename, strerror(errno)); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2006-03-28 14:30:31 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-14 22:28:01 +00:00
										 |  |  | 	if ((output = ast_malloc(count))) { | 
					
						
							| 
									
										
										
										
											2005-02-27 19:07:46 +00:00
										 |  |  | 		res = read(fd, output, count - 1); | 
					
						
							|  |  |  | 		if (res == count - 1) { | 
					
						
							|  |  |  | 			output[res] = '\0'; | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2006-07-10 17:42:12 +00:00
										 |  |  | 			ast_log(LOG_WARNING, "Short read of %s (%d of %d): %s\n", filename, res, count - 1, strerror(errno)); | 
					
						
							| 
									
										
										
										
											2007-06-06 21:20:11 +00:00
										 |  |  | 			ast_free(output); | 
					
						
							| 
									
										
										
										
											2005-02-27 19:07:46 +00:00
										 |  |  | 			output = NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2006-02-14 22:28:01 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-02-27 19:07:46 +00:00
										 |  |  | 	close(fd); | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-02-27 19:07:46 +00:00
										 |  |  | 	return output; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-03 21:19:11 +00:00
										 |  |  | int ast_app_parse_options(const struct ast_app_option *options, struct ast_flags *flags, char **args, char *optstr) | 
					
						
							| 
									
										
										
										
											2005-03-12 05:37:32 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-06-12 14:16:37 +00:00
										 |  |  | 	char *s, *arg; | 
					
						
							|  |  |  | 	int curarg, res = 0; | 
					
						
							| 
									
										
										
										
											2005-11-03 21:19:11 +00:00
										 |  |  | 	unsigned int argloc; | 
					
						
							| 
									
										
										
										
											2005-09-14 17:20:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-03 21:19:11 +00:00
										 |  |  | 	ast_clear_flag(flags, AST_FLAGS_ALL); | 
					
						
							| 
									
										
										
										
											2005-09-14 17:20:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-12 05:37:32 +00:00
										 |  |  | 	if (!optstr) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2005-09-14 17:20:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-12 05:37:32 +00:00
										 |  |  | 	s = optstr; | 
					
						
							| 
									
										
										
										
											2005-09-14 17:20:24 +00:00
										 |  |  | 	while (*s) { | 
					
						
							| 
									
										
										
										
											2006-03-28 14:30:31 +00:00
										 |  |  | 		curarg = *s++ & 0x7f;	/* the array (in app.h) has 128 entries */ | 
					
						
							| 
									
										
										
										
											2005-09-14 17:20:24 +00:00
										 |  |  | 		argloc = options[curarg].arg_index; | 
					
						
							| 
									
										
										
										
											2005-03-12 05:37:32 +00:00
										 |  |  | 		if (*s == '(') { | 
					
						
							|  |  |  | 			/* Has argument */ | 
					
						
							| 
									
										
										
										
											2005-11-10 23:12:09 +00:00
										 |  |  | 			arg = ++s; | 
					
						
							| 
									
										
										
										
											2006-10-05 16:11:09 +00:00
										 |  |  | 			if ((s = strchr(s, ')'))) { | 
					
						
							| 
									
										
										
										
											2005-03-12 05:37:32 +00:00
										 |  |  | 				if (argloc) | 
					
						
							|  |  |  | 					args[argloc - 1] = arg; | 
					
						
							| 
									
										
										
										
											2005-11-03 21:19:11 +00:00
										 |  |  | 				*s++ = '\0'; | 
					
						
							| 
									
										
										
										
											2005-03-12 05:37:32 +00:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2005-09-14 17:20:24 +00:00
										 |  |  | 				ast_log(LOG_WARNING, "Missing closing parenthesis for argument '%c' in string '%s'\n", curarg, arg); | 
					
						
							| 
									
										
										
										
											2005-03-12 05:37:32 +00:00
										 |  |  | 				res = -1; | 
					
						
							| 
									
										
										
										
											2006-10-05 16:11:09 +00:00
										 |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2005-03-12 05:37:32 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2005-11-03 21:19:11 +00:00
										 |  |  | 		} else if (argloc) { | 
					
						
							| 
									
										
										
										
											2007-11-27 20:21:57 +00:00
										 |  |  | 			args[argloc - 1] = ""; | 
					
						
							| 
									
										
										
										
											2007-11-27 19:47:19 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		ast_set_flag(flags, options[curarg].flag); | 
					
						
							| 
									
										
										
										
											2005-03-12 05:37:32 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-11-03 21:19:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-12 05:37:32 +00:00
										 |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2006-07-10 17:42:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
											
												After some study, thought, comparing, etc. I've backed out the previous universal mod to make ast_flags a 64 bit thing. Instead, I added a 64-bit version of ast_flags (ast_flags64), and 64-bit versions of the test-flag, set-flag, etc. macros, and an app_parse_options64 routine, and I use these in app_dial alone, to eliminate the 30-option limit it had grown to meet. There is room now for 32 more options and flags. I was heavily tempted to implement some of the other ideas that were presented, but this solution does not intro any new versions of dial, doesn't have a different API, has a minimal/zero impact on code outside of dial, and doesn't seriously (I hope) affect the code structure of dial. It's the best I can think of right now. My goal was NOT to rewrite dial. I leave that to a future, coordinated effort.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@75983 65c4cc65-6c06-0410-ace0-fbb531ad65f3
											
										 
											2007-07-19 23:24:27 +00:00
										 |  |  | /* the following function will probably only be used in app_dial, until app_dial is reorganized to
 | 
					
						
							|  |  |  |    better handle the large number of options it provides. After it is, you need to get rid of this variant  | 
					
						
							|  |  |  |    -- unless, of course, someone else digs up some use for large flag fields. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ast_app_parse_options64(const struct ast_app_option *options, struct ast_flags64 *flags, char **args, char *optstr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	char *s, *arg; | 
					
						
							|  |  |  | 	int curarg, res = 0; | 
					
						
							|  |  |  | 	unsigned int argloc; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	flags->flags = 0; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	if (!optstr) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	s = optstr; | 
					
						
							|  |  |  | 	while (*s) { | 
					
						
							|  |  |  | 		curarg = *s++ & 0x7f;	/* the array (in app.h) has 128 entries */ | 
					
						
							|  |  |  | 		ast_set_flag64(flags, options[curarg].flag); | 
					
						
							|  |  |  | 		argloc = options[curarg].arg_index; | 
					
						
							|  |  |  | 		if (*s == '(') { | 
					
						
							|  |  |  | 			/* Has argument */ | 
					
						
							|  |  |  | 			arg = ++s; | 
					
						
							|  |  |  | 			if ((s = strchr(s, ')'))) { | 
					
						
							|  |  |  | 				if (argloc) | 
					
						
							|  |  |  | 					args[argloc - 1] = arg; | 
					
						
							|  |  |  | 				*s++ = '\0'; | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				ast_log(LOG_WARNING, "Missing closing parenthesis for argument '%c' in string '%s'\n", curarg, arg); | 
					
						
							|  |  |  | 				res = -1; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} else if (argloc) { | 
					
						
							|  |  |  | 			args[argloc - 1] = NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-01 01:30:37 +00:00
										 |  |  | void ast_app_options2str64(const struct ast_app_option *options, struct ast_flags64 *flags, char *buf, size_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned int i, found = 0; | 
					
						
							|  |  |  | 	for (i = 32; i < 128 && found < len; i++) { | 
					
						
							|  |  |  | 		if (ast_test_flag64(flags, options[i].flag)) { | 
					
						
							|  |  |  | 			buf[found++] = i; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	buf[found] = '\0'; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-26 00:11:31 +00:00
										 |  |  | int ast_get_encoded_char(const char *stream, char *result, size_t *consumed) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 	*consumed = 1; | 
					
						
							|  |  |  | 	*result = 0; | 
					
						
							| 
									
										
										
										
											2008-09-12 16:54:44 +00:00
										 |  |  | 	if (ast_strlen_zero(stream)) { | 
					
						
							|  |  |  | 		*consumed = 0; | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-26 00:11:31 +00:00
										 |  |  | 	if (*stream == '\\') { | 
					
						
							|  |  |  | 		*consumed = 2; | 
					
						
							|  |  |  | 		switch (*(stream + 1)) { | 
					
						
							|  |  |  | 		case 'n': | 
					
						
							|  |  |  | 			*result = '\n'; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 'r': | 
					
						
							|  |  |  | 			*result = '\r'; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 't': | 
					
						
							|  |  |  | 			*result = '\t'; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 'x': | 
					
						
							|  |  |  | 			/* Hexadecimal */ | 
					
						
							|  |  |  | 			if (strchr("0123456789ABCDEFabcdef", *(stream + 2)) && *(stream + 2) != '\0') { | 
					
						
							|  |  |  | 				*consumed = 3; | 
					
						
							|  |  |  | 				if (*(stream + 2) <= '9') | 
					
						
							|  |  |  | 					*result = *(stream + 2) - '0'; | 
					
						
							|  |  |  | 				else if (*(stream + 2) <= 'F') | 
					
						
							|  |  |  | 					*result = *(stream + 2) - 'A' + 10; | 
					
						
							|  |  |  | 				else | 
					
						
							|  |  |  | 					*result = *(stream + 2) - 'a' + 10; | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				ast_log(LOG_ERROR, "Illegal character '%c' in hexadecimal string\n", *(stream + 2)); | 
					
						
							|  |  |  | 				return -1; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (strchr("0123456789ABCDEFabcdef", *(stream + 3)) && *(stream + 3) != '\0') { | 
					
						
							|  |  |  | 				*consumed = 4; | 
					
						
							|  |  |  | 				*result <<= 4; | 
					
						
							|  |  |  | 				if (*(stream + 3) <= '9') | 
					
						
							|  |  |  | 					*result += *(stream + 3) - '0'; | 
					
						
							|  |  |  | 				else if (*(stream + 3) <= 'F') | 
					
						
							|  |  |  | 					*result += *(stream + 3) - 'A' + 10; | 
					
						
							|  |  |  | 				else | 
					
						
							|  |  |  | 					*result += *(stream + 3) - 'a' + 10; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case '0': | 
					
						
							|  |  |  | 			/* Octal */ | 
					
						
							|  |  |  | 			*consumed = 2; | 
					
						
							|  |  |  | 			for (i = 2; ; i++) { | 
					
						
							|  |  |  | 				if (strchr("01234567", *(stream + i)) && *(stream + i) != '\0') { | 
					
						
							|  |  |  | 					(*consumed)++; | 
					
						
							|  |  |  | 					ast_debug(5, "result was %d, ", *result); | 
					
						
							|  |  |  | 					*result <<= 3; | 
					
						
							|  |  |  | 					*result += *(stream + i) - '0'; | 
					
						
							|  |  |  | 					ast_debug(5, "is now %d\n", *result); | 
					
						
							|  |  |  | 				} else | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			*result = *(stream + 1); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		*result = *stream; | 
					
						
							|  |  |  | 		*consumed = 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-16 22:57:54 +00:00
										 |  |  | void ast_close_fds_above_n(int n) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int x, null; | 
					
						
							|  |  |  | 	null = open("/dev/null", O_RDONLY); | 
					
						
							|  |  |  | 	for (x = n + 1; x <= (null >= 8192 ? null : 8192); x++) { | 
					
						
							|  |  |  | 		if (x != null) { | 
					
						
							|  |  |  | 			/* Side effect of dup2 is that it closes any existing fd without error.
 | 
					
						
							|  |  |  | 			 * This prevents valgrind and other debugging tools from sending up | 
					
						
							|  |  |  | 			 * false error reports. */ | 
					
						
							|  |  |  | 			dup2(null, x); | 
					
						
							|  |  |  | 			close(x); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	close(null); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ast_safe_fork(int stop_reaper) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	sigset_t signal_set, old_set; | 
					
						
							|  |  |  | 	int pid; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Don't let the default signal handler for children reap our status */ | 
					
						
							|  |  |  | 	if (stop_reaper) { | 
					
						
							|  |  |  | 		ast_replace_sigchld(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sigfillset(&signal_set); | 
					
						
							|  |  |  | 	pthread_sigmask(SIG_BLOCK, &signal_set, &old_set); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pid = fork(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (pid != 0) { | 
					
						
							|  |  |  | 		/* Fork failed or parent */ | 
					
						
							|  |  |  | 		pthread_sigmask(SIG_SETMASK, &old_set, NULL); | 
					
						
							|  |  |  | 		return pid; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		/* Child */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Before we unblock our signals, return our trapped signals back to the defaults */ | 
					
						
							|  |  |  | 		signal(SIGHUP, SIG_DFL); | 
					
						
							|  |  |  | 		signal(SIGCHLD, SIG_DFL); | 
					
						
							|  |  |  | 		signal(SIGINT, SIG_DFL); | 
					
						
							|  |  |  | 		signal(SIGURG, SIG_DFL); | 
					
						
							|  |  |  | 		signal(SIGTERM, SIG_DFL); | 
					
						
							|  |  |  | 		signal(SIGPIPE, SIG_DFL); | 
					
						
							|  |  |  | 		signal(SIGXFSZ, SIG_DFL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* unblock important signal handlers */ | 
					
						
							|  |  |  | 		if (pthread_sigmask(SIG_UNBLOCK, &signal_set, NULL)) { | 
					
						
							| 
									
										
										
										
											2008-04-25 19:39:26 +00:00
										 |  |  | 			ast_log(LOG_WARNING, "unable to unblock signals: %s\n", strerror(errno)); | 
					
						
							| 
									
										
										
										
											2008-04-16 22:57:54 +00:00
										 |  |  | 			_exit(1); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return pid; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ast_safe_fork_cleanup(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	ast_unreplace_sigchld(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 |