2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 2004 - 2005, Anthony Minessale II.
6 * Anthony Minessale <anthmct@yahoo.com>
8 * A license has been granted to Digium (via disclaimer) for the use of
11 * See http://www.asterisk.org for more information about
12 * the Asterisk project. Please do not directly contact
13 * any of the maintainers of this project for assistance;
14 * the project provides a web site, mailing lists and IRC
15 * channels for your use.
17 * This program is free software, distributed under the terms of
18 * the GNU General Public License Version 2. See the LICENSE file
19 * at the top of the source tree.
24 * \brief Application to dump channel variables
26 * \author Anthony Minessale <anthmct@yahoo.com>
28 * \ingroup applications
33 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
40 #include "asterisk/file.h"
41 #include "asterisk/logger.h"
42 #include "asterisk/channel.h"
43 #include "asterisk/pbx.h"
44 #include "asterisk/module.h"
45 #include "asterisk/options.h"
46 #include "asterisk/utils.h"
47 #include "asterisk/lock.h"
48 #include "asterisk/utils.h"
50 static char *app = "DumpChan";
51 static char *synopsis = "Dump Info About The Calling Channel";
53 " DumpChan([<min_verbose_level>])\n"
54 "Displays information on channel and listing of all channel\n"
55 "variables. If min_verbose_level is specified, output is only\n"
56 "displayed when the verbose level is currently set to that number\n"
61 static int serialize_showchan(struct ast_channel *c, char *buf, size_t size)
64 long elapsed_seconds = 0;
65 int hour = 0, min = 0, sec = 0;
68 char formatbuf[BUFSIZ/2];
76 elapsed_seconds = now.tv_sec - c->cdr->start.tv_sec;
77 hour = elapsed_seconds / 3600;
78 min = (elapsed_seconds % 3600) / 60;
79 sec = elapsed_seconds % 60;
94 "1stFileDescriptor= %d\n"
98 "ElapsedTime= %dh%dm%ds\n"
110 (c->cid.cid_num ? c->cid.cid_num : "(N/A)"),
111 (c->cid.cid_name ? c->cid.cid_name : "(N/A)"),
112 (c->cid.cid_dnid ? c->cid.cid_dnid : "(N/A)" ),
113 ast_state2str(c->_state),
116 ast_getformatname_multiple(formatbuf, sizeof(formatbuf), c->nativeformats),
117 ast_getformatname_multiple(formatbuf, sizeof(formatbuf), c->writeformat),
118 ast_getformatname_multiple(formatbuf, sizeof(formatbuf), c->readformat),
119 c->fds[0], c->fin & ~DEBUGCHAN_FLAG, (c->fin & DEBUGCHAN_FLAG) ? " (DEBUGGED)" : "",
120 c->fout & ~DEBUGCHAN_FLAG, (c->fout & DEBUGCHAN_FLAG) ? " (DEBUGGED)" : "", (long)c->whentohangup,
127 ast_print_group(cgrp, sizeof(cgrp), c->callgroup),
128 ast_print_group(pgrp, sizeof(pgrp), c->pickupgroup),
129 ( c->appl ? c->appl : "(N/A)" ),
130 ( c-> data ? S_OR(c->data, "(Empty)") : "(None)"),
131 (ast_test_flag(c, AST_FLAG_BLOCKING) ? c->blockproc : "(Not Blocking)"));
136 static int dumpchan_exec(struct ast_channel *chan, void *data)
139 char vars[BUFSIZ * 4];
142 static char *line = "================================================================================";
146 if (!ast_strlen_zero(data))
149 pbx_builtin_serialize_variables(chan, vars, sizeof(vars));
150 serialize_showchan(chan, info, sizeof(info));
151 if (option_verbose >= level)
152 ast_verbose("\nDumping Info For Channel: %s:\n%s\nInfo:\n%s\nVariables:\n%s%s\n", chan->name, line, info, vars, line);
154 LOCAL_USER_REMOVE(u);
159 static int unload_module(void *mod)
163 res = ast_unregister_application(app);
165 STANDARD_HANGUP_LOCALUSERS;
170 static int load_module(void *mod)
172 return ast_register_application(app, dumpchan_exec, synopsis, desc);
175 static const char *description(void)
177 return "Dump Info About The Calling Channel";
180 static const char *key(void)
182 return ASTERISK_GPL_KEY;