Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #include "asterisk.h"
00032
00033 ASTERISK_FILE_VERSION(__FILE__, "$Revision: 405431 $")
00034
00035 #include "asterisk/module.h"
00036 #include "asterisk/app.h"
00037 #include "asterisk/channel.h"
00038
00039 static char *app_verbose = "Verbose";
00040 static char *app_log = "Log";
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079 static int verbose_exec(struct ast_channel *chan, const char *data)
00080 {
00081 int vsize;
00082 char *parse;
00083 AST_DECLARE_APP_ARGS(args,
00084 AST_APP_ARG(level);
00085 AST_APP_ARG(msg);
00086 );
00087
00088 if (ast_strlen_zero(data)) {
00089 return 0;
00090 }
00091
00092 parse = ast_strdupa(data);
00093 AST_STANDARD_APP_ARGS(args, parse);
00094 if (args.argc == 1) {
00095 args.msg = args.level;
00096 args.level = "0";
00097 }
00098
00099 if (sscanf(args.level, "%30u", &vsize) != 1) {
00100 vsize = 0;
00101 ast_log(LOG_WARNING, "'%s' is not a verboser number\n", args.level);
00102 } else if (4 < vsize) {
00103 vsize = 4;
00104 }
00105
00106 ast_verb(vsize, "%s\n", args.msg);
00107
00108 return 0;
00109 }
00110
00111 static int log_exec(struct ast_channel *chan, const char *data)
00112 {
00113 char *parse;
00114 int lnum = -1;
00115 char extension[AST_MAX_EXTENSION + 5], context[AST_MAX_EXTENSION + 2];
00116 AST_DECLARE_APP_ARGS(args,
00117 AST_APP_ARG(level);
00118 AST_APP_ARG(msg);
00119 );
00120
00121 if (ast_strlen_zero(data))
00122 return 0;
00123
00124 parse = ast_strdupa(data);
00125 AST_STANDARD_APP_ARGS(args, parse);
00126
00127 if (!strcasecmp(args.level, "ERROR")) {
00128 lnum = __LOG_ERROR;
00129 } else if (!strcasecmp(args.level, "WARNING")) {
00130 lnum = __LOG_WARNING;
00131 } else if (!strcasecmp(args.level, "NOTICE")) {
00132 lnum = __LOG_NOTICE;
00133 } else if (!strcasecmp(args.level, "DEBUG")) {
00134 lnum = __LOG_DEBUG;
00135 } else if (!strcasecmp(args.level, "VERBOSE")) {
00136 lnum = __LOG_VERBOSE;
00137 } else if (!strcasecmp(args.level, "DTMF")) {
00138 lnum = __LOG_DTMF;
00139 } else {
00140 ast_log(LOG_ERROR, "Unknown log level: '%s'\n", args.level);
00141 }
00142
00143 if (lnum > -1) {
00144 snprintf(context, sizeof(context), "@ %s", ast_channel_context(chan));
00145 snprintf(extension, sizeof(extension), "Ext. %s", ast_channel_exten(chan));
00146
00147 ast_log(lnum, extension, ast_channel_priority(chan), context, "%s\n", args.msg);
00148 }
00149
00150 return 0;
00151 }
00152
00153 static int unload_module(void)
00154 {
00155 int res;
00156
00157 res = ast_unregister_application(app_verbose);
00158 res |= ast_unregister_application(app_log);
00159
00160 return res;
00161 }
00162
00163 static int load_module(void)
00164 {
00165 int res;
00166
00167 res = ast_register_application_xml(app_log, log_exec);
00168 res |= ast_register_application_xml(app_verbose, verbose_exec);
00169
00170 return res;
00171 }
00172
00173 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Send verbose output");