Indentation fix, cleanup.
[AROS.git] / arch / all-pc / boot / grub2-aros / grub-core / commands / cat.c
blob8a7f1af78444bd830fa912ea34bee53dd79d082f
1 /* cat.c - command to show the contents of a file */
2 /*
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2003,2005,2007,2008 Free Software Foundation, Inc.
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.
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.
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/>.
20 #include <grub/dl.h>
21 #include <grub/file.h>
22 #include <grub/disk.h>
23 #include <grub/term.h>
24 #include <grub/misc.h>
25 #include <grub/extcmd.h>
26 #include <grub/i18n.h>
27 #include <grub/charset.h>
29 GRUB_MOD_LICENSE ("GPLv3+");
31 static const struct grub_arg_option options[] =
33 {"dos", -1, 0, N_("Accept DOS-style CR/NL line endings."), 0, 0},
34 {0, 0, 0, 0, 0, 0}
37 static grub_err_t
38 grub_cmd_cat (grub_extcmd_context_t ctxt, int argc, char **args)
40 struct grub_arg_list *state = ctxt->state;
41 int dos = 0;
42 grub_file_t file;
43 unsigned char buf[GRUB_DISK_SECTOR_SIZE];
44 grub_ssize_t size;
45 int key = GRUB_TERM_NO_KEY;
46 grub_uint32_t code = 0;
47 int count = 0;
48 unsigned char utbuf[GRUB_MAX_UTF8_PER_CODEPOINT + 1];
49 int utcount = 0;
50 int is_0d = 0;
51 int j;
53 if (state[0].set)
54 dos = 1;
56 if (argc != 1)
57 return grub_error (GRUB_ERR_BAD_ARGUMENT, N_("filename expected"));
59 file = grub_file_open (args[0]);
60 if (! file)
61 return grub_errno;
63 while ((size = grub_file_read (file, buf, sizeof (buf))) > 0
64 && key != GRUB_TERM_ESC)
66 int i;
68 for (i = 0; i < size; i++)
70 utbuf[utcount++] = buf[i];
72 if (is_0d && buf[i] != '\n')
74 grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT);
75 grub_printf ("<%x>", (int) '\r');
76 grub_setcolorstate (GRUB_TERM_COLOR_STANDARD);
79 is_0d = 0;
81 if (!grub_utf8_process (buf[i], &code, &count))
83 grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT);
84 for (j = 0; j < utcount - 1; j++)
85 grub_printf ("<%x>", (unsigned int) utbuf[j]);
86 code = 0;
87 count = 0;
88 if (utcount == 1 || !grub_utf8_process (buf[i], &code, &count))
90 grub_printf ("<%x>", (unsigned int) buf[i]);
91 code = 0;
92 count = 0;
93 utcount = 0;
94 grub_setcolorstate (GRUB_TERM_COLOR_STANDARD);
95 continue;
97 grub_setcolorstate (GRUB_TERM_COLOR_STANDARD);
98 utcount = 1;
100 if (count)
101 continue;
103 if ((code >= 0xa1 || grub_isprint (code)
104 || grub_isspace (code)) && code != '\r')
106 grub_printf ("%C", code);
107 count = 0;
108 code = 0;
109 utcount = 0;
110 continue;
113 if (dos && code == '\r')
115 is_0d = 1;
116 count = 0;
117 code = 0;
118 utcount = 0;
119 continue;
122 grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT);
123 for (j = 0; j < utcount; j++)
124 grub_printf ("<%x>", (unsigned int) utbuf[j]);
125 grub_setcolorstate (GRUB_TERM_COLOR_STANDARD);
126 count = 0;
127 code = 0;
128 utcount = 0;
132 key = grub_getkey_noblock ();
133 while (key != GRUB_TERM_ESC && key != GRUB_TERM_NO_KEY);
136 if (is_0d)
138 grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT);
139 grub_printf ("<%x>", (unsigned int) '\r');
140 grub_setcolorstate (GRUB_TERM_COLOR_STANDARD);
143 grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT);
144 for (j = 0; j < utcount; j++)
145 grub_printf ("<%x>", (unsigned int) utbuf[j]);
146 grub_setcolorstate (GRUB_TERM_COLOR_STANDARD);
148 grub_xputs ("\n");
149 grub_refresh ();
150 grub_file_close (file);
152 return 0;
155 static grub_extcmd_t cmd;
157 GRUB_MOD_INIT(cat)
159 cmd = grub_register_extcmd ("cat", grub_cmd_cat, 0,
160 N_("FILE"), N_("Show the contents of a file."),
161 options);
164 GRUB_MOD_FINI(cat)
166 grub_unregister_extcmd (cmd);