font_cmd.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* font_cmd.c - Font command definition. */
  2. /*
  3. * GRUB -- GRand Unified Bootloader
  4. * Copyright (C) 2003,2005,2006,2007,2008,2009 Free Software Foundation, Inc.
  5. *
  6. * GRUB is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * GRUB is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #include <grub/font.h>
  20. #include <grub/dl.h>
  21. #include <grub/misc.h>
  22. #include <grub/command.h>
  23. #include <grub/i18n.h>
  24. static grub_err_t
  25. loadfont_command (grub_command_t cmd __attribute__ ((unused)),
  26. int argc,
  27. char **args)
  28. {
  29. if (argc == 0)
  30. return grub_error (GRUB_ERR_BAD_ARGUMENT, "no font specified");
  31. while (argc--)
  32. if (grub_font_load (*args++) != 0)
  33. return GRUB_ERR_BAD_FONT;
  34. return GRUB_ERR_NONE;
  35. }
  36. static grub_err_t
  37. lsfonts_command (grub_command_t cmd __attribute__ ((unused)),
  38. int argc __attribute__ ((unused)),
  39. char **args __attribute__ ((unused)))
  40. {
  41. struct grub_font_node *node;
  42. grub_printf ("Loaded fonts:\n");
  43. for (node = grub_font_list; node; node = node->next)
  44. {
  45. grub_font_t font = node->value;
  46. grub_printf ("%s\n", grub_font_get_name (font));
  47. }
  48. return GRUB_ERR_NONE;
  49. }
  50. static grub_command_t cmd_loadfont, cmd_lsfonts;
  51. GRUB_MOD_INIT(font)
  52. {
  53. grub_font_loader_init ();
  54. cmd_loadfont =
  55. grub_register_command ("loadfont", loadfont_command,
  56. N_("FILE..."),
  57. N_("Specify one or more font files to load."));
  58. cmd_lsfonts =
  59. grub_register_command ("lsfonts", lsfonts_command,
  60. 0, N_("List the loaded fonts."));
  61. }
  62. GRUB_MOD_FINI(font)
  63. {
  64. /* TODO: Determine way to free allocated resources.
  65. Warning: possible pointer references could be in use. */
  66. grub_unregister_command (cmd_loadfont);
  67. grub_unregister_command (cmd_lsfonts);
  68. }