Mercurial > vim
annotate src/xxd/xxd.c @ 26040:3c36cc7bd7a8 v8.2.3554
patch 8.2.3554: xxd has various way to exit
Commit: https://github.com/vim/vim/commit/a2ffb435209716dc7aeb4783333f6ea19f5d28a7
Author: DungSaga <dungsaga@users.noreply.github.com>
Date: Fri Oct 22 15:55:31 2021 +0100
patch 8.2.3554: xxd has various way to exit
Problem: Xxd has various way to exit.
Solution: Add function to print error and exit. (closes https://github.com/vim/vim/issues/9035)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 22 Oct 2021 17:00:05 +0200 |
parents | c8165ec9dcad |
children | 56d1d2cb4ad5 |
rev | line source |
---|---|
7 | 1 /* xxd: my hexdump facility. jw |
2 * | |
3 * 2.10.90 changed to word output | |
4 * 3.03.93 new indent style, dumb bug inserted and fixed. | |
5 * -c option, mls | |
6 * 26.04.94 better option parser, -ps, -l, -s added. | |
7 * 1.07.94 -r badly needs - as input file. Per default autoskip over | |
1197 | 8 * consecutive lines of zeroes, as unix od does. |
7 | 9 * -a shows them too. |
10 * -i dump as c-style #include "file.h" | |
11 * 1.11.95 if "xxd -i" knows the filename, an 'unsigned char filename_bits[]' | |
12 * array is written in correct c-syntax. | |
13 * -s improved, now defaults to absolute seek, relative requires a '+'. | |
14 * -r improved, now -r -s -0x... is supported. | |
15 * change/suppress leading '\0' bytes. | |
16 * -l n improved: stops exactly after n bytes. | |
17 * -r improved, better handling of partial lines with trailing garbage. | |
18 * -r improved, now -r -p works again! | |
19 * -r improved, less flushing, much faster now! (that was silly) | |
20 * 3.04.96 Per repeated request of a single person: autoskip defaults to off. | |
21 * 15.05.96 -v added. They want to know the version. | |
22 * -a fixed, to show last line inf file ends in all zeros. | |
23 * -u added: Print upper case hex-letters, as preferred by unix bc. | |
24 * -h added to usage message. Usage message extended. | |
25 * Now using outfile if specified even in normal mode, aehem. | |
26 * No longer mixing of ints and longs. May help doze people. | |
27 * Added binify ioctl for same reason. (Enough Doze stress for 1996!) | |
28 * 16.05.96 -p improved, removed occasional superfluous linefeed. | |
29 * 20.05.96 -l 0 fixed. tried to read anyway. | |
30 * 21.05.96 -i fixed. now honours -u, and prepends __ to numeric filenames. | |
31 * compile -DWIN32 for NT or W95. George V. Reilly, * -v improved :-) | |
32 * support --gnuish-longhorn-options | |
33 * 25.05.96 MAC support added: CodeWarrior already uses ``outline'' in Types.h | |
34 * which is included by MacHeaders (Axel Kielhorn). Renamed to | |
35 * xxdline(). | |
36 * 7.06.96 -i printed 'int' instead of 'char'. *blush* | |
37 * added Bram's OS2 ifdefs... | |
19195
2ef19eed524a
patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
38 * 18.07.96 gcc -Wall @ SunOS4 is now silent. |
7 | 39 * Added osver for MSDOS/DJGPP/WIN32. |
40 * 29.08.96 Added size_t to strncmp() for Amiga. | |
41 * 24.03.97 Windows NT support (Phil Hanna). Clean exit for Amiga WB (Bram) | |
42 * 02.04.97 Added -E option, to have EBCDIC translation instead of ASCII | |
216 | 43 * (azc10@yahoo.com) |
7 | 44 * 22.05.97 added -g (group octets) option (jcook@namerica.kla.com). |
45 * 23.09.98 nasty -p -r misfeature fixed: slightly wrong output, when -c was | |
46 * missing or wrong. | |
47 * 26.09.98 Fixed: 'xxd -i infile outfile' did not truncate outfile. | |
48 * 27.10.98 Fixed: -g option parser required blank. | |
49 * option -b added: 01000101 binary output in normal format. | |
50 * 16.05.00 Added VAXC changes by Stephen P. Wall | |
1197 | 51 * 16.05.00 Improved MMS file and merge for VMS by Zoltan Arpadffy |
2752 | 52 * 2011 March Better error handling by Florian Zumbiehl. |
53 * 2011 April Formatting by Bram Moolenaar | |
6655 | 54 * 08.06.2013 Little-endian hexdump (-e) and offset (-o) by Vadim Vygonets. |
15693
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
55 * 11.01.2019 Add full 64/32 bit range to -o and output by Christer Jensen. |
20601
75ef263d09d6
patch 8.2.0854: xxd cannot show offset as a decimal number
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
56 * 04.02.2020 Add -d for decimal offsets by Aapo Rantalainen |
7 | 57 * |
25076
5690cf66ee07
patch 8.2.3075: xxd always reports an old version string
Bram Moolenaar <Bram@vim.org>
parents:
20601
diff
changeset
|
58 * (c) 1990-1998 by Juergen Weigert (jnweiger@gmail.com) |
7 | 59 * |
6973 | 60 * I hereby grant permission to distribute and use xxd |
61 * under X11-MIT or GPL-2.0 (at the user's choice). | |
62 * | |
25076
5690cf66ee07
patch 8.2.3075: xxd always reports an old version string
Bram Moolenaar <Bram@vim.org>
parents:
20601
diff
changeset
|
63 * Contributions by Bram Moolenaar et al. |
7 | 64 */ |
714 | 65 |
66 /* Visual Studio 2005 has 'deprecated' many of the standard CRT functions */ | |
67 #if _MSC_VER >= 1400 | |
68 # define _CRT_SECURE_NO_DEPRECATE | |
69 # define _CRT_NONSTDC_NO_DEPRECATE | |
70 #endif | |
15963
2d8fa45b341d
patch 8.1.0987: unnecessary condition in #ifdef
Bram Moolenaar <Bram@vim.org>
parents:
15695
diff
changeset
|
71 #if !defined(CYGWIN) && defined(__CYGWIN__) |
1912 | 72 # define CYGWIN |
73 #endif | |
714 | 74 |
7 | 75 #include <stdio.h> |
76 #ifdef VAXC | |
77 # include <file.h> | |
78 #else | |
79 # include <fcntl.h> | |
80 #endif | |
16606
7e733046db1d
patch 8.1.1306: Borland support is outdated and doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
15963
diff
changeset
|
81 #if defined(WIN32) || defined(CYGWIN) |
7 | 82 # include <io.h> /* for setmode() */ |
83 #else | |
84 # ifdef UNIX | |
85 # include <unistd.h> | |
86 # endif | |
87 #endif | |
88 #include <stdlib.h> | |
89 #include <string.h> /* for strncmp() */ | |
90 #include <ctype.h> /* for isalnum() */ | |
15693
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
91 #include <limits.h> |
7 | 92 #if __MWERKS__ && !defined(BEBOX) |
93 # include <unix.h> /* for fdopen() on MAC */ | |
94 #endif | |
95 | |
96 | |
97 /* This corrects the problem of missing prototypes for certain functions | |
98 * in some GNU installations (e.g. SunOS 4.1.x). | |
99 * Darren Hiebert <darren@hmi.com> (sparc-sun-sunos4.1.3_U1/2.7.2.2) | |
100 */ | |
101 #if defined(__GNUC__) && defined(__STDC__) | |
102 # ifndef __USE_FIXED_PROTOTYPES__ | |
103 # define __USE_FIXED_PROTOTYPES__ | |
104 # endif | |
105 #endif | |
106 | |
107 #ifndef __USE_FIXED_PROTOTYPES__ | |
108 /* | |
109 * This is historic and works only if the compiler really has no prototypes: | |
110 * | |
111 * Include prototypes for Sun OS 4.x, when using an ANSI compiler. | |
112 * FILE is defined on OS 4.x, not on 5.x (Solaris). | |
113 * if __SVR4 is defined (some Solaris versions), don't include this. | |
114 */ | |
115 #if defined(sun) && defined(FILE) && !defined(__SVR4) && defined(__STDC__) | |
116 # define __P(a) a | |
117 /* excerpt from my sun_stdlib.h */ | |
118 extern int fprintf __P((FILE *, char *, ...)); | |
119 extern int fputs __P((char *, FILE *)); | |
120 extern int _flsbuf __P((unsigned char, FILE *)); | |
121 extern int _filbuf __P((FILE *)); | |
122 extern int fflush __P((FILE *)); | |
123 extern int fclose __P((FILE *)); | |
124 extern int fseek __P((FILE *, long, int)); | |
125 extern int rewind __P((FILE *)); | |
126 | |
127 extern void perror __P((char *)); | |
128 # endif | |
129 #endif | |
130 | |
131 extern long int strtol(); | |
132 extern long int ftell(); | |
133 | |
26036
c8165ec9dcad
patch 8.2.3552: xxd revert does not handle end of line correctly
Bram Moolenaar <Bram@vim.org>
parents:
26000
diff
changeset
|
134 char version[] = "xxd 2021-10-22 by Juergen Weigert et al."; |
7 | 135 #ifdef WIN32 |
136 char osver[] = " (Win32)"; | |
137 #else | |
138 char osver[] = ""; | |
139 #endif | |
140 | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
7837
diff
changeset
|
141 #if defined(WIN32) |
7 | 142 # define BIN_READ(yes) ((yes) ? "rb" : "rt") |
143 # define BIN_WRITE(yes) ((yes) ? "wb" : "wt") | |
144 # define BIN_CREAT(yes) ((yes) ? (O_CREAT|O_BINARY) : O_CREAT) | |
145 # define BIN_ASSIGN(fp, yes) setmode(fileno(fp), (yes) ? O_BINARY : O_TEXT) | |
602 | 146 # define PATH_SEP '\\' |
147 #elif defined(CYGWIN) | |
148 # define BIN_READ(yes) ((yes) ? "rb" : "rt") | |
149 # define BIN_WRITE(yes) ((yes) ? "wb" : "w") | |
150 # define BIN_CREAT(yes) ((yes) ? (O_CREAT|O_BINARY) : O_CREAT) | |
151 # define BIN_ASSIGN(fp, yes) ((yes) ? (void) setmode(fileno(fp), O_BINARY) : (void) (fp)) | |
152 # define PATH_SEP '/' | |
7 | 153 #else |
154 # ifdef VMS | |
155 # define BIN_READ(dummy) "r" | |
156 # define BIN_WRITE(dummy) "w" | |
157 # define BIN_CREAT(dummy) O_CREAT | |
158 # define BIN_ASSIGN(fp, dummy) fp | |
159 # define PATH_SEP ']' | |
160 # define FILE_SEP '.' | |
161 # else | |
162 # define BIN_READ(dummy) "r" | |
163 # define BIN_WRITE(dummy) "w" | |
164 # define BIN_CREAT(dummy) O_CREAT | |
165 # define BIN_ASSIGN(fp, dummy) fp | |
166 # define PATH_SEP '/' | |
167 # endif | |
168 #endif | |
169 | |
170 /* open has only to arguments on the Mac */ | |
171 #if __MWERKS__ | |
172 # define OPEN(name, mode, umask) open(name, mode) | |
173 #else | |
174 # define OPEN(name, mode, umask) open(name, mode, umask) | |
175 #endif | |
176 | |
177 #ifdef AMIGA | |
178 # define STRNCMP(s1, s2, l) strncmp(s1, s2, (size_t)l) | |
179 #else | |
180 # define STRNCMP(s1, s2, l) strncmp(s1, s2, l) | |
181 #endif | |
182 | |
183 #ifndef __P | |
16606
7e733046db1d
patch 8.1.1306: Borland support is outdated and doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
15963
diff
changeset
|
184 # if defined(__STDC__) || defined(WIN32) |
7 | 185 # define __P(a) a |
186 # else | |
187 # define __P(a) () | |
188 # endif | |
189 #endif | |
190 | |
191 #define TRY_SEEK /* attempt to use lseek, or skip forward by reading */ | |
192 #define COLS 256 /* change here, if you ever need more columns */ | |
15693
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
193 #define LLEN ((2*(int)sizeof(unsigned long)) + 4 + (9*COLS-1) + COLS + 2) |
7 | 194 |
195 char hexxa[] = "0123456789abcdef0123456789ABCDEF", *hexx = hexxa; | |
196 | |
197 /* the different hextypes known by this program: */ | |
198 #define HEX_NORMAL 0 | |
199 #define HEX_POSTSCRIPT 1 | |
200 #define HEX_CINCLUDE 2 | |
201 #define HEX_BITS 3 /* not hex a dump, but bits: 01111001 */ | |
6655 | 202 #define HEX_LITTLEENDIAN 4 |
7 | 203 |
13567
4f2acb6a10b6
patch 8.0.1656: no option to have xxd produce upper case variable names
Christian Brabandt <cb@256bit.org>
parents:
13326
diff
changeset
|
204 #define CONDITIONAL_CAPITALIZE(c) (capitalize ? toupper((int)c) : c) |
4f2acb6a10b6
patch 8.0.1656: no option to have xxd produce upper case variable names
Christian Brabandt <cb@256bit.org>
parents:
13326
diff
changeset
|
205 |
2752 | 206 static char *pname; |
207 | |
208 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
6973
diff
changeset
|
209 exit_with_usage(void) |
7 | 210 { |
211 fprintf(stderr, "Usage:\n %s [options] [infile [outfile]]\n", pname); | |
212 fprintf(stderr, " or\n %s -r [-s [-]offset] [-c cols] [-ps] [infile [outfile]]\n", pname); | |
213 fprintf(stderr, "Options:\n"); | |
214 fprintf(stderr, " -a toggle autoskip: A single '*' replaces nul-lines. Default off.\n"); | |
2083
24eb7921b8f0
updated for version 7.2.367
Bram Moolenaar <bram@zimbu.org>
parents:
1912
diff
changeset
|
215 fprintf(stderr, " -b binary digit dump (incompatible with -ps,-i,-r). Default hex.\n"); |
13567
4f2acb6a10b6
patch 8.0.1656: no option to have xxd produce upper case variable names
Christian Brabandt <cb@256bit.org>
parents:
13326
diff
changeset
|
216 fprintf(stderr, " -C capitalize variable names in C include file style (-i).\n"); |
7 | 217 fprintf(stderr, " -c cols format <cols> octets per line. Default 16 (-i: 12, -ps: 30).\n"); |
218 fprintf(stderr, " -E show characters in EBCDIC. Default ASCII.\n"); | |
6655 | 219 fprintf(stderr, " -e little-endian dump (incompatible with -ps,-i,-r).\n"); |
25992
2294ed638906
patch 8.2.3529: xxd usage output is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
25980
diff
changeset
|
220 fprintf(stderr, " -g bytes number of octets per group in normal output. Default 2 (-e: 4).\n"); |
7 | 221 fprintf(stderr, " -h print this summary.\n"); |
222 fprintf(stderr, " -i output in C include file style.\n"); | |
223 fprintf(stderr, " -l len stop after <len> octets.\n"); | |
6655 | 224 fprintf(stderr, " -o off add <off> to the displayed file position.\n"); |
7 | 225 fprintf(stderr, " -ps output in postscript plain hexdump style.\n"); |
226 fprintf(stderr, " -r reverse operation: convert (or patch) hexdump into binary.\n"); | |
227 fprintf(stderr, " -r -s off revert with <off> added to file positions found in hexdump.\n"); | |
20601
75ef263d09d6
patch 8.2.0854: xxd cannot show offset as a decimal number
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
228 fprintf(stderr, " -d show offset in decimal instead of hex.\n"); |
7 | 229 fprintf(stderr, " -s %sseek start at <seek> bytes abs. %sinfile offset.\n", |
230 #ifdef TRY_SEEK | |
231 "[+][-]", "(or +: rel.) "); | |
232 #else | |
233 "", ""); | |
234 #endif | |
235 fprintf(stderr, " -u use upper case hex letters.\n"); | |
236 fprintf(stderr, " -v show version: \"%s%s\".\n", version, osver); | |
237 exit(1); | |
238 } | |
239 | |
2752 | 240 static void |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
241 perror_exit(int ret) |
2752 | 242 { |
243 fprintf(stderr, "%s: ", pname); | |
244 perror(NULL); | |
245 exit(ret); | |
246 } | |
247 | |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
248 static void |
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
249 error_exit(int ret, char *msg) |
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
250 { |
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
251 fprintf(stderr, "%s: %s\n", pname, msg); |
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
252 exit(ret); |
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
253 } |
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
254 |
7 | 255 /* |
256 * Max. cols binary characters are decoded from the input stream per line. | |
257 * Two adjacent garbage characters after evaluated data delimit valid data. | |
258 * Everything up to the next newline is discarded. | |
259 * | |
260 * The name is historic and came from 'undo type opt h'. | |
261 */ | |
2752 | 262 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
6973
diff
changeset
|
263 huntype( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
6973
diff
changeset
|
264 FILE *fpi, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
6973
diff
changeset
|
265 FILE *fpo, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
6973
diff
changeset
|
266 int cols, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
6973
diff
changeset
|
267 int hextype, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
6973
diff
changeset
|
268 long base_off) |
7 | 269 { |
270 int c, ign_garb = 1, n1 = -1, n2 = 0, n3, p = cols; | |
271 long have_off = 0, want_off = 0; | |
272 | |
273 rewind(fpi); | |
274 | |
275 while ((c = getc(fpi)) != EOF) | |
276 { | |
277 if (c == '\r') /* Doze style input file? */ | |
278 continue; | |
279 | |
2083
24eb7921b8f0
updated for version 7.2.367
Bram Moolenaar <bram@zimbu.org>
parents:
1912
diff
changeset
|
280 /* Allow multiple spaces. This doesn't work when there is normal text |
24eb7921b8f0
updated for version 7.2.367
Bram Moolenaar <bram@zimbu.org>
parents:
1912
diff
changeset
|
281 * after the hex codes in the last line that looks like hex, thus only |
24eb7921b8f0
updated for version 7.2.367
Bram Moolenaar <bram@zimbu.org>
parents:
1912
diff
changeset
|
282 * use it for PostScript format. */ |
24eb7921b8f0
updated for version 7.2.367
Bram Moolenaar <bram@zimbu.org>
parents:
1912
diff
changeset
|
283 if (hextype == HEX_POSTSCRIPT && (c == ' ' || c == '\n' || c == '\t')) |
856 | 284 continue; |
809 | 285 |
7 | 286 n3 = n2; |
287 n2 = n1; | |
288 | |
289 if (c >= '0' && c <= '9') | |
290 n1 = c - '0'; | |
291 else if (c >= 'a' && c <= 'f') | |
292 n1 = c - 'a' + 10; | |
293 else if (c >= 'A' && c <= 'F') | |
294 n1 = c - 'A' + 10; | |
295 else | |
296 { | |
297 n1 = -1; | |
298 if (ign_garb) | |
299 continue; | |
300 } | |
301 | |
302 ign_garb = 0; | |
303 | |
26000
16aaed83522a
patch 8.2.3533: inefficient code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
25992
diff
changeset
|
304 if (!hextype && (p >= cols)) |
7 | 305 { |
26000
16aaed83522a
patch 8.2.3533: inefficient code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
25992
diff
changeset
|
306 if (n1 < 0) |
7 | 307 { |
26000
16aaed83522a
patch 8.2.3533: inefficient code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
25992
diff
changeset
|
308 p = 0; |
7 | 309 continue; |
310 } | |
26000
16aaed83522a
patch 8.2.3533: inefficient code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
25992
diff
changeset
|
311 want_off = (want_off << 4) | n1; |
16aaed83522a
patch 8.2.3533: inefficient code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
25992
diff
changeset
|
312 continue; |
7 | 313 } |
314 | |
315 if (base_off + want_off != have_off) | |
316 { | |
2752 | 317 if (fflush(fpo) != 0) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
318 perror_exit(3); |
7 | 319 #ifdef TRY_SEEK |
26036
c8165ec9dcad
patch 8.2.3552: xxd revert does not handle end of line correctly
Bram Moolenaar <Bram@vim.org>
parents:
26000
diff
changeset
|
320 if (fseek(fpo, base_off + want_off - have_off, 1) >= 0) |
7 | 321 have_off = base_off + want_off; |
322 #endif | |
323 if (base_off + want_off < have_off) | |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
324 error_exit(5, "sorry, cannot seek backwards."); |
7 | 325 for (; have_off < base_off + want_off; have_off++) |
2752 | 326 if (putc(0, fpo) == EOF) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
327 perror_exit(3); |
7 | 328 } |
329 | |
330 if (n2 >= 0 && n1 >= 0) | |
331 { | |
2752 | 332 if (putc((n2 << 4) | n1, fpo) == EOF) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
333 perror_exit(3); |
7 | 334 have_off++; |
335 want_off++; | |
336 n1 = -1; | |
26000
16aaed83522a
patch 8.2.3533: inefficient code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
25992
diff
changeset
|
337 if (!hextype && (++p >= cols)) |
7 | 338 { |
25980
0ff315dd0c48
patch 8.2.3523: duplicated code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
25076
diff
changeset
|
339 /* skip the rest of the line as garbage */ |
0ff315dd0c48
patch 8.2.3523: duplicated code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
25076
diff
changeset
|
340 n2 = -1; |
0ff315dd0c48
patch 8.2.3523: duplicated code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
25076
diff
changeset
|
341 n3 = -1; |
7 | 342 } |
343 } | |
25980
0ff315dd0c48
patch 8.2.3523: duplicated code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
25076
diff
changeset
|
344 if (n1 < 0 && n2 < 0 && n3 < 0) |
7 | 345 { |
346 /* already stumbled into garbage, skip line, wait and see */ | |
26036
c8165ec9dcad
patch 8.2.3552: xxd revert does not handle end of line correctly
Bram Moolenaar <Bram@vim.org>
parents:
26000
diff
changeset
|
347 while (c != '\n' && c != EOF) |
c8165ec9dcad
patch 8.2.3552: xxd revert does not handle end of line correctly
Bram Moolenaar <Bram@vim.org>
parents:
26000
diff
changeset
|
348 c = getc(fpi); |
c8165ec9dcad
patch 8.2.3552: xxd revert does not handle end of line correctly
Bram Moolenaar <Bram@vim.org>
parents:
26000
diff
changeset
|
349 if (c == EOF && ferror(fpi)) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
350 perror_exit(2); |
26036
c8165ec9dcad
patch 8.2.3552: xxd revert does not handle end of line correctly
Bram Moolenaar <Bram@vim.org>
parents:
26000
diff
changeset
|
351 } |
c8165ec9dcad
patch 8.2.3552: xxd revert does not handle end of line correctly
Bram Moolenaar <Bram@vim.org>
parents:
26000
diff
changeset
|
352 if (c == '\n') |
c8165ec9dcad
patch 8.2.3552: xxd revert does not handle end of line correctly
Bram Moolenaar <Bram@vim.org>
parents:
26000
diff
changeset
|
353 { |
7 | 354 if (!hextype) |
355 want_off = 0; | |
26036
c8165ec9dcad
patch 8.2.3552: xxd revert does not handle end of line correctly
Bram Moolenaar <Bram@vim.org>
parents:
26000
diff
changeset
|
356 p = cols; |
7 | 357 ign_garb = 1; |
358 } | |
359 } | |
2752 | 360 if (fflush(fpo) != 0) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
361 perror_exit(3); |
7 | 362 #ifdef TRY_SEEK |
363 fseek(fpo, 0L, 2); | |
364 #endif | |
2752 | 365 if (fclose(fpo) != 0) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
366 perror_exit(3); |
2752 | 367 if (fclose(fpi) != 0) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
368 perror_exit(2); |
7 | 369 return 0; |
370 } | |
371 | |
372 /* | |
373 * Print line l. If nz is false, xxdline regards the line a line of | |
374 * zeroes. If there are three or more consecutive lines of zeroes, | |
375 * they are replaced by a single '*' character. | |
376 * | |
377 * If the output ends with more than two lines of zeroes, you | |
378 * should call xxdline again with l being the last line and nz | |
379 * negative. This ensures that the last line is shown even when | |
380 * it is all zeroes. | |
381 * | |
382 * If nz is always positive, lines are never suppressed. | |
383 */ | |
2752 | 384 static void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
6973
diff
changeset
|
385 xxdline(FILE *fp, char *l, int nz) |
7 | 386 { |
387 static char z[LLEN+1]; | |
388 static int zero_seen = 0; | |
389 | |
390 if (!nz && zero_seen == 1) | |
391 strcpy(z, l); | |
392 | |
393 if (nz || !zero_seen++) | |
394 { | |
395 if (nz) | |
396 { | |
397 if (nz < 0) | |
398 zero_seen--; | |
399 if (zero_seen == 2) | |
2752 | 400 if (fputs(z, fp) == EOF) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
401 perror_exit(3); |
7 | 402 if (zero_seen > 2) |
2752 | 403 if (fputs("*\n", fp) == EOF) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
404 perror_exit(3); |
7 | 405 } |
406 if (nz >= 0 || zero_seen > 0) | |
2752 | 407 if (fputs(l, fp) == EOF) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
408 perror_exit(3); |
7 | 409 if (nz) |
410 zero_seen = 0; | |
411 } | |
412 } | |
413 | |
414 /* This is an EBCDIC to ASCII conversion table */ | |
415 /* from a proposed BTL standard April 16, 1979 */ | |
416 static unsigned char etoa64[] = | |
417 { | |
418 0040,0240,0241,0242,0243,0244,0245,0246, | |
419 0247,0250,0325,0056,0074,0050,0053,0174, | |
420 0046,0251,0252,0253,0254,0255,0256,0257, | |
421 0260,0261,0041,0044,0052,0051,0073,0176, | |
422 0055,0057,0262,0263,0264,0265,0266,0267, | |
423 0270,0271,0313,0054,0045,0137,0076,0077, | |
424 0272,0273,0274,0275,0276,0277,0300,0301, | |
425 0302,0140,0072,0043,0100,0047,0075,0042, | |
426 0303,0141,0142,0143,0144,0145,0146,0147, | |
427 0150,0151,0304,0305,0306,0307,0310,0311, | |
428 0312,0152,0153,0154,0155,0156,0157,0160, | |
429 0161,0162,0136,0314,0315,0316,0317,0320, | |
430 0321,0345,0163,0164,0165,0166,0167,0170, | |
431 0171,0172,0322,0323,0324,0133,0326,0327, | |
432 0330,0331,0332,0333,0334,0335,0336,0337, | |
433 0340,0341,0342,0343,0344,0135,0346,0347, | |
434 0173,0101,0102,0103,0104,0105,0106,0107, | |
435 0110,0111,0350,0351,0352,0353,0354,0355, | |
436 0175,0112,0113,0114,0115,0116,0117,0120, | |
437 0121,0122,0356,0357,0360,0361,0362,0363, | |
438 0134,0237,0123,0124,0125,0126,0127,0130, | |
439 0131,0132,0364,0365,0366,0367,0370,0371, | |
440 0060,0061,0062,0063,0064,0065,0066,0067, | |
441 0070,0071,0372,0373,0374,0375,0376,0377 | |
442 }; | |
443 | |
2752 | 444 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
6973
diff
changeset
|
445 main(int argc, char *argv[]) |
7 | 446 { |
447 FILE *fp, *fpo; | |
448 int c, e, p = 0, relseek = 1, negseek = 0, revert = 0; | |
20601
75ef263d09d6
patch 8.2.0854: xxd cannot show offset as a decimal number
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
449 int cols = 0, nonzero = 0, autoskip = 0, hextype = HEX_NORMAL; |
75ef263d09d6
patch 8.2.0854: xxd cannot show offset as a decimal number
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
450 int capitalize = 0, decimal_offset = 0; |
7 | 451 int ebcdic = 0; |
452 int octspergrp = -1; /* number of octets grouped in output */ | |
453 int grplen; /* total chars per octet group */ | |
15693
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
454 long length = -1, n = 0, seekoff = 0; |
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
455 unsigned long displayoff = 0; |
2770 | 456 static char l[LLEN+1]; /* static because it may be too big for stack */ |
2752 | 457 char *pp; |
15695
ac05f8fb4200
patch 8.1.0855: cannot build xxd with MSVC 10
Bram Moolenaar <Bram@vim.org>
parents:
15693
diff
changeset
|
458 int addrlen = 9; |
7 | 459 |
460 #ifdef AMIGA | |
461 /* This program doesn't work when started from the Workbench */ | |
462 if (argc == 0) | |
463 exit(1); | |
464 #endif | |
465 | |
466 pname = argv[0]; | |
467 for (pp = pname; *pp; ) | |
468 if (*pp++ == PATH_SEP) | |
469 pname = pp; | |
470 #ifdef FILE_SEP | |
471 for (pp = pname; *pp; pp++) | |
472 if (*pp == FILE_SEP) | |
473 { | |
474 *pp = '\0'; | |
475 break; | |
476 } | |
477 #endif | |
478 | |
479 while (argc >= 2) | |
480 { | |
481 pp = argv[1] + (!STRNCMP(argv[1], "--", 2) && argv[1][2]); | |
482 if (!STRNCMP(pp, "-a", 2)) autoskip = 1 - autoskip; | |
483 else if (!STRNCMP(pp, "-b", 2)) hextype = HEX_BITS; | |
6655 | 484 else if (!STRNCMP(pp, "-e", 2)) hextype = HEX_LITTLEENDIAN; |
7 | 485 else if (!STRNCMP(pp, "-u", 2)) hexx = hexxa + 16; |
486 else if (!STRNCMP(pp, "-p", 2)) hextype = HEX_POSTSCRIPT; | |
487 else if (!STRNCMP(pp, "-i", 2)) hextype = HEX_CINCLUDE; | |
13567
4f2acb6a10b6
patch 8.0.1656: no option to have xxd produce upper case variable names
Christian Brabandt <cb@256bit.org>
parents:
13326
diff
changeset
|
488 else if (!STRNCMP(pp, "-C", 2)) capitalize = 1; |
20601
75ef263d09d6
patch 8.2.0854: xxd cannot show offset as a decimal number
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
489 else if (!STRNCMP(pp, "-d", 2)) decimal_offset = 1; |
7 | 490 else if (!STRNCMP(pp, "-r", 2)) revert++; |
491 else if (!STRNCMP(pp, "-E", 2)) ebcdic++; | |
492 else if (!STRNCMP(pp, "-v", 2)) | |
493 { | |
494 fprintf(stderr, "%s%s\n", version, osver); | |
495 exit(0); | |
496 } | |
497 else if (!STRNCMP(pp, "-c", 2)) | |
498 { | |
15627
11879b89bb69
patch 8.1.0821: xxd "usage" output and other arguments not tested
Bram Moolenaar <Bram@vim.org>
parents:
13571
diff
changeset
|
499 if (pp[2] && !STRNCMP("apitalize", pp + 2, 9)) |
11879b89bb69
patch 8.1.0821: xxd "usage" output and other arguments not tested
Bram Moolenaar <Bram@vim.org>
parents:
13571
diff
changeset
|
500 capitalize = 1; |
11879b89bb69
patch 8.1.0821: xxd "usage" output and other arguments not tested
Bram Moolenaar <Bram@vim.org>
parents:
13571
diff
changeset
|
501 else if (pp[2] && STRNCMP("ols", pp + 2, 3)) |
7 | 502 cols = (int)strtol(pp + 2, NULL, 0); |
503 else | |
504 { | |
505 if (!argv[2]) | |
2752 | 506 exit_with_usage(); |
7 | 507 cols = (int)strtol(argv[2], NULL, 0); |
508 argv++; | |
509 argc--; | |
510 } | |
511 } | |
512 else if (!STRNCMP(pp, "-g", 2)) | |
513 { | |
15627
11879b89bb69
patch 8.1.0821: xxd "usage" output and other arguments not tested
Bram Moolenaar <Bram@vim.org>
parents:
13571
diff
changeset
|
514 if (pp[2] && STRNCMP("roup", pp + 2, 4)) |
7 | 515 octspergrp = (int)strtol(pp + 2, NULL, 0); |
516 else | |
517 { | |
518 if (!argv[2]) | |
2752 | 519 exit_with_usage(); |
7 | 520 octspergrp = (int)strtol(argv[2], NULL, 0); |
521 argv++; | |
522 argc--; | |
523 } | |
524 } | |
6655 | 525 else if (!STRNCMP(pp, "-o", 2)) |
526 { | |
15693
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
527 int reloffset = 0; |
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
528 int negoffset = 0; |
6655 | 529 if (pp[2] && STRNCMP("ffset", pp + 2, 5)) |
15693
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
530 displayoff = strtoul(pp + 2, NULL, 0); |
6655 | 531 else |
532 { | |
533 if (!argv[2]) | |
534 exit_with_usage(); | |
15693
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
535 |
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
536 if (argv[2][0] == '+') |
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
537 reloffset++; |
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
538 if (argv[2][reloffset] == '-') |
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
539 negoffset++; |
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
540 |
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
541 if (negoffset) |
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
542 displayoff = ULONG_MAX - strtoul(argv[2] + reloffset+negoffset, NULL, 0) + 1; |
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
543 else |
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
544 displayoff = strtoul(argv[2] + reloffset+negoffset, NULL, 0); |
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
545 |
6655 | 546 argv++; |
547 argc--; | |
548 } | |
549 } | |
7 | 550 else if (!STRNCMP(pp, "-s", 2)) |
551 { | |
552 relseek = 0; | |
553 negseek = 0; | |
554 if (pp[2] && STRNCMP("kip", pp+2, 3) && STRNCMP("eek", pp+2, 3)) | |
555 { | |
556 #ifdef TRY_SEEK | |
557 if (pp[2] == '+') | |
558 relseek++; | |
559 if (pp[2+relseek] == '-') | |
560 negseek++; | |
561 #endif | |
562 seekoff = strtol(pp + 2+relseek+negseek, (char **)NULL, 0); | |
563 } | |
564 else | |
565 { | |
566 if (!argv[2]) | |
2752 | 567 exit_with_usage(); |
7 | 568 #ifdef TRY_SEEK |
569 if (argv[2][0] == '+') | |
570 relseek++; | |
571 if (argv[2][relseek] == '-') | |
572 negseek++; | |
573 #endif | |
574 seekoff = strtol(argv[2] + relseek+negseek, (char **)NULL, 0); | |
575 argv++; | |
576 argc--; | |
577 } | |
578 } | |
579 else if (!STRNCMP(pp, "-l", 2)) | |
580 { | |
581 if (pp[2] && STRNCMP("en", pp + 2, 2)) | |
582 length = strtol(pp + 2, (char **)NULL, 0); | |
583 else | |
584 { | |
585 if (!argv[2]) | |
2752 | 586 exit_with_usage(); |
7 | 587 length = strtol(argv[2], (char **)NULL, 0); |
588 argv++; | |
589 argc--; | |
590 } | |
591 } | |
592 else if (!strcmp(pp, "--")) /* end of options */ | |
593 { | |
594 argv++; | |
595 argc--; | |
596 break; | |
597 } | |
598 else if (pp[0] == '-' && pp[1]) /* unknown option */ | |
2752 | 599 exit_with_usage(); |
7 | 600 else |
601 break; /* not an option */ | |
602 | |
603 argv++; /* advance to next argument */ | |
604 argc--; | |
605 } | |
606 | |
607 if (!cols) | |
608 switch (hextype) | |
609 { | |
610 case HEX_POSTSCRIPT: cols = 30; break; | |
611 case HEX_CINCLUDE: cols = 12; break; | |
612 case HEX_BITS: cols = 6; break; | |
613 case HEX_NORMAL: | |
6655 | 614 case HEX_LITTLEENDIAN: |
7 | 615 default: cols = 16; break; |
616 } | |
617 | |
618 if (octspergrp < 0) | |
619 switch (hextype) | |
620 { | |
621 case HEX_BITS: octspergrp = 1; break; | |
622 case HEX_NORMAL: octspergrp = 2; break; | |
6655 | 623 case HEX_LITTLEENDIAN: octspergrp = 4; break; |
7 | 624 case HEX_POSTSCRIPT: |
625 case HEX_CINCLUDE: | |
626 default: octspergrp = 0; break; | |
627 } | |
628 | |
6655 | 629 if (cols < 1 || ((hextype == HEX_NORMAL || hextype == HEX_BITS || hextype == HEX_LITTLEENDIAN) |
1452 | 630 && (cols > COLS))) |
7 | 631 { |
632 fprintf(stderr, "%s: invalid number of columns (max. %d).\n", pname, COLS); | |
633 exit(1); | |
634 } | |
635 | |
6655 | 636 if (octspergrp < 1 || octspergrp > cols) |
7 | 637 octspergrp = cols; |
6655 | 638 else if (hextype == HEX_LITTLEENDIAN && (octspergrp & (octspergrp-1))) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
639 error_exit(1, "number of octets per group must be a power of 2 with -e."); |
7 | 640 |
641 if (argc > 3) | |
2752 | 642 exit_with_usage(); |
7 | 643 |
644 if (argc == 1 || (argv[1][0] == '-' && !argv[1][1])) | |
645 BIN_ASSIGN(fp = stdin, !revert); | |
646 else | |
647 { | |
648 if ((fp = fopen(argv[1], BIN_READ(!revert))) == NULL) | |
649 { | |
650 fprintf(stderr,"%s: ", pname); | |
651 perror(argv[1]); | |
652 return 2; | |
653 } | |
654 } | |
655 | |
656 if (argc < 3 || (argv[2][0] == '-' && !argv[2][1])) | |
657 BIN_ASSIGN(fpo = stdout, revert); | |
658 else | |
659 { | |
660 int fd; | |
661 int mode = revert ? O_WRONLY : (O_TRUNC|O_WRONLY); | |
662 | |
663 if (((fd = OPEN(argv[2], mode | BIN_CREAT(revert), 0666)) < 0) || | |
664 (fpo = fdopen(fd, BIN_WRITE(revert))) == NULL) | |
665 { | |
666 fprintf(stderr, "%s: ", pname); | |
667 perror(argv[2]); | |
668 return 3; | |
669 } | |
670 rewind(fpo); | |
671 } | |
672 | |
673 if (revert) | |
674 { | |
675 if (hextype && (hextype != HEX_POSTSCRIPT)) | |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
676 error_exit(-1, "sorry, cannot revert this type of hexdump"); |
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
677 return huntype(fp, fpo, cols, hextype, |
7 | 678 negseek ? -seekoff : seekoff); |
679 } | |
680 | |
681 if (seekoff || negseek || !relseek) | |
682 { | |
683 #ifdef TRY_SEEK | |
684 if (relseek) | |
685 e = fseek(fp, negseek ? -seekoff : seekoff, 1); | |
686 else | |
687 e = fseek(fp, negseek ? -seekoff : seekoff, negseek ? 2 : 0); | |
688 if (e < 0 && negseek) | |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
689 error_exit(4, "sorry cannot seek."); |
7 | 690 if (e >= 0) |
691 seekoff = ftell(fp); | |
692 else | |
693 #endif | |
694 { | |
695 long s = seekoff; | |
696 | |
697 while (s--) | |
2752 | 698 if (getc(fp) == EOF) |
2754 | 699 { |
2752 | 700 if (ferror(fp)) |
701 { | |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
702 perror_exit(2); |
2752 | 703 } |
704 else | |
705 { | |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
706 error_exit(4, "sorry cannot seek."); |
2752 | 707 } |
2754 | 708 } |
7 | 709 } |
710 } | |
711 | |
712 if (hextype == HEX_CINCLUDE) | |
713 { | |
714 if (fp != stdin) | |
715 { | |
2752 | 716 if (fprintf(fpo, "unsigned char %s", isdigit((int)argv[1][0]) ? "__" : "") < 0) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
717 perror_exit(3); |
7 | 718 for (e = 0; (c = argv[1][e]) != 0; e++) |
13567
4f2acb6a10b6
patch 8.0.1656: no option to have xxd produce upper case variable names
Christian Brabandt <cb@256bit.org>
parents:
13326
diff
changeset
|
719 if (putc(isalnum(c) ? CONDITIONAL_CAPITALIZE(c) : '_', fpo) == EOF) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
720 perror_exit(3); |
2752 | 721 if (fputs("[] = {\n", fpo) == EOF) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
722 perror_exit(3); |
7 | 723 } |
724 | |
725 p = 0; | |
2752 | 726 c = 0; |
7 | 727 while ((length < 0 || p < length) && (c = getc(fp)) != EOF) |
728 { | |
2752 | 729 if (fprintf(fpo, (hexx == hexxa) ? "%s0x%02x" : "%s0X%02X", |
4958
0a379dea13c9
updated for version 7.3.1224
Bram Moolenaar <bram@vim.org>
parents:
4166
diff
changeset
|
730 (p % cols) ? ", " : &",\n "[2*!p], c) < 0) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
731 perror_exit(3); |
7 | 732 p++; |
733 } | |
2752 | 734 if (c == EOF && ferror(fp)) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
735 perror_exit(2); |
7 | 736 |
4166 | 737 if (p && fputs("\n", fpo) == EOF) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
738 perror_exit(3); |
4958
0a379dea13c9
updated for version 7.3.1224
Bram Moolenaar <bram@vim.org>
parents:
4166
diff
changeset
|
739 if (fputs(&"};\n"[3 * (fp == stdin)], fpo) == EOF) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
740 perror_exit(3); |
7 | 741 |
742 if (fp != stdin) | |
743 { | |
2752 | 744 if (fprintf(fpo, "unsigned int %s", isdigit((int)argv[1][0]) ? "__" : "") < 0) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
745 perror_exit(3); |
7 | 746 for (e = 0; (c = argv[1][e]) != 0; e++) |
13567
4f2acb6a10b6
patch 8.0.1656: no option to have xxd produce upper case variable names
Christian Brabandt <cb@256bit.org>
parents:
13326
diff
changeset
|
747 if (putc(isalnum(c) ? CONDITIONAL_CAPITALIZE(c) : '_', fpo) == EOF) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
748 perror_exit(3); |
13567
4f2acb6a10b6
patch 8.0.1656: no option to have xxd produce upper case variable names
Christian Brabandt <cb@256bit.org>
parents:
13326
diff
changeset
|
749 if (fprintf(fpo, "_%s = %d;\n", capitalize ? "LEN" : "len", p) < 0) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
750 perror_exit(3); |
7 | 751 } |
752 | |
2752 | 753 if (fclose(fp)) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
754 perror_exit(2); |
2752 | 755 if (fclose(fpo)) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
756 perror_exit(3); |
7 | 757 return 0; |
758 } | |
759 | |
760 if (hextype == HEX_POSTSCRIPT) | |
761 { | |
762 p = cols; | |
2752 | 763 e = 0; |
7 | 764 while ((length < 0 || n < length) && (e = getc(fp)) != EOF) |
765 { | |
2752 | 766 if (putc(hexx[(e >> 4) & 0xf], fpo) == EOF |
767 || putc(hexx[e & 0xf], fpo) == EOF) | |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
768 perror_exit(3); |
7 | 769 n++; |
770 if (!--p) | |
771 { | |
2752 | 772 if (putc('\n', fpo) == EOF) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
773 perror_exit(3); |
7 | 774 p = cols; |
775 } | |
776 } | |
2752 | 777 if (e == EOF && ferror(fp)) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
778 perror_exit(2); |
7 | 779 if (p < cols) |
2752 | 780 if (putc('\n', fpo) == EOF) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
781 perror_exit(3); |
2752 | 782 if (fclose(fp)) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
783 perror_exit(2); |
2752 | 784 if (fclose(fpo)) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
785 perror_exit(3); |
7 | 786 return 0; |
787 } | |
788 | |
6655 | 789 /* hextype: HEX_NORMAL or HEX_BITS or HEX_LITTLEENDIAN */ |
7 | 790 |
6655 | 791 if (hextype != HEX_BITS) |
7 | 792 grplen = octspergrp + octspergrp + 1; /* chars per octet group */ |
793 else /* hextype == HEX_BITS */ | |
794 grplen = 8 * octspergrp + 1; | |
795 | |
2752 | 796 e = 0; |
7 | 797 while ((length < 0 || n < length) && (e = getc(fp)) != EOF) |
798 { | |
799 if (p == 0) | |
800 { | |
20601
75ef263d09d6
patch 8.2.0854: xxd cannot show offset as a decimal number
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
801 if (decimal_offset) |
75ef263d09d6
patch 8.2.0854: xxd cannot show offset as a decimal number
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
802 addrlen = sprintf(l, "%08ld:", |
75ef263d09d6
patch 8.2.0854: xxd cannot show offset as a decimal number
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
803 ((unsigned long)(n + seekoff + displayoff))); |
75ef263d09d6
patch 8.2.0854: xxd cannot show offset as a decimal number
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
804 else |
75ef263d09d6
patch 8.2.0854: xxd cannot show offset as a decimal number
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
805 addrlen = sprintf(l, "%08lx:", |
75ef263d09d6
patch 8.2.0854: xxd cannot show offset as a decimal number
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
806 ((unsigned long)(n + seekoff + displayoff))); |
15693
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
807 for (c = addrlen; c < LLEN; l[c++] = ' '); |
7 | 808 } |
809 if (hextype == HEX_NORMAL) | |
810 { | |
15693
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
811 l[c = (addrlen + 1 + (grplen * p) / octspergrp)] = hexx[(e >> 4) & 0xf]; |
6655 | 812 l[++c] = hexx[ e & 0xf]; |
813 } | |
814 else if (hextype == HEX_LITTLEENDIAN) | |
815 { | |
816 int x = p ^ (octspergrp-1); | |
15693
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
817 l[c = (addrlen + 1 + (grplen * x) / octspergrp)] = hexx[(e >> 4) & 0xf]; |
6655 | 818 l[++c] = hexx[ e & 0xf]; |
7 | 819 } |
820 else /* hextype == HEX_BITS */ | |
821 { | |
822 int i; | |
823 | |
15693
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
824 c = (addrlen + 1 + (grplen * p) / octspergrp) - 1; |
7 | 825 for (i = 7; i >= 0; i--) |
826 l[++c] = (e & (1 << i)) ? '1' : '0'; | |
827 } | |
13326
7f1a5e8d8289
patch 8.0.1537: xxd does not skip NUL lines when using ebcdic
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
828 if (e) |
7f1a5e8d8289
patch 8.0.1537: xxd does not skip NUL lines when using ebcdic
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
829 nonzero++; |
7 | 830 if (ebcdic) |
831 e = (e < 64) ? '.' : etoa64[e-64]; | |
1452 | 832 /* When changing this update definition of LLEN above. */ |
15693
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
833 l[addrlen + 3 + (grplen * cols - 1)/octspergrp + p] = |
7 | 834 #ifdef __MVS__ |
835 (e >= 64) | |
836 #else | |
837 (e > 31 && e < 127) | |
838 #endif | |
839 ? e : '.'; | |
840 n++; | |
841 if (++p == cols) | |
842 { | |
15693
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
843 l[c = (addrlen + 3 + (grplen * cols - 1)/octspergrp + p)] = '\n'; l[++c] = '\0'; |
7 | 844 xxdline(fpo, l, autoskip ? nonzero : 1); |
845 nonzero = 0; | |
846 p = 0; | |
847 } | |
848 } | |
2752 | 849 if (e == EOF && ferror(fp)) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
850 perror_exit(2); |
7 | 851 if (p) |
852 { | |
15693
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
853 l[c = (addrlen + 3 + (grplen * cols - 1)/octspergrp + p)] = '\n'; l[++c] = '\0'; |
7 | 854 xxdline(fpo, l, 1); |
855 } | |
856 else if (autoskip) | |
1197 | 857 xxdline(fpo, l, -1); /* last chance to flush out suppressed lines */ |
7 | 858 |
2752 | 859 if (fclose(fp)) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
860 perror_exit(2); |
2752 | 861 if (fclose(fpo)) |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
862 perror_exit(3); |
7 | 863 return 0; |
864 } | |
2752 | 865 |
866 /* vi:set ts=8 sw=4 sts=2 cino+={2 cino+=n-2 : */ |