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 Call Parking CLI commands
23 * \author Jonathan Rose <jrose@digium.com>
28 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
30 #include "res_parking.h"
31 #include "asterisk/config.h"
32 #include "asterisk/config_options.h"
33 #include "asterisk/event.h"
34 #include "asterisk/utils.h"
35 #include "asterisk/module.h"
36 #include "asterisk/cli.h"
37 #include "asterisk/astobj2.h"
38 #include "asterisk/features.h"
39 #include "asterisk/manager.h"
41 static void display_parked_call(struct parked_user *user, int fd)
43 ast_cli(fd, " Space: %d\n", user->parking_space);
44 ast_cli(fd, " Channel: %s\n", ast_channel_name(user->chan));
45 ast_cli(fd, " Parker: %s\n", user->parker ? user->parker->name : "<unknown>");
49 static int display_parked_users_cb(void *obj, void *arg, int flags)
52 struct parked_user *user = obj;
53 display_parked_call(user, *fd);
57 static void display_parking_lot(struct parking_lot *lot, int fd)
59 ast_cli(fd, "Parking Lot: %s\n--------------------------------------------------------------------------\n", lot->name);
60 ast_cli(fd, "Parking Extension : %s\n", lot->cfg->parkext);
61 ast_cli(fd, "Parking Context : %s\n", lot->cfg->parking_con);
62 ast_cli(fd, "Parking Spaces : %d-%d\n", lot->cfg->parking_start, lot->cfg->parking_stop);
63 ast_cli(fd, "Parking Time : %u sec\n", lot->cfg->parkingtime);
64 ast_cli(fd, "Comeback to Origin : %s\n", lot->cfg->comebacktoorigin ? "yes" : "no");
65 ast_cli(fd, "Comeback Context : %s%s\n", lot->cfg->comebackcontext, lot->cfg->comebacktoorigin ? " (comebacktoorigin=yes, not used)" : "");
66 ast_cli(fd, "Comeback Dial Time : %u sec\n", lot->cfg->comebackdialtime);
67 ast_cli(fd, "MusicOnHold Class : %s\n", lot->cfg->mohclass);
68 ast_cli(fd, "Enabled : %s\n", (lot->mode == PARKINGLOT_DISABLED) ? "no" : "yes");
69 ast_cli(fd, "Dynamic : %s\n", (lot->mode == PARKINGLOT_DYNAMIC) ? "yes" : "no");
73 static int display_parking_lot_cb(void *obj, void *arg, int flags)
76 struct parking_lot *lot = obj;
77 display_parking_lot(lot, *fd);
81 static void cli_display_parking_lot(int fd, const char *name)
83 RAII_VAR(struct parking_lot *, lot, NULL, ao2_cleanup);
84 lot = parking_lot_find_by_name(name);
86 /* If the parking lot couldn't be found with the search, also abort. */
88 ast_cli(fd, "Could not find parking lot '%s'\n\n", name);
92 display_parking_lot(lot, fd);
94 ast_cli(fd, "Parked Calls\n------------\n");
96 if (!ao2_container_count(lot->parked_users)) {
97 ast_cli(fd, " (none)\n");
102 ao2_callback(lot->parked_users, OBJ_MULTIPLE | OBJ_NODATA, display_parked_users_cb, &fd);
106 static void cli_display_parking_global(int fd)
108 ast_cli(fd, "Parking General Options\n"
109 "-----------------------\n");
110 ast_cli(fd, "Dynamic Parking : %s\n", parking_dynamic_lots_enabled() ? "yes" : "no");
114 static void cli_display_parking_lot_list(int fd)
116 struct ao2_container *lot_container;
118 lot_container = get_parking_lot_container();
120 if (!lot_container) {
121 ast_cli(fd, "Failed to obtain parking lot list.\n\n");
125 ao2_callback(lot_container, OBJ_MULTIPLE | OBJ_NODATA, display_parking_lot_cb, &fd);
129 struct parking_lot_complete {
130 int seeking; /*! Nth match to return. */
131 int which; /*! Which match currently on. */
134 static int complete_parking_lot_search(void *obj, void *arg, void *data, int flags)
136 struct parking_lot_complete *search = data;
137 if (++search->which > search->seeking) {
143 static char *complete_parking_lot(const char *word, int seeking)
146 struct parking_lot *lot;
147 struct ao2_container *global_lots = get_parking_lot_container();
148 struct parking_lot_complete search = {
152 lot = ao2_callback_data(global_lots, ast_strlen_zero(word) ? 0 : OBJ_PARTIAL_KEY,
153 complete_parking_lot_search, (char *) word, &search);
159 ret = ast_strdup(lot->name);
164 /* \brief command parking show <name> */
165 static char *handle_show_parking_lot_cmd(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
169 e->command = "parking show";
171 "Usage: parking show [name]\n"
172 " Shows a list of parking lots or details of a specific parking lot.";
176 return complete_parking_lot(a->word, a->n);
181 ast_cli(a->fd, "\n");
184 cli_display_parking_global(a->fd);
185 cli_display_parking_lot_list(a->fd);
190 cli_display_parking_lot(a->fd, a->argv[2]);
194 return CLI_SHOWUSAGE;
197 static struct ast_cli_entry cli_parking_lot[] = {
198 AST_CLI_DEFINE(handle_show_parking_lot_cmd, "Show a parking lot or a list of all parking lots."),
201 int load_parking_ui(void)
203 return ast_cli_register_multiple(cli_parking_lot, ARRAY_LEN(cli_parking_lot));
206 void unload_parking_ui(void)
208 ast_cli_unregister_multiple(cli_parking_lot, ARRAY_LEN(cli_parking_lot));