Mon Jun 27 16:50:47 2011

Asterisk developer's documentation


app_softhangup.c

Go to the documentation of this file.
00001 /*
00002  * Asterisk -- An open source telephony toolkit.
00003  *
00004  * Copyright (C) 1999 - 2005, Digium, Inc.
00005  *
00006  * Mark Spencer <markster@digium.com>
00007  *
00008  * See http://www.asterisk.org for more information about
00009  * the Asterisk project. Please do not directly contact
00010  * any of the maintainers of this project for assistance;
00011  * the project provides a web site, mailing lists and IRC
00012  * channels for your use.
00013  *
00014  * This program is free software, distributed under the terms of
00015  * the GNU General Public License Version 2. See the LICENSE file
00016  * at the top of the source tree.
00017  */
00018 
00019 /*! \file
00020  *
00021  * \brief SoftHangup application
00022  *
00023  * \author Mark Spencer <markster@digium.com>
00024  * 
00025  * \ingroup applications
00026  */
00027 
00028 #include "asterisk.h"
00029 
00030 ASTERISK_FILE_VERSION(__FILE__, "$Revision: 229460 $")
00031 
00032 #include "asterisk/file.h"
00033 #include "asterisk/channel.h"
00034 #include "asterisk/pbx.h"
00035 #include "asterisk/module.h"
00036 #include "asterisk/lock.h"
00037 #include "asterisk/app.h"
00038 
00039 /*** DOCUMENTATION
00040    <application name="SoftHangup" language="en_US">
00041       <synopsis>
00042          Hangs up the requested channel.
00043       </synopsis>
00044       <syntax>
00045          <parameter name="Technology/Resource" required="true" />
00046          <parameter name="options">
00047             <optionlist>
00048                <option name="a">
00049                   <para>Hang up all channels on a specified device instead of a single resource</para>
00050                </option>
00051             </optionlist>
00052          </parameter>
00053       </syntax>   
00054       <description>
00055          <para>Hangs up the requested channel.  If there are no channels to 
00056          hangup, the application will report it.</para>
00057       </description>
00058    </application>
00059 
00060  ***/
00061 
00062 static char *app = "SoftHangup";
00063 
00064 enum {
00065    OPTION_ALL = (1 << 0),
00066 };
00067 
00068 AST_APP_OPTIONS(app_opts,{
00069    AST_APP_OPTION('a', OPTION_ALL),
00070 });
00071 
00072 static int softhangup_exec(struct ast_channel *chan, const char *data)
00073 {
00074    struct ast_channel *c = NULL;
00075    char *cut, *opts[0];
00076    char name[AST_CHANNEL_NAME] = "", *parse;
00077    struct ast_flags flags = {0};
00078    int lenmatch;
00079    AST_DECLARE_APP_ARGS(args,
00080       AST_APP_ARG(channel);
00081       AST_APP_ARG(options);
00082    );
00083    struct ast_channel_iterator *iter;
00084    
00085    if (ast_strlen_zero(data)) {
00086       ast_log(LOG_WARNING, "SoftHangup requires an argument (Technology/resource)\n");
00087       return 0;
00088    }
00089 
00090    parse = ast_strdupa(data);
00091    AST_STANDARD_APP_ARGS(args, parse);
00092 
00093    if (args.argc == 2)
00094       ast_app_parse_options(app_opts, &flags, opts, args.options);
00095    lenmatch = strlen(args.channel);
00096 
00097    if (!(iter = ast_channel_iterator_by_name_new(args.channel, lenmatch))) {
00098       return -1;
00099    }
00100 
00101    while ((c = ast_channel_iterator_next(iter))) {
00102       ast_channel_lock(c);
00103       ast_copy_string(name, c->name, sizeof(name));
00104       if (ast_test_flag(&flags, OPTION_ALL)) {
00105          /* CAPI is set up like CAPI[foo/bar]/clcnt */ 
00106          if (!strcmp(c->tech->type, "CAPI")) {
00107             cut = strrchr(name, '/');
00108          /* Basically everything else is Foo/Bar-Z */
00109          } else {
00110             /* use strrchr() because Foo/Bar-Z could actually be Foo/B-a-r-Z */
00111             cut = strrchr(name,'-');
00112          }
00113          /* Get rid of what we've cut */
00114          if (cut)
00115             *cut = 0;
00116       }
00117       if (!strcasecmp(name, args.channel)) {
00118          ast_log(LOG_WARNING, "Soft hanging %s up.\n", c->name);
00119          ast_softhangup(c, AST_SOFTHANGUP_EXPLICIT);
00120          if (!ast_test_flag(&flags, OPTION_ALL)) {
00121             ast_channel_unlock(c);
00122             c = ast_channel_unref(c);
00123             break;
00124          }
00125       }
00126       ast_channel_unlock(c);
00127       c = ast_channel_unref(c);
00128    }
00129 
00130    ast_channel_iterator_destroy(iter);
00131 
00132    return 0;
00133 }
00134 
00135 static int unload_module(void)
00136 {
00137    return ast_unregister_application(app);
00138 }
00139 
00140 static int load_module(void)
00141 {
00142    return ast_register_application_xml(app, softhangup_exec);
00143 }
00144 
00145 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Hangs up the requested channel");

Generated on Mon Jun 27 16:50:47 2011 for Asterisk - The Open Source Telephony Project by  doxygen 1.4.7