Asterisk - The Open Source Telephony Project GIT-master-8924258
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Modules Pages
app_flash.c
Go to the documentation of this file.
1/*
2 * Asterisk -- An open source telephony toolkit.
3 *
4 * Copyright (C) 1999 - 2005, Digium, Inc.
5 *
6 * Mark Spencer <markster@digium.com>
7 *
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
13 *
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
17 */
18
19/*! \file
20 *
21 * \brief App to flash a DAHDI trunk
22 *
23 * \author Mark Spencer <markster@digium.com>
24 *
25 * \ingroup applications
26 */
27
28/*** MODULEINFO
29 <depend>dahdi</depend>
30 <support_level>core</support_level>
31 ***/
32
33#include "asterisk.h"
34
35#include <dahdi/user.h>
36
37#include "asterisk/lock.h"
38#include "asterisk/file.h"
39#include "asterisk/channel.h"
40#include "asterisk/pbx.h"
41#include "asterisk/module.h"
42#include "asterisk/translate.h"
43#include "asterisk/image.h"
44
45/*** DOCUMENTATION
46 <application name="Flash" language="en_US">
47 <since>
48 <version>1.6.1.0</version>
49 </since>
50 <synopsis>
51 Flashes a DAHDI Trunk.
52 </synopsis>
53 <syntax />
54 <description>
55 <para>Performs a flash on a DAHDI trunk. This can be used to access features
56 provided on an incoming analogue circuit such as conference and call waiting.
57 Use with SendDTMF() to perform external transfers.</para>
58 </description>
59 <see-also>
60 <ref type="application">SendDTMF</ref>
61 </see-also>
62 </application>
63 ***/
64
65static char *app = "Flash";
66
67static inline int dahdi_wait_event(int fd)
68{
69 /* Avoid the silly dahdi_waitevent which ignores a bunch of events */
70 int i,j=0;
71 i = DAHDI_IOMUX_SIGEVENT;
72 if (ioctl(fd, DAHDI_IOMUX, &i) == -1) return -1;
73 if (ioctl(fd, DAHDI_GETEVENT, &j) == -1) return -1;
74 return j;
75}
76
77static int flash_exec(struct ast_channel *chan, const char *data)
78{
79 int res = -1;
80 int x;
81 struct dahdi_params dahdip;
82
83 if (strcasecmp(ast_channel_tech(chan)->type, "DAHDI")) {
84 ast_log(LOG_WARNING, "%s is not a DAHDI channel\n", ast_channel_name(chan));
85 return -1;
86 }
87
88 memset(&dahdip, 0, sizeof(dahdip));
89 res = ioctl(ast_channel_fd(chan, 0), DAHDI_GET_PARAMS, &dahdip);
90 if (!res) {
91 if (dahdip.sigtype & __DAHDI_SIG_FXS) {
92 x = DAHDI_FLASH;
93 res = ioctl(ast_channel_fd(chan, 0), DAHDI_HOOK, &x);
94 if (!res || (errno == EINPROGRESS)) {
95 if (res) {
96 /* Wait for the event to finish */
98 }
99 res = ast_safe_sleep(chan, 1000);
100 ast_verb(3, "Flashed channel %s\n", ast_channel_name(chan));
101 } else
102 ast_log(LOG_WARNING, "Unable to flash channel %s: %s\n", ast_channel_name(chan), strerror(errno));
103 } else
104 ast_log(LOG_WARNING, "%s is not an FXO Channel\n", ast_channel_name(chan));
105 } else
106 ast_log(LOG_WARNING, "Unable to get parameters of %s: %s\n", ast_channel_name(chan), strerror(errno));
107
108 return res;
109}
110
111static int unload_module(void)
112{
114}
115
116static int load_module(void)
117{
119}
120
121AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Flash channel application");
static int dahdi_wait_event(int fd)
Definition: app_flash.c:67
static char * app
Definition: app_flash.c:65
static int flash_exec(struct ast_channel *chan, const char *data)
Definition: app_flash.c:77
static int load_module(void)
Definition: app_flash.c:116
static int unload_module(void)
Definition: app_flash.c:111
Asterisk main include file. File version handling, generic pbx functions.
#define ast_log
Definition: astobj2.c:42
static const char type[]
Definition: chan_ooh323.c:109
General Asterisk PBX channel definitions.
const char * ast_channel_name(const struct ast_channel *chan)
int ast_channel_fd(const struct ast_channel *chan, int which)
const struct ast_channel_tech * ast_channel_tech(const struct ast_channel *chan)
int ast_safe_sleep(struct ast_channel *chan, int ms)
Wait for a specified amount of time, looking for hangups.
Definition: channel.c:1601
Generic File Format Support. Should be included by clients of the file handling routines....
General Asterisk channel definitions for image handling.
#define ast_verb(level,...)
#define LOG_WARNING
Asterisk locking-related definitions:
int errno
Asterisk module definitions.
#define AST_MODULE_INFO_STANDARD(keystr, desc)
Definition: module.h:581
#define ASTERISK_GPL_KEY
The text the key() function should return.
Definition: module.h:46
int ast_unregister_application(const char *app)
Unregister an application.
Definition: pbx_app.c:392
#define ast_register_application_xml(app, execute)
Register an application using XML documentation.
Definition: module.h:640
Core PBX routines and definitions.
Main Channel structure associated with a channel.
Support for translation of data formats. translate.c.