| 
									
										
										
										
											2004-08-06 02:12:54 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2005-09-15 15:44:26 +00:00
										 |  |  |  * Asterisk -- An open source telephony toolkit. | 
					
						
							| 
									
										
										
										
											2004-08-06 02:12:54 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-01-21 07:06:25 +00:00
										 |  |  |  * Copyright (c) 2004 - 2005 Tilghman Lesher.  All rights reserved. | 
					
						
							| 
									
										
										
										
											2004-08-06 02:12:54 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Tilghman Lesher <app_verbose_v001@the-tilghman.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This code is released by the author with no restrictions on usage. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-09-15 15:44:26 +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. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-24 20:12:06 +00:00
										 |  |  | /*! \file
 | 
					
						
							| 
									
										
										
										
											2005-09-15 15:44:26 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-10-24 20:12:06 +00:00
										 |  |  |  * \brief Verbose logging application | 
					
						
							| 
									
										
										
										
											2005-09-15 15:44:26 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-12-30 21:18:06 +00:00
										 |  |  |  * \author Tilghman Lesher <app_verbose_v001@the-tilghman.com> | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-11-06 15:09:47 +00:00
										 |  |  |  * \ingroup applications | 
					
						
							| 
									
										
										
										
											2004-08-06 02:12:54 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-07 18:54:56 +00:00
										 |  |  | #include "asterisk.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ASTERISK_FILE_VERSION(__FILE__, "$Revision$") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-21 06:02:45 +00:00
										 |  |  | #include "asterisk/module.h"
 | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | #include "asterisk/app.h"
 | 
					
						
							| 
									
										
										
										
											2007-11-22 03:50:04 +00:00
										 |  |  | #include "asterisk/channel.h"
 | 
					
						
							| 
									
										
										
										
											2004-08-06 02:12:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static char *app_verbose = "Verbose"; | 
					
						
							| 
									
										
										
										
											2005-12-21 09:33:41 +00:00
										 |  |  | static char *app_log = "Log"; | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*** DOCUMENTATION
 | 
					
						
							|  |  |  | 	<application name="Verbose" language="en_US"> | 
					
						
							|  |  |  |  		<synopsis> | 
					
						
							|  |  |  | 			Send arbitrary text to verbose output. | 
					
						
							|  |  |  | 		</synopsis> | 
					
						
							|  |  |  | 		<syntax> | 
					
						
							|  |  |  | 			<parameter name="level"> | 
					
						
							|  |  |  | 				<para>Must be an integer value.  If not specified, defaults to 0.</para> | 
					
						
							|  |  |  | 			</parameter> | 
					
						
							|  |  |  | 			<parameter name="message" required="true"> | 
					
						
							|  |  |  | 				<para>Output text message.</para> | 
					
						
							|  |  |  | 			</parameter> | 
					
						
							|  |  |  | 		</syntax> | 
					
						
							|  |  |  | 		<description> | 
					
						
							|  |  |  | 			<para>Sends an arbitrary text message to verbose output.</para> | 
					
						
							|  |  |  | 		</description> | 
					
						
							|  |  |  | 	</application> | 
					
						
							|  |  |  | 	<application name="Log" language="en_US"> | 
					
						
							|  |  |  | 		<synopsis> | 
					
						
							|  |  |  | 			Send arbitrary text to a selected log level. | 
					
						
							|  |  |  | 		</synopsis> | 
					
						
							|  |  |  | 		<syntax> | 
					
						
							| 
									
										
										
										
											2011-01-08 22:00:12 +00:00
										 |  |  | 			<parameter name="level" required="true"> | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | 				<para>Level must be one of <literal>ERROR</literal>, <literal>WARNING</literal>, <literal>NOTICE</literal>, | 
					
						
							| 
									
										
										
										
											2009-04-10 15:11:16 +00:00
										 |  |  | 				<literal>DEBUG</literal>, <literal>VERBOSE</literal> or <literal>DTMF</literal>.</para>	 | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | 			</parameter> | 
					
						
							|  |  |  | 			<parameter name="message" required="true"> | 
					
						
							|  |  |  | 				<para>Output text message.</para> | 
					
						
							|  |  |  | 			</parameter> | 
					
						
							|  |  |  | 		</syntax> | 
					
						
							|  |  |  | 		<description> | 
					
						
							|  |  |  | 			<para>Sends an arbitrary text message to a selected log level.</para> | 
					
						
							|  |  |  | 		</description> | 
					
						
							|  |  |  | 	</application> | 
					
						
							|  |  |  |  ***/ | 
					
						
							| 
									
										
										
										
											2005-12-21 09:33:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-06 02:12:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-21 21:13:09 +00:00
										 |  |  | static int verbose_exec(struct ast_channel *chan, const char *data) | 
					
						
							| 
									
										
										
										
											2004-08-06 02:12:54 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int vsize; | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 	char *parse; | 
					
						
							|  |  |  | 	AST_DECLARE_APP_ARGS(args, | 
					
						
							|  |  |  | 		AST_APP_ARG(level); | 
					
						
							|  |  |  | 		AST_APP_ARG(msg); | 
					
						
							|  |  |  | 	); | 
					
						
							| 
									
										
										
										
											2004-08-06 02:12:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 	if (ast_strlen_zero(data)) { | 
					
						
							| 
									
										
										
										
											2007-07-16 15:57:01 +00:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	parse = ast_strdupa(data); | 
					
						
							|  |  |  | 	AST_STANDARD_APP_ARGS(args, parse); | 
					
						
							|  |  |  | 	if (args.argc == 1) { | 
					
						
							|  |  |  | 		args.msg = args.level; | 
					
						
							|  |  |  | 		args.level = "0"; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-10 19:20:57 +00:00
										 |  |  | 	if (sscanf(args.level, "%30d", &vsize) != 1) { | 
					
						
							| 
									
										
										
										
											2007-07-16 15:57:01 +00:00
										 |  |  | 		vsize = 0; | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "'%s' is not a verboser number\n", args.level); | 
					
						
							| 
									
										
										
										
											2007-07-16 15:57:01 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if (option_verbose >= vsize) { | 
					
						
							|  |  |  | 		switch (vsize) { | 
					
						
							|  |  |  | 		case 0: | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 			ast_verbose("%s\n", args.msg); | 
					
						
							| 
									
										
										
										
											2007-07-16 15:57:01 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case 1: | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 			ast_verbose(VERBOSE_PREFIX_1 "%s\n", args.msg); | 
					
						
							| 
									
										
										
										
											2007-07-16 15:57:01 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case 2: | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 			ast_verbose(VERBOSE_PREFIX_2 "%s\n", args.msg); | 
					
						
							| 
									
										
										
										
											2007-07-16 15:57:01 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case 3: | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 			ast_verbose(VERBOSE_PREFIX_3 "%s\n", args.msg); | 
					
						
							| 
									
										
										
										
											2007-07-16 15:57:01 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		default: | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 			ast_verbose(VERBOSE_PREFIX_4 "%s\n", args.msg); | 
					
						
							| 
									
										
										
										
											2004-08-06 02:12:54 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-21 21:13:09 +00:00
										 |  |  | static int log_exec(struct ast_channel *chan, const char *data) | 
					
						
							| 
									
										
										
										
											2005-12-21 09:33:41 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 	char *parse; | 
					
						
							| 
									
										
										
										
											2005-12-21 09:33:41 +00:00
										 |  |  | 	int lnum = -1; | 
					
						
							|  |  |  | 	char extension[AST_MAX_EXTENSION + 5], context[AST_MAX_EXTENSION + 2]; | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 	AST_DECLARE_APP_ARGS(args, | 
					
						
							|  |  |  | 		AST_APP_ARG(level); | 
					
						
							|  |  |  | 		AST_APP_ARG(msg); | 
					
						
							|  |  |  | 	); | 
					
						
							| 
									
										
										
										
											2005-12-21 09:33:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-16 14:39:29 +00:00
										 |  |  | 	if (ast_strlen_zero(data)) | 
					
						
							| 
									
										
										
										
											2005-12-21 09:33:41 +00:00
										 |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 	parse = ast_strdupa(data); | 
					
						
							|  |  |  | 	AST_STANDARD_APP_ARGS(args, parse); | 
					
						
							| 
									
										
										
										
											2005-12-21 09:33:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 	if (!strcasecmp(args.level, "ERROR")) { | 
					
						
							| 
									
										
										
										
											2005-12-21 09:33:41 +00:00
										 |  |  | 		lnum = __LOG_ERROR; | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 	} else if (!strcasecmp(args.level, "WARNING")) { | 
					
						
							| 
									
										
										
										
											2005-12-21 09:33:41 +00:00
										 |  |  | 		lnum = __LOG_WARNING; | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 	} else if (!strcasecmp(args.level, "NOTICE")) { | 
					
						
							| 
									
										
										
										
											2005-12-21 09:33:41 +00:00
										 |  |  | 		lnum = __LOG_NOTICE; | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 	} else if (!strcasecmp(args.level, "DEBUG")) { | 
					
						
							| 
									
										
										
										
											2005-12-21 09:33:41 +00:00
										 |  |  | 		lnum = __LOG_DEBUG; | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 	} else if (!strcasecmp(args.level, "VERBOSE")) { | 
					
						
							| 
									
										
										
										
											2005-12-21 09:33:41 +00:00
										 |  |  | 		lnum = __LOG_VERBOSE; | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 	} else if (!strcasecmp(args.level, "DTMF")) { | 
					
						
							| 
									
										
										
										
											2005-12-21 09:33:41 +00:00
										 |  |  | 		lnum = __LOG_DTMF; | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 		ast_log(LOG_ERROR, "Unknown log level: '%s'\n", args.level); | 
					
						
							| 
									
										
										
										
											2005-12-21 09:33:41 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (lnum > -1) { | 
					
						
							|  |  |  | 		snprintf(context, sizeof(context), "@ %s", chan->context); | 
					
						
							|  |  |  | 		snprintf(extension, sizeof(extension), "Ext. %s", chan->exten); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-23 19:51:41 +00:00
										 |  |  | 		ast_log(lnum, extension, chan->priority, context, "%s\n", args.msg); | 
					
						
							| 
									
										
										
										
											2005-12-21 09:33:41 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-07-16 14:39:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-21 09:33:41 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | static int unload_module(void) | 
					
						
							| 
									
										
										
										
											2004-08-06 02:12:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-10-18 22:52:21 +00:00
										 |  |  | 	int res; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	res = ast_unregister_application(app_verbose); | 
					
						
							| 
									
										
										
										
											2005-12-21 09:33:41 +00:00
										 |  |  | 	res |= ast_unregister_application(app_log); | 
					
						
							| 
									
										
										
										
											2005-10-18 22:52:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return res;	 | 
					
						
							| 
									
										
										
										
											2004-08-06 02:12:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | static int load_module(void) | 
					
						
							| 
									
										
										
										
											2004-08-06 02:12:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-12-21 09:33:41 +00:00
										 |  |  | 	int res; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | 	res = ast_register_application_xml(app_log, log_exec); | 
					
						
							|  |  |  | 	res |= ast_register_application_xml(app_verbose, verbose_exec); | 
					
						
							| 
									
										
										
										
											2005-12-21 09:33:41 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											2004-08-06 02:12:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Send verbose output"); |