2010-08-27 18:04:49 +00:00
|
|
|
/*
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
|
|
|
* Copyright (C) 2010 Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* GRUB is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GRUB is distributed in the hope that it will be useful,
|
|
|
|
* 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
|
|
|
|
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2010-09-24 07:19:57 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2010-08-27 18:04:49 +00:00
|
|
|
#include <grub/legacy_parse.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2010-09-12 13:50:52 +00:00
|
|
|
#include <grub/util/misc.h>
|
2011-01-10 22:57:49 +00:00
|
|
|
#include <grub/misc.h>
|
2011-11-11 20:44:56 +00:00
|
|
|
#include <grub/i18n.h>
|
2010-08-27 18:04:49 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
|
|
|
FILE *in, *out;
|
|
|
|
char *entryname = NULL;
|
|
|
|
char *buf = NULL;
|
|
|
|
size_t bufsize = 0;
|
2010-09-12 00:55:24 +00:00
|
|
|
char *suffix = xstrdup ("");
|
|
|
|
int suffixlen = 0;
|
2012-05-10 07:39:11 +00:00
|
|
|
const char *out_fname = 0;
|
2010-08-27 18:04:49 +00:00
|
|
|
|
2013-10-13 18:03:42 +00:00
|
|
|
grub_util_host_init (&argc, &argv);
|
|
|
|
|
2010-08-27 18:04:49 +00:00
|
|
|
if (argc >= 2 && argv[1][0] == '-')
|
|
|
|
{
|
2011-11-11 20:44:56 +00:00
|
|
|
fprintf (stdout, _("Usage: %s [INFILE [OUTFILE]]\n"), argv[0]);
|
2010-08-27 18:04:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc >= 2)
|
|
|
|
{
|
2013-10-13 18:36:28 +00:00
|
|
|
in = grub_util_fopen (argv[1], "r");
|
2010-08-27 18:04:49 +00:00
|
|
|
if (!in)
|
|
|
|
{
|
2012-02-05 10:07:33 +00:00
|
|
|
fprintf (stderr, _("cannot open `%s': %s"),
|
2010-08-27 18:04:49 +00:00
|
|
|
argv[1], strerror (errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
in = stdin;
|
|
|
|
|
|
|
|
if (argc >= 3)
|
|
|
|
{
|
2013-10-13 18:36:28 +00:00
|
|
|
out = grub_util_fopen (argv[2], "w");
|
2010-08-27 18:04:49 +00:00
|
|
|
if (!out)
|
|
|
|
{
|
|
|
|
if (in != stdin)
|
|
|
|
fclose (in);
|
2012-02-05 10:07:33 +00:00
|
|
|
fprintf (stderr, _("cannot open `%s': %s"),
|
2010-08-27 18:04:49 +00:00
|
|
|
argv[2], strerror (errno));
|
|
|
|
return 1;
|
|
|
|
}
|
2012-05-10 07:39:11 +00:00
|
|
|
out_fname = argv[2];
|
2010-08-27 18:04:49 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
out = stdout;
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
char *parsed;
|
|
|
|
|
|
|
|
if (getline (&buf, &bufsize, in) < 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
{
|
|
|
|
char *oldname = NULL;
|
2010-09-12 13:50:52 +00:00
|
|
|
char *newsuffix;
|
2010-08-27 18:04:49 +00:00
|
|
|
|
|
|
|
oldname = entryname;
|
2012-03-11 13:43:18 +00:00
|
|
|
parsed = grub_legacy_parse (buf, &entryname, &newsuffix);
|
2010-09-12 13:50:52 +00:00
|
|
|
if (newsuffix)
|
2010-09-12 00:55:24 +00:00
|
|
|
{
|
2010-09-12 13:50:52 +00:00
|
|
|
suffixlen += strlen (newsuffix);
|
2010-09-12 00:55:24 +00:00
|
|
|
suffix = xrealloc (suffix, suffixlen + 1);
|
2010-09-12 13:50:52 +00:00
|
|
|
strcat (suffix, newsuffix);
|
2010-09-12 00:55:24 +00:00
|
|
|
}
|
2010-08-27 18:04:49 +00:00
|
|
|
if (oldname != entryname && oldname)
|
|
|
|
fprintf (out, "}\n\n");
|
|
|
|
if (oldname != entryname)
|
2010-09-12 12:01:02 +00:00
|
|
|
{
|
|
|
|
char *escaped = grub_legacy_escape (entryname, strlen (entryname));
|
|
|
|
fprintf (out, "menuentry \'%s\' {\n", escaped);
|
2010-09-12 13:50:52 +00:00
|
|
|
free (escaped);
|
|
|
|
free (oldname);
|
2010-09-12 12:01:02 +00:00
|
|
|
}
|
2010-08-27 18:04:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (parsed)
|
|
|
|
fprintf (out, "%s%s", entryname ? " " : "", parsed);
|
2010-09-12 13:50:52 +00:00
|
|
|
free (parsed);
|
2010-09-12 12:01:02 +00:00
|
|
|
parsed = NULL;
|
2010-08-27 18:04:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (entryname)
|
|
|
|
fprintf (out, "}\n\n");
|
|
|
|
|
2012-05-10 07:39:11 +00:00
|
|
|
if (fwrite (suffix, 1, suffixlen, out) != suffixlen)
|
|
|
|
{
|
|
|
|
if (out_fname)
|
|
|
|
grub_util_error ("cannot write to `%s': %s",
|
|
|
|
out_fname, strerror (errno));
|
|
|
|
else
|
|
|
|
grub_util_error ("cannot write to the stdout: %s", strerror (errno));
|
|
|
|
}
|
2010-08-27 18:04:49 +00:00
|
|
|
|
2010-09-12 13:50:52 +00:00
|
|
|
free (buf);
|
|
|
|
free (suffix);
|
|
|
|
free (entryname);
|
2010-09-12 12:01:02 +00:00
|
|
|
|
2010-08-27 18:04:49 +00:00
|
|
|
if (in != stdin)
|
|
|
|
fclose (in);
|
|
|
|
if (out != stdout)
|
|
|
|
fclose (out);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|