Mon Sep 20 2010 00:19:44

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: 218238 $")
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>
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 /* Perform actual pickup between two channels */
00091 static int pickup_do(struct ast_channel *chan, struct ast_channel *target)
00092 {
00093    int res = 0;
00094 
00095    ast_debug(1, "Call pickup on '%s' by '%s'\n", target->name, chan->name);
00096 
00097    if ((res = ast_answer(chan))) {
00098       ast_log(LOG_WARNING, "Unable to answer '%s'\n", chan->name);
00099       return -1;
00100    }
00101 
00102    if ((res = ast_queue_control(chan, AST_CONTROL_ANSWER))) {
00103       ast_log(LOG_WARNING, "Unable to queue answer on '%s'\n", chan->name);
00104       return -1;
00105    }
00106 
00107    if ((res = ast_channel_masquerade(target, chan))) {
00108       ast_log(LOG_WARNING, "Unable to masquerade '%s' into '%s'\n", chan->name, target->name);
00109       return -1;
00110    }
00111 
00112    return res;
00113 }
00114 
00115 /* Helper function that determines whether a channel is capable of being picked up */
00116 static int can_pickup(struct ast_channel *chan)
00117 {
00118    if (!chan->pbx && (chan->_state == AST_STATE_RINGING || chan->_state == AST_STATE_RING || chan->_state == AST_STATE_DOWN))
00119       return 1;
00120    else
00121       return 0;
00122 }
00123 
00124 /*! \brief Helper Function to walk through ALL channels checking NAME and STATE */
00125 static struct ast_channel *my_ast_get_channel_by_name_locked(const char *channame)
00126 {
00127    struct ast_channel *chan;
00128    char *chkchan;
00129    size_t channame_len, chkchan_len;
00130 
00131    channame_len = strlen(channame);
00132    chkchan_len = channame_len + 2;
00133 
00134    chkchan = alloca(chkchan_len);
00135 
00136    /* need to append a '-' for the comparison so we check full channel name,
00137     * i.e SIP/hgc- , use a temporary variable so original stays the same for
00138     * debugging.
00139     */
00140    strcpy(chkchan, channame);
00141    strcat(chkchan, "-");
00142 
00143    for (chan = ast_walk_channel_by_name_prefix_locked(NULL, channame, channame_len);
00144        chan;
00145        chan = ast_walk_channel_by_name_prefix_locked(chan, channame, channame_len)) {
00146       if (!strncasecmp(chan->name, chkchan, chkchan_len) && can_pickup(chan)) {
00147          return chan;
00148       }
00149       ast_channel_unlock(chan);
00150    }
00151    return NULL;
00152 }
00153 
00154 /*! \brief Attempt to pick up specified channel named , does not use context */
00155 static int pickup_by_channel(struct ast_channel *chan, char *pickup)
00156 {
00157    int res = 0;
00158    struct ast_channel *target;
00159 
00160    if (!(target = my_ast_get_channel_by_name_locked(pickup)))
00161       return -1;
00162 
00163    /* Just check that we are not picking up the SAME as target */
00164    if (chan->name != target->name && chan != target) {
00165       res = pickup_do(chan, target);
00166    }
00167    ast_channel_unlock(target);
00168 
00169    return res;
00170 }
00171 
00172 struct pickup_criteria {
00173    const char *exten;
00174    const char *context;
00175    struct ast_channel *chan;
00176 };
00177 
00178 static int find_by_exten(struct ast_channel *c, void *data)
00179 {
00180    struct pickup_criteria *info = data;
00181 
00182    return (!strcasecmp(c->macroexten, info->exten) || !strcasecmp(c->exten, info->exten)) &&
00183       !strcasecmp(c->dialcontext, info->context) &&
00184       (info->chan != c) && can_pickup(c);
00185 }
00186 
00187 /* Attempt to pick up specified extension with context */
00188 static int pickup_by_exten(struct ast_channel *chan, const char *exten, const char *context)
00189 {
00190    struct ast_channel *target = NULL;
00191    struct pickup_criteria search = {
00192       .exten = exten,
00193       .context = context,
00194       .chan = chan,
00195    };
00196 
00197    target = ast_channel_search_locked(find_by_exten, &search);
00198 
00199    if (target) {
00200       int res = pickup_do(chan, target);
00201       ast_channel_unlock(target);
00202       target = NULL;
00203       return res;
00204    }
00205 
00206    return -1;
00207 }
00208 
00209 static int find_by_mark(struct ast_channel *c, void *data)
00210 {
00211    const char *mark = data;
00212    const char *tmp;
00213 
00214    return (tmp = pbx_builtin_getvar_helper(c, PICKUPMARK)) &&
00215       !strcasecmp(tmp, mark) &&
00216       can_pickup(c);
00217 }
00218 
00219 /* Attempt to pick up specified mark */
00220 static int pickup_by_mark(struct ast_channel *chan, const char *mark)
00221 {
00222    struct ast_channel *target = ast_channel_search_locked(find_by_mark, (char *) mark);
00223 
00224    if (target) {
00225       int res = pickup_do(chan, target);
00226       ast_channel_unlock(target);
00227       target = NULL;
00228       return res;
00229    }
00230 
00231    return -1;
00232 }
00233 
00234 /* application entry point for Pickup() */
00235 static int pickup_exec(struct ast_channel *chan, void *data)
00236 {
00237    int res = 0;
00238    char *tmp = ast_strdupa(data);
00239    char *exten = NULL, *context = NULL;
00240 
00241    if (ast_strlen_zero(data)) {
00242       res = ast_pickup_call(chan);
00243       return res;
00244    }
00245    
00246    /* Parse extension (and context if there) */
00247    while (!ast_strlen_zero(tmp) && (exten = strsep(&tmp, "&"))) {
00248       if ((context = strchr(exten, '@')))
00249          *context++ = '\0';
00250       if (!ast_strlen_zero(context) && !strcasecmp(context, PICKUPMARK)) {
00251          if (!pickup_by_mark(chan, exten))
00252             break;
00253       } else {
00254          if (!pickup_by_exten(chan, exten, !ast_strlen_zero(context) ? context : chan->context))
00255             break;
00256       }
00257       ast_log(LOG_NOTICE, "No target channel found for %s.\n", exten);
00258    }
00259 
00260    return res;
00261 }
00262 
00263 /* application entry point for PickupChan() */
00264 static int pickupchan_exec(struct ast_channel *chan, void *data)
00265 {
00266    int res = 0;
00267    char *tmp = ast_strdupa(data);
00268    char *pickup = NULL;
00269 
00270    if (ast_strlen_zero(data)) {
00271       ast_log(LOG_WARNING, "PickupChan requires an argument (channel)!\n");
00272       return -1;  
00273    }
00274 
00275    /* Parse channel */
00276    while (!ast_strlen_zero(tmp) && (pickup = strsep(&tmp, "&"))) {
00277       if (!strncasecmp(chan->name, pickup, strlen(pickup))) {
00278          ast_log(LOG_NOTICE, "Cannot pickup your own channel %s.\n", pickup);
00279       } else {
00280          if (!pickup_by_channel(chan, pickup)) {
00281             break;
00282          }
00283          ast_log(LOG_NOTICE, "No target channel found for %s.\n", pickup);
00284       }
00285    }
00286 
00287    return res;
00288 }
00289 
00290 static int unload_module(void)
00291 {
00292    int res;
00293 
00294    res = ast_unregister_application(app);
00295    res |= ast_unregister_application(app2);
00296 
00297    return res;
00298 }
00299 
00300 static int load_module(void)
00301 {
00302    int res;
00303 
00304    res = ast_register_application_xml(app, pickup_exec);
00305    res |= ast_register_application_xml(app2, pickupchan_exec);
00306 
00307    return res;
00308 }
00309 
00310 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Directed Call Pickup Application");