Sat Apr 26 2014 22:01:46

Asterisk developer's documentation


app_dumpchan.c File Reference

Application to dump channel variables. More...

#include "asterisk.h"
#include "asterisk/pbx.h"
#include "asterisk/module.h"
#include "asterisk/channel.h"
#include "asterisk/app.h"
#include "asterisk/translate.h"
Include dependency graph for app_dumpchan.c:

Go to the source code of this file.

Functions

static void __reg_module (void)
static void __unreg_module (void)
static int dumpchan_exec (struct ast_channel *chan, const char *data)
static int load_module (void)
static int serialize_showchan (struct ast_channel *c, char *buf, size_t size)
static int unload_module (void)

Variables

static struct ast_module_info __mod_info = { .name = AST_MODULE, .flags = AST_MODFLAG_LOAD_ORDER , .description = "Dump Info About The Calling Channel" , .key = "This paragraph is copyright (c) 2006 by Digium, Inc. \In order for your module to load, it must return this \key via a function called \"key\". Any code which \includes this paragraph must be licensed under the GNU \General Public License version 2 or later (at your \option). In addition to Digium's general reservations \of rights, Digium expressly reserves the right to \allow other parties to license this paragraph under \different terms. Any use of Digium, Inc. trademarks or \logos (including \"Asterisk\" or \"Digium\") without \express written permission of Digium, Inc. is prohibited.\n" , .buildopt_sum = AST_BUILDOPT_SUM, .load = load_module, .unload = unload_module, .load_pri = AST_MODPRI_DEFAULT, }
static const char app [] = "DumpChan"
static struct ast_module_infoast_module_info = &__mod_info

Detailed Description

Application to dump channel variables.

Author:
Anthony Minessale <anthmct@yahoo.com>

Definition in file app_dumpchan.c.


Function Documentation

static void __reg_module ( void  ) [static]

Definition at line 210 of file app_dumpchan.c.

static void __unreg_module ( void  ) [static]

Definition at line 210 of file app_dumpchan.c.

static int dumpchan_exec ( struct ast_channel chan,
const char *  data 
) [static]

Definition at line 175 of file app_dumpchan.c.

References ast_channel_name(), ast_str_buffer(), ast_str_thread_get(), ast_strlen_zero(), ast_verb, pbx_builtin_serialize_variables(), serialize_showchan(), and VERBOSITY_ATLEAST.

Referenced by load_module().

{
   struct ast_str *vars = ast_str_thread_get(&ast_str_thread_global_buf, 16);
   char info[2048];
   int level = 0;
   static char *line = "================================================================================";

   if (!ast_strlen_zero(data))
      level = atoi(data);

   if (VERBOSITY_ATLEAST(level)) {
      serialize_showchan(chan, info, sizeof(info));
      pbx_builtin_serialize_variables(chan, &vars);
      ast_verb(level, "\n"
         "Dumping Info For Channel: %s:\n"
         "%s\n"
         "Info:\n"
         "%s\n"
         "Variables:\n"
         "%s%s\n", ast_channel_name(chan), line, info, ast_str_buffer(vars), line);
   }

   return 0;
}
static int load_module ( void  ) [static]
static int serialize_showchan ( struct ast_channel c,
char *  buf,
size_t  size 
) [static]

Definition at line 70 of file app_dumpchan.c.

References ast_bridged_channel(), ast_channel_appl(), ast_channel_blockproc(), ast_channel_caller(), ast_channel_callgroup(), ast_channel_cdr(), ast_channel_connected(), ast_channel_context(), ast_channel_data(), ast_channel_dialed(), ast_channel_exten(), ast_channel_fd(), ast_channel_fin(), ast_channel_flags(), ast_channel_fout(), ast_channel_internal_bridged_channel(), ast_channel_language(), ast_channel_linkedid(), ast_channel_name(), ast_channel_nativeformats(), ast_channel_parkinglot(), ast_channel_pickupgroup(), ast_channel_priority(), ast_channel_rawreadformat(), ast_channel_rawwriteformat(), ast_channel_readformat(), ast_channel_readtrans(), ast_channel_redirecting(), ast_channel_rings(), ast_channel_tech(), ast_channel_uniqueid(), ast_channel_whentohangup(), ast_channel_writeformat(), ast_channel_writetrans(), AST_FLAG_BLOCKING, ast_getformatname(), ast_getformatname_multiple(), ast_print_group(), ast_state2str(), ast_str_alloca, ast_test_flag, ast_translate_path_to_str(), ast_tvnow(), DEBUGCHAN_FLAG, name, S_COR, S_OR, ast_cdr::start, and type.

Referenced by dumpchan_exec().

{
   struct timeval now;
   long elapsed_seconds = 0;
   int hour = 0, min = 0, sec = 0;
   char nf[256];
   char cgrp[256];
   char pgrp[256];
   struct ast_str *write_transpath = ast_str_alloca(256);
   struct ast_str *read_transpath = ast_str_alloca(256);

   now = ast_tvnow();
   memset(buf, 0, size);
   if (!c)
      return 0;

   if (ast_channel_cdr(c)) {
      elapsed_seconds = now.tv_sec - ast_channel_cdr(c)->start.tv_sec;
      hour = elapsed_seconds / 3600;
      min = (elapsed_seconds % 3600) / 60;
      sec = elapsed_seconds % 60;
   }

   snprintf(buf,size,
      "Name=               %s\n"
      "Type=               %s\n"
      "UniqueID=           %s\n"
      "LinkedID=           %s\n"
      "CallerIDNum=        %s\n"
      "CallerIDName=       %s\n"
      "ConnectedLineIDNum= %s\n"
      "ConnectedLineIDName=%s\n"
      "DNIDDigits=         %s\n"
      "RDNIS=              %s\n"
      "Parkinglot=         %s\n"
      "Language=           %s\n"
      "State=              %s (%d)\n"
      "Rings=              %d\n"
      "NativeFormat=       %s\n"
      "WriteFormat=        %s\n"
      "ReadFormat=         %s\n"
      "RawWriteFormat=     %s\n"
      "RawReadFormat=      %s\n"
      "WriteTranscode=     %s %s\n"
      "ReadTranscode=      %s %s\n"
      "1stFileDescriptor=  %d\n"
      "Framesin=           %d %s\n"
      "Framesout=          %d %s\n"
      "TimetoHangup=       %ld\n"
      "ElapsedTime=        %dh%dm%ds\n"
      "DirectBridge=       %s\n"
      "IndirectBridge=     %s\n"
      "Context=            %s\n"
      "Extension=          %s\n"
      "Priority=           %d\n"
      "CallGroup=          %s\n"
      "PickupGroup=        %s\n"
      "Application=        %s\n"
      "Data=               %s\n"
      "Blocking_in=        %s\n",
      ast_channel_name(c),
      ast_channel_tech(c)->type,
      ast_channel_uniqueid(c),
      ast_channel_linkedid(c),
      S_COR(ast_channel_caller(c)->id.number.valid, ast_channel_caller(c)->id.number.str, "(N/A)"),
      S_COR(ast_channel_caller(c)->id.name.valid, ast_channel_caller(c)->id.name.str, "(N/A)"),
      S_COR(ast_channel_connected(c)->id.number.valid, ast_channel_connected(c)->id.number.str, "(N/A)"),
      S_COR(ast_channel_connected(c)->id.name.valid, ast_channel_connected(c)->id.name.str, "(N/A)"),
      S_OR(ast_channel_dialed(c)->number.str, "(N/A)"),
      S_COR(ast_channel_redirecting(c)->from.number.valid, ast_channel_redirecting(c)->from.number.str, "(N/A)"),
      ast_channel_parkinglot(c),
      ast_channel_language(c),
      ast_state2str(ast_channel_state(c)),
      ast_channel_state(c),
      ast_channel_rings(c),
      ast_getformatname_multiple(nf, sizeof(nf), ast_channel_nativeformats(c)),
      ast_getformatname(ast_channel_writeformat(c)),
      ast_getformatname(ast_channel_readformat(c)),
      ast_getformatname(ast_channel_rawwriteformat(c)),
      ast_getformatname(ast_channel_rawreadformat(c)),
      ast_channel_writetrans(c) ? "Yes" : "No",
      ast_translate_path_to_str(ast_channel_writetrans(c), &write_transpath),
      ast_channel_readtrans(c) ? "Yes" : "No",
      ast_translate_path_to_str(ast_channel_readtrans(c), &read_transpath),
      ast_channel_fd(c, 0),
      ast_channel_fin(c) & ~DEBUGCHAN_FLAG, (ast_channel_fin(c) & DEBUGCHAN_FLAG) ? " (DEBUGGED)" : "",
      ast_channel_fout(c) & ~DEBUGCHAN_FLAG, (ast_channel_fout(c) & DEBUGCHAN_FLAG) ? " (DEBUGGED)" : "",
      (long)ast_channel_whentohangup(c)->tv_sec,
      hour,
      min,
      sec,
      ast_channel_internal_bridged_channel(c) ? ast_channel_name(ast_channel_internal_bridged_channel(c)) : "<none>",
      ast_bridged_channel(c) ? ast_channel_name(ast_bridged_channel(c)) : "<none>",
      ast_channel_context(c),
      ast_channel_exten(c),
      ast_channel_priority(c),
      ast_print_group(cgrp, sizeof(cgrp), ast_channel_callgroup(c)),
      ast_print_group(pgrp, sizeof(pgrp), ast_channel_pickupgroup(c)),
      ast_channel_appl(c) ? ast_channel_appl(c) : "(N/A)",
      ast_channel_data(c) ? S_OR(ast_channel_data(c), "(Empty)") : "(None)",
      (ast_test_flag(ast_channel_flags(c), AST_FLAG_BLOCKING) ? ast_channel_blockproc(c) : "(Not Blocking)"));

   return 0;
}
static int unload_module ( void  ) [static]

Definition at line 200 of file app_dumpchan.c.

References ast_unregister_application().


Variable Documentation

struct ast_module_info __mod_info = { .name = AST_MODULE, .flags = AST_MODFLAG_LOAD_ORDER , .description = "Dump Info About The Calling Channel" , .key = "This paragraph is copyright (c) 2006 by Digium, Inc. \In order for your module to load, it must return this \key via a function called \"key\". Any code which \includes this paragraph must be licensed under the GNU \General Public License version 2 or later (at your \option). In addition to Digium's general reservations \of rights, Digium expressly reserves the right to \allow other parties to license this paragraph under \different terms. Any use of Digium, Inc. trademarks or \logos (including \"Asterisk\" or \"Digium\") without \express written permission of Digium, Inc. is prohibited.\n" , .buildopt_sum = AST_BUILDOPT_SUM, .load = load_module, .unload = unload_module, .load_pri = AST_MODPRI_DEFAULT, } [static]

Definition at line 210 of file app_dumpchan.c.

const char app[] = "DumpChan" [static]

Definition at line 68 of file app_dumpchan.c.

Definition at line 210 of file app_dumpchan.c.