2020-10-25 12:22:34 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-10-25 12:22:34 +03:00
|
|
|
*/
|
|
|
|
|
2020-11-15 15:11:21 +03:00
|
|
|
#include <AK/ByteBuffer.h>
|
2020-10-24 21:14:52 +03:00
|
|
|
#include <LibCore/ArgsParser.h>
|
|
|
|
#include <LibCore/File.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
Core::ArgsParser args_parser;
|
|
|
|
const char* path = nullptr;
|
|
|
|
args_parser.add_positional_argument(path, "Input", "input", Core::ArgsParser::Required::No);
|
|
|
|
|
|
|
|
args_parser.parse(argc, argv);
|
|
|
|
|
|
|
|
RefPtr<Core::File> file;
|
|
|
|
|
|
|
|
if (!path) {
|
2020-12-23 01:37:11 +03:00
|
|
|
file = Core::File::standard_input();
|
2020-10-24 21:14:52 +03:00
|
|
|
} else {
|
2021-05-12 12:26:43 +03:00
|
|
|
auto file_or_error = Core::File::open(path, Core::OpenMode::ReadOnly);
|
2020-10-24 21:14:52 +03:00
|
|
|
if (file_or_error.is_error()) {
|
|
|
|
warnln("Failed to open {}: {}", path, file_or_error.error());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
file = file_or_error.value();
|
|
|
|
}
|
|
|
|
|
|
|
|
auto contents = file->read_all();
|
|
|
|
|
|
|
|
Vector<u8, 16> line;
|
|
|
|
|
|
|
|
auto print_line = [&] {
|
|
|
|
for (size_t i = 0; i < 16; ++i) {
|
|
|
|
if (i < line.size())
|
2021-05-31 17:43:25 +03:00
|
|
|
out("{:02x} ", line[i]);
|
2020-10-24 21:14:52 +03:00
|
|
|
else
|
2021-05-31 17:43:25 +03:00
|
|
|
out(" ");
|
2020-10-24 21:14:52 +03:00
|
|
|
|
|
|
|
if (i == 7)
|
2021-05-31 17:43:25 +03:00
|
|
|
out(" ");
|
2020-10-24 21:14:52 +03:00
|
|
|
}
|
|
|
|
|
2021-05-31 17:43:25 +03:00
|
|
|
out(" ");
|
2020-10-24 21:14:52 +03:00
|
|
|
|
|
|
|
for (size_t i = 0; i < 16; ++i) {
|
|
|
|
if (i < line.size() && isprint(line[i]))
|
|
|
|
putchar(line[i]);
|
|
|
|
else
|
|
|
|
putchar(' ');
|
|
|
|
}
|
|
|
|
|
|
|
|
putchar('\n');
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < contents.size(); ++i) {
|
|
|
|
line.append(contents[i]);
|
|
|
|
|
|
|
|
if (line.size() == 16) {
|
|
|
|
print_line();
|
|
|
|
line.clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!line.is_empty())
|
|
|
|
print_line();
|
|
|
|
|
|
|
|
return 0;
|
2020-10-25 12:22:34 +03:00
|
|
|
}
|