summaryrefslogtreecommitdiff
path: root/apps/app_directed_pickup.c
diff options
context:
space:
mode:
authorDavid Vossel <dvossel@digium.com>2010-03-02 21:58:03 +0000
committerDavid Vossel <dvossel@digium.com>2010-03-02 21:58:03 +0000
commitb5c98d640a5200787d819c9f6bb9f14815a61213 (patch)
treeadf9f7aa53c1677e19bc29f02c142c1fb3fdae26 /apps/app_directed_pickup.c
parent491ea82b6d34c839cb67a6058d23c6d8d3cbb4db (diff)
adds 'p' option to PickupChan
The 'p' option allows the PickupChan app to pickup a ringing phone by looking for the first match to a partial channel name rather than requiring a full match. (closes issue #16613) Reported by: syspert Patches: pickipbycallid.patch uploaded by syspert (license 938) pickupbycallerid_v2.patch uploaded by dvossel (license 671) Tested by: dvossel, syspert git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@250141 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_directed_pickup.c')
-rw-r--r--apps/app_directed_pickup.c66
1 files changed, 60 insertions, 6 deletions
diff --git a/apps/app_directed_pickup.c b/apps/app_directed_pickup.c
index 92e2938f4..5ad2e3006 100644
--- a/apps/app_directed_pickup.c
+++ b/apps/app_directed_pickup.c
@@ -79,6 +79,13 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<syntax>
<parameter name="channel" required="true" />
<parameter name="channel2" multiple="true" />
+ <parameter name="options" required="false">
+ <optionlist>
+ <option name="p">
+ <para>Channel name specified partial name. Used when find channel by callid.</para>
+ </option>
+ </optionlist>
+ </parameter>
</syntax>
<description>
<para>This will pickup a specified <replaceable>channel</replaceable> if ringing.</para>
@@ -303,24 +310,71 @@ static int pickup_exec(struct ast_channel *chan, const char *data)
return res;
}
+/* Find channel for pick up specified by partial channel name */
+static int find_by_part(void *obj, void *arg, void *data, int flags)
+{
+ struct ast_channel *c = obj;
+ const char *part = data;
+ int res = 0;
+ int len = strlen(part);
+
+ ast_channel_lock(c);
+ if (len <= strlen(c->name)) {
+ res = !(strncmp(c->name, part, len)) && (can_pickup(c));
+ }
+ ast_channel_unlock(c);
+
+ return res ? CMP_MATCH | CMP_STOP : 0;
+}
+
+/* Attempt to pick up specified by partial channel name */
+static int pickup_by_part(struct ast_channel *chan, const char *part)
+{
+ struct ast_channel *target;
+ int res = -1;
+
+ if ((target = ast_channel_callback(find_by_part, NULL, (char *) part, 0))) {
+ ast_channel_lock(target);
+ res = pickup_do(chan, target);
+ ast_channel_unlock(target);
+ target = ast_channel_unref(target);
+ }
+
+ return res;
+}
+
/* application entry point for PickupChan() */
static int pickupchan_exec(struct ast_channel *chan, const char *data)
{
int res = 0;
- char *tmp = ast_strdupa(data);
+ int partial_pickup = 0;
char *pickup = NULL;
-
- if (ast_strlen_zero(data)) {
+ char *parse = ast_strdupa(data);
+ AST_DECLARE_APP_ARGS(args,
+ AST_APP_ARG(channel);
+ AST_APP_ARG(options);
+ );
+ AST_STANDARD_APP_ARGS(args, parse);
+
+ if (ast_strlen_zero(args.channel)) {
ast_log(LOG_WARNING, "PickupChan requires an argument (channel)!\n");
- return -1;
+ return -1;
+ }
+
+ if (!ast_strlen_zero(args.options) && strchr(args.options, 'p')) {
+ partial_pickup = 1;
}
/* Parse channel */
- while (!ast_strlen_zero(tmp) && (pickup = strsep(&tmp, "&"))) {
+ while (!ast_strlen_zero(args.channel) && (pickup = strsep(&args.channel, "&"))) {
if (!strncasecmp(chan->name, pickup, strlen(pickup))) {
ast_log(LOG_NOTICE, "Cannot pickup your own channel %s.\n", pickup);
} else {
- if (!pickup_by_channel(chan, pickup)) {
+ if (partial_pickup) {
+ if (!pickup_by_part(chan, pickup)) {
+ break;
+ }
+ } else if (!pickup_by_channel(chan, pickup)) {
break;
}
ast_log(LOG_NOTICE, "No target channel found for %s.\n", pickup);