root/trunk/lib-src/hexl.c

Revision 4220, 5.4 kB (checked in by miyoshi, 5 months ago)

Sync up with Emacs22.2.

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