main.c 2.81 KB
Newer Older
1
/*
2
 *  GRUB  --  GRand Unified Bootloader
3
 *  Copyright (C) 2009  Free Software Foundation, Inc.
4
 *
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 9
 *  (at your option) any later version.
 *
10
 *  GRUB is distributed in the hope that it will be useful,
11 12 13 14 15
 *  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
16
 *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
17 18
 */

19
#include <grub/dl.h>
BVK Chaitanya's avatar
BVK Chaitanya committed
20
#include <grub/i18n.h>
21
#include <grub/parser.h>
22
#include <grub/script_sh.h>
23

24
grub_err_t
25 26
grub_normal_parse_line (char *line,
			grub_reader_getline_t getline, void *getline_data)
27
{
28
  struct grub_script *parsed_script;
29

30
  /* Parse the script.  */
31
  parsed_script = grub_script_parse (line, getline, getline_data);
32 33

  if (parsed_script)
34
    {
35 36 37 38
      /* Execute the command(s).  */
      grub_script_execute (parsed_script);

      /* The parsed script was executed, throw it away.  */
39
      grub_script_unref (parsed_script);
40
    }
41

42 43 44
  return grub_errno;
}

BVK Chaitanya's avatar
BVK Chaitanya committed
45
static grub_command_t cmd_break;
BVK Chaitanya's avatar
BVK Chaitanya committed
46
static grub_command_t cmd_continue;
BVK Chaitanya's avatar
BVK Chaitanya committed
47
static grub_command_t cmd_shift;
48
static grub_command_t cmd_setparams;
49
static grub_command_t cmd_return;
50

BVK Chaitanya's avatar
BVK Chaitanya committed
51 52
void
grub_script_init (void)
53
{
BVK Chaitanya's avatar
BVK Chaitanya committed
54
  cmd_break = grub_register_command ("break", grub_script_break,
55
				     N_("[NUM]"), N_("Exit from loops"));
BVK Chaitanya's avatar
BVK Chaitanya committed
56
  cmd_continue = grub_register_command ("continue", grub_script_break,
57
					N_("[NUM]"), N_("Continue loops"));
BVK Chaitanya's avatar
BVK Chaitanya committed
58
  cmd_shift = grub_register_command ("shift", grub_script_shift,
59
				     N_("[NUM]"),
60 61
				     /* TRANSLATORS: Positional arguments are
					arguments $0, $1, $2, ...  */
62
				     N_("Shift positional parameters."));
63 64 65
  cmd_setparams = grub_register_command ("setparams", grub_script_setparams,
					 N_("[VALUE]..."),
					 N_("Set positional parameters."));
66
  cmd_return = grub_register_command ("return", grub_script_return,
67
				      N_("[NUM]"),
68 69 70 71 72
				      /* TRANSLATORS: It's a command description
					 and "Return" is a verb, not a noun. The
					 command in question is "return" and
					 has exactly the same semanics as bash
					 equivalent.  */
73
				      N_("Return from a function."));
74 75
}

BVK Chaitanya's avatar
BVK Chaitanya committed
76 77
void
grub_script_fini (void)
78
{
BVK Chaitanya's avatar
BVK Chaitanya committed
79 80 81
  if (cmd_break)
    grub_unregister_command (cmd_break);
  cmd_break = 0;
BVK Chaitanya's avatar
BVK Chaitanya committed
82 83 84 85 86

  if (cmd_continue)
    grub_unregister_command (cmd_continue);
  cmd_continue = 0;

BVK Chaitanya's avatar
BVK Chaitanya committed
87 88 89
  if (cmd_shift)
    grub_unregister_command (cmd_shift);
  cmd_shift = 0;
90

91 92 93
  if (cmd_setparams)
    grub_unregister_command (cmd_setparams);
  cmd_setparams = 0;
BVK Chaitanya's avatar
BVK Chaitanya committed
94

95 96 97
  if (cmd_return)
    grub_unregister_command (cmd_return);
  cmd_return = 0;
98
}