2 * GRUB -- GRand Unified Bootloader
3 * Copyright (C) 2002,2003,2005,2007,2008,2009,2010 Free Software Foundation, Inc.
5 * GRUB is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * GRUB is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
19 #ifndef GRUB_TERM_HEADER
20 #define GRUB_TERM_HEADER 1
22 #define GRUB_TERM_NO_KEY 0
24 /* Internal codes used by GRUB to represent terminal input. */
25 /* Only for keys otherwise not having shifted modification. */
26 #define GRUB_TERM_SHIFT 0x01000000
27 #define GRUB_TERM_CTRL 0x02000000
28 #define GRUB_TERM_ALT 0x04000000
30 /* Keys without associated character. */
31 #define GRUB_TERM_EXTENDED 0x00800000
32 #define GRUB_TERM_KEY_MASK 0x00ffffff
34 #define GRUB_TERM_KEY_LEFT (GRUB_TERM_EXTENDED | 0x4b)
35 #define GRUB_TERM_KEY_RIGHT (GRUB_TERM_EXTENDED | 0x4d)
36 #define GRUB_TERM_KEY_UP (GRUB_TERM_EXTENDED | 0x48)
37 #define GRUB_TERM_KEY_DOWN (GRUB_TERM_EXTENDED | 0x50)
38 #define GRUB_TERM_KEY_HOME (GRUB_TERM_EXTENDED | 0x47)
39 #define GRUB_TERM_KEY_END (GRUB_TERM_EXTENDED | 0x4f)
40 #define GRUB_TERM_KEY_DC (GRUB_TERM_EXTENDED | 0x53)
41 #define GRUB_TERM_KEY_PPAGE (GRUB_TERM_EXTENDED | 0x49)
42 #define GRUB_TERM_KEY_NPAGE (GRUB_TERM_EXTENDED | 0x51)
43 #define GRUB_TERM_KEY_F1 (GRUB_TERM_EXTENDED | 0x3b)
44 #define GRUB_TERM_KEY_F2 (GRUB_TERM_EXTENDED | 0x3c)
45 #define GRUB_TERM_KEY_F3 (GRUB_TERM_EXTENDED | 0x3d)
46 #define GRUB_TERM_KEY_F4 (GRUB_TERM_EXTENDED | 0x3e)
47 #define GRUB_TERM_KEY_F5 (GRUB_TERM_EXTENDED | 0x3f)
48 #define GRUB_TERM_KEY_F6 (GRUB_TERM_EXTENDED | 0x40)
49 #define GRUB_TERM_KEY_F7 (GRUB_TERM_EXTENDED | 0x41)
50 #define GRUB_TERM_KEY_F8 (GRUB_TERM_EXTENDED | 0x42)
51 #define GRUB_TERM_KEY_F9 (GRUB_TERM_EXTENDED | 0x43)
52 #define GRUB_TERM_KEY_F10 (GRUB_TERM_EXTENDED | 0x44)
53 #define GRUB_TERM_KEY_F11 (GRUB_TERM_EXTENDED | 0x57)
54 #define GRUB_TERM_KEY_F12 (GRUB_TERM_EXTENDED | 0x58)
55 #define GRUB_TERM_KEY_INSERT (GRUB_TERM_EXTENDED | 0x52)
56 #define GRUB_TERM_KEY_CENTER (GRUB_TERM_EXTENDED | 0x4c)
58 /* Hex value is used for ESC, since '\e' is nonstandard */
59 #define GRUB_TERM_ESC 0x1b
60 #define GRUB_TERM_TAB '\t'
61 #define GRUB_TERM_BACKSPACE '\b'
63 #define GRUB_PROGRESS_NO_UPDATE -1
64 #define GRUB_PROGRESS_FAST 0
65 #define GRUB_PROGRESS_SLOW 2
70 #include <grub/symbol.h>
71 #include <grub/types.h>
72 #include <grub/unicode.h>
73 #include <grub/list.h>
75 /* These are used to represent the various color states we use. */
78 /* The color used to display all text that does not use the
79 user defined colors below. */
80 GRUB_TERM_COLOR_STANDARD
,
81 /* The user defined colors for normal text. */
82 GRUB_TERM_COLOR_NORMAL
,
83 /* The user defined colors for highlighted text. */
84 GRUB_TERM_COLOR_HIGHLIGHT
86 grub_term_color_state
;
88 /* Flags for representing the capabilities of a terminal. */
89 /* Some notes about the flags:
90 - These flags are used by higher-level functions but not terminals
92 - If a terminal is dumb, you may assume that only putchar, getkey and
94 - Some fancy features (setcolorstate, setcolor and setcursor) can be set
97 /* Set when input characters shouldn't be echoed back. */
98 #define GRUB_TERM_NO_ECHO (1 << 0)
99 /* Set when the editing feature should be disabled. */
100 #define GRUB_TERM_NO_EDIT (1 << 1)
101 /* Set when the terminal cannot do fancy things. */
102 #define GRUB_TERM_DUMB (1 << 2)
103 /* Which encoding does terminal expect stream to be. */
104 #define GRUB_TERM_CODE_TYPE_SHIFT 3
105 #define GRUB_TERM_CODE_TYPE_MASK (7 << GRUB_TERM_CODE_TYPE_SHIFT)
106 /* Only ASCII characters accepted. */
107 #define GRUB_TERM_CODE_TYPE_ASCII (0 << GRUB_TERM_CODE_TYPE_SHIFT)
108 /* Expects CP-437 characters (ASCII + pseudographics). */
109 #define GRUB_TERM_CODE_TYPE_CP437 (1 << GRUB_TERM_CODE_TYPE_SHIFT)
110 /* UTF-8 stream in logical order. Usually used for terminals
111 which just forward the stream to another computer. */
112 #define GRUB_TERM_CODE_TYPE_UTF8_LOGICAL (2 << GRUB_TERM_CODE_TYPE_SHIFT)
113 /* UTF-8 in visual order. Like UTF-8 logical but for buggy endpoints. */
114 #define GRUB_TERM_CODE_TYPE_UTF8_VISUAL (3 << GRUB_TERM_CODE_TYPE_SHIFT)
115 /* Glyph description in visual order. */
116 #define GRUB_TERM_CODE_TYPE_VISUAL_GLYPHS (4 << GRUB_TERM_CODE_TYPE_SHIFT)
119 /* Bitmasks for modifier keys returned by grub_getkeystatus. */
120 #define GRUB_TERM_STATUS_RSHIFT (1 << 0)
121 #define GRUB_TERM_STATUS_LSHIFT (1 << 1)
122 #define GRUB_TERM_STATUS_RCTRL (1 << 2)
123 #define GRUB_TERM_STATUS_RALT (1 << 3)
124 #define GRUB_TERM_STATUS_SCROLL (1 << 4)
125 #define GRUB_TERM_STATUS_NUM (1 << 5)
126 #define GRUB_TERM_STATUS_CAPS (1 << 6)
127 #define GRUB_TERM_STATUS_LCTRL (1 << 8)
128 #define GRUB_TERM_STATUS_LALT (1 << 9)
130 /* Menu-related geometrical constants. */
132 /* The number of columns/lines between messages/borders/etc. */
133 #define GRUB_TERM_MARGIN 1
135 /* The number of columns of scroll information. */
136 #define GRUB_TERM_SCROLL_WIDTH 1
138 struct grub_term_input
140 /* The next terminal. */
141 struct grub_term_input
*next
;
142 struct grub_term_input
**prev
;
144 /* The terminal name. */
147 /* Initialize the terminal. */
148 grub_err_t (*init
) (struct grub_term_input
*term
);
150 /* Clean up the terminal. */
151 grub_err_t (*fini
) (struct grub_term_input
*term
);
153 /* Get a character if any input character is available. Otherwise return -1 */
154 int (*getkey
) (struct grub_term_input
*term
);
156 /* Get keyboard modifier status. */
157 int (*getkeystatus
) (struct grub_term_input
*term
);
161 typedef struct grub_term_input
*grub_term_input_t
;
163 /* Made in a way to fit into uint32_t and so be passed in a register. */
164 struct grub_term_coordinate
170 struct grub_term_output
172 /* The next terminal. */
173 struct grub_term_output
*next
;
174 struct grub_term_output
**prev
;
176 /* The terminal name. */
179 /* Initialize the terminal. */
180 grub_err_t (*init
) (struct grub_term_output
*term
);
182 /* Clean up the terminal. */
183 grub_err_t (*fini
) (struct grub_term_output
*term
);
185 /* Put a character. C is encoded in Unicode. */
186 void (*putchar
) (struct grub_term_output
*term
,
187 const struct grub_unicode_glyph
*c
);
189 /* Get the number of columns occupied by a given character C. C is
190 encoded in Unicode. */
191 grub_size_t (*getcharwidth
) (struct grub_term_output
*term
,
192 const struct grub_unicode_glyph
*c
);
194 /* Get the screen size. */
195 struct grub_term_coordinate (*getwh
) (struct grub_term_output
*term
);
197 /* Get the cursor position. The return value is ((X << 8) | Y). */
198 struct grub_term_coordinate (*getxy
) (struct grub_term_output
*term
);
200 /* Go to the position (X, Y). */
201 void (*gotoxy
) (struct grub_term_output
*term
,
202 struct grub_term_coordinate pos
);
204 /* Clear the screen. */
205 void (*cls
) (struct grub_term_output
*term
);
207 /* Set the current color to be used */
208 void (*setcolorstate
) (struct grub_term_output
*term
,
209 grub_term_color_state state
);
211 /* Turn on/off the cursor. */
212 void (*setcursor
) (struct grub_term_output
*term
, int on
);
214 /* Update the screen. */
215 void (*refresh
) (struct grub_term_output
*term
);
217 /* gfxterm only: put in fullscreen mode. */
218 grub_err_t (*fullscreen
) (void);
220 /* The feature flags defined above. */
224 grub_uint32_t progress_update_divisor
;
225 grub_uint32_t progress_update_counter
;
229 typedef struct grub_term_output
*grub_term_output_t
;
231 #define GRUB_TERM_DEFAULT_NORMAL_COLOR 0x07
232 #define GRUB_TERM_DEFAULT_HIGHLIGHT_COLOR 0x70
233 #define GRUB_TERM_DEFAULT_STANDARD_COLOR 0x07
235 /* Current color state. */
236 extern grub_uint8_t
EXPORT_VAR(grub_term_normal_color
);
237 extern grub_uint8_t
EXPORT_VAR(grub_term_highlight_color
);
239 extern struct grub_term_output
*EXPORT_VAR(grub_term_outputs_disabled
);
240 extern struct grub_term_input
*EXPORT_VAR(grub_term_inputs_disabled
);
241 extern struct grub_term_output
*EXPORT_VAR(grub_term_outputs
);
242 extern struct grub_term_input
*EXPORT_VAR(grub_term_inputs
);
245 grub_term_register_input (const char *name
__attribute__ ((unused
)),
246 grub_term_input_t term
)
248 if (grub_term_inputs
)
249 grub_list_push (GRUB_AS_LIST_P (&grub_term_inputs_disabled
),
250 GRUB_AS_LIST (term
));
253 /* If this is the first terminal, enable automatically. */
254 if (! term
->init
|| term
->init (term
) == GRUB_ERR_NONE
)
255 grub_list_push (GRUB_AS_LIST_P (&grub_term_inputs
), GRUB_AS_LIST (term
));
260 grub_term_register_input_inactive (const char *name
__attribute__ ((unused
)),
261 grub_term_input_t term
)
263 grub_list_push (GRUB_AS_LIST_P (&grub_term_inputs_disabled
),
264 GRUB_AS_LIST (term
));
268 grub_term_register_input_active (const char *name
__attribute__ ((unused
)),
269 grub_term_input_t term
)
271 if (! term
->init
|| term
->init (term
) == GRUB_ERR_NONE
)
272 grub_list_push (GRUB_AS_LIST_P (&grub_term_inputs
), GRUB_AS_LIST (term
));
276 grub_term_register_output (const char *name
__attribute__ ((unused
)),
277 grub_term_output_t term
)
279 if (grub_term_outputs
)
280 grub_list_push (GRUB_AS_LIST_P (&grub_term_outputs_disabled
),
281 GRUB_AS_LIST (term
));
284 /* If this is the first terminal, enable automatically. */
285 if (! term
->init
|| term
->init (term
) == GRUB_ERR_NONE
)
286 grub_list_push (GRUB_AS_LIST_P (&grub_term_outputs
),
287 GRUB_AS_LIST (term
));
292 grub_term_register_output_inactive (const char *name
__attribute__ ((unused
)),
293 grub_term_output_t term
)
295 grub_list_push (GRUB_AS_LIST_P (&grub_term_outputs_disabled
),
296 GRUB_AS_LIST (term
));
300 grub_term_register_output_active (const char *name
__attribute__ ((unused
)),
301 grub_term_output_t term
)
303 if (! term
->init
|| term
->init (term
) == GRUB_ERR_NONE
)
304 grub_list_push (GRUB_AS_LIST_P (&grub_term_outputs
),
305 GRUB_AS_LIST (term
));
309 grub_term_unregister_input (grub_term_input_t term
)
311 grub_list_remove (GRUB_AS_LIST (term
));
312 grub_list_remove (GRUB_AS_LIST (term
));
316 grub_term_unregister_output (grub_term_output_t term
)
318 grub_list_remove (GRUB_AS_LIST (term
));
319 grub_list_remove (GRUB_AS_LIST (term
));
322 #define FOR_ACTIVE_TERM_INPUTS(var) FOR_LIST_ELEMENTS((var), (grub_term_inputs))
323 #define FOR_DISABLED_TERM_INPUTS(var) FOR_LIST_ELEMENTS((var), (grub_term_inputs_disabled))
324 #define FOR_ACTIVE_TERM_OUTPUTS(var) FOR_LIST_ELEMENTS((var), (grub_term_outputs))
325 #define FOR_DISABLED_TERM_OUTPUTS(var) FOR_LIST_ELEMENTS((var), (grub_term_outputs_disabled))
327 void grub_putcode (grub_uint32_t code
, struct grub_term_output
*term
);
328 int EXPORT_FUNC(grub_getkey
) (void);
329 int EXPORT_FUNC(grub_getkey_noblock
) (void);
330 extern int (*EXPORT_VAR (grub_key_remap
))(int key
);
331 void grub_cls (void);
332 void EXPORT_FUNC(grub_refresh
) (void);
333 void grub_puts_terminal (const char *str
, struct grub_term_output
*term
);
334 struct grub_term_coordinate
*grub_term_save_pos (void);
335 void grub_term_restore_pos (struct grub_term_coordinate
*pos
);
337 static inline unsigned grub_term_width (struct grub_term_output
*term
)
339 return term
->getwh(term
).x
? : 80;
342 static inline unsigned grub_term_height (struct grub_term_output
*term
)
344 return term
->getwh(term
).y
? : 24;
347 static inline struct grub_term_coordinate
348 grub_term_getxy (struct grub_term_output
*term
)
350 return term
->getxy (term
);
354 grub_term_refresh (struct grub_term_output
*term
)
357 term
->refresh (term
);
361 grub_term_gotoxy (struct grub_term_output
*term
, struct grub_term_coordinate pos
)
363 term
->gotoxy (term
, pos
);
367 grub_term_setcolorstate (struct grub_term_output
*term
,
368 grub_term_color_state state
)
370 if (term
->setcolorstate
)
371 term
->setcolorstate (term
, state
);
375 grub_setcolorstate (grub_term_color_state state
)
377 struct grub_term_output
*term
;
379 FOR_ACTIVE_TERM_OUTPUTS(term
)
380 grub_term_setcolorstate (term
, state
);
383 /* Turn on/off the cursor. */
385 grub_term_setcursor (struct grub_term_output
*term
, int on
)
388 term
->setcursor (term
, on
);
392 grub_term_cls (struct grub_term_output
*term
)
398 grub_putcode ('\n', term
);
399 grub_term_refresh (term
);
406 grub_unicode_estimate_width (const struct grub_unicode_glyph
*c
);
410 static inline grub_size_t
411 grub_unicode_estimate_width (const struct grub_unicode_glyph
*c
__attribute__ ((unused
)))
413 if (grub_unicode_get_comb_type (c
->base
))
420 #define GRUB_TERM_TAB_WIDTH 8
422 static inline grub_size_t
423 grub_term_getcharwidth (struct grub_term_output
*term
,
424 const struct grub_unicode_glyph
*c
)
427 return GRUB_TERM_TAB_WIDTH
;
429 if (term
->getcharwidth
)
430 return term
->getcharwidth (term
, c
);
431 else if (((term
->flags
& GRUB_TERM_CODE_TYPE_MASK
)
432 == GRUB_TERM_CODE_TYPE_UTF8_LOGICAL
)
433 || ((term
->flags
& GRUB_TERM_CODE_TYPE_MASK
)
434 == GRUB_TERM_CODE_TYPE_UTF8_VISUAL
)
435 || ((term
->flags
& GRUB_TERM_CODE_TYPE_MASK
)
436 == GRUB_TERM_CODE_TYPE_VISUAL_GLYPHS
))
437 return grub_unicode_estimate_width (c
);
442 struct grub_term_autoload
444 struct grub_term_autoload
*next
;
449 extern struct grub_term_autoload
*grub_term_input_autoload
;
450 extern struct grub_term_autoload
*grub_term_output_autoload
;
453 grub_print_spaces (struct grub_term_output
*term
, int number_spaces
)
455 while (--number_spaces
>= 0)
456 grub_putcode (' ', term
);
459 extern void (*EXPORT_VAR (grub_term_poll_usb
)) (int wait_for_completion
);
461 #define GRUB_TERM_REPEAT_PRE_INTERVAL 400
462 #define GRUB_TERM_REPEAT_INTERVAL 50
464 #endif /* ! ASM_FILE */
466 #endif /* ! GRUB_TERM_HEADER */