Created
September 5, 2016 08:36
-
-
Save alphaKAI/e66134b614ee0ece1e981c328d2a615e to your computer and use it in GitHub Desktop.
Plain hexdump tool, like `hexdump -C` in D.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import std.range, | |
std.stdio, | |
std.file; | |
void main(string[] args) { | |
args = args[1..$]; | |
if (!args.length) { | |
writeln("usage : ./hexr files..."); | |
} | |
foreach (arg; args) { | |
if (!arg.exists) { | |
throw new Error("Error : No such file - " ~ arg); | |
} | |
auto file = File(arg, "rb"); | |
ubyte[] buf = new ubyte[file.size]; | |
file.rawRead(buf); | |
char[16] cbuf; | |
ubyte[16] ubuf; | |
size_t cbuf_idx, | |
ubuf_idx; | |
alias print = (j) { | |
writef("%06x0 ", j); | |
foreach (k; 16.iota) { | |
if (k < cbuf_idx) { | |
auto u = ubuf[k]; | |
writef("%02x ", u); | |
} else { | |
write(" "); | |
} | |
} | |
write(" |"); | |
foreach (k; 16.iota) { | |
if (k < cbuf_idx) { | |
auto c = cbuf[k]; | |
writef("%c", c); | |
} | |
} | |
writeln("|"); | |
cbuf_idx = 0; | |
ubuf_idx = 0; | |
}; | |
writeln("Hex dump of " ~ arg ~ ":"); | |
foreach (i, e; buf) { | |
if (i != 0 && i % 16 == 0) { | |
ulong j = i / 16 - 1; | |
print(j); | |
} | |
ubuf[ubuf_idx++] = e; | |
cbuf[cbuf_idx++] = (e < 32 || 127 < e) ? '.' : cast(char)e; | |
if (i == buf.length - 1) {// if this loop will be end with this time and buffers(ubuf, cbuf) aren't empty, print buffers | |
print(i / 16); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment