2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 2013, Digium, Inc.
6 * Jonathan Rose <jrose@digium.com>
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.
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.
21 * \brief Parking Entry, Exit, and other assorted controls.
23 * \author Jonathan Rose <jrose@digium.com>
27 #include "asterisk/logger.h"
28 #include "res_parking.h"
29 #include "asterisk/astobj2.h"
30 #include "asterisk/utils.h"
31 #include "asterisk/manager.h"
32 #include "asterisk/test.h"
33 #include "asterisk/features.h"
34 #include "asterisk/bridging_basic.h"
36 struct ast_bridge *parking_lot_get_bridge(struct parking_lot *lot)
38 struct ast_bridge *lot_bridge;
40 if (lot->parking_bridge) {
41 ao2_ref(lot->parking_bridge, +1);
42 return lot->parking_bridge;
45 lot_bridge = bridge_parking_new(lot);
50 /* The parking lot needs a reference to the bridge as well. */
51 lot->parking_bridge = lot_bridge;
52 ao2_ref(lot->parking_bridge, +1);
57 int parking_channel_set_roles(struct ast_channel *chan, struct parking_lot *lot, int force_ringing)
59 if (ast_channel_add_bridge_role(chan, "holding_participant")) {
64 if (ast_channel_set_bridge_role_option(chan, "holding_participant", "idle_mode", "ringing")) {
68 if (ast_channel_set_bridge_role_option(chan, "holding_participant", "idle_mode", "musiconhold")) {
71 if (!ast_strlen_zero(lot->cfg->mohclass)) {
72 if (ast_channel_set_bridge_role_option(chan, "holding_participant", "moh_class", lot->cfg->mohclass)) {
81 struct parking_limits_pvt {
82 struct parked_user *user;
85 int unpark_parked_user(struct parked_user *pu)
88 ao2_unlink(pu->lot->parked_users, pu);
89 parking_lot_remove_if_unused(pu->lot);
96 int parking_lot_get_space(struct parking_lot *lot, int target_override)
100 struct ao2_iterator i;
101 struct parked_user *user;
104 if (lot->cfg->parkfindnext) {
105 /* Use next_space if the lot already has next_space set; otherwise use lot start. */
106 original_target = lot->next_space ? lot->next_space : lot->cfg->parking_start;
108 original_target = lot->cfg->parking_start;
111 if (target_override >= lot->cfg->parking_start && target_override <= lot->cfg->parking_stop) {
112 original_target = target_override;
115 current_target = original_target;
117 wrap = lot->cfg->parking_start;
119 i = ao2_iterator_init(lot->parked_users, 0);
120 while ((user = ao2_iterator_next(&i))) {
121 /* Increment the wrap on each pass until we find an empty space */
122 if (wrap == user->parking_space) {
126 if (user->parking_space < current_target) {
127 /* It's lower than the anticipated target, so we haven't reached the target yet. */
132 if (user->parking_space > current_target) {
133 /* The current target is usable because all items below have been read and the next target is higher than the one we want. */
138 /* We found one already parked here. */
142 ao2_iterator_destroy(&i);
144 if (current_target <= lot->cfg->parking_stop) {
145 return current_target;
148 if (wrap <= lot->cfg->parking_stop) {
155 static int retrieve_parked_user_targeted(void *obj, void *arg, int flags)
158 struct parked_user *user = obj;
159 if (user->parking_space == *target) {
166 struct parked_user *parking_lot_retrieve_parked_user(struct parking_lot *lot, int target)
168 RAII_VAR(struct parked_user *, user, NULL, ao2_cleanup);
171 user = ao2_callback(lot->parked_users, 0, NULL, NULL);
173 user = ao2_callback(lot->parked_users, 0, retrieve_parked_user_targeted, &target);
181 if (user->resolution != PARK_UNSET) {
182 /* Abandon. Something else has resolved the parked user before we got to it. */
187 ao2_unlink(lot->parked_users, user);
188 user->resolution = PARK_ANSWERED;
191 parking_lot_remove_if_unused(user->lot);
193 /* Bump the ref count by 1 since the RAII_VAR will eat the reference otherwise */
198 void parked_call_retrieve_enable_features(struct ast_channel *chan, struct parking_lot *lot, int recipient_mode)
200 /* Enabling features here should be additive to features that are already on the channel. */
201 struct ast_flags feature_flags = { 0 };
202 struct ast_flags *existing_features;
204 ast_channel_lock(chan);
205 existing_features = ast_bridge_features_ds_get(chan);
207 if (existing_features) {
208 feature_flags = *existing_features;
211 if (lot->cfg->parkedcalltransfers & recipient_mode) {
212 ast_set_flag(&feature_flags, AST_FEATURE_REDIRECT);
213 ast_set_flag(&feature_flags, AST_FEATURE_ATXFER);
216 if (lot->cfg->parkedcallreparking & recipient_mode) {
217 ast_set_flag(&feature_flags, AST_FEATURE_PARKCALL);
220 if (lot->cfg->parkedcallhangup & recipient_mode) {
221 ast_set_flag(&feature_flags, AST_FEATURE_DISCONNECT);
224 if (lot->cfg->parkedcallrecording & recipient_mode) {
225 ast_set_flag(&feature_flags, AST_FEATURE_AUTOMIXMON);
228 ast_bridge_features_ds_set(chan, &feature_flags);
229 ast_channel_unlock(chan);
234 void flatten_dial_string(char *dialstring)
238 for (i = 0; dialstring[i]; i++) {
239 if (dialstring[i] == '/') {
240 /* The underscore is the flattest character of all. */
246 int comeback_goto(struct parked_user *pu, struct parking_lot *lot)
248 struct ast_channel *chan = pu->chan;
249 char *peername_flat = ast_strdupa(pu->parker_dial_string);
251 /* Flatten the peername so that it can be used for performing the timeout PBX operations */
252 flatten_dial_string(peername_flat);
254 if (lot->cfg->comebacktoorigin) {
255 if (ast_exists_extension(chan, PARK_DIAL_CONTEXT, peername_flat, 1, NULL)) {
256 ast_async_goto(chan, PARK_DIAL_CONTEXT, peername_flat, 1);
259 ast_log(LOG_ERROR, "Can not start %s at %s,%s,1 because extension does not exist. Terminating call.\n",
260 ast_channel_name(chan), PARK_DIAL_CONTEXT, peername_flat);
265 if (ast_exists_extension(chan, lot->cfg->comebackcontext, peername_flat, 1, NULL)) {
266 ast_async_goto(chan, lot->cfg->comebackcontext, peername_flat, 1);
270 if (ast_exists_extension(chan, lot->cfg->comebackcontext, "s", 1, NULL)) {
271 ast_verb(2, "Could not start %s at %s,%s,1. Using 's@%s' instead.\n", ast_channel_name(chan),
272 lot->cfg->comebackcontext, peername_flat, lot->cfg->comebackcontext);
273 ast_async_goto(chan, lot->cfg->comebackcontext, "s", 1);
277 ast_verb(2, "Can not start %s at %s,%s,1 and exten 's@%s' does not exist. Using 's@default'\n",
278 ast_channel_name(chan),
279 lot->cfg->comebackcontext, peername_flat, lot->cfg->comebackcontext);
280 ast_async_goto(chan, "default", "s", 1);