2022-04-08 07:52:16 +00:00
|
|
|
#include "ICommand.h"
|
2022-07-20 20:30:16 +00:00
|
|
|
#include <Interpreters/Context.h>
|
2022-04-08 07:52:16 +00:00
|
|
|
|
2022-12-08 17:53:05 +00:00
|
|
|
#include <Common/TerminalSize.h>
|
2022-12-08 17:20:54 +00:00
|
|
|
#include <IO/ReadBufferFromFile.h>
|
|
|
|
#include <IO/WriteBufferFromFile.h>
|
|
|
|
#include <IO/copyData.h>
|
|
|
|
|
2022-04-08 07:52:16 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int BAD_ARGUMENTS;
|
|
|
|
}
|
|
|
|
|
2022-12-08 17:20:54 +00:00
|
|
|
class CommandWrite final : public ICommand
|
2022-04-08 07:52:16 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
CommandWrite()
|
|
|
|
{
|
|
|
|
command_name = "write";
|
2022-06-16 17:38:33 +00:00
|
|
|
command_option_description.emplace(createOptionsDescription("Allowed options", getTerminalWidth()));
|
2023-08-29 12:25:04 +00:00
|
|
|
description = "Write a file from `FROM_PATH` to `TO_PATH`";
|
|
|
|
usage = "write [OPTION]... [<FROM_PATH>] <TO_PATH>";
|
2022-04-08 07:52:16 +00:00
|
|
|
command_option_description->add_options()
|
2023-08-29 12:25:04 +00:00
|
|
|
("input", po::value<String>(), "file from which we are reading, defaults to `stdin`");
|
2022-04-08 07:52:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void processOptions(
|
2022-06-06 11:14:50 +00:00
|
|
|
Poco::Util::LayeredConfiguration & config,
|
2022-04-08 07:52:16 +00:00
|
|
|
po::variables_map & options) const override
|
|
|
|
{
|
|
|
|
if (options.count("input"))
|
|
|
|
config.setString("input", options["input"].as<String>());
|
|
|
|
}
|
|
|
|
|
2022-06-16 17:38:33 +00:00
|
|
|
void execute(
|
|
|
|
const std::vector<String> & command_arguments,
|
2023-11-30 03:09:55 +00:00
|
|
|
std::shared_ptr<DiskSelector> & disk_selector,
|
2022-06-16 17:38:33 +00:00
|
|
|
Poco::Util::LayeredConfiguration & config) override
|
2022-04-08 07:52:16 +00:00
|
|
|
{
|
2022-06-16 17:38:33 +00:00
|
|
|
if (command_arguments.size() != 1)
|
2022-04-08 07:52:16 +00:00
|
|
|
{
|
|
|
|
printHelpMessage();
|
2023-01-23 21:13:58 +00:00
|
|
|
throw DB::Exception(DB::ErrorCodes::BAD_ARGUMENTS, "Bad Arguments");
|
2022-04-08 07:52:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
String disk_name = config.getString("disk", "default");
|
|
|
|
|
2022-12-08 17:20:54 +00:00
|
|
|
const String & path = command_arguments[0];
|
2022-04-08 07:52:16 +00:00
|
|
|
|
2023-11-30 03:09:55 +00:00
|
|
|
DiskPtr disk = disk_selector->get(disk_name);
|
2022-04-08 07:52:16 +00:00
|
|
|
|
2022-12-08 17:43:54 +00:00
|
|
|
String relative_path = validatePathAndGetAsRelative(path);
|
2022-04-08 07:52:16 +00:00
|
|
|
|
2022-06-02 18:24:13 +00:00
|
|
|
String path_input = config.getString("input", "");
|
|
|
|
std::unique_ptr<ReadBufferFromFileBase> in;
|
|
|
|
if (path_input.empty())
|
|
|
|
{
|
|
|
|
in = std::make_unique<ReadBufferFromFileDescriptor>(STDIN_FILENO);
|
|
|
|
}
|
|
|
|
else
|
2022-04-08 07:52:16 +00:00
|
|
|
{
|
2022-12-08 17:43:54 +00:00
|
|
|
String relative_path_input = validatePathAndGetAsRelative(path_input);
|
|
|
|
in = disk->readFile(relative_path_input);
|
2022-04-08 07:52:16 +00:00
|
|
|
}
|
|
|
|
|
2022-12-08 17:43:54 +00:00
|
|
|
auto out = disk->writeFile(relative_path);
|
2022-04-08 07:52:16 +00:00
|
|
|
copyData(*in, *out);
|
|
|
|
out->finalize();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr <DB::ICommand> makeCommandWrite()
|
|
|
|
{
|
|
|
|
return std::make_unique<DB::CommandWrite>();
|
|
|
|
}
|