ladybird/Userland/Utilities/gunzip.cpp

56 lines
1.9 KiB
C++
Raw Normal View History

2020-08-28 11:54:49 -04:00
/*
* Copyright (c) 2020, the SerenityOS developers.
* Copyright (c) 2023, Liav A. <liavalb@hotmail.co.il>
2020-08-28 11:54:49 -04:00
*
* SPDX-License-Identifier: BSD-2-Clause
2020-08-28 11:54:49 -04:00
*/
#include <LibCompress/Gzip.h>
#include <LibCore/ArgsParser.h>
#include <LibCore/File.h>
2022-01-13 15:24:28 -05:00
#include <LibCore/System.h>
#include <LibMain/Main.h>
#include <unistd.h>
2020-08-28 11:54:49 -04:00
2022-01-13 15:24:28 -05:00
ErrorOr<int> serenity_main(Main::Arguments args)
2020-08-28 11:54:49 -04:00
{
Vector<StringView> filenames;
2020-08-28 11:54:49 -04:00
bool keep_input_files { false };
bool write_to_stdout { false };
Core::ArgsParser args_parser;
// NOTE: If the user run this program via the /bin/zcat symlink,
// then emulate gzip decompression to stdout.
if (args.argc > 0 && args.strings[0] == "zcat"sv) {
write_to_stdout = true;
} else {
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');
}
2020-08-28 11:54:49 -04:00
args_parser.add_positional_argument(filenames, "File to decompress", "FILE");
2022-01-13 15:24:28 -05:00
args_parser.parse(args);
2020-08-28 11:54:49 -04:00
if (write_to_stdout)
keep_input_files = true;
for (auto filename : filenames) {
2020-08-28 11:54:49 -04:00
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;
}
2020-08-28 11:54:49 -04:00
auto output_stream = write_to_stdout ? TRY(Core::File::standard_output()) : TRY(Core::File::open(output_filename, Core::File::OpenMode::Write));
TRY(Compress::GzipDecompressor::decompress_file(input_filename, move(output_stream)));
2020-08-28 11:54:49 -04:00
2022-01-13 15:24:28 -05:00
if (!keep_input_files)
TRY(Core::System::unlink(input_filename));
2020-08-28 11:54:49 -04:00
}
return 0;
2020-08-28 11:54:49 -04:00
}