Fri Jul 15 2011 11:56:58

Asterisk developer's documentation


app_directed_pickup.c
Go to the documentation of this file.
00001 /*
00002  * Asterisk -- An open source telephony toolkit.
00003  *
00004  * Copyright (C) 2005, Joshua Colp
00005  *
00006  * Joshua Colp <jcolp@digium.com>
00007  *
00008  * Portions merged from app_pickupchan, which was
00009  * Copyright (C) 2008, Gary Cook
00010  *
00011  * See http://www.asterisk.org for more information about
00012  * the Asterisk project. Please do not directly contact
00013  * any of the maintainers of this project for assistance;
00014  * the project provides a web site, mailing lists and IRC
00015  * channels for your use.
00016  *
00017  * This program is free software, distributed under the terms of
00018  * the GNU General Public License Version 2. See the LICENSE file
00019  * at the top of the source tree.
00020  */
00021 
00022 /*! \file
00023  *
00024  * \brief Directed Call Pickup Support
00025  *
00026  * \author Joshua Colp <jcolp@digium.com>
00027  * \author Gary Cook
00028  *
00029  * \ingroup applications
00030  */
00031 
00032 #include "asterisk.h"
00033 
00034 ASTERISK_FILE_VERSION(__FILE__, "$Revision: 318735 $")
00035 
00036 #include "asterisk/file.h"
00037 #include "asterisk/channel.h"
00038 #include "asterisk/pbx.h"
00039 #include "asterisk/module.h"
00040 #include "asterisk/lock.h"
00041 #include "asterisk/app.h"
00042 #include "asterisk/features.h"
00043 
00044 #define PICKUPMARK "PICKUPMARK"
00045 
00046 /*** DOCUMENTATION
00047    <application name="Pickup" language="en_US">
00048       <synopsis>
00049          Directed extension call pickup.
00050       </synopsis>
00051       <syntax argsep="&amp;">
00052          <parameter name="ext" argsep="@" required="true">
00053             <argument name="extension" required="true"/>
00054             <argument name="context" />
00055          </parameter>
00056          <parameter name="ext2" argsep="@" multiple="true">
00057             <argument name="extension2" required="true"/>
00058             <argument name="context2"/>
00059          </parameter>
00060       </syntax>
00061       <description>
00062          <para>This application can pickup any ringing channel that is calling
00063          the specified <replaceable>extension</replaceable>. If no <replaceable>context</replaceable>
00064          is specified, the current context will be used. If you use the special string <literal>PICKUPMARK</literal>
00065          for the context parameter, for example 10@PICKUPMARK, this application
00066          tries to find a channel which has defined a <variable>PICKUPMARK</variable>
00067          channel variable with the same value as <replaceable>extension</replaceable>
00068          (in this example, <literal>10</literal>). When no parameter is specified, the application
00069          will pickup a channel matching the pickup group of the active channel.</para>
00070       </description>
00071    </application>
00072    <application name="PickupChan" language="en_US">
00073       <synopsis>
00074          Pickup a ringing channel.
00075       </synopsis>
00076       <syntax argsep="&amp;">
00077          <parameter name="channel" required="true" />
00078          <parameter name="channel2" multiple="true" />
00079       </syntax>
00080       <description>
00081          <para>This will pickup a specified <replaceable>channel</replaceable> if ringing.</para>
00082       </description>
00083    </application>
00084  ***/
00085 
00086 static const char *app = "Pickup";
00087 static const char *app2 = "PickupChan";
00088 /*! \todo This application should return a result code, like PICKUPRESULT */
00089 
00090 /* Helper function that determines whether a channel is capable of being picked up */
00091 static int can_pickup(struct ast_channel *chan)
00092 {
00093    if (!chan->pbx && !chan->masq &&
00094       !ast_test_flag(chan, AST_FLAG_ZOMBIE) &&
00095       (chan->_state == AST_STATE_RINGING ||
00096        chan->_state == AST_STATE_RING ||
00097        chan->_state == AST_STATE_DOWN)) {
00098       return 1;
00099    }
00100    return 0;
00101 }
00102 
00103 /*! \brief Helper Function to walk through ALL channels checking NAME and STATE */
00104 static struct ast_channel *my_ast_get_channel_by_name_locked(const char *channame)
00105 {
00106    struct ast_channel *chan;
00107    char *chkchan;
00108    size_t channame_len, chkchan_len;
00109 
00110    channame_len = strlen(channame);
00111 
00112    /* Check if channel name contains a '-'.
00113     * In this case the channel name will be interpreted as full channel name.
00114     */
00115    if (strchr(channame, '-')) {
00116       /* check full channel name */
00117       chkchan_len = channame_len;
00118       chkchan = (char *)channame;
00119    } else {
00120       /* need to append a '-' for the comparison so we check full channel name,
00121        * i.e SIP/hgc- , use a temporary variable so original stays the same for
00122        * debugging.
00123        */
00124       chkchan_len = channame_len + 1;
00125       chkchan = alloca(chkchan_len + 1);
00126       strcpy(chkchan, channame);
00127       strcat(chkchan, "-");
00128    }
00129 
00130    for (chan = ast_walk_channel_by_name_prefix_locked(NULL, channame, channame_len);
00131        chan;
00132        chan = ast_walk_channel_by_name_prefix_locked(chan, channame, channame_len)) {
00133       if (!strncasecmp(chan->name, chkchan, chkchan_len) && can_pickup(chan)) {
00134          return chan;
00135       }
00136       ast_channel_unlock(chan);
00137    }
00138    return NULL;
00139 }
00140 
00141 /*! \brief Attempt to pick up specified channel named , does not use context */
00142 static int pickup_by_channel(struct ast_channel *chan, char *pickup)
00143 {
00144    int res = 0;
00145    struct ast_channel *target;
00146 
00147    if (!(target = my_ast_get_channel_by_name_locked(pickup)))
00148       return -1;
00149 
00150    /* Just check that we are not picking up the SAME as target */
00151    if (chan != target) {
00152       res = ast_do_pickup(chan, target);
00153    }
00154    ast_channel_unlock(target);
00155 
00156    return res;
00157 }
00158 
00159 struct pickup_criteria {
00160    const char *exten;
00161    const char *context;
00162    struct ast_channel *chan;
00163 };
00164 
00165 static int find_by_exten(struct ast_channel *c, void *data)
00166 {
00167    struct pickup_criteria *info = data;
00168 
00169    return (!strcasecmp(c->macroexten, info->exten) || !strcasecmp(c->exten, info->exten)) &&
00170       !strcasecmp(c->dialcontext, info->context) &&
00171       (info->chan != c) && can_pickup(c);
00172 }
00173 
00174 /* Attempt to pick up specified extension with context */
00175 static int pickup_by_exten(struct ast_channel *chan, const char *exten, const char *context)
00176 {
00177    struct ast_channel *target = NULL;
00178    struct pickup_criteria search = {
00179       .exten = exten,
00180       .context = context,
00181       .chan = chan,
00182    };
00183 
00184    target = ast_channel_search_locked(find_by_exten, &search);
00185 
00186    if (target) {
00187       int res = ast_do_pickup(chan, target);
00188       ast_channel_unlock(target);
00189       return res;
00190    }
00191 
00192    return -1;
00193 }
00194 
00195 static int find_by_mark(struct ast_channel *c, void *data)
00196 {
00197    const char *mark = data;
00198    const char *tmp;
00199 
00200    return (tmp = pbx_builtin_getvar_helper(c, PICKUPMARK)) &&
00201       !strcasecmp(tmp, mark) &&
00202       can_pickup(c);
00203 }
00204 
00205 /* Attempt to pick up specified mark */
00206 static int pickup_by_mark(struct ast_channel *chan, const char *mark)
00207 {
00208    struct ast_channel *target = ast_channel_search_locked(find_by_mark, (char *) mark);
00209 
00210    if (target) {
00211       int res = ast_do_pickup(chan, target);
00212       ast_channel_unlock(target);
00213       return res;
00214    }
00215 
00216    return -1;
00217 }
00218 
00219 static int find_by_group(struct ast_channel *c, void *data)
00220 {
00221    struct ast_channel *chan = data;
00222 
00223    return (c != chan) && (chan->pickupgroup & c->callgroup) && can_pickup(c);
00224 }
00225 
00226 static int pickup_by_group(struct ast_channel *chan)
00227 {
00228    struct ast_channel *target = ast_channel_search_locked(find_by_group, chan);
00229 
00230    if (target) {
00231       int res;
00232 
00233       ast_log(LOG_NOTICE, "%s, pickup attempt by %s\n", target->name, chan->name);
00234       res = ast_do_pickup(chan, target);
00235       ast_channel_unlock(target);
00236       return res;
00237    }
00238 
00239    return -1;
00240 }
00241 
00242 /* application entry point for Pickup() */
00243 static int pickup_exec(struct ast_channel *chan, void *data)
00244 {
00245    int res = 0;
00246    char *tmp = ast_strdupa(data);
00247    char *exten = NULL, *context = NULL;
00248 
00249    if (ast_strlen_zero(data)) {
00250       res = pickup_by_group(chan);
00251       return res;
00252    }
00253 
00254    /* Parse extension (and context if there) */
00255    while (!ast_strlen_zero(tmp) && (exten = strsep(&tmp, "&"))) {
00256       if ((context = strchr(exten, '@')))
00257          *context++ = '\0';
00258       if (!ast_strlen_zero(context) && !strcasecmp(context, PICKUPMARK)) {
00259          if (!pickup_by_mark(chan, exten))
00260             break;
00261       } else {
00262          if (!pickup_by_exten(chan, exten, !ast_strlen_zero(context) ? context : chan->context))
00263             break;
00264       }
00265       ast_log(LOG_NOTICE, "No target channel found for %s.\n", exten);
00266    }
00267 
00268    return res;
00269 }
00270 
00271 /* application entry point for PickupChan() */
00272 static int pickupchan_exec(struct ast_channel *chan, void *data)
00273 {
00274    int res = 0;
00275    char *tmp = ast_strdupa(data);
00276    char *pickup = NULL;
00277 
00278    if (ast_strlen_zero(data)) {
00279       ast_log(LOG_WARNING, "PickupChan requires an argument (channel)!\n");
00280       return -1;  
00281    }
00282 
00283    /* Parse channel */
00284    while (!ast_strlen_zero(tmp) && (pickup = strsep(&tmp, "&"))) {
00285       if (!strncasecmp(chan->name, pickup, strlen(pickup))) {
00286          ast_log(LOG_NOTICE, "Cannot pickup your own channel %s.\n", pickup);
00287       } else {
00288          if (!pickup_by_channel(chan, pickup)) {
00289             break;
00290          }
00291          ast_log(LOG_NOTICE, "No target channel found for %s.\n", pickup);
00292       }
00293    }
00294 
00295    return res;
00296 }
00297 
00298 static int unload_module(void)
00299 {
00300    int res;
00301 
00302    res = ast_unregister_application(app);
00303    res |= ast_unregister_application(app2);
00304 
00305    return res;
00306 }
00307 
00308 static int load_module(void)
00309 {
00310    int res;
00311 
00312    res = ast_register_application_xml(app, pickup_exec);
00313    res |= ast_register_application_xml(app2, pickupchan_exec);
00314 
00315    return res;
00316 }
00317 
00318 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Directed Call Pickup Application");