#include #include #include #include #include #include "ICommand.h" namespace DB { class CommandRead final : public ICommand { public: CommandRead() { command_name = "read"; description = "Read a file from `path-from` to `path-to`"; options_description.add_options()("path-from", po::value(), "file from which we are reading (mandatory, positional)")( "path-to", po::value(), "file to which we are writing, defaults to `stdout`"); positional_options_description.add("path-from", 1); } void executeImpl(const CommandLineOptions & options, DisksClient & client) override { auto disk = client.getCurrentDiskWithPath(); String path_from = disk.getRelativeFromRoot(getValueFromCommandLineOptionsThrow(options, "path-from")); std::optional path_to = getValueFromCommandLineOptionsWithOptional(options, "path-to"); auto in = disk.getDisk()->readFile(path_from); std::unique_ptr out = {}; if (path_to.has_value()) { String relative_path_to = disk.getRelativeFromRoot(path_to.value()); out = disk.getDisk()->writeFile(relative_path_to); copyData(*in, *out); } else { out = std::make_unique(STDOUT_FILENO); copyData(*in, *out); out->write('\n'); } out->finalize(); } }; CommandPtr makeCommandRead() { return std::make_shared(); } }