new dumphex, abbreviates runs of zeros

This commit is contained in:
Benji Dial 2020-09-20 15:38:45 -04:00
parent fadd46012c
commit 7ec5323d1b

View file

@ -2,28 +2,80 @@
#include <knob/user.h> #include <knob/user.h>
#include <knob/format.h> #include <knob/format.h>
#define LINE_LEN 16
void print_zero_line(uint32_t offset) {
}
void main(const char *path) { void main(const char *path) {
struct file *f = open_file(path); struct file *f = open_file(path);
if (!f) { if (!f) {
tell_user_sz("Couldn't open file.\n"); tell_user_sz("Couldn't open file.\n");
return; return;
} }
char buf[] = { ' ', '\0', '\0', '\0' };
uint8_t v; uint8_t line[LINE_LEN + 2];
uint32_t a = 0; uint8_t len;
while (read_from_file(f, 1, &v)) { uint32_t offset = -LINE_LEN;
if (!(a & 0xf)) {
char buf2[] = {'0', 'x', '\0', '\0', '\0', '\0', enum {
'\0', '\0', '\0', '\0', '\0' }; ZR_NO,
itosz_h32(a, buf2 + 2); ZR_FIRST,
tell_user_sz(buf2); ZR_REST
tell_user_sz(" |"); } zero_run;
char nbuf[9];
while ((len = read_from_file(f, LINE_LEN, line))) {
offset += LINE_LEN;
for (uint8_t i = 0; i < LINE_LEN; ++i)
if (line[i]) {
zero_run = ZR_NO;
goto print_normal;
}
switch (zero_run) {
case ZR_NO:
zero_run = ZR_FIRST;
_log_string("0x");
itosz_h32(offset, nbuf);
_log_string(nbuf);
_log_string(" | 00 00 00 00 00 00 00 00 "
"00 00 00 00 00 00 00 00 |\n");
continue;
case ZR_FIRST:
zero_run = ZR_REST;
tell_user_sz("...\n");
case ZR_REST:
continue;
} }
itosz_h8(v, buf + 1);
tell_user_sz(buf); print_normal:
if (!(++a & 0xf)) _log_string("0x");
tell_user_sz("\n"); itosz_h32(offset, nbuf);
_log_string(nbuf);
_log_string(" |");
nbuf[0] = ' ';
for (uint8_t i = 0; i < len; ++i) {
itosz_h8(line[i], nbuf + 1);
_log_string(nbuf);
}
for (uint8_t i = len; i < LINE_LEN; ++i)
_log_string(" ");
_log_string(" | ");
for (uint8_t i = 0; i < len; ++i)
if ((line[i] < 0x20) || (line[i] > 0x7e))
line[i] = ' ';
line[len] = '\n';
line[len + 1] = '\0';
_log_string(line);
} }
tell_user_sz("\n");
close_file(f); close_file(f);
} }