2020-06-13 02:55:35 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Tom Lebreux <tomlebreux@hotmail.com>
|
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-13 02:55:35 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <AK/Base64.h>
|
|
|
|
#include <LibCore/ArgsParser.h>
|
2023-02-09 02:02:46 +00:00
|
|
|
#include <LibCore/File.h>
|
2024-03-20 15:38:59 +00:00
|
|
|
#include <LibCore/MappedFile.h>
|
2021-11-23 16:15:35 +00:00
|
|
|
#include <LibCore/System.h>
|
|
|
|
#include <LibMain/Main.h>
|
2020-06-13 02:55:35 +00:00
|
|
|
|
2024-01-18 00:02:52 +00:00
|
|
|
static void print_wrapped_output(size_t column, StringView encoded)
|
|
|
|
{
|
|
|
|
VERIFY(column > 0);
|
|
|
|
|
|
|
|
while (!encoded.is_empty()) {
|
|
|
|
auto segment_length = min(column, encoded.length());
|
|
|
|
|
|
|
|
outln("{}", encoded.substring_view(0, segment_length));
|
|
|
|
encoded = encoded.substring_view(segment_length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-23 16:15:35 +00:00
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
2020-06-13 02:55:35 +00:00
|
|
|
{
|
2021-11-27 22:26:34 +00:00
|
|
|
TRY(Core::System::pledge("stdio rpath"));
|
2020-06-13 02:55:35 +00:00
|
|
|
|
|
|
|
bool decode = false;
|
2024-01-18 00:02:52 +00:00
|
|
|
Optional<size_t> maybe_column;
|
2022-04-30 19:50:21 +00:00
|
|
|
StringView filepath = {};
|
2020-06-13 02:55:35 +00:00
|
|
|
|
|
|
|
Core::ArgsParser args_parser;
|
|
|
|
args_parser.add_option(decode, "Decode data", "decode", 'd');
|
2024-01-18 00:02:52 +00:00
|
|
|
args_parser.add_option(maybe_column, "When encoding, wrap output after column characters", "wrap", 'w', "column");
|
2020-06-13 02:55:35 +00:00
|
|
|
args_parser.add_positional_argument(filepath, "", "file", Core::ArgsParser::Required::No);
|
2021-11-23 16:15:35 +00:00
|
|
|
args_parser.parse(arguments);
|
2020-06-13 02:55:35 +00:00
|
|
|
|
2024-03-20 15:38:59 +00:00
|
|
|
Variant<Empty, ByteBuffer, NonnullOwnPtr<Core::MappedFile>> buffer_or_file;
|
|
|
|
ReadonlyBytes input_bytes;
|
|
|
|
|
|
|
|
if (filepath.is_empty() || filepath == "-"sv) {
|
|
|
|
auto file = TRY(Core::File::standard_input());
|
|
|
|
buffer_or_file = TRY(file->read_until_eof());
|
|
|
|
input_bytes = buffer_or_file.get<ByteBuffer>();
|
|
|
|
} else if (TRY(Core::System::stat(filepath)).st_size > 0) {
|
|
|
|
buffer_or_file = TRY(Core::MappedFile::map(filepath));
|
|
|
|
input_bytes = buffer_or_file.get<NonnullOwnPtr<Core::MappedFile>>()->bytes();
|
|
|
|
}
|
2020-06-13 02:55:35 +00:00
|
|
|
|
2021-11-27 22:26:34 +00:00
|
|
|
TRY(Core::System::pledge("stdio"));
|
2020-06-13 02:55:35 +00:00
|
|
|
|
|
|
|
if (decode) {
|
2024-03-20 15:38:59 +00:00
|
|
|
auto decoded = TRY(decode_base64(input_bytes));
|
2022-09-13 13:46:49 +00:00
|
|
|
out("{}", StringView(decoded.bytes()));
|
2020-06-13 02:55:35 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-03-20 15:38:59 +00:00
|
|
|
auto encoded = TRY(encode_base64(input_bytes));
|
2024-01-18 00:02:52 +00:00
|
|
|
|
|
|
|
if (maybe_column.has_value() && *maybe_column > 0) {
|
|
|
|
print_wrapped_output(*maybe_column, encoded);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-05-31 14:43:25 +00:00
|
|
|
outln("{}", encoded);
|
2021-11-23 16:15:35 +00:00
|
|
|
return 0;
|
2020-06-13 02:55:35 +00:00
|
|
|
}
|