Mercurial > vim
annotate src/xxd/xxd.c @ 29863:62350f19d4ed v9.0.0270
patch 9.0.0270: some values of 'path' and 'tags' invalid in the tiny version
Commit: https://github.com/vim/vim/commit/2bd9dbc19fc67395cfa1226dda7326071ab22464
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Aug 25 18:12:06 2022 +0100
patch 9.0.0270: some values of 'path' and 'tags' invalid in the tiny version
Problem: Some values of 'path' and 'tags' do not work in the tiny version.
Solution: Graduate the +path_extra feature.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 25 Aug 2022 19:15:03 +0200 |
parents | 948c947cb1ed |
children | d45ee1f829ba |
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 |
27118
2f854597399f
patch 8.2.4088: xxd cannot output everything in one line
Bram Moolenaar <Bram@vim.org>
parents:
26859
diff
changeset
|
57 * 14.01.2022 Disable extra newlines with -c0 -p by Erik Auerswald. |
29330
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
58 * 20.06.2022 Permit setting the variable names used by -i by David Gow |
7 | 59 * |
25076
5690cf66ee07
patch 8.2.3075: xxd always reports an old version string
Bram Moolenaar <Bram@vim.org>
parents:
20601
diff
changeset
|
60 * (c) 1990-1998 by Juergen Weigert (jnweiger@gmail.com) |
7 | 61 * |
6973 | 62 * I hereby grant permission to distribute and use xxd |
63 * under X11-MIT or GPL-2.0 (at the user's choice). | |
64 * | |
25076
5690cf66ee07
patch 8.2.3075: xxd always reports an old version string
Bram Moolenaar <Bram@vim.org>
parents:
20601
diff
changeset
|
65 * Contributions by Bram Moolenaar et al. |
7 | 66 */ |
714 | 67 |
68 /* Visual Studio 2005 has 'deprecated' many of the standard CRT functions */ | |
69 #if _MSC_VER >= 1400 | |
70 # define _CRT_SECURE_NO_DEPRECATE | |
71 # define _CRT_NONSTDC_NO_DEPRECATE | |
72 #endif | |
15963
2d8fa45b341d
patch 8.1.0987: unnecessary condition in #ifdef
Bram Moolenaar <Bram@vim.org>
parents:
15695
diff
changeset
|
73 #if !defined(CYGWIN) && defined(__CYGWIN__) |
1912 | 74 # define CYGWIN |
75 #endif | |
714 | 76 |
26859
b9ede1952107
patch 8.2.3958: build failure compiling xxd with "-std=c2x"
Bram Moolenaar <Bram@vim.org>
parents:
26366
diff
changeset
|
77 #if (defined(__linux__) && !defined(__ANDROID__)) || defined(__CYGWIN__) |
b9ede1952107
patch 8.2.3958: build failure compiling xxd with "-std=c2x"
Bram Moolenaar <Bram@vim.org>
parents:
26366
diff
changeset
|
78 # define _XOPEN_SOURCE 700 /* for fdopen() */ |
b9ede1952107
patch 8.2.3958: build failure compiling xxd with "-std=c2x"
Bram Moolenaar <Bram@vim.org>
parents:
26366
diff
changeset
|
79 #endif |
b9ede1952107
patch 8.2.3958: build failure compiling xxd with "-std=c2x"
Bram Moolenaar <Bram@vim.org>
parents:
26366
diff
changeset
|
80 |
7 | 81 #include <stdio.h> |
82 #ifdef VAXC | |
83 # include <file.h> | |
84 #else | |
85 # include <fcntl.h> | |
86 #endif | |
16606
7e733046db1d
patch 8.1.1306: Borland support is outdated and doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
15963
diff
changeset
|
87 #if defined(WIN32) || defined(CYGWIN) |
7 | 88 # include <io.h> /* for setmode() */ |
89 #else | |
90 # ifdef UNIX | |
91 # include <unistd.h> | |
92 # endif | |
93 #endif | |
94 #include <stdlib.h> | |
95 #include <string.h> /* for strncmp() */ | |
96 #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
|
97 #include <limits.h> |
7 | 98 #if __MWERKS__ && !defined(BEBOX) |
99 # include <unix.h> /* for fdopen() on MAC */ | |
100 #endif | |
101 | |
102 | |
103 /* This corrects the problem of missing prototypes for certain functions | |
104 * in some GNU installations (e.g. SunOS 4.1.x). | |
105 * Darren Hiebert <darren@hmi.com> (sparc-sun-sunos4.1.3_U1/2.7.2.2) | |
106 */ | |
107 #if defined(__GNUC__) && defined(__STDC__) | |
108 # ifndef __USE_FIXED_PROTOTYPES__ | |
109 # define __USE_FIXED_PROTOTYPES__ | |
110 # endif | |
111 #endif | |
112 | |
113 #ifndef __USE_FIXED_PROTOTYPES__ | |
114 /* | |
115 * This is historic and works only if the compiler really has no prototypes: | |
116 * | |
117 * Include prototypes for Sun OS 4.x, when using an ANSI compiler. | |
118 * FILE is defined on OS 4.x, not on 5.x (Solaris). | |
119 * if __SVR4 is defined (some Solaris versions), don't include this. | |
120 */ | |
121 #if defined(sun) && defined(FILE) && !defined(__SVR4) && defined(__STDC__) | |
122 # define __P(a) a | |
123 /* excerpt from my sun_stdlib.h */ | |
124 extern int fprintf __P((FILE *, char *, ...)); | |
125 extern int fputs __P((char *, FILE *)); | |
126 extern int _flsbuf __P((unsigned char, FILE *)); | |
127 extern int _filbuf __P((FILE *)); | |
128 extern int fflush __P((FILE *)); | |
129 extern int fclose __P((FILE *)); | |
130 extern int fseek __P((FILE *, long, int)); | |
131 extern int rewind __P((FILE *)); | |
132 | |
133 extern void perror __P((char *)); | |
134 # endif | |
135 #endif | |
136 | |
137 extern long int strtol(); | |
138 extern long int ftell(); | |
139 | |
27118
2f854597399f
patch 8.2.4088: xxd cannot output everything in one line
Bram Moolenaar <Bram@vim.org>
parents:
26859
diff
changeset
|
140 char version[] = "xxd 2022-01-14 by Juergen Weigert et al."; |
7 | 141 #ifdef WIN32 |
142 char osver[] = " (Win32)"; | |
143 #else | |
144 char osver[] = ""; | |
145 #endif | |
146 | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
7837
diff
changeset
|
147 #if defined(WIN32) |
7 | 148 # define BIN_READ(yes) ((yes) ? "rb" : "rt") |
149 # define BIN_WRITE(yes) ((yes) ? "wb" : "wt") | |
150 # define BIN_CREAT(yes) ((yes) ? (O_CREAT|O_BINARY) : O_CREAT) | |
151 # define BIN_ASSIGN(fp, yes) setmode(fileno(fp), (yes) ? O_BINARY : O_TEXT) | |
602 | 152 # define PATH_SEP '\\' |
153 #elif defined(CYGWIN) | |
154 # define BIN_READ(yes) ((yes) ? "rb" : "rt") | |
155 # define BIN_WRITE(yes) ((yes) ? "wb" : "w") | |
156 # define BIN_CREAT(yes) ((yes) ? (O_CREAT|O_BINARY) : O_CREAT) | |
157 # define BIN_ASSIGN(fp, yes) ((yes) ? (void) setmode(fileno(fp), O_BINARY) : (void) (fp)) | |
158 # define PATH_SEP '/' | |
7 | 159 #else |
160 # ifdef VMS | |
161 # define BIN_READ(dummy) "r" | |
162 # define BIN_WRITE(dummy) "w" | |
163 # define BIN_CREAT(dummy) O_CREAT | |
164 # define BIN_ASSIGN(fp, dummy) fp | |
165 # define PATH_SEP ']' | |
166 # define FILE_SEP '.' | |
167 # else | |
168 # define BIN_READ(dummy) "r" | |
169 # define BIN_WRITE(dummy) "w" | |
170 # define BIN_CREAT(dummy) O_CREAT | |
171 # define BIN_ASSIGN(fp, dummy) fp | |
172 # define PATH_SEP '/' | |
173 # endif | |
174 #endif | |
175 | |
176 /* open has only to arguments on the Mac */ | |
177 #if __MWERKS__ | |
178 # define OPEN(name, mode, umask) open(name, mode) | |
179 #else | |
180 # define OPEN(name, mode, umask) open(name, mode, umask) | |
181 #endif | |
182 | |
183 #ifdef AMIGA | |
184 # define STRNCMP(s1, s2, l) strncmp(s1, s2, (size_t)l) | |
185 #else | |
186 # define STRNCMP(s1, s2, l) strncmp(s1, s2, l) | |
187 #endif | |
188 | |
189 #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
|
190 # if defined(__STDC__) || defined(WIN32) |
7 | 191 # define __P(a) a |
192 # else | |
193 # define __P(a) () | |
194 # endif | |
195 #endif | |
196 | |
197 #define TRY_SEEK /* attempt to use lseek, or skip forward by reading */ | |
198 #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
|
199 #define LLEN ((2*(int)sizeof(unsigned long)) + 4 + (9*COLS-1) + COLS + 2) |
7 | 200 |
201 char hexxa[] = "0123456789abcdef0123456789ABCDEF", *hexx = hexxa; | |
202 | |
203 /* the different hextypes known by this program: */ | |
204 #define HEX_NORMAL 0 | |
205 #define HEX_POSTSCRIPT 1 | |
206 #define HEX_CINCLUDE 2 | |
207 #define HEX_BITS 3 /* not hex a dump, but bits: 01111001 */ | |
6655 | 208 #define HEX_LITTLEENDIAN 4 |
7 | 209 |
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
|
210 #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
|
211 |
2752 | 212 static char *pname; |
213 | |
214 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
6973
diff
changeset
|
215 exit_with_usage(void) |
7 | 216 { |
217 fprintf(stderr, "Usage:\n %s [options] [infile [outfile]]\n", pname); | |
218 fprintf(stderr, " or\n %s -r [-s [-]offset] [-c cols] [-ps] [infile [outfile]]\n", pname); | |
219 fprintf(stderr, "Options:\n"); | |
220 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
|
221 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
|
222 fprintf(stderr, " -C capitalize variable names in C include file style (-i).\n"); |
7 | 223 fprintf(stderr, " -c cols format <cols> octets per line. Default 16 (-i: 12, -ps: 30).\n"); |
224 fprintf(stderr, " -E show characters in EBCDIC. Default ASCII.\n"); | |
6655 | 225 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
|
226 fprintf(stderr, " -g bytes number of octets per group in normal output. Default 2 (-e: 4).\n"); |
7 | 227 fprintf(stderr, " -h print this summary.\n"); |
228 fprintf(stderr, " -i output in C include file style.\n"); | |
229 fprintf(stderr, " -l len stop after <len> octets.\n"); | |
29330
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
230 fprintf(stderr, " -n name set the variable name used in C include output (-i).\n"); |
6655 | 231 fprintf(stderr, " -o off add <off> to the displayed file position.\n"); |
7 | 232 fprintf(stderr, " -ps output in postscript plain hexdump style.\n"); |
233 fprintf(stderr, " -r reverse operation: convert (or patch) hexdump into binary.\n"); | |
234 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
|
235 fprintf(stderr, " -d show offset in decimal instead of hex.\n"); |
7 | 236 fprintf(stderr, " -s %sseek start at <seek> bytes abs. %sinfile offset.\n", |
237 #ifdef TRY_SEEK | |
238 "[+][-]", "(or +: rel.) "); | |
239 #else | |
240 "", ""); | |
241 #endif | |
242 fprintf(stderr, " -u use upper case hex letters.\n"); | |
243 fprintf(stderr, " -v show version: \"%s%s\".\n", version, osver); | |
244 exit(1); | |
245 } | |
246 | |
2752 | 247 static void |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
248 perror_exit(int ret) |
2752 | 249 { |
250 fprintf(stderr, "%s: ", pname); | |
251 perror(NULL); | |
252 exit(ret); | |
253 } | |
254 | |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
255 static void |
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
256 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
|
257 { |
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
258 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
|
259 exit(ret); |
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
260 } |
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
261 |
26298
bb58c4530851
patch 8.2.3680: repeated code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26282
diff
changeset
|
262 static int |
bb58c4530851
patch 8.2.3680: repeated code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26282
diff
changeset
|
263 getc_or_die(FILE *fpi) |
26278
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
264 { |
26298
bb58c4530851
patch 8.2.3680: repeated code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26282
diff
changeset
|
265 int c = getc(fpi); |
26278
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
266 if (c == EOF && ferror(fpi)) |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
267 perror_exit(2); |
26298
bb58c4530851
patch 8.2.3680: repeated code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26282
diff
changeset
|
268 return c; |
26278
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
269 } |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
270 |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
271 static void |
26282
71bdede8afd8
patch 8.2.3672: build failure with unsigned char
Bram Moolenaar <Bram@vim.org>
parents:
26278
diff
changeset
|
272 putc_or_die(int c, FILE *fpo) |
26278
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
273 { |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
274 if (putc(c, fpo) == EOF) |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
275 perror_exit(3); |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
276 } |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
277 |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
278 static void |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
279 fputs_or_die(char *s, FILE *fpo) |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
280 { |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
281 if (fputs(s, fpo) == EOF) |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
282 perror_exit(3); |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
283 } |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
284 |
26366
d227481dbe8e
patch 8.2.3714: some unused assignments and ugly code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26298
diff
changeset
|
285 /* Use a macro to allow for different arguments. */ |
d227481dbe8e
patch 8.2.3714: some unused assignments and ugly code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26298
diff
changeset
|
286 #define FPRINTF_OR_DIE(args) if (fprintf args < 0) perror_exit(3) |
26278
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
287 |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
288 static void |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
289 fclose_or_die(FILE *fpi, FILE *fpo) |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
290 { |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
291 if (fclose(fpo) != 0) |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
292 perror_exit(3); |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
293 if (fclose(fpi) != 0) |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
294 perror_exit(2); |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
295 } |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
296 |
7 | 297 /* |
26123
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
298 * If "c" is a hex digit, return the value. |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
299 * Otherwise return -1. |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
300 */ |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
301 static int |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
302 parse_hex_digit(int c) |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
303 { |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
304 return (c >= '0' && c <= '9') ? c - '0' |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
305 : (c >= 'a' && c <= 'f') ? c - 'a' + 10 |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
306 : (c >= 'A' && c <= 'F') ? c - 'A' + 10 |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
307 : -1; |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
308 } |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
309 |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
310 /* |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
311 * Ignore text on "fpi" until end-of-line or end-of-file. |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
312 * Return the '\n' or EOF character. |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
313 * When an error is encountered exit with an error message. |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
314 */ |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
315 static int |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
316 skip_to_eol(FILE *fpi, int c) |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
317 { |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
318 while (c != '\n' && c != EOF) |
26298
bb58c4530851
patch 8.2.3680: repeated code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26282
diff
changeset
|
319 c = getc_or_die(fpi); |
26123
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
320 return c; |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
321 } |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
322 |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
323 /* |
7 | 324 * Max. cols binary characters are decoded from the input stream per line. |
325 * Two adjacent garbage characters after evaluated data delimit valid data. | |
326 * Everything up to the next newline is discarded. | |
327 * | |
328 * The name is historic and came from 'undo type opt h'. | |
329 */ | |
2752 | 330 static int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
6973
diff
changeset
|
331 huntype( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
6973
diff
changeset
|
332 FILE *fpi, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
6973
diff
changeset
|
333 FILE *fpo, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
6973
diff
changeset
|
334 int cols, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
6973
diff
changeset
|
335 int hextype, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
6973
diff
changeset
|
336 long base_off) |
7 | 337 { |
338 int c, ign_garb = 1, n1 = -1, n2 = 0, n3, p = cols; | |
339 long have_off = 0, want_off = 0; | |
340 | |
341 rewind(fpi); | |
342 | |
343 while ((c = getc(fpi)) != EOF) | |
344 { | |
345 if (c == '\r') /* Doze style input file? */ | |
346 continue; | |
347 | |
2083
24eb7921b8f0
updated for version 7.2.367
Bram Moolenaar <bram@zimbu.org>
parents:
1912
diff
changeset
|
348 /* 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
|
349 * 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
|
350 * use it for PostScript format. */ |
24eb7921b8f0
updated for version 7.2.367
Bram Moolenaar <bram@zimbu.org>
parents:
1912
diff
changeset
|
351 if (hextype == HEX_POSTSCRIPT && (c == ' ' || c == '\n' || c == '\t')) |
856 | 352 continue; |
809 | 353 |
7 | 354 n3 = n2; |
355 n2 = n1; | |
356 | |
26123
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
357 n1 = parse_hex_digit(c); |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
358 if (n1 == -1 && ign_garb) |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
359 continue; |
7 | 360 |
361 ign_garb = 0; | |
362 | |
26000
16aaed83522a
patch 8.2.3533: inefficient code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
25992
diff
changeset
|
363 if (!hextype && (p >= cols)) |
7 | 364 { |
26000
16aaed83522a
patch 8.2.3533: inefficient code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
25992
diff
changeset
|
365 if (n1 < 0) |
7 | 366 { |
26000
16aaed83522a
patch 8.2.3533: inefficient code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
25992
diff
changeset
|
367 p = 0; |
7 | 368 continue; |
369 } | |
26000
16aaed83522a
patch 8.2.3533: inefficient code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
25992
diff
changeset
|
370 want_off = (want_off << 4) | n1; |
16aaed83522a
patch 8.2.3533: inefficient code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
25992
diff
changeset
|
371 continue; |
7 | 372 } |
373 | |
374 if (base_off + want_off != have_off) | |
375 { | |
2752 | 376 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
|
377 perror_exit(3); |
7 | 378 #ifdef TRY_SEEK |
26123
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
379 if (fseek(fpo, base_off + want_off - have_off, SEEK_CUR) >= 0) |
7 | 380 have_off = base_off + want_off; |
381 #endif | |
382 if (base_off + want_off < have_off) | |
26366
d227481dbe8e
patch 8.2.3714: some unused assignments and ugly code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26298
diff
changeset
|
383 error_exit(5, "Sorry, cannot seek backwards."); |
7 | 384 for (; have_off < base_off + want_off; have_off++) |
26278
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
385 putc_or_die(0, fpo); |
7 | 386 } |
387 | |
388 if (n2 >= 0 && n1 >= 0) | |
389 { | |
26278
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
390 putc_or_die((n2 << 4) | n1, fpo); |
7 | 391 have_off++; |
392 want_off++; | |
393 n1 = -1; | |
26000
16aaed83522a
patch 8.2.3533: inefficient code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
25992
diff
changeset
|
394 if (!hextype && (++p >= cols)) |
26123
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
395 /* skip the rest of the line as garbage */ |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
396 c = skip_to_eol(fpi, c); |
7 | 397 } |
26123
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
398 else if (n1 < 0 && n2 < 0 && n3 < 0) |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
399 /* already stumbled into garbage, skip line, wait and see */ |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
400 c = skip_to_eol(fpi, c); |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
401 |
26036
c8165ec9dcad
patch 8.2.3552: xxd revert does not handle end of line correctly
Bram Moolenaar <Bram@vim.org>
parents:
26000
diff
changeset
|
402 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
|
403 { |
7 | 404 if (!hextype) |
405 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
|
406 p = cols; |
7 | 407 ign_garb = 1; |
408 } | |
409 } | |
2752 | 410 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
|
411 perror_exit(3); |
7 | 412 #ifdef TRY_SEEK |
26123
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
413 fseek(fpo, 0L, SEEK_END); |
7 | 414 #endif |
26278
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
415 fclose_or_die(fpi, fpo); |
7 | 416 return 0; |
417 } | |
418 | |
419 /* | |
420 * Print line l. If nz is false, xxdline regards the line a line of | |
421 * zeroes. If there are three or more consecutive lines of zeroes, | |
422 * they are replaced by a single '*' character. | |
423 * | |
424 * If the output ends with more than two lines of zeroes, you | |
425 * should call xxdline again with l being the last line and nz | |
426 * negative. This ensures that the last line is shown even when | |
427 * it is all zeroes. | |
428 * | |
429 * If nz is always positive, lines are never suppressed. | |
430 */ | |
2752 | 431 static void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
6973
diff
changeset
|
432 xxdline(FILE *fp, char *l, int nz) |
7 | 433 { |
434 static char z[LLEN+1]; | |
435 static int zero_seen = 0; | |
436 | |
437 if (!nz && zero_seen == 1) | |
438 strcpy(z, l); | |
439 | |
440 if (nz || !zero_seen++) | |
441 { | |
442 if (nz) | |
443 { | |
444 if (nz < 0) | |
445 zero_seen--; | |
446 if (zero_seen == 2) | |
26278
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
447 fputs_or_die(z, fp); |
7 | 448 if (zero_seen > 2) |
26278
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
449 fputs_or_die("*\n", fp); |
7 | 450 } |
451 if (nz >= 0 || zero_seen > 0) | |
26278
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
452 fputs_or_die(l, fp); |
7 | 453 if (nz) |
454 zero_seen = 0; | |
455 } | |
456 } | |
457 | |
458 /* This is an EBCDIC to ASCII conversion table */ | |
459 /* from a proposed BTL standard April 16, 1979 */ | |
460 static unsigned char etoa64[] = | |
461 { | |
462 0040,0240,0241,0242,0243,0244,0245,0246, | |
463 0247,0250,0325,0056,0074,0050,0053,0174, | |
464 0046,0251,0252,0253,0254,0255,0256,0257, | |
465 0260,0261,0041,0044,0052,0051,0073,0176, | |
466 0055,0057,0262,0263,0264,0265,0266,0267, | |
467 0270,0271,0313,0054,0045,0137,0076,0077, | |
468 0272,0273,0274,0275,0276,0277,0300,0301, | |
469 0302,0140,0072,0043,0100,0047,0075,0042, | |
470 0303,0141,0142,0143,0144,0145,0146,0147, | |
471 0150,0151,0304,0305,0306,0307,0310,0311, | |
472 0312,0152,0153,0154,0155,0156,0157,0160, | |
473 0161,0162,0136,0314,0315,0316,0317,0320, | |
474 0321,0345,0163,0164,0165,0166,0167,0170, | |
475 0171,0172,0322,0323,0324,0133,0326,0327, | |
476 0330,0331,0332,0333,0334,0335,0336,0337, | |
477 0340,0341,0342,0343,0344,0135,0346,0347, | |
478 0173,0101,0102,0103,0104,0105,0106,0107, | |
479 0110,0111,0350,0351,0352,0353,0354,0355, | |
480 0175,0112,0113,0114,0115,0116,0117,0120, | |
481 0121,0122,0356,0357,0360,0361,0362,0363, | |
482 0134,0237,0123,0124,0125,0126,0127,0130, | |
483 0131,0132,0364,0365,0366,0367,0370,0371, | |
484 0060,0061,0062,0063,0064,0065,0066,0067, | |
485 0070,0071,0372,0373,0374,0375,0376,0377 | |
486 }; | |
487 | |
2752 | 488 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
6973
diff
changeset
|
489 main(int argc, char *argv[]) |
7 | 490 { |
491 FILE *fp, *fpo; | |
492 int c, e, p = 0, relseek = 1, negseek = 0, revert = 0; | |
27118
2f854597399f
patch 8.2.4088: xxd cannot output everything in one line
Bram Moolenaar <Bram@vim.org>
parents:
26859
diff
changeset
|
493 int cols = 0, colsgiven = 0, nonzero = 0, autoskip = 0, hextype = HEX_NORMAL; |
20601
75ef263d09d6
patch 8.2.0854: xxd cannot show offset as a decimal number
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
494 int capitalize = 0, decimal_offset = 0; |
7 | 495 int ebcdic = 0; |
496 int octspergrp = -1; /* number of octets grouped in output */ | |
497 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
|
498 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
|
499 unsigned long displayoff = 0; |
2770 | 500 static char l[LLEN+1]; /* static because it may be too big for stack */ |
2752 | 501 char *pp; |
29330
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
502 char *varname = NULL; |
15695
ac05f8fb4200
patch 8.1.0855: cannot build xxd with MSVC 10
Bram Moolenaar <Bram@vim.org>
parents:
15693
diff
changeset
|
503 int addrlen = 9; |
7 | 504 |
505 #ifdef AMIGA | |
506 /* This program doesn't work when started from the Workbench */ | |
507 if (argc == 0) | |
508 exit(1); | |
509 #endif | |
510 | |
511 pname = argv[0]; | |
512 for (pp = pname; *pp; ) | |
513 if (*pp++ == PATH_SEP) | |
514 pname = pp; | |
515 #ifdef FILE_SEP | |
516 for (pp = pname; *pp; pp++) | |
517 if (*pp == FILE_SEP) | |
518 { | |
519 *pp = '\0'; | |
520 break; | |
521 } | |
522 #endif | |
523 | |
524 while (argc >= 2) | |
525 { | |
526 pp = argv[1] + (!STRNCMP(argv[1], "--", 2) && argv[1][2]); | |
527 if (!STRNCMP(pp, "-a", 2)) autoskip = 1 - autoskip; | |
528 else if (!STRNCMP(pp, "-b", 2)) hextype = HEX_BITS; | |
6655 | 529 else if (!STRNCMP(pp, "-e", 2)) hextype = HEX_LITTLEENDIAN; |
7 | 530 else if (!STRNCMP(pp, "-u", 2)) hexx = hexxa + 16; |
531 else if (!STRNCMP(pp, "-p", 2)) hextype = HEX_POSTSCRIPT; | |
532 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
|
533 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
|
534 else if (!STRNCMP(pp, "-d", 2)) decimal_offset = 1; |
7 | 535 else if (!STRNCMP(pp, "-r", 2)) revert++; |
536 else if (!STRNCMP(pp, "-E", 2)) ebcdic++; | |
537 else if (!STRNCMP(pp, "-v", 2)) | |
538 { | |
539 fprintf(stderr, "%s%s\n", version, osver); | |
540 exit(0); | |
541 } | |
542 else if (!STRNCMP(pp, "-c", 2)) | |
543 { | |
15627
11879b89bb69
patch 8.1.0821: xxd "usage" output and other arguments not tested
Bram Moolenaar <Bram@vim.org>
parents:
13571
diff
changeset
|
544 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
|
545 capitalize = 1; |
11879b89bb69
patch 8.1.0821: xxd "usage" output and other arguments not tested
Bram Moolenaar <Bram@vim.org>
parents:
13571
diff
changeset
|
546 else if (pp[2] && STRNCMP("ols", pp + 2, 3)) |
27118
2f854597399f
patch 8.2.4088: xxd cannot output everything in one line
Bram Moolenaar <Bram@vim.org>
parents:
26859
diff
changeset
|
547 { |
2f854597399f
patch 8.2.4088: xxd cannot output everything in one line
Bram Moolenaar <Bram@vim.org>
parents:
26859
diff
changeset
|
548 colsgiven = 1; |
2f854597399f
patch 8.2.4088: xxd cannot output everything in one line
Bram Moolenaar <Bram@vim.org>
parents:
26859
diff
changeset
|
549 cols = (int)strtol(pp + 2, NULL, 0); |
2f854597399f
patch 8.2.4088: xxd cannot output everything in one line
Bram Moolenaar <Bram@vim.org>
parents:
26859
diff
changeset
|
550 } |
7 | 551 else |
552 { | |
553 if (!argv[2]) | |
2752 | 554 exit_with_usage(); |
27118
2f854597399f
patch 8.2.4088: xxd cannot output everything in one line
Bram Moolenaar <Bram@vim.org>
parents:
26859
diff
changeset
|
555 colsgiven = 1; |
7 | 556 cols = (int)strtol(argv[2], NULL, 0); |
557 argv++; | |
558 argc--; | |
559 } | |
560 } | |
561 else if (!STRNCMP(pp, "-g", 2)) | |
562 { | |
15627
11879b89bb69
patch 8.1.0821: xxd "usage" output and other arguments not tested
Bram Moolenaar <Bram@vim.org>
parents:
13571
diff
changeset
|
563 if (pp[2] && STRNCMP("roup", pp + 2, 4)) |
7 | 564 octspergrp = (int)strtol(pp + 2, NULL, 0); |
565 else | |
566 { | |
567 if (!argv[2]) | |
2752 | 568 exit_with_usage(); |
7 | 569 octspergrp = (int)strtol(argv[2], NULL, 0); |
570 argv++; | |
571 argc--; | |
572 } | |
573 } | |
6655 | 574 else if (!STRNCMP(pp, "-o", 2)) |
575 { | |
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
|
576 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
|
577 int negoffset = 0; |
6655 | 578 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
|
579 displayoff = strtoul(pp + 2, NULL, 0); |
6655 | 580 else |
581 { | |
582 if (!argv[2]) | |
583 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
|
584 |
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
585 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
|
586 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
|
587 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
|
588 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
|
589 |
e00983850550
patch 8.1.0854: xxd does not work with more than 32 bit addresses
Bram Moolenaar <Bram@vim.org>
parents:
15627
diff
changeset
|
590 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
|
591 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
|
592 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
|
593 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
|
594 |
6655 | 595 argv++; |
596 argc--; | |
597 } | |
598 } | |
7 | 599 else if (!STRNCMP(pp, "-s", 2)) |
600 { | |
601 relseek = 0; | |
602 negseek = 0; | |
603 if (pp[2] && STRNCMP("kip", pp+2, 3) && STRNCMP("eek", pp+2, 3)) | |
604 { | |
605 #ifdef TRY_SEEK | |
606 if (pp[2] == '+') | |
607 relseek++; | |
608 if (pp[2+relseek] == '-') | |
609 negseek++; | |
610 #endif | |
611 seekoff = strtol(pp + 2+relseek+negseek, (char **)NULL, 0); | |
612 } | |
613 else | |
614 { | |
615 if (!argv[2]) | |
2752 | 616 exit_with_usage(); |
7 | 617 #ifdef TRY_SEEK |
618 if (argv[2][0] == '+') | |
619 relseek++; | |
620 if (argv[2][relseek] == '-') | |
621 negseek++; | |
622 #endif | |
623 seekoff = strtol(argv[2] + relseek+negseek, (char **)NULL, 0); | |
624 argv++; | |
625 argc--; | |
626 } | |
627 } | |
628 else if (!STRNCMP(pp, "-l", 2)) | |
629 { | |
630 if (pp[2] && STRNCMP("en", pp + 2, 2)) | |
631 length = strtol(pp + 2, (char **)NULL, 0); | |
632 else | |
633 { | |
634 if (!argv[2]) | |
2752 | 635 exit_with_usage(); |
7 | 636 length = strtol(argv[2], (char **)NULL, 0); |
637 argv++; | |
638 argc--; | |
639 } | |
640 } | |
29330
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
641 else if (!STRNCMP(pp, "-n", 2)) |
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
642 { |
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
643 if (pp[2] && STRNCMP("ame", pp + 2, 3)) |
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
644 varname = pp + 2; |
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
645 else |
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
646 { |
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
647 if (!argv[2]) |
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
648 exit_with_usage(); |
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
649 varname = argv[2]; |
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
650 argv++; |
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
651 argc--; |
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
652 } |
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
653 } |
7 | 654 else if (!strcmp(pp, "--")) /* end of options */ |
655 { | |
656 argv++; | |
657 argc--; | |
658 break; | |
659 } | |
660 else if (pp[0] == '-' && pp[1]) /* unknown option */ | |
2752 | 661 exit_with_usage(); |
7 | 662 else |
663 break; /* not an option */ | |
664 | |
665 argv++; /* advance to next argument */ | |
666 argc--; | |
667 } | |
668 | |
27118
2f854597399f
patch 8.2.4088: xxd cannot output everything in one line
Bram Moolenaar <Bram@vim.org>
parents:
26859
diff
changeset
|
669 if (!colsgiven || (!cols && hextype != HEX_POSTSCRIPT)) |
7 | 670 switch (hextype) |
671 { | |
672 case HEX_POSTSCRIPT: cols = 30; break; | |
673 case HEX_CINCLUDE: cols = 12; break; | |
674 case HEX_BITS: cols = 6; break; | |
675 case HEX_NORMAL: | |
6655 | 676 case HEX_LITTLEENDIAN: |
7 | 677 default: cols = 16; break; |
678 } | |
679 | |
680 if (octspergrp < 0) | |
681 switch (hextype) | |
682 { | |
683 case HEX_BITS: octspergrp = 1; break; | |
684 case HEX_NORMAL: octspergrp = 2; break; | |
6655 | 685 case HEX_LITTLEENDIAN: octspergrp = 4; break; |
7 | 686 case HEX_POSTSCRIPT: |
687 case HEX_CINCLUDE: | |
688 default: octspergrp = 0; break; | |
689 } | |
690 | |
27118
2f854597399f
patch 8.2.4088: xxd cannot output everything in one line
Bram Moolenaar <Bram@vim.org>
parents:
26859
diff
changeset
|
691 if ((hextype == HEX_POSTSCRIPT && cols < 0) || |
2f854597399f
patch 8.2.4088: xxd cannot output everything in one line
Bram Moolenaar <Bram@vim.org>
parents:
26859
diff
changeset
|
692 (hextype != HEX_POSTSCRIPT && cols < 1) || |
2f854597399f
patch 8.2.4088: xxd cannot output everything in one line
Bram Moolenaar <Bram@vim.org>
parents:
26859
diff
changeset
|
693 ((hextype == HEX_NORMAL || hextype == HEX_BITS || hextype == HEX_LITTLEENDIAN) |
1452 | 694 && (cols > COLS))) |
7 | 695 { |
696 fprintf(stderr, "%s: invalid number of columns (max. %d).\n", pname, COLS); | |
697 exit(1); | |
698 } | |
699 | |
6655 | 700 if (octspergrp < 1 || octspergrp > cols) |
7 | 701 octspergrp = cols; |
6655 | 702 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
|
703 error_exit(1, "number of octets per group must be a power of 2 with -e."); |
7 | 704 |
705 if (argc > 3) | |
2752 | 706 exit_with_usage(); |
7 | 707 |
708 if (argc == 1 || (argv[1][0] == '-' && !argv[1][1])) | |
709 BIN_ASSIGN(fp = stdin, !revert); | |
710 else | |
711 { | |
712 if ((fp = fopen(argv[1], BIN_READ(!revert))) == NULL) | |
713 { | |
714 fprintf(stderr,"%s: ", pname); | |
715 perror(argv[1]); | |
716 return 2; | |
717 } | |
718 } | |
719 | |
720 if (argc < 3 || (argv[2][0] == '-' && !argv[2][1])) | |
721 BIN_ASSIGN(fpo = stdout, revert); | |
722 else | |
723 { | |
724 int fd; | |
725 int mode = revert ? O_WRONLY : (O_TRUNC|O_WRONLY); | |
726 | |
727 if (((fd = OPEN(argv[2], mode | BIN_CREAT(revert), 0666)) < 0) || | |
728 (fpo = fdopen(fd, BIN_WRITE(revert))) == NULL) | |
729 { | |
730 fprintf(stderr, "%s: ", pname); | |
731 perror(argv[2]); | |
732 return 3; | |
733 } | |
734 rewind(fpo); | |
735 } | |
736 | |
737 if (revert) | |
738 { | |
739 if (hextype && (hextype != HEX_POSTSCRIPT)) | |
26366
d227481dbe8e
patch 8.2.3714: some unused assignments and ugly code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26298
diff
changeset
|
740 error_exit(-1, "Sorry, cannot revert this type of hexdump"); |
26040
3c36cc7bd7a8
patch 8.2.3554: xxd has various way to exit
Bram Moolenaar <Bram@vim.org>
parents:
26036
diff
changeset
|
741 return huntype(fp, fpo, cols, hextype, |
7 | 742 negseek ? -seekoff : seekoff); |
743 } | |
744 | |
745 if (seekoff || negseek || !relseek) | |
746 { | |
747 #ifdef TRY_SEEK | |
748 if (relseek) | |
26123
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
749 e = fseek(fp, negseek ? -seekoff : seekoff, SEEK_CUR); |
7 | 750 else |
26123
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
751 e = fseek(fp, negseek ? -seekoff : seekoff, |
56d1d2cb4ad5
patch 8.2.3594: xxd code is a bit difficult to understand
Bram Moolenaar <Bram@vim.org>
parents:
26040
diff
changeset
|
752 negseek ? SEEK_END : SEEK_SET); |
7 | 753 if (e < 0 && negseek) |
26366
d227481dbe8e
patch 8.2.3714: some unused assignments and ugly code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26298
diff
changeset
|
754 error_exit(4, "Sorry, cannot seek."); |
7 | 755 if (e >= 0) |
756 seekoff = ftell(fp); | |
757 else | |
758 #endif | |
759 { | |
760 long s = seekoff; | |
761 | |
762 while (s--) | |
26366
d227481dbe8e
patch 8.2.3714: some unused assignments and ugly code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26298
diff
changeset
|
763 if (getc_or_die(fp) == EOF) |
2754 | 764 { |
26366
d227481dbe8e
patch 8.2.3714: some unused assignments and ugly code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26298
diff
changeset
|
765 error_exit(4, "Sorry, cannot seek."); |
2754 | 766 } |
7 | 767 } |
768 } | |
769 | |
770 if (hextype == HEX_CINCLUDE) | |
771 { | |
29330
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
772 /* A user-set variable name overrides fp == stdin */ |
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
773 if (varname == NULL && fp != stdin) |
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
774 varname = argv[1]; |
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
775 |
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
776 if (varname != NULL) |
7 | 777 { |
29330
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
778 FPRINTF_OR_DIE((fpo, "unsigned char %s", isdigit((int)varname[0]) ? "__" : "")); |
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
779 for (e = 0; (c = varname[e]) != 0; e++) |
26278
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
780 putc_or_die(isalnum(c) ? CONDITIONAL_CAPITALIZE(c) : '_', fpo); |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
781 fputs_or_die("[] = {\n", fpo); |
7 | 782 } |
783 | |
784 p = 0; | |
2752 | 785 c = 0; |
26298
bb58c4530851
patch 8.2.3680: repeated code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26282
diff
changeset
|
786 while ((length < 0 || p < length) && (c = getc_or_die(fp)) != EOF) |
7 | 787 { |
26366
d227481dbe8e
patch 8.2.3714: some unused assignments and ugly code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26298
diff
changeset
|
788 FPRINTF_OR_DIE((fpo, (hexx == hexxa) ? "%s0x%02x" : "%s0X%02X", |
d227481dbe8e
patch 8.2.3714: some unused assignments and ugly code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26298
diff
changeset
|
789 (p % cols) ? ", " : (!p ? " " : ",\n "), c)); |
7 | 790 p++; |
791 } | |
792 | |
26278
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
793 if (p) |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
794 fputs_or_die("\n", fpo); |
7 | 795 |
29330
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
796 if (varname != NULL) |
7 | 797 { |
26298
bb58c4530851
patch 8.2.3680: repeated code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26282
diff
changeset
|
798 fputs_or_die("};\n", fpo); |
29330
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
799 FPRINTF_OR_DIE((fpo, "unsigned int %s", isdigit((int)varname[0]) ? "__" : "")); |
948c947cb1ed
patch 9.0.0008: cannot specify the variable name for "xxd -i"
Bram Moolenaar <Bram@vim.org>
parents:
27118
diff
changeset
|
800 for (e = 0; (c = varname[e]) != 0; e++) |
26278
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
801 putc_or_die(isalnum(c) ? CONDITIONAL_CAPITALIZE(c) : '_', fpo); |
26366
d227481dbe8e
patch 8.2.3714: some unused assignments and ugly code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26298
diff
changeset
|
802 FPRINTF_OR_DIE((fpo, "_%s = %d;\n", capitalize ? "LEN" : "len", p)); |
7 | 803 } |
804 | |
26278
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
805 fclose_or_die(fp, fpo); |
7 | 806 return 0; |
807 } | |
808 | |
809 if (hextype == HEX_POSTSCRIPT) | |
810 { | |
811 p = cols; | |
26298
bb58c4530851
patch 8.2.3680: repeated code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26282
diff
changeset
|
812 while ((length < 0 || n < length) && (e = getc_or_die(fp)) != EOF) |
7 | 813 { |
26278
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
814 putc_or_die(hexx[(e >> 4) & 0xf], fpo); |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
815 putc_or_die(hexx[e & 0xf], fpo); |
7 | 816 n++; |
27118
2f854597399f
patch 8.2.4088: xxd cannot output everything in one line
Bram Moolenaar <Bram@vim.org>
parents:
26859
diff
changeset
|
817 if (cols > 0 && !--p) |
7 | 818 { |
26278
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
819 putc_or_die('\n', fpo); |
7 | 820 p = cols; |
821 } | |
822 } | |
27118
2f854597399f
patch 8.2.4088: xxd cannot output everything in one line
Bram Moolenaar <Bram@vim.org>
parents:
26859
diff
changeset
|
823 if (cols == 0 || p < cols) |
26278
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
824 putc_or_die('\n', fpo); |
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
825 fclose_or_die(fp, fpo); |
7 | 826 return 0; |
827 } | |
828 | |
6655 | 829 /* hextype: HEX_NORMAL or HEX_BITS or HEX_LITTLEENDIAN */ |
7 | 830 |
6655 | 831 if (hextype != HEX_BITS) |
7 | 832 grplen = octspergrp + octspergrp + 1; /* chars per octet group */ |
833 else /* hextype == HEX_BITS */ | |
834 grplen = 8 * octspergrp + 1; | |
835 | |
26298
bb58c4530851
patch 8.2.3680: repeated code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26282
diff
changeset
|
836 while ((length < 0 || n < length) && (e = getc_or_die(fp)) != EOF) |
7 | 837 { |
26254
3a13efec0016
patch 8.2.3658: duplicate code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26220
diff
changeset
|
838 int x; |
3a13efec0016
patch 8.2.3658: duplicate code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26220
diff
changeset
|
839 |
7 | 840 if (p == 0) |
841 { | |
26220
d757c9c87a58
patch 8.2.3641: xxd code has duplicate expressions
Bram Moolenaar <Bram@vim.org>
parents:
26123
diff
changeset
|
842 addrlen = sprintf(l, decimal_offset ? "%08ld:" : "%08lx:", |
20601
75ef263d09d6
patch 8.2.0854: xxd cannot show offset as a decimal number
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
843 ((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
|
844 for (c = addrlen; c < LLEN; l[c++] = ' '); |
7 | 845 } |
26254
3a13efec0016
patch 8.2.3658: duplicate code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26220
diff
changeset
|
846 x = hextype == HEX_LITTLEENDIAN ? p ^ (octspergrp-1) : p; |
3a13efec0016
patch 8.2.3658: duplicate code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26220
diff
changeset
|
847 c = addrlen + 1 + (grplen * x) / octspergrp; |
26220
d757c9c87a58
patch 8.2.3641: xxd code has duplicate expressions
Bram Moolenaar <Bram@vim.org>
parents:
26123
diff
changeset
|
848 if (hextype == HEX_NORMAL || hextype == HEX_LITTLEENDIAN) |
7 | 849 { |
26254
3a13efec0016
patch 8.2.3658: duplicate code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26220
diff
changeset
|
850 l[c] = hexx[(e >> 4) & 0xf]; |
26220
d757c9c87a58
patch 8.2.3641: xxd code has duplicate expressions
Bram Moolenaar <Bram@vim.org>
parents:
26123
diff
changeset
|
851 l[++c] = hexx[e & 0xf]; |
7 | 852 } |
853 else /* hextype == HEX_BITS */ | |
854 { | |
855 int i; | |
856 for (i = 7; i >= 0; i--) | |
26254
3a13efec0016
patch 8.2.3658: duplicate code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26220
diff
changeset
|
857 l[c++] = (e & (1 << i)) ? '1' : '0'; |
7 | 858 } |
13326
7f1a5e8d8289
patch 8.0.1537: xxd does not skip NUL lines when using ebcdic
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
859 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
|
860 nonzero++; |
7 | 861 if (ebcdic) |
862 e = (e < 64) ? '.' : etoa64[e-64]; | |
1452 | 863 /* When changing this update definition of LLEN above. */ |
26254
3a13efec0016
patch 8.2.3658: duplicate code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26220
diff
changeset
|
864 c = addrlen + 3 + (grplen * cols - 1)/octspergrp + p; |
3a13efec0016
patch 8.2.3658: duplicate code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26220
diff
changeset
|
865 l[c++] = |
7 | 866 #ifdef __MVS__ |
867 (e >= 64) | |
868 #else | |
869 (e > 31 && e < 127) | |
870 #endif | |
871 ? e : '.'; | |
872 n++; | |
873 if (++p == cols) | |
874 { | |
26254
3a13efec0016
patch 8.2.3658: duplicate code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26220
diff
changeset
|
875 l[c] = '\n'; |
3a13efec0016
patch 8.2.3658: duplicate code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26220
diff
changeset
|
876 l[++c] = '\0'; |
7 | 877 xxdline(fpo, l, autoskip ? nonzero : 1); |
878 nonzero = 0; | |
879 p = 0; | |
880 } | |
881 } | |
882 if (p) | |
883 { | |
26254
3a13efec0016
patch 8.2.3658: duplicate code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26220
diff
changeset
|
884 l[c] = '\n'; |
3a13efec0016
patch 8.2.3658: duplicate code in xxd
Bram Moolenaar <Bram@vim.org>
parents:
26220
diff
changeset
|
885 l[++c] = '\0'; |
7 | 886 xxdline(fpo, l, 1); |
887 } | |
888 else if (autoskip) | |
1197 | 889 xxdline(fpo, l, -1); /* last chance to flush out suppressed lines */ |
7 | 890 |
26278
3061c07855ce
patch 8.2.3670: error checks repeated several times
Bram Moolenaar <Bram@vim.org>
parents:
26254
diff
changeset
|
891 fclose_or_die(fp, fpo); |
7 | 892 return 0; |
893 } | |
2752 | 894 |
895 /* vi:set ts=8 sw=4 sts=2 cino+={2 cino+=n-2 : */ |