iPXE
menu_ui.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012 Michael Brown <mbrown@fensystems.co.uk>.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301, USA.
18  *
19  * You can also choose to distribute this program under the terms of
20  * the Unmodified Binary Distribution Licence (as given in the file
21  * COPYING.UBDL), provided that you have satisfied its requirements.
22  */
23 
24 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
25 
26 /** @file
27  *
28  * Menu interface
29  *
30  */
31 
32 #include <string.h>
33 #include <errno.h>
34 #include <curses.h>
35 #include <ipxe/keys.h>
36 #include <ipxe/timer.h>
37 #include <ipxe/console.h>
38 #include <ipxe/ansicol.h>
39 #include <ipxe/jumpscroll.h>
40 #include <ipxe/dynui.h>
41 
42 /* Screen layout */
43 #define TITLE_ROW 1U
44 #define MENU_ROW 3U
45 #define MENU_COL 1U
46 #define MENU_ROWS ( LINES - 2U - MENU_ROW )
47 #define MENU_COLS ( COLS - 2U )
48 #define MENU_PAD 2U
49 
50 /** A menu user interface */
51 struct menu_ui {
52  /** Dynamic user interface */
53  struct dynamic_ui *dynui;
54  /** Jump scroller */
56  /** Timeout (0=indefinite) */
57  unsigned long timeout;
58 };
59 
60 /**
61  * Draw a numbered menu item
62  *
63  * @v ui Menu user interface
64  * @v index Index
65  */
66 static void draw_menu_item ( struct menu_ui *ui, unsigned int index ) {
67  struct dynamic_item *item;
68  unsigned int row_offset;
69  char buf[ MENU_COLS + 1 /* NUL */ ];
70  char timeout_buf[6]; /* "(xxx)" + NUL */
71  size_t timeout_len;
72  size_t max_len;
73  size_t len;
74 
75  /* Move to start of row */
76  row_offset = ( index - ui->scroll.first );
77  move ( ( MENU_ROW + row_offset ), MENU_COL );
78 
79  /* Get menu item */
80  item = dynui_item ( ui->dynui, index );
81  if ( item ) {
82 
83  /* Draw separators in a different colour */
84  if ( ! item->name )
86 
87  /* Highlight if this is the selected item */
88  if ( index == ui->scroll.current ) {
90  attron ( A_BOLD );
91  }
92 
93  /* Construct row */
94  memset ( buf, ' ', ( sizeof ( buf ) - 1 ) );
95  buf[ sizeof ( buf ) -1 ] = '\0';
96  len = strlen ( item->text );
97  max_len = ( sizeof ( buf ) - 1 /* NUL */ - ( 2 * MENU_PAD ) );
98  if ( len > max_len )
99  len = max_len;
100  memcpy ( ( buf + MENU_PAD ), item->text, len );
101 
102  /* Add timeout if applicable */
103  timeout_len =
104  snprintf ( timeout_buf, sizeof ( timeout_buf ), "(%ld)",
105  ( ( ui->timeout + TICKS_PER_SEC - 1 ) /
106  TICKS_PER_SEC ) );
107  if ( ( index == ui->scroll.current ) && ( ui->timeout != 0 ) ) {
108  memcpy ( ( buf + MENU_COLS - MENU_PAD - timeout_len ),
109  timeout_buf, timeout_len );
110  }
111 
112  /* Print row */
113  printw ( "%s", buf );
114 
115  /* Reset attributes */
117  attroff ( A_BOLD );
118 
119  } else {
120  /* Clear row if there is no corresponding menu item */
121  clrtoeol();
122  }
123 
124  /* Move cursor back to start of row */
125  move ( ( MENU_ROW + row_offset ), MENU_COL );
126 }
127 
128 /**
129  * Draw the current block of menu items
130  *
131  * @v ui Menu user interface
132  */
133 static void draw_menu_items ( struct menu_ui *ui ) {
134  unsigned int i;
135 
136  /* Draw ellipses before and/or after the list as necessary */
138  mvaddstr ( ( MENU_ROW - 1 ), ( MENU_COL + MENU_PAD ),
139  ( jump_scroll_is_first ( &ui->scroll ) ? " " : "..." ) );
141  ( jump_scroll_is_last ( &ui->scroll ) ? " " : "..." ) );
143 
144  /* Draw visible items */
145  for ( i = 0 ; i < MENU_ROWS ; i++ )
146  draw_menu_item ( ui, ( ui->scroll.first + i ) );
147 }
148 
149 /**
150  * Menu main loop
151  *
152  * @v ui Menu user interface
153  * @ret selected Selected item
154  * @ret rc Return status code
155  */
156 static int menu_loop ( struct menu_ui *ui, struct dynamic_item **selected ) {
157  struct dynamic_item *item;
158  unsigned long timeout;
159  unsigned int previous;
160  unsigned int move;
161  int key;
162  int chosen = 0;
163  int rc = 0;
164 
165  do {
166  /* Record current selection */
167  previous = ui->scroll.current;
168 
169  /* Calculate timeout as remainder of current second */
170  timeout = ( ui->timeout % TICKS_PER_SEC );
171  if ( ( timeout == 0 ) && ( ui->timeout != 0 ) )
173  ui->timeout -= timeout;
174 
175  /* Get key */
176  move = SCROLL_NONE;
177  key = getkey ( timeout );
178  if ( key < 0 ) {
179  /* Choose default if we finally time out */
180  if ( ui->timeout == 0 )
181  chosen = 1;
182  } else {
183  /* Cancel any timeout */
184  ui->timeout = 0;
185 
186  /* Handle scroll keys */
187  move = jump_scroll_key ( &ui->scroll, key );
188 
189  /* Handle other keys */
190  switch ( key ) {
191  case ESC:
192  case CTRL_C:
193  rc = -ECANCELED;
194  break;
195  case CR:
196  case LF:
197  chosen = 1;
198  break;
199  default:
200  item = dynui_shortcut ( ui->dynui, key );
201  if ( item ) {
202  ui->scroll.current = item->index;
203  if ( item->name ) {
204  chosen = 1;
205  } else {
206  move = SCROLL_DOWN;
207  }
208  }
209  break;
210  }
211  }
212 
213  /* Move selection, if applicable */
214  while ( move ) {
215  move = jump_scroll_move ( &ui->scroll, move );
216  item = dynui_item ( ui->dynui, ui->scroll.current );
217  if ( item->name )
218  break;
219  }
220 
221  /* Redraw selection if necessary */
222  if ( ( ui->scroll.current != previous ) || ( timeout != 0 ) ) {
223  draw_menu_item ( ui, previous );
224  if ( jump_scroll ( &ui->scroll ) )
225  draw_menu_items ( ui );
226  draw_menu_item ( ui, ui->scroll.current );
227  }
228 
229  /* Record selection */
230  item = dynui_item ( ui->dynui, ui->scroll.current );
231  assert ( item != NULL );
232  assert ( item->name != NULL );
233  *selected = item;
234 
235  } while ( ( rc == 0 ) && ! chosen );
236 
237  return rc;
238 }
239 
240 /**
241  * Show menu
242  *
243  * @v dynui Dynamic user interface
244  * @v timeout Timeout period, in ticks (0=indefinite)
245  * @ret selected Selected item
246  * @ret rc Return status code
247  */
248 int show_menu ( struct dynamic_ui *dynui, unsigned long timeout,
249  const char *select, struct dynamic_item **selected ) {
250  struct dynamic_item *item;
251  struct menu_ui ui;
252  char buf[ MENU_COLS + 1 /* NUL */ ];
253  int named_count = 0;
254  int rc;
255 
256  /* Initialise UI */
257  memset ( &ui, 0, sizeof ( ui ) );
258  ui.dynui = dynui;
259  ui.scroll.rows = MENU_ROWS;
260  ui.timeout = timeout;
261  list_for_each_entry ( item, &dynui->items, list ) {
262  if ( item->name ) {
263  if ( ! named_count )
264  ui.scroll.current = ui.scroll.count;
265  named_count++;
266  if ( select ) {
267  if ( strcmp ( select, item->name ) == 0 )
268  ui.scroll.current = ui.scroll.count;
269  } else {
270  if ( item->flags & DYNUI_DEFAULT )
271  ui.scroll.current = ui.scroll.count;
272  }
273  }
274  ui.scroll.count++;
275  }
276  if ( ! named_count ) {
277  /* Menus with no named items cannot be selected from,
278  * and will seriously confuse the navigation logic.
279  * Refuse to display any such menus.
280  */
281  return -ENOENT;
282  }
283 
284  /* Initialise screen */
285  initscr();
286  start_color();
288  curs_set ( 0 );
289  erase();
290 
291  /* Draw initial content */
292  attron ( A_BOLD );
293  snprintf ( buf, sizeof ( buf ), "%s", ui.dynui->title );
294  mvprintw ( TITLE_ROW, ( ( COLS - strlen ( buf ) ) / 2 ), "%s", buf );
295  attroff ( A_BOLD );
296  jump_scroll ( &ui.scroll );
297  draw_menu_items ( &ui );
298  draw_menu_item ( &ui, ui.scroll.current );
299 
300  /* Enter main loop */
301  rc = menu_loop ( &ui, selected );
302  assert ( *selected );
303 
304  /* Clear screen */
305  endwin();
306 
307  return rc;
308 }
int getkey(unsigned long timeout)
Get single keypress.
Definition: getkey.c:71
MuCurses header file.
const char * title
Title.
Definition: dynui.h:21
int printw(char *,...)
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
unsigned long timeout
Timeout (0=indefinite)
Definition: menu_ui.c:57
A dynamic user interface item.
Definition: dynui.h:29
#define TICKS_PER_SEC
Number of ticks per second.
Definition: timer.h:15
int erase(void)
Completely clear the screen.
Definition: clear.c:97
A menu user interface.
Definition: menu_ui.c:51
Error codes.
uint16_t max_len
Maximum length (in bytes)
Definition: ntlm.h:18
static int attroff(int attrs)
Definition: curses.h:508
#define start_color()
Definition: curses.h:396
int endwin(void)
Finalise console environment.
Definition: wininit.c:31
#define SCROLL_NONE
Do not scroll.
Definition: jumpscroll.h:47
#define ENOENT
No such file or directory.
Definition: errno.h:514
#define mvprintw(y, x, fmt,...)
Definition: curses.h:648
iPXE timers
A jump scroller.
Definition: jumpscroll.h:15
#define ECANCELED
Operation canceled.
Definition: errno.h:343
#define CPAIR_NORMAL
Normal text.
Definition: ansicol.h:40
void * memcpy(void *dest, const void *src, size_t len) __nonnull
struct list_head items
Dynamic user interface items.
Definition: dynui.h:23
WINDOW * initscr(void)
Initialise console environment.
Definition: wininit.c:17
const char * name
Name.
Definition: dynui.h:33
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
struct dynamic_item * dynui_shortcut(struct dynamic_ui *dynui, int key)
Find dynamic user interface item by shortcut key.
Definition: dynui.c:211
#define list_for_each_entry(pos, head, member)
Iterate over entries in a list.
Definition: list.h:431
unsigned int first
First visible item.
Definition: jumpscroll.h:23
unsigned int count
Total number of items.
Definition: jumpscroll.h:19
int jump_scroll(struct jump_scroller *scroll)
Jump scroll to new page (if applicable)
Definition: jumpscroll.c:140
#define CTRL_C
Definition: keys.h:20
#define ESC
Escape character.
Definition: ansiesc.h:92
User interaction.
unsigned int jump_scroll_move(struct jump_scroller *scroll, unsigned int move)
Move scroller.
Definition: jumpscroll.c:92
static int clrtoeol(void)
Definition: curses.h:553
size_t strlen(const char *src)
Get length of string.
Definition: string.c:243
int select(fd_set *readfds, int wait)
Check file descriptors for readiness.
Definition: posix_io.c:229
#define CPAIR_SEPARATOR
Unselectable text (e.g.
Definition: ansicol.h:46
#define SCROLL_DOWN
Scroll down by one line.
Definition: jumpscroll.h:53
#define COLS
Definition: curses.h:111
#define LF
Definition: keys.h:47
A dynamic user interface.
Definition: dynui.h:15
static int jump_scroll_is_last(struct jump_scroller *scroll)
Check if jump scroller is currently on last page.
Definition: jumpscroll.h:72
int curs_set(int visibility)
Set cursor visibility.
Definition: mucurses.c:153
uint32_t len
Length.
Definition: ena.h:14
int strcmp(const char *first, const char *second)
Compare strings.
Definition: string.c:173
const char * text
Text.
Definition: dynui.h:35
#define DYNUI_DEFAULT
Dynamic user interface item is default selection.
Definition: dynui.h:45
Key definitions.
static int jump_scroll_is_first(struct jump_scroller *scroll)
Check if jump scroller is currently on first page.
Definition: jumpscroll.h:61
static int move(int y, int x)
Definition: curses.h:593
#define CPAIR_SELECT
Highlighted text.
Definition: ansicol.h:43
Jump scrolling.
#define CR
Definition: keys.h:48
unsigned int rows
Maximum number of visible rows.
Definition: jumpscroll.h:17
int snprintf(char *buf, size_t size, const char *fmt,...)
Write a formatted string to a buffer.
Definition: vsprintf.c:382
#define color_set(cpno, opts)
Definition: curses.h:240
void timeout(int)
Dynamic user interfaces.
uint64_t index
Index of the first segment within the content.
Definition: pccrc.h:21
#define A_BOLD
Definition: curses.h:138
struct jump_scroller scroll
Jump scroller.
Definition: menu_ui.c:55
unsigned int flags
Flags.
Definition: dynui.h:39
struct dynamic_ui * dynui
Dynamic user interface.
Definition: menu_ui.c:53
unsigned int current
Currently selected item.
Definition: jumpscroll.h:21
unsigned int index
Index.
Definition: dynui.h:37
struct dynamic_item * dynui_item(struct dynamic_ui *dynui, unsigned int index)
Find dynamic user interface item by index.
Definition: dynui.c:192
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
String functions.
unsigned int jump_scroll_key(struct jump_scroller *scroll, int key)
Jump scrolling.
Definition: jumpscroll.c:42
static int mvaddstr(int y, int x, const char *str)
Definition: curses.h:617
union @383 key
Sense key.
Definition: crypto.h:284
ANSI colours.
static int attron(int attrs)
Definition: curses.h:512
void * memset(void *dest, int character, size_t len) __nonnull