/* vim:set ts=2 sw=2 sts=2 et: */
/**
* \author Marcus Holland-Moritz (github@mhxnet.de)
* \copyright Copyright (c) Marcus Holland-Moritz
*
* This file is part of dwarfs.
*
* dwarfs is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* dwarfs is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with dwarfs. If not, see .
*/
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
namespace po = boost::program_options;
namespace dwarfs::tool {
namespace {
#ifdef _WIN32
constexpr std::wstring_view kDash{L"-"};
#else
constexpr std::string_view kDash{"-"};
#endif
} // namespace
int dwarfsextract_main(int argc, sys_char** argv, iolayer const& iol) {
sys_string fs_image, output, trace_file;
std::string format, cache_size_str, image_offset;
logger_options logopts;
#if DWARFS_PERFMON_ENABLED
std::string perfmon_str;
#endif
size_t num_workers;
bool continue_on_error{false}, disable_integrity_check{false},
stdout_progress{false};
// clang-format off
po::options_description opts("Command line options");
opts.add_options()
("input,i",
po_sys_value(&fs_image),
"input filesystem file")
("output,o",
po_sys_value(&output),
"output file or directory")
("image-offset,O",
po::value(&image_offset)->default_value("auto"),
"filesystem image offset in bytes")
("format,f",
po::value(&format),
"output format")
("continue-on-error",
po::value(&continue_on_error)->zero_tokens(),
"continue if errors are encountered")
("disable-integrity-check",
po::value(&disable_integrity_check)->zero_tokens(),
"disable file system image block integrity check (dangerous)")
("stdout-progress",
po::value(&stdout_progress)->zero_tokens(),
"write percentage progress to stdout")
("num-workers,n",
po::value(&num_workers)->default_value(4),
"number of worker threads")
("cache-size,s",
po::value(&cache_size_str)->default_value("512m"),
"block cache size")
#if DWARFS_PERFMON_ENABLED
("perfmon",
po::value(&perfmon_str),
"enable performance monitor")
("perfmon-trace",
po_sys_value(&trace_file),
"write performance monitor trace file")
#endif
;
// clang-format on
tool::add_common_options(opts, logopts);
po::variables_map vm;
try {
po::store(po::parse_command_line(argc, argv, opts), vm);
po::notify(vm);
} catch (po::error const& e) {
iol.err << "error: " << e.what() << "\n";
return 1;
}
#ifdef DWARFS_BUILTIN_MANPAGE
if (vm.count("man")) {
tool::show_manpage(tool::manpage::get_dwarfsextract_manpage(), iol);
return 0;
}
#endif
auto constexpr usage = "Usage: dwarfsextract [OPTIONS...]\n";
if (vm.count("help") or !vm.count("input")) {
library_dependencies deps;
deps.add_common_libraries();
utility::filesystem_extractor::add_library_dependencies(deps);
iol.out << tool::tool_header("dwarfsextract") << deps.as_string() << "\n\n"
<< usage << "\n"
<< opts << "\n";
return 0;
}
int rv = 0;
try {
stream_logger lgr(iol.term, iol.err, logopts);
reader::filesystem_options fsopts;
fsopts.image_offset = reader::parse_image_offset(image_offset);
fsopts.block_cache.max_bytes = parse_size_with_unit(cache_size_str);
fsopts.block_cache.num_workers = num_workers;
fsopts.block_cache.disable_block_integrity_check = disable_integrity_check;
fsopts.metadata.enable_nlink = true;
std::unordered_set perfmon_enabled;
std::optional perfmon_trace_file;
#if DWARFS_PERFMON_ENABLED
if (!perfmon_str.empty()) {
split_to(perfmon_str, ',', perfmon_enabled);
}
if (!trace_file.empty()) {
perfmon_trace_file = iol.os->canonical(trace_file);
}
#endif
std::shared_ptr perfmon = performance_monitor::create(
perfmon_enabled, iol.file, perfmon_trace_file);
reader::filesystem_v2 fs(lgr, *iol.os, fs_image, fsopts, perfmon);
utility::filesystem_extractor fsx(lgr, *iol.os);
if (format.empty()) {
fsx.open_disk(iol.os->canonical(output));
} else {
std::ostream* stream{nullptr};
if (output.empty() or output == kDash) {
if (stdout_progress) {
DWARFS_THROW(runtime_error,
"cannot use --stdout-progress with --output=-");
}
if (&iol.out == &std::cout) {
output.clear();
} else {
stream = &iol.out;
}
}
if (stream) {
fsx.open_stream(*stream, format);
} else {
fsx.open_archive(iol.os->canonical(output), format);
}
}
utility::filesystem_extractor_options fsx_opts;
fsx_opts.max_queued_bytes = fsopts.block_cache.max_bytes;
fsx_opts.continue_on_error = continue_on_error;
int prog{-1};
if (stdout_progress) {
fsx_opts.progress = [&prog, &iol](std::string_view, uint64_t extracted,
uint64_t total) {
int p = 100 * extracted / total;
if (p > prog) {
prog = p;
iol.out << "\r" << prog << "%";
iol.out.flush();
}
if (extracted == total) {
iol.out << "\n";
}
};
}
rv = fsx.extract(fs, fsx_opts) ? 0 : 2;
fsx.close();
if (perfmon) {
perfmon->summarize(iol.err);
}
} catch (std::exception const& e) {
iol.err << exception_str(e) << "\n";
return 1;
}
return rv;
}
} // namespace dwarfs::tool