Asterisk - The Open Source Telephony Project GIT-master-754dea3
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Modules Pages
app_softhangup.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 SoftHangup application
22 *
23 * \author Mark Spencer <markster@digium.com>
24 *
25 * \ingroup applications
26 */
27
28/*** MODULEINFO
29 <support_level>core</support_level>
30 ***/
31
32#include "asterisk.h"
33
34#include "asterisk/file.h"
35#include "asterisk/channel.h"
36#include "asterisk/pbx.h"
37#include "asterisk/module.h"
38#include "asterisk/lock.h"
39#include "asterisk/app.h"
40
41/*** DOCUMENTATION
42 <application name="SoftHangup" language="en_US">
43 <since>
44 <version>0.4.0</version>
45 </since>
46 <synopsis>
47 Hangs up the requested channel.
48 </synopsis>
49 <syntax>
50 <parameter name="Technology/Resource" required="true" />
51 <parameter name="options">
52 <optionlist>
53 <option name="a">
54 <para>Hang up all channels on a specified device instead of a single resource</para>
55 </option>
56 </optionlist>
57 </parameter>
58 </syntax>
59 <description>
60 <para>Hangs up the requested channel. If there are no channels to
61 hangup, the application will report it.</para>
62 </description>
63 </application>
64
65 ***/
66
67static char *app = "SoftHangup";
68
69enum {
70 OPTION_ALL = (1 << 0),
71};
72
75});
76
77static int softhangup_exec(struct ast_channel *chan, const char *data)
78{
79 struct ast_channel *c = NULL;
80 char *cut, *opts[0];
81 char name[AST_CHANNEL_NAME] = "", *parse;
82 struct ast_flags flags = {0};
83 int lenmatch;
85 AST_APP_ARG(channel);
87 );
88 struct ast_channel_iterator *iter;
89
90 if (ast_strlen_zero(data)) {
91 ast_log(LOG_WARNING, "SoftHangup requires an argument (Technology/resource)\n");
92 return 0;
93 }
94
95 parse = ast_strdupa(data);
97
98 if (args.argc == 2)
99 ast_app_parse_options(app_opts, &flags, opts, args.options);
100 lenmatch = strlen(args.channel);
101
102 if (!(iter = ast_channel_iterator_by_name_new(args.channel, lenmatch))) {
103 return -1;
104 }
105
106 while ((c = ast_channel_iterator_next(iter))) {
109 if (ast_test_flag(&flags, OPTION_ALL)) {
110 /* CAPI is set up like CAPI[foo/bar]/clcnt */
111 if (!strcmp(ast_channel_tech(c)->type, "CAPI")) {
112 cut = strrchr(name, '/');
113 /* Basically everything else is Foo/Bar-Z */
114 } else {
115 /* use strrchr() because Foo/Bar-Z could actually be Foo/B-a-r-Z */
116 cut = strrchr(name,'-');
117 }
118 /* Get rid of what we've cut */
119 if (cut)
120 *cut = 0;
121 }
122 if (!strcasecmp(name, args.channel)) {
123 ast_verb(4, "Soft hanging %s up.\n", ast_channel_name(c));
125 if (!ast_test_flag(&flags, OPTION_ALL)) {
128 break;
129 }
130 }
133 }
134
136
137 return 0;
138}
139
140static int unload_module(void)
141{
143}
144
145static int load_module(void)
146{
148}
149
150AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Hangs up the requested channel");
static int softhangup_exec(struct ast_channel *chan, const char *data)
@ OPTION_ALL
static const struct ast_app_option app_opts[128]
static char * app
static int load_module(void)
static int unload_module(void)
Asterisk main include file. File version handling, generic pbx functions.
#define ast_strdupa(s)
duplicate a string in memory from the stack
Definition: astmm.h:298
#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)
struct ast_channel_iterator * ast_channel_iterator_by_name_new(const char *name, size_t name_len)
Create a new channel iterator based on name.
Definition: channel.c:1415
struct ast_channel_iterator * ast_channel_iterator_destroy(struct ast_channel_iterator *i)
Destroy a channel iterator.
Definition: channel.c:1387
#define ast_channel_lock(chan)
Definition: channel.h:2970
struct ast_channel * ast_channel_iterator_next(struct ast_channel_iterator *i)
Get the next channel for a channel iterator.
Definition: channel.c:1449
int ast_softhangup(struct ast_channel *chan, int cause)
Softly hangup up a channel.
Definition: channel.c:2500
#define AST_CHANNEL_NAME
Definition: channel.h:173
#define ast_channel_unref(c)
Decrease channel reference count.
Definition: channel.h:3006
const struct ast_channel_tech * ast_channel_tech(const struct ast_channel *chan)
#define ast_channel_unlock(chan)
Definition: channel.h:2971
@ AST_SOFTHANGUP_EXPLICIT
Definition: channel.h:1168
Generic File Format Support. Should be included by clients of the file handling routines....
static const char name[]
Definition: format_mp3.c:68
Application convenience functions, designed to give consistent look and feel to Asterisk apps.
#define AST_APP_ARG(name)
Define an application argument.
#define AST_APP_OPTIONS(holder, options...)
Declares an array of options for an application.
#define AST_DECLARE_APP_ARGS(name, arglist)
Declare a structure to hold an application's arguments.
#define AST_STANDARD_APP_ARGS(args, parse)
Performs the 'standard' argument separation process for an application.
#define AST_APP_OPTION(option, flagno)
Declares an application option that does not accept an argument.
int ast_app_parse_options(const struct ast_app_option *options, struct ast_flags *flags, char **args, char *optstr)
Parses a string containing application options and sets flags/arguments.
Definition: main/app.c:3066
#define ast_verb(level,...)
#define LOG_WARNING
Asterisk locking-related definitions:
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.
#define NULL
Definition: resample.c:96
static force_inline int attribute_pure ast_strlen_zero(const char *s)
Definition: strings.h:65
void ast_copy_string(char *dst, const char *src, size_t size)
Size-limited null-terminating string copy.
Definition: strings.h:425
Main Channel structure associated with a channel.
Structure used to handle boolean flags.
Definition: utils.h:199
unsigned int flags
Definition: utils.h:200
const char * args
static struct test_options options
static struct test_val c
#define ast_test_flag(p, flag)
Definition: utils.h:63