2004-04-04 13:46:03 +00:00
|
|
|
|
/* console.c -- Ncurses console for GRUB. */
|
2003-11-17 18:07:09 +00:00
|
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
2005-02-15 00:07:01 +00:00
|
|
|
|
* Copyright (C) 2003,2005 Free Software Foundation, Inc.
|
2003-11-17 18:07:09 +00:00
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
2005-08-07 17:12:52 +00:00
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#if defined(HAVE_NCURSES_CURSES_H)
|
|
|
|
|
# include <ncurses/curses.h>
|
|
|
|
|
#elif defined(HAVE_NCURSES_H)
|
|
|
|
|
# include <ncurses.h>
|
|
|
|
|
#elif defined(HAVE_CURSES_H)
|
|
|
|
|
# include <curses.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* For compatibility. */
|
|
|
|
|
#ifndef A_NORMAL
|
|
|
|
|
# define A_NORMAL 0
|
|
|
|
|
#endif /* ! A_NORMAL */
|
|
|
|
|
#ifndef A_STANDOUT
|
|
|
|
|
# define A_STANDOUT 0
|
|
|
|
|
#endif /* ! A_STANDOUT */
|
|
|
|
|
|
2005-08-06 15:50:07 +00:00
|
|
|
|
#include <grub/machine/console.h>
|
2004-04-04 13:46:03 +00:00
|
|
|
|
#include <grub/term.h>
|
|
|
|
|
#include <grub/types.h>
|
2003-11-17 18:07:09 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static int grub_console_attr = A_NORMAL;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ncurses_putchar (grub_uint32_t c)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
2005-02-19 20:56:07 +00:00
|
|
|
|
/* Better than nothing. */
|
|
|
|
|
switch (c)
|
|
|
|
|
{
|
|
|
|
|
case GRUB_TERM_DISP_LEFT:
|
|
|
|
|
c = '<';
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GRUB_TERM_DISP_UP:
|
|
|
|
|
c = '^';
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GRUB_TERM_DISP_RIGHT:
|
|
|
|
|
c = '>';
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GRUB_TERM_DISP_DOWN:
|
|
|
|
|
c = 'v';
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GRUB_TERM_DISP_HLINE:
|
|
|
|
|
c = '-';
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GRUB_TERM_DISP_VLINE:
|
|
|
|
|
c = '|';
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GRUB_TERM_DISP_UL:
|
|
|
|
|
case GRUB_TERM_DISP_UR:
|
|
|
|
|
case GRUB_TERM_DISP_LL:
|
|
|
|
|
case GRUB_TERM_DISP_LR:
|
|
|
|
|
c = '+';
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
2005-08-21 07:22:51 +00:00
|
|
|
|
/* ncurses does not support Unicode. */
|
|
|
|
|
if (c > 0x7f)
|
|
|
|
|
c = '?';
|
2005-02-19 20:56:07 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
addch (c | grub_console_attr);
|
2003-11-17 18:07:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-08-21 07:22:51 +00:00
|
|
|
|
static grub_ssize_t
|
|
|
|
|
grub_ncurses_getcharwidth (grub_uint32_t code __attribute__ ((unused)))
|
|
|
|
|
{
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-17 18:07:09 +00:00
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ncurses_setcolorstate (grub_term_color_state state)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
switch (state)
|
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
case GRUB_TERM_COLOR_STANDARD:
|
|
|
|
|
grub_console_attr = A_NORMAL;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
2004-04-04 13:46:03 +00:00
|
|
|
|
case GRUB_TERM_COLOR_NORMAL:
|
|
|
|
|
grub_console_attr = A_NORMAL;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
2004-04-04 13:46:03 +00:00
|
|
|
|
case GRUB_TERM_COLOR_HIGHLIGHT:
|
|
|
|
|
grub_console_attr = A_STANDOUT;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* XXX: This function is never called. */
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ncurses_setcolor (grub_uint8_t normal_color, grub_uint8_t highlight_color)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
color_set (normal_color << 8 | highlight_color, 0);
|
|
|
|
|
}
|
|
|
|
|
|
2005-02-19 20:56:07 +00:00
|
|
|
|
static int saved_char = ERR;
|
|
|
|
|
|
2003-11-17 18:07:09 +00:00
|
|
|
|
static int
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ncurses_checkkey (void)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
2005-02-19 20:56:07 +00:00
|
|
|
|
int c;
|
|
|
|
|
|
|
|
|
|
/* Check for SAVED_CHAR. This should not be true, because this
|
|
|
|
|
means checkkey is called twice continuously. */
|
|
|
|
|
if (saved_char != ERR)
|
2005-02-27 21:19:06 +00:00
|
|
|
|
return saved_char;
|
2005-02-19 20:56:07 +00:00
|
|
|
|
|
|
|
|
|
wtimeout (stdscr, 100);
|
|
|
|
|
c = getch ();
|
|
|
|
|
/* If C is not ERR, then put it back in the input queue. */
|
|
|
|
|
if (c != ERR)
|
|
|
|
|
{
|
|
|
|
|
saved_char = c;
|
2005-02-27 21:19:06 +00:00
|
|
|
|
return c;
|
2005-02-19 20:56:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-02-27 21:19:06 +00:00
|
|
|
|
return -1;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ncurses_getkey (void)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
2005-02-19 20:56:07 +00:00
|
|
|
|
int c;
|
|
|
|
|
|
|
|
|
|
/* If checkkey has already got a character, then return it. */
|
|
|
|
|
if (saved_char != ERR)
|
|
|
|
|
{
|
|
|
|
|
c = saved_char;
|
|
|
|
|
saved_char = ERR;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
wtimeout (stdscr, -1);
|
|
|
|
|
c = getch ();
|
|
|
|
|
}
|
2003-11-17 18:07:09 +00:00
|
|
|
|
|
|
|
|
|
switch (c)
|
|
|
|
|
{
|
|
|
|
|
case KEY_LEFT:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_LEFT;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_RIGHT:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_RIGHT;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_UP:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_UP;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_DOWN:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_DOWN;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_IC:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_IC;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_DC:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_DC;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_BACKSPACE:
|
2003-12-03 19:17:27 +00:00
|
|
|
|
/* XXX: For some reason ncurses on xterm does not return
|
|
|
|
|
KEY_BACKSPACE. */
|
|
|
|
|
case 127:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_BACKSPACE;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_HOME:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_HOME;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_END:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_END;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_NPAGE:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_NPAGE;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case KEY_PPAGE:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
c = GRUB_CONSOLE_KEY_PPAGE;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return c;
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_uint16_t
|
|
|
|
|
grub_ncurses_getxy (void)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
int x;
|
|
|
|
|
int y;
|
|
|
|
|
|
|
|
|
|
getyx (stdscr, y, x);
|
|
|
|
|
|
|
|
|
|
return (x << 8) | y;
|
|
|
|
|
}
|
|
|
|
|
|
2005-08-12 19:53:33 +00:00
|
|
|
|
static grub_uint16_t
|
|
|
|
|
grub_ncurses_getwh (void)
|
|
|
|
|
{
|
|
|
|
|
int x;
|
|
|
|
|
int y;
|
|
|
|
|
|
|
|
|
|
getmaxyx (stdscr, y, x);
|
|
|
|
|
|
|
|
|
|
return (x << 8) | y;
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-17 18:07:09 +00:00
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ncurses_gotoxy (grub_uint8_t x, grub_uint8_t y)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
move (y, x);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ncurses_cls (void)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
clear ();
|
|
|
|
|
refresh ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ncurses_setcursor (int on)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
curs_set (on ? 1 : 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ncurses_refresh (void)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
refresh ();
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_ncurses_init (void)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
initscr ();
|
2005-02-19 20:56:07 +00:00
|
|
|
|
raw ();
|
2003-11-17 18:07:09 +00:00
|
|
|
|
noecho ();
|
|
|
|
|
scrollok (stdscr, TRUE);
|
|
|
|
|
|
|
|
|
|
nonl ();
|
|
|
|
|
intrflush (stdscr, FALSE);
|
|
|
|
|
keypad (stdscr, TRUE);
|
|
|
|
|
start_color ();
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_ncurses_fini (void)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
endwin ();
|
2004-03-14 17:48:25 +00:00
|
|
|
|
return 0;
|
2003-11-17 18:07:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static struct grub_term grub_ncurses_term =
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
|
|
|
|
.name = "console",
|
2004-04-04 13:46:03 +00:00
|
|
|
|
.init = grub_ncurses_init,
|
|
|
|
|
.fini = grub_ncurses_fini,
|
|
|
|
|
.putchar = grub_ncurses_putchar,
|
2005-08-21 07:22:51 +00:00
|
|
|
|
.getcharwidth = grub_ncurses_getcharwidth,
|
2004-04-04 13:46:03 +00:00
|
|
|
|
.checkkey = grub_ncurses_checkkey,
|
|
|
|
|
.getkey = grub_ncurses_getkey,
|
|
|
|
|
.getxy = grub_ncurses_getxy,
|
2005-08-12 19:53:33 +00:00
|
|
|
|
.getwh = grub_ncurses_getwh,
|
2004-04-04 13:46:03 +00:00
|
|
|
|
.gotoxy = grub_ncurses_gotoxy,
|
|
|
|
|
.cls = grub_ncurses_cls,
|
|
|
|
|
.setcolorstate = grub_ncurses_setcolorstate,
|
|
|
|
|
.setcolor = grub_ncurses_setcolor,
|
|
|
|
|
.setcursor = grub_ncurses_setcursor,
|
|
|
|
|
.refresh = grub_ncurses_refresh,
|
2003-11-17 18:07:09 +00:00
|
|
|
|
.flags = 0,
|
|
|
|
|
.next = 0
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_console_init (void)
|
2003-11-17 18:07:09 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_term_register (&grub_ncurses_term);
|
|
|
|
|
grub_term_set_current (&grub_ncurses_term);
|
2003-11-17 18:07:09 +00:00
|
|
|
|
}
|
2005-02-15 00:07:01 +00:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
grub_console_fini (void)
|
|
|
|
|
{
|
|
|
|
|
grub_ncurses_fini ();
|
|
|
|
|
}
|