mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
70 lines
2.2 KiB
C++
70 lines
2.2 KiB
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibCompress/Gzip.h>
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <LibCore/FileStream.h>
|
|
#include <LibCore/System.h>
|
|
#include <LibMain/Main.h>
|
|
#include <unistd.h>
|
|
|
|
static ErrorOr<void> decompress_file(NonnullOwnPtr<Core::Stream::File> input_stream, Buffered<Core::OutputFileStream>& output_stream)
|
|
{
|
|
auto gzip_stream = Compress::GzipDecompressor { move(input_stream) };
|
|
|
|
auto buffer = TRY(ByteBuffer::create_uninitialized(4096));
|
|
while (!gzip_stream.is_eof()) {
|
|
auto span = TRY(gzip_stream.read(buffer));
|
|
output_stream.write_or_error(span);
|
|
}
|
|
|
|
return {};
|
|
}
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments args)
|
|
{
|
|
Vector<StringView> filenames;
|
|
bool keep_input_files { false };
|
|
bool write_to_stdout { false };
|
|
|
|
Core::ArgsParser args_parser;
|
|
args_parser.add_option(keep_input_files, "Keep (don't delete) input files", "keep", 'k');
|
|
args_parser.add_option(write_to_stdout, "Write to stdout, keep original files unchanged", "stdout", 'c');
|
|
args_parser.add_positional_argument(filenames, "File to decompress", "FILE");
|
|
args_parser.parse(args);
|
|
|
|
if (write_to_stdout)
|
|
keep_input_files = true;
|
|
|
|
for (auto filename : filenames) {
|
|
|
|
DeprecatedString input_filename;
|
|
DeprecatedString output_filename;
|
|
if (filename.ends_with(".gz"sv)) {
|
|
input_filename = filename;
|
|
output_filename = filename.substring_view(0, filename.length() - 3);
|
|
} else {
|
|
input_filename = DeprecatedString::formatted("{}.gz", filename);
|
|
output_filename = filename;
|
|
}
|
|
|
|
auto input_stream_result = TRY(Core::Stream::File::open(input_filename, Core::Stream::OpenMode::Read));
|
|
|
|
if (write_to_stdout) {
|
|
auto stdout = Core::OutputFileStream::stdout_buffered();
|
|
TRY(decompress_file(move(input_stream_result), stdout));
|
|
} else {
|
|
auto output_stream_result = TRY(Core::OutputFileStream::open_buffered(output_filename));
|
|
|
|
TRY(decompress_file(move(input_stream_result), output_stream_result));
|
|
}
|
|
|
|
if (!keep_input_files)
|
|
TRY(Core::System::unlink(input_filename));
|
|
}
|
|
return 0;
|
|
}
|