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");
72 static int display_parking_lot_cb(void *obj, void *arg, int flags)
75 struct parking_lot *lot = obj;
76 display_parking_lot(lot, *fd);
80 static void cli_display_parking_lot(int fd, const char *name)
82 RAII_VAR(struct parking_lot *, lot, NULL, ao2_cleanup);
83 lot = parking_lot_find_by_name(name);
85 /* If the parking lot couldn't be found with the search, also abort. */
87 ast_cli(fd, "Could not find parking lot '%s'\n\n", name);
91 display_parking_lot(lot, fd);
93 ast_cli(fd, "Parked Calls\n------------\n");
95 if (!ao2_container_count(lot->parked_users)) {
96 ast_cli(fd, " (none)\n");
101 ao2_callback(lot->parked_users, OBJ_MULTIPLE | OBJ_NODATA, display_parked_users_cb, &fd);
105 static void cli_display_parking_lot_list(int fd)
107 struct ao2_container *lot_container;
109 lot_container = get_parking_lot_container();
111 if (!lot_container) {
112 ast_cli(fd, "Failed to obtain parking lot list.\n\n");
116 ao2_callback(lot_container, OBJ_MULTIPLE | OBJ_NODATA, display_parking_lot_cb, &fd);
120 struct parking_lot_complete {
121 int seeking; /*! Nth match to return. */
122 int which; /*! Which match currently on. */
125 static int complete_parking_lot_search(void *obj, void *arg, void *data, int flags)
127 struct parking_lot_complete *search = data;
128 if (++search->which > search->seeking) {
134 static char *complete_parking_lot(const char *word, int seeking)
137 struct parking_lot *lot;
138 struct ao2_container *global_lots = get_parking_lot_container();
139 struct parking_lot_complete search = {
143 lot = ao2_callback_data(global_lots, ast_strlen_zero(word) ? 0 : OBJ_PARTIAL_KEY,
144 complete_parking_lot_search, (char *) word, &search);
150 ret = ast_strdup(lot->name);
155 /* \brief command parking show <name> */
156 static char *handle_show_parking_lot_cmd(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
160 e->command = "parking show";
162 "Usage: parking show [name]\n"
163 " Shows a list of parking lots or details of a specific parking lot.";
167 return complete_parking_lot(a->word, a->n);
172 ast_cli(a->fd, "\n");
175 cli_display_parking_lot_list(a->fd);
180 cli_display_parking_lot(a->fd, a->argv[2]);
184 return CLI_SHOWUSAGE;
187 static struct ast_cli_entry cli_parking_lot[] = {
188 AST_CLI_DEFINE(handle_show_parking_lot_cmd, "Show a parking lot or a list of all parking lots."),
191 int load_parking_ui(void)
193 return ast_cli_register_multiple(cli_parking_lot, ARRAY_LEN(cli_parking_lot));
196 void unload_parking_ui(void)
198 ast_cli_unregister_multiple(cli_parking_lot, ARRAY_LEN(cli_parking_lot));