FORALL_ACTIVE_TERM_OUTPUTS macro
This commit is contained in:
parent
8eca55a6eb
commit
3be7f8de12
8 changed files with 106 additions and 121 deletions
|
@ -39,10 +39,8 @@ grub_cmd_help (grub_extcmd_t ext __attribute__ ((unused)), int argc,
|
||||||
{
|
{
|
||||||
struct grub_term_output *cur;
|
struct grub_term_output *cur;
|
||||||
int desclen = grub_strlen (cmd->summary);
|
int desclen = grub_strlen (cmd->summary);
|
||||||
for (cur = grub_term_outputs; cur; cur = cur->next)
|
FOR_ACTIVE_TERM_OUTPUTS(cur)
|
||||||
{
|
{
|
||||||
if (!grub_term_is_active (cur))
|
|
||||||
continue;
|
|
||||||
int width = grub_term_width(cur);
|
int width = grub_term_width(cur);
|
||||||
char description[width / 2];
|
char description[width / 2];
|
||||||
|
|
||||||
|
@ -83,7 +81,11 @@ grub_cmd_help (grub_extcmd_t ext __attribute__ ((unused)), int argc,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (argc == 0)
|
if (argc == 0)
|
||||||
|
{
|
||||||
grub_command_iterate (print_command_info);
|
grub_command_iterate (print_command_info);
|
||||||
|
if (!(cnt % 2))
|
||||||
|
grub_printf ("\n");
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
|
@ -227,6 +227,7 @@ grub_term_unregister_output (grub_term_output_t term)
|
||||||
}
|
}
|
||||||
|
|
||||||
#define FOR_ACTIVE_TERM_INPUTS(var) for (var = grub_term_inputs; var; var = var->next)
|
#define FOR_ACTIVE_TERM_INPUTS(var) for (var = grub_term_inputs; var; var = var->next)
|
||||||
|
#define FOR_ACTIVE_TERM_OUTPUTS(var) for (var = grub_term_outputs; var; var = var->next) if (grub_term_is_active (var))
|
||||||
|
|
||||||
void EXPORT_FUNC(grub_putchar) (int c);
|
void EXPORT_FUNC(grub_putchar) (int c);
|
||||||
void EXPORT_FUNC(grub_putcode) (grub_uint32_t code,
|
void EXPORT_FUNC(grub_putcode) (grub_uint32_t code,
|
||||||
|
|
14
kern/term.c
14
kern/term.c
|
@ -69,8 +69,7 @@ grub_putchar (int c)
|
||||||
{
|
{
|
||||||
struct grub_term_output *term;
|
struct grub_term_output *term;
|
||||||
size = 0;
|
size = 0;
|
||||||
for (term = grub_term_outputs; term; term = term->next)
|
FOR_ACTIVE_TERM_OUTPUTS(term)
|
||||||
if (grub_term_is_active (term))
|
|
||||||
grub_putcode (code, term);
|
grub_putcode (code, term);
|
||||||
}
|
}
|
||||||
if (ret == '\n' && grub_newline_hook)
|
if (ret == '\n' && grub_newline_hook)
|
||||||
|
@ -130,11 +129,8 @@ grub_cls (void)
|
||||||
{
|
{
|
||||||
struct grub_term_output *term;
|
struct grub_term_output *term;
|
||||||
|
|
||||||
for (term = grub_term_outputs; term; term = term->next)
|
FOR_ACTIVE_TERM_OUTPUTS(term)
|
||||||
{
|
{
|
||||||
if (! grub_term_is_active (term))
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if ((term->flags & GRUB_TERM_DUMB) || (grub_env_get ("debug")))
|
if ((term->flags & GRUB_TERM_DUMB) || (grub_env_get ("debug")))
|
||||||
{
|
{
|
||||||
grub_putcode ('\n', term);
|
grub_putcode ('\n', term);
|
||||||
|
@ -150,8 +146,7 @@ grub_setcolorstate (grub_term_color_state state)
|
||||||
{
|
{
|
||||||
struct grub_term_output *term;
|
struct grub_term_output *term;
|
||||||
|
|
||||||
for (term = grub_term_outputs; term; term = term->next)
|
FOR_ACTIVE_TERM_OUTPUTS(term)
|
||||||
if (grub_term_is_active (term))
|
|
||||||
grub_term_setcolorstate (term, state);
|
grub_term_setcolorstate (term, state);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -160,7 +155,6 @@ grub_refresh (void)
|
||||||
{
|
{
|
||||||
struct grub_term_output *term;
|
struct grub_term_output *term;
|
||||||
|
|
||||||
for (term = grub_term_outputs; term; term = term->next)
|
FOR_ACTIVE_TERM_OUTPUTS(term)
|
||||||
if (grub_term_is_active (term))
|
|
||||||
grub_term_refresh (term);
|
grub_term_refresh (term);
|
||||||
}
|
}
|
||||||
|
|
|
@ -363,16 +363,14 @@ grub_cmdline_get (const char *prompt)
|
||||||
struct cmdline_term *cl_term_cur;
|
struct cmdline_term *cl_term_cur;
|
||||||
struct grub_term_output *cur;
|
struct grub_term_output *cur;
|
||||||
nterms = 0;
|
nterms = 0;
|
||||||
for (cur = grub_term_outputs; cur; cur = cur->next)
|
FOR_ACTIVE_TERM_OUTPUTS(cur)
|
||||||
if (grub_term_is_active (cur))
|
|
||||||
nterms++;
|
nterms++;
|
||||||
|
|
||||||
cl_terms = grub_malloc (sizeof (cl_terms[0]) * nterms);
|
cl_terms = grub_malloc (sizeof (cl_terms[0]) * nterms);
|
||||||
if (!cl_terms)
|
if (!cl_terms)
|
||||||
return 0;
|
return 0;
|
||||||
cl_term_cur = cl_terms;
|
cl_term_cur = cl_terms;
|
||||||
for (cur = grub_term_outputs; cur; cur = cur->next)
|
FOR_ACTIVE_TERM_OUTPUTS(cur)
|
||||||
if (grub_term_is_active (cur))
|
|
||||||
{
|
{
|
||||||
cl_term_cur->term = cur;
|
cl_term_cur->term = cur;
|
||||||
init_clterm (cl_term_cur);
|
init_clterm (cl_term_cur);
|
||||||
|
|
|
@ -110,11 +110,8 @@ set_colors (void)
|
||||||
{
|
{
|
||||||
struct grub_term_output *term;
|
struct grub_term_output *term;
|
||||||
|
|
||||||
for (term = grub_term_outputs; term; term = term->next)
|
FOR_ACTIVE_TERM_OUTPUTS(term)
|
||||||
{
|
{
|
||||||
if (! grub_term_is_active (term))
|
|
||||||
continue;
|
|
||||||
|
|
||||||
/* Reloads terminal `normal' and `highlight' colors. */
|
/* Reloads terminal `normal' and `highlight' colors. */
|
||||||
grub_term_setcolor (term, color_normal, color_highlight);
|
grub_term_setcolor (term, color_normal, color_highlight);
|
||||||
|
|
||||||
|
|
|
@ -520,10 +520,8 @@ grub_normal_reader_init (void)
|
||||||
|
|
||||||
grub_sprintf (msg_formatted, msg, reader_nested ? msg_esc : "");
|
grub_sprintf (msg_formatted, msg, reader_nested ? msg_esc : "");
|
||||||
|
|
||||||
for (term = grub_term_outputs; term; term = term->next)
|
FOR_ACTIVE_TERM_OUTPUTS(term)
|
||||||
{
|
{
|
||||||
if (! (term->flags & GRUB_TERM_ACTIVE))
|
|
||||||
continue;
|
|
||||||
grub_normal_init_page (term);
|
grub_normal_init_page (term);
|
||||||
grub_term_setcursor (term, 1);
|
grub_term_setcursor (term, 1);
|
||||||
|
|
||||||
|
|
|
@ -439,10 +439,8 @@ grub_menu_text_register_instances (int entry, grub_menu_t menu, int nested)
|
||||||
struct grub_menu_viewer *instance;
|
struct grub_menu_viewer *instance;
|
||||||
struct grub_term_output *term;
|
struct grub_term_output *term;
|
||||||
|
|
||||||
for (term = grub_term_outputs; term; term = term->next)
|
FOR_ACTIVE_TERM_OUTPUTS(term)
|
||||||
{
|
{
|
||||||
if (!grub_term_is_active (term))
|
|
||||||
continue;
|
|
||||||
instance = grub_zalloc (sizeof (*instance));
|
instance = grub_zalloc (sizeof (*instance));
|
||||||
if (!instance)
|
if (!instance)
|
||||||
{
|
{
|
||||||
|
|
|
@ -32,8 +32,8 @@ process_newline (void)
|
||||||
struct grub_term_output *cur;
|
struct grub_term_output *cur;
|
||||||
unsigned height = -1;
|
unsigned height = -1;
|
||||||
|
|
||||||
for (cur = grub_term_outputs; cur; cur = cur->next)
|
FOR_ACTIVE_TERM_OUTPUTS(cur)
|
||||||
if (grub_term_is_active(cur) && grub_term_height (cur) < height)
|
if (grub_term_height (cur) < height)
|
||||||
height = grub_term_height (cur);
|
height = grub_term_height (cur);
|
||||||
grub_more_lines++;
|
grub_more_lines++;
|
||||||
|
|
||||||
|
@ -98,8 +98,7 @@ grub_term_save_pos (void)
|
||||||
unsigned cnt = 0;
|
unsigned cnt = 0;
|
||||||
grub_uint16_t *ret, *ptr;
|
grub_uint16_t *ret, *ptr;
|
||||||
|
|
||||||
for (cur = grub_term_outputs; cur; cur = cur->next)
|
FOR_ACTIVE_TERM_OUTPUTS(cur)
|
||||||
if (grub_term_is_active (cur))
|
|
||||||
cnt++;
|
cnt++;
|
||||||
|
|
||||||
ret = grub_malloc (cnt * sizeof (ret[0]));
|
ret = grub_malloc (cnt * sizeof (ret[0]));
|
||||||
|
@ -107,8 +106,7 @@ grub_term_save_pos (void)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
ptr = ret;
|
ptr = ret;
|
||||||
for (cur = grub_term_outputs; cur; cur = cur->next)
|
FOR_ACTIVE_TERM_OUTPUTS(cur)
|
||||||
if (grub_term_is_active (cur))
|
|
||||||
*ptr++ = grub_term_getxy (cur);
|
*ptr++ = grub_term_getxy (cur);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -123,8 +121,7 @@ grub_term_restore_pos (grub_uint16_t *pos)
|
||||||
if (!pos)
|
if (!pos)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
for (cur = grub_term_outputs; cur; cur = cur->next)
|
FOR_ACTIVE_TERM_OUTPUTS(cur)
|
||||||
if (grub_term_is_active (cur))
|
|
||||||
{
|
{
|
||||||
grub_term_gotoxy (cur, (*ptr & 0xff00) >> 8, *ptr & 0xff);
|
grub_term_gotoxy (cur, (*ptr & 0xff00) >> 8, *ptr & 0xff);
|
||||||
ptr++;
|
ptr++;
|
||||||
|
|
Loading…
Reference in a new issue