5491
|
1 /* Convert files for Emacs Hexl mode.
|
|
2 Copyright (C) 1989, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
|
|
3 2009, 2010 Free Software Foundation, Inc.
|
|
4 Copyright (C) 2010 Ben Wing.
|
|
5
|
|
6 Author: Keith Gabryelski
|
|
7 (according to authors.el)
|
|
8
|
|
9 This file is not considered part of XEmacs.
|
|
10
|
|
11 This program is free software: you can redistribute it and/or modify
|
|
12 it under the terms of the GNU General Public License as published by
|
|
13 the Free Software Foundation, either version 3 of the License, or
|
|
14 (at your option) any later version.
|
428
|
15
|
5491
|
16 This program is distributed in the hope that it will be useful,
|
|
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
19 GNU General Public License for more details.
|
|
20
|
|
21 You should have received a copy of the GNU General Public License
|
|
22 along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
23
|
|
24 /* Synced up with: GNU 23.1.92. */
|
|
25 /* Synced by: Ben Wing, 2-17-10. */
|
|
26
|
|
27 #ifdef HAVE_CONFIG_H
|
438
|
28 #include <config.h>
|
5491
|
29 #endif
|
428
|
30
|
|
31 #include <stdio.h>
|
|
32 #include <ctype.h>
|
442
|
33 #ifdef WIN32_NATIVE
|
440
|
34 #include <io.h>
|
428
|
35 #include <fcntl.h>
|
|
36 #endif
|
|
37
|
|
38 #if __STDC__ || defined(STDC_HEADERS)
|
|
39 #include <stdlib.h>
|
442
|
40 #ifdef HAVE_UNISTD_H
|
428
|
41 #include <unistd.h>
|
442
|
42 #endif
|
428
|
43 #include <string.h>
|
|
44 #endif
|
|
45
|
|
46 #define DEFAULT_GROUPING 0x01
|
|
47 #define DEFAULT_BASE 16
|
|
48
|
|
49 #undef TRUE
|
|
50 #undef FALSE
|
|
51 #define TRUE (1)
|
|
52 #define FALSE (0)
|
|
53
|
|
54 int base = DEFAULT_BASE, un_flag = FALSE, iso_flag = FALSE, endian = 1;
|
|
55 int group_by = DEFAULT_GROUPING;
|
|
56 char *progname;
|
|
57
|
|
58 void usage (void);
|
|
59
|
|
60 int
|
|
61 main (int argc, char *argv[])
|
|
62 {
|
|
63 register long address;
|
|
64 char string[18];
|
|
65 FILE *fp;
|
5491
|
66
|
428
|
67 progname = *argv++; --argc;
|
5491
|
68
|
428
|
69 /*
|
5491
|
70 ** -hex hex dump
|
|
71 ** -oct Octal dump
|
|
72 ** -group-by-8-bits
|
|
73 ** -group-by-16-bits
|
|
74 ** -group-by-32-bits
|
|
75 ** -group-by-64-bits
|
|
76 ** -iso iso character set.
|
|
77 ** -big-endian Big Endian
|
|
78 ** -little-endian Little Endian
|
|
79 ** -un || -de from hexl format to binary.
|
|
80 ** -- End switch list.
|
|
81 ** <filename> dump filename
|
|
82 ** - (as filename == stdin)
|
|
83 */
|
|
84
|
428
|
85 while (*argv && *argv[0] == '-' && (*argv)[1])
|
|
86 {
|
|
87 /* A switch! */
|
|
88 if (!strcmp (*argv, "--"))
|
|
89 {
|
|
90 --argc; argv++;
|
|
91 break;
|
|
92 }
|
|
93 else if (!strcmp (*argv, "-un") || !strcmp (*argv, "-de"))
|
|
94 {
|
|
95 un_flag = TRUE;
|
|
96 --argc; argv++;
|
|
97 }
|
|
98 else if (!strcmp (*argv, "-hex"))
|
|
99 {
|
|
100 base = 16;
|
|
101 --argc; argv++;
|
|
102 }
|
|
103 else if (!strcmp (*argv, "-iso"))
|
|
104 {
|
|
105 iso_flag = TRUE;
|
|
106 --argc; argv++;
|
|
107 }
|
|
108 else if (!strcmp (*argv, "-oct"))
|
|
109 {
|
|
110 base = 8;
|
|
111 --argc; argv++;
|
|
112 }
|
|
113 else if (!strcmp (*argv, "-big-endian"))
|
|
114 {
|
|
115 endian = 1;
|
|
116 --argc; argv++;
|
|
117 }
|
|
118 else if (!strcmp (*argv, "-little-endian"))
|
|
119 {
|
|
120 endian = 0;
|
|
121 --argc; argv++;
|
|
122 }
|
|
123 else if (!strcmp (*argv, "-group-by-8-bits"))
|
|
124 {
|
|
125 group_by = 0x00;
|
|
126 --argc; argv++;
|
|
127 }
|
|
128 else if (!strcmp (*argv, "-group-by-16-bits"))
|
|
129 {
|
|
130 group_by = 0x01;
|
|
131 --argc; argv++;
|
|
132 }
|
|
133 else if (!strcmp (*argv, "-group-by-32-bits"))
|
|
134 {
|
|
135 group_by = 0x03;
|
|
136 --argc; argv++;
|
|
137 }
|
|
138 else if (!strcmp (*argv, "-group-by-64-bits"))
|
|
139 {
|
|
140 group_by = 0x07;
|
|
141 endian = 0;
|
|
142 --argc; argv++;
|
|
143 }
|
|
144 else
|
|
145 {
|
5491
|
146 fprintf (stderr, "%s: invalid switch: \"%s\".\n", progname,
|
428
|
147 *argv);
|
|
148 usage ();
|
|
149 }
|
|
150 }
|
|
151
|
|
152 do
|
|
153 {
|
|
154 if (*argv == NULL)
|
|
155 fp = stdin;
|
|
156 else
|
|
157 {
|
|
158 char *filename = *argv++;
|
|
159
|
|
160 if (!strcmp (filename, "-"))
|
|
161 fp = stdin;
|
|
162 else if ((fp = fopen (filename, "r")) == NULL)
|
|
163 {
|
|
164 perror (filename);
|
|
165 continue;
|
|
166 }
|
|
167 }
|
|
168
|
|
169 if (un_flag)
|
|
170 {
|
|
171 char buf[18];
|
|
172
|
442
|
173 #ifdef WIN32_NATIVE
|
5491
|
174 if (!isatty (_fileno (stdout)))
|
|
175 _setmode (_fileno (stdout), O_BINARY);
|
428
|
176 #endif
|
|
177 for (;;)
|
|
178 {
|
442
|
179 register int i, c = 0, d;
|
428
|
180
|
|
181 #define hexchar(x) (isdigit (x) ? x - '0' : x - 'a' + 10)
|
|
182
|
|
183 fread (buf, 1, 10, fp); /* skip 10 bytes */
|
|
184
|
|
185 for (i=0; i < 16; ++i)
|
|
186 {
|
|
187 if ((c = getc (fp)) == ' ' || c == EOF)
|
|
188 break;
|
|
189
|
|
190 d = getc (fp);
|
|
191 c = hexchar (c) * 0x10 + hexchar (d);
|
|
192 putchar (c);
|
|
193
|
|
194 if ((i&group_by) == group_by)
|
|
195 getc (fp);
|
|
196 }
|
|
197
|
|
198 if (c == ' ')
|
|
199 {
|
|
200 while ((c = getc (fp)) != '\n' && c != EOF)
|
|
201 ;
|
|
202
|
|
203 if (c == EOF)
|
|
204 break;
|
|
205 }
|
|
206 else
|
|
207 {
|
|
208 if (i < 16)
|
|
209 break;
|
|
210
|
|
211 fread (buf, 1, 18, fp); /* skip 18 bytes */
|
|
212 }
|
|
213 }
|
|
214 }
|
|
215 else
|
|
216 {
|
442
|
217 #ifdef WIN32_NATIVE
|
5491
|
218 if (!isatty (_fileno (stdout)))
|
|
219 _setmode (_fileno (stdout), O_BINARY);
|
428
|
220 #endif
|
|
221 address = 0;
|
|
222 string[0] = ' ';
|
|
223 string[17] = '\0';
|
|
224 for (;;)
|
|
225 {
|
442
|
226 register int i, c = 0;
|
428
|
227
|
|
228 for (i=0; i < 16; ++i)
|
|
229 {
|
|
230 if ((c = getc (fp)) == EOF)
|
|
231 {
|
|
232 if (!i)
|
|
233 break;
|
|
234
|
|
235 fputs (" ", stdout);
|
|
236 string[i+1] = '\0';
|
|
237 }
|
|
238 else
|
|
239 {
|
|
240 if (!i)
|
5491
|
241 printf ("%08lx: ", address);
|
428
|
242
|
|
243 if (iso_flag)
|
|
244 string[i+1] =
|
|
245 (c < 0x20 || (c >= 0x7F && c < 0xa0)) ? '.' :c;
|
|
246 else
|
|
247 string[i+1] = (c < 0x20 || c >= 0x7F) ? '.' : c;
|
|
248
|
5491
|
249 printf ("%02x", c);
|
428
|
250 }
|
|
251
|
|
252 if ((i&group_by) == group_by)
|
|
253 putchar (' ');
|
|
254 }
|
|
255
|
|
256 if (i)
|
|
257 puts (string);
|
|
258
|
|
259 if (c == EOF)
|
|
260 break;
|
|
261
|
|
262 address += 0x10;
|
|
263
|
|
264 }
|
|
265 }
|
|
266
|
|
267 if (fp != stdin)
|
5491
|
268 fclose (fp);
|
428
|
269
|
|
270 } while (*argv != NULL);
|
5491
|
271 return EXIT_SUCCESS;
|
428
|
272 }
|
|
273
|
|
274 void
|
442
|
275 usage (void)
|
428
|
276 {
|
442
|
277 fprintf (stderr, "Usage: %s [-de] [-iso]\n", progname);
|
5491
|
278 exit (EXIT_FAILURE);
|
428
|
279 }
|
5491
|
280
|
|
281 /* arch-tag: 20e04fb7-926e-4e48-be86-64fe869ecdaa
|
|
282 (do not change this comment) */
|
|
283
|
|
284 /* hexl.c ends here */
|