2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2005, Digium, Inc.
6 * Mark Spencer <markster@digium.com>
7 * James Golovich <james@gnuinter.net>
9 * See http://www.asterisk.org for more information about
10 * the Asterisk project. Please do not directly contact
11 * any of the maintainers of this project for assistance;
12 * the project provides a web site, mailing lists and IRC
13 * channels for your use.
15 * This program is free software, distributed under the terms of
16 * the GNU General Public License Version 2. See the LICENSE file
17 * at the top of the source tree.
22 * \brief Check if Channel is Available
24 * \author Mark Spencer <markster@digium.com>
25 * \author James Golovich <james@gnuinter.net>
27 * \ingroup applications
31 <support_level>extended</support_level>
36 #include <sys/ioctl.h>
38 #include "asterisk/lock.h"
39 #include "asterisk/file.h"
40 #include "asterisk/channel.h"
41 #include "asterisk/pbx.h"
42 #include "asterisk/module.h"
43 #include "asterisk/app.h"
44 #include "asterisk/devicestate.h"
46 static const char app[] = "ChanIsAvail";
49 <application name="ChanIsAvail" language="en_US">
51 Check channel availability
54 <parameter name="Technology/Resource" required="true" argsep="&">
55 <argument name="Technology2/Resource2" multiple="true">
56 <para>Optional extra devices to check</para>
57 <para>If you need more than one enter them as
58 Technology2/Resource2&Technology3/Resource3&.....</para>
60 <para>Specification of the device(s) to check. These must be in the format of
61 <literal>Technology/Resource</literal>, where <replaceable>Technology</replaceable>
62 represents a particular channel driver, and <replaceable>Resource</replaceable>
63 represents a resource available to that particular channel driver.</para>
65 <parameter name="options" required="false">
68 <para>Check for all available channels, not only the first one</para>
71 <para>Consider the channel unavailable if the channel is in use at all</para>
73 <option name="t" implies="s">
74 <para>Simply checks if specified channels exist in the channel list</para>
80 <para>This application will check to see if any of the specified channels are available.</para>
81 <para>This application sets the following channel variables:</para>
83 <variable name="AVAILCHAN">
84 <para>The name of the available channel, if one exists</para>
86 <variable name="AVAILORIGCHAN">
87 <para>The canonical channel name that was used to create the channel</para>
89 <variable name="AVAILSTATUS">
90 <para>The device state for the device</para>
92 <variable name="AVAILCAUSECODE">
93 <para>The cause code returned when requesting the channel</para>
100 static int chanavail_exec(struct ast_channel *chan, const char *data)
102 int inuse=-1, option_state=0, string_compare=0, option_all_avail=0;
104 char *info, tmp[512], trychan[512], *peers, *tech, *number, *rest, *cur;
105 struct ast_str *tmp_availchan = ast_str_alloca(2048);
106 struct ast_str *tmp_availorig = ast_str_alloca(2048);
107 struct ast_str *tmp_availstat = ast_str_alloca(2048);
108 struct ast_str *tmp_availcause = ast_str_alloca(2048);
109 struct ast_channel *tempchan;
110 AST_DECLARE_APP_ARGS(args,
111 AST_APP_ARG(reqchans);
112 AST_APP_ARG(options);
115 if (ast_strlen_zero(data)) {
116 ast_log(LOG_WARNING, "ChanIsAvail requires an argument (DAHDI/1&DAHDI/2)\n");
120 info = ast_strdupa(data);
122 AST_STANDARD_APP_ARGS(args, info);
125 if (strchr(args.options, 'a')) {
126 option_all_avail = 1;
128 if (strchr(args.options, 's')) {
131 if (strchr(args.options, 't')) {
135 peers = args.reqchans;
139 /* remember where to start next time */
140 rest = strchr(cur, '&');
146 number = strchr(tech, '/');
148 ast_log(LOG_WARNING, "ChanIsAvail argument takes format ([technology]/[device])\n");
154 status = AST_DEVICE_UNKNOWN;
156 if (string_compare) {
157 /* ast_parse_device_state checks for "SIP/1234" as a channel name.
158 ast_device_state will ask the SIP driver for the channel state. */
160 snprintf(trychan, sizeof(trychan), "%s/%s",cur,number);
161 status = inuse = ast_parse_device_state(trychan);
162 } else if (option_state) {
163 /* If the pbx says in use then don't bother trying further.
164 This is to permit testing if someone's on a call, even if the
165 channel can permit more calls (ie callwaiting, sip calls, etc). */
167 snprintf(trychan, sizeof(trychan), "%s/%s",cur,number);
168 status = inuse = ast_device_state(trychan);
170 snprintf(tmp, sizeof(tmp), "%d", status);
171 ast_str_append(&tmp_availstat, 0, "%s%s", ast_str_strlen(tmp_availstat) ? "&" : "", tmp);
172 if ((inuse <= 1) && (tempchan = ast_request(tech, ast_channel_nativeformats(chan), NULL, chan, number, &status))) {
173 ast_str_append(&tmp_availchan, 0, "%s%s", ast_str_strlen(tmp_availchan) ? "&" : "", ast_channel_name(tempchan));
175 snprintf(tmp, sizeof(tmp), "%s/%s", tech, number);
176 ast_str_append(&tmp_availorig, 0, "%s%s", ast_str_strlen(tmp_availorig) ? "&" : "", tmp);
178 snprintf(tmp, sizeof(tmp), "%d", status);
179 ast_str_append(&tmp_availcause, 0, "%s%s", ast_str_strlen(tmp_availcause) ? "&" : "", tmp);
181 ast_hangup(tempchan);
184 if (!option_all_avail) {
192 pbx_builtin_setvar_helper(chan, "AVAILCHAN", ast_str_buffer(tmp_availchan));
193 /* Store the originally used channel too */
194 pbx_builtin_setvar_helper(chan, "AVAILORIGCHAN", ast_str_buffer(tmp_availorig));
195 pbx_builtin_setvar_helper(chan, "AVAILSTATUS", ast_str_buffer(tmp_availstat));
196 pbx_builtin_setvar_helper(chan, "AVAILCAUSECODE", ast_str_buffer(tmp_availcause));
201 static int unload_module(void)
203 return ast_unregister_application(app);
206 static int load_module(void)
208 return ast_register_application_xml(app, chanavail_exec) ?
209 AST_MODULE_LOAD_DECLINE : AST_MODULE_LOAD_SUCCESS;
212 AST_MODULE_INFO_STANDARD_EXTENDED(ASTERISK_GPL_KEY, "Check channel availability");