aboutsummaryrefslogtreecommitdiffstats
path: root/build_tools/menuselect_curses.c
diff options
context:
space:
mode:
Diffstat (limited to 'build_tools/menuselect_curses.c')
-rw-r--r--build_tools/menuselect_curses.c374
1 files changed, 0 insertions, 374 deletions
diff --git a/build_tools/menuselect_curses.c b/build_tools/menuselect_curses.c
deleted file mode 100644
index 88c4a7a4f..000000000
--- a/build_tools/menuselect_curses.c
+++ /dev/null
@@ -1,374 +0,0 @@
-/*
- * Asterisk -- An open source telephony toolkit.
- *
- * Copyright (C) 2005 - 2006, Russell Bryant
- *
- * Russell Bryant <russell@digium.com>
- *
- * See http://www.asterisk.org for more information about
- * the Asterisk project. Please do not directly contact
- * any of the maintainers of this project for assistance;
- * the project provides a web site, mailing lists and IRC
- * channels for your use.
- *
- * This program is free software, distributed under the terms of
- * the GNU General Public License Version 2. See the LICENSE file
- * at the top of the source tree.
- */
-
-/*
- * \file
- *
- * \author Russell Bryant <russell@digium.com>
- *
- * \brief curses frontend for Asterisk module selection
- */
-
-#include "asterisk/autoconfig.h"
-
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-#include <signal.h>
-#include <curses.h>
-
-#include "menuselect.h"
-
-#define MENU_TITLE1 "*************************************"
-#define MENU_TITLE2 "* Asterisk Module Selection *"
-#define MENU_TITLE3 "*************************************"
-#define MENU_HELP "Press 'h' for help."
-
-#define TITLE_HEIGHT 7
-
-#define MIN_X 80
-#define MIN_Y 20
-
-#define PAGE_OFFSET 10
-
-
-/*! Maximum number of characters horizontally */
-static int max_x = 0;
-/*! Maximum number of characters vertically */
-static int max_y = 0;
-
-static const char * const help_info[] = {
- "scroll => up/down arrows",
- "(de)select => Enter",
- "select all => F8",
- "deselect all => F7",
- "back => left arrow",
- "quit => q",
- "save and quit => x",
- "",
- "XXX means dependencies have not been met"
-};
-
-/*! \brief Handle a window resize in xterm */
-static void winch_handler(int sig)
-{
- getmaxyx(stdscr, max_y, max_x);
-
- if (max_x < MIN_X - 1 || max_y < MIN_Y - 1) {
- fprintf(stderr, "Terminal must be at least 80 x 25.\n");
- max_x = MIN_X - 1;
- max_y = MIN_Y - 1;
- }
-}
-
-/*! \brief Display help information */
-static void show_help(WINDOW *win)
-{
- int i;
-
- wclear(win);
- for (i = 0; i < (sizeof(help_info) / sizeof(help_info[0])); i++) {
- wmove(win, i, max_x / 2 - 15);
- waddstr(win, help_info[i]);
- }
- wrefresh(win);
- getch(); /* display the help until the user hits a key */
-}
-
-static void draw_main_menu(WINDOW *menu, int curopt)
-{
- struct category *cat;
- char buf[64];
- int i = 0;
-
- wclear(menu);
-
- AST_LIST_TRAVERSE(&categories, cat, list) {
- wmove(menu, i++, max_x / 2 - 10);
- if (!strlen_zero(cat->displayname))
- snprintf(buf, sizeof(buf), "%d.%s %s", i, i < 10 ? " " : "", cat->displayname);
- else
- snprintf(buf, sizeof(buf), "%d.%s %s", i, i < 10 ? " " : "", cat->name);
- waddstr(menu, buf);
- }
-
- wmove(menu, curopt, (max_x / 2) - 15);
- waddstr(menu, "--->");
- wmove(menu, 0, 0);
-
- wrefresh(menu);
-}
-
-static void display_mem_info(WINDOW *menu, struct member *mem, int start, int end)
-{
- char buf[64];
- struct depend *dep;
- struct conflict *con;
-
- wmove(menu, end - start + 2, max_x / 2 - 16);
- wclrtoeol(menu);
- wmove(menu, end - start + 3, max_x / 2 - 16);
- wclrtoeol(menu);
- wmove(menu, end - start + 4, max_x / 2 - 16);
- wclrtoeol(menu);
-
- if (mem->displayname) {
- wmove(menu, end - start + 2, max_x / 2 - 16);
- waddstr(menu, mem->displayname);
- }
- if (!AST_LIST_EMPTY(&mem->deps)) {
- wmove(menu, end - start + 3, max_x / 2 - 16);
- strcpy(buf, "Depends on: ");
- AST_LIST_TRAVERSE(&mem->deps, dep, list) {
- strncat(buf, dep->name, sizeof(buf) - strlen(buf) - 1);
- if (AST_LIST_NEXT(dep, list))
- strncat(buf, ", ", sizeof(buf) - strlen(buf) - 1);
- }
- waddstr(menu, buf);
- }
- if (!AST_LIST_EMPTY(&mem->conflicts)) {
- wmove(menu, end - start + 4, max_x / 2 - 16);
- strcpy(buf, "Conflicts with: ");
- AST_LIST_TRAVERSE(&mem->conflicts, con, list) {
- strncat(buf, con->name, sizeof(buf) - strlen(buf) - 1);
- if (AST_LIST_NEXT(con, list))
- strncat(buf, ", ", sizeof(buf) - strlen(buf) - 1);
- }
- waddstr(menu, buf);
- }
-
-}
-
-static void draw_category_menu(WINDOW *menu, struct category *cat, int start, int end, int curopt, int changed)
-{
- int i = 0;
- int j = 0;
- struct member *mem;
- char buf[64];
-
- if (!changed) {
- /* If all we have to do is move the cursor,
- * then don't clear the screen and start over */
- AST_LIST_TRAVERSE(&cat->members, mem, list) {
- i++;
- if (curopt + 1 == i) {
- display_mem_info(menu, mem, start, end);
- break;
- }
- }
- wmove(menu, curopt - start, max_x / 2 - 9);
- wrefresh(menu);
- return;
- }
-
- wclear(menu);
-
- i = 0;
- AST_LIST_TRAVERSE(&cat->members, mem, list) {
- if (i < start) {
- i++;
- continue;
- }
- wmove(menu, j++, max_x / 2 - 10);
- i++;
- if (mem->depsfailed)
- snprintf(buf, sizeof(buf), "XXX %d.%s %s", i, i < 10 ? " " : "", mem->name);
- else
- snprintf(buf, sizeof(buf), "[%s] %d.%s %s", mem->enabled ? "*" : " ", i, i < 10 ? " " : "", mem->name);
- waddstr(menu, buf);
-
- if (curopt + 1 == i)
- display_mem_info(menu, mem, start, end);
-
- if (i == end)
- break;
- }
-
- wmove(menu, curopt - start, max_x / 2 - 9);
- wrefresh(menu);
-}
-
-static int run_category_menu(WINDOW *menu, int cat_num)
-{
- struct category *cat;
- int i = 0;
- int start = 0;
- int end = max_y - TITLE_HEIGHT - 6;
- int c;
- int curopt = 0;
- int maxopt;
- int changed = 1;
-
- AST_LIST_TRAVERSE(&categories, cat, list) {
- if (i++ == cat_num)
- break;
- }
- if (!cat)
- return -1;
-
- maxopt = count_members(cat) - 1;
-
- draw_category_menu(menu, cat, start, end, curopt, changed);
-
- while ((c = getch())) {
- changed = 0;
- switch (c) {
- case KEY_UP:
- if (curopt > 0) {
- curopt--;
- if (curopt < start) {
- start--;
- end--;
- changed = 1;
- }
- }
- break;
- case KEY_DOWN:
- if (curopt < maxopt) {
- curopt++;
- if (curopt > end - 1) {
- start++;
- end++;
- changed = 1;
- }
- }
- break;
- case KEY_NPAGE:
- /* XXX Move down the list by PAGE_OFFSET */
- break;
- case KEY_PPAGE:
- /* XXX Move up the list by PAGE_OFFSET */
- break;
- case KEY_LEFT:
- case 27: /* Esc key */
- return 0;
- case KEY_RIGHT:
- case KEY_ENTER:
- case '\n':
- case ' ':
- toggle_enabled(cat, curopt);
- changed = 1;
- break;
- case 'h':
- case 'H':
- show_help(menu);
- changed = 1;
- break;
- case KEY_F(7):
- set_all(cat, 0);
- changed = 1;
- break;
- case KEY_F(8):
- set_all(cat, 1);
- changed = 1;
- default:
- break;
- }
- if (c == 'x' || c == 'X' || c == 'Q' || c == 'q')
- break;
- draw_category_menu(menu, cat, start, end, curopt, changed);
- }
-
- wrefresh(menu);
-
- return c;
-}
-
-static void draw_title_window(WINDOW *title)
-{
- wmove(title, 1, (max_x / 2) - (strlen(MENU_TITLE1) / 2));
- waddstr(title, MENU_TITLE1);
- wmove(title, 2, (max_x / 2) - (strlen(MENU_TITLE2) / 2));
- waddstr(title, MENU_TITLE2);
- wmove(title, 3, (max_x / 2) - (strlen(MENU_TITLE3) / 2));
- waddstr(title, MENU_TITLE3);
- wmove(title, 5, (max_x / 2) - (strlen(MENU_HELP) / 2));
- waddstr(title, MENU_HELP);
- wrefresh(title);
-}
-
-
-
-int run_menu(void)
-{
- WINDOW *title;
- WINDOW *menu;
- int maxopt;
- int curopt = 0;
- int c;
- int res = 0;
-
- initscr();
- getmaxyx(stdscr, max_y, max_x);
- signal(SIGWINCH, winch_handler); /* handle window resizing in xterm */
-
- if (max_x < MIN_X - 1 || max_y < MIN_Y - 1) {
- fprintf(stderr, "Terminal must be at least %d x %d.\n", MIN_X, MIN_Y);
- endwin();
- return -1;
- }
-
- cbreak(); /* don't buffer input until the enter key is pressed */
- noecho(); /* don't echo user input to the screen */
- keypad(stdscr, TRUE); /* allow the use of arrow keys */
- clear();
- refresh();
-
- maxopt = count_categories() - 1;
-
- /* We have two windows - the title window at the top, and the menu window gets the rest */
- title = newwin(TITLE_HEIGHT, max_x, 0, 0);
- menu = newwin(max_y - TITLE_HEIGHT, max_x, TITLE_HEIGHT, 0);
- draw_title_window(title);
- draw_main_menu(menu, curopt);
-
- while ((c = getch())) {
- switch (c) {
- case KEY_UP:
- if (curopt > 0)
- curopt--;
- break;
- case KEY_DOWN:
- if (curopt < maxopt)
- curopt++;
- break;
- case KEY_RIGHT:
- case KEY_ENTER:
- case '\n':
- case ' ':
- c = run_category_menu(menu, curopt);
- break;
- case 'h':
- case 'H':
- show_help(menu);
- default:
- break;
- }
- if (c == 'q' || c == 'Q' || c == 27) {
- res = -1;
- break;
- }
- if (c == 'x' || c == 'X' || c == 's' || c == 'S')
- break;
- draw_main_menu(menu, curopt);
- }
-
- endwin();
-
- return res;
-}