mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
80 lines
2.2 KiB
C++
80 lines
2.2 KiB
C++
#pragma once
|
|
|
|
#include "ICommand.h"
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int BAD_ARGUMENTS;
|
|
}
|
|
|
|
class CommandRead : public ICommand
|
|
{
|
|
public:
|
|
CommandRead()
|
|
{
|
|
command_name = "read";
|
|
command_option_description.emplace(createOptionsDescription("Allowed options", getTerminalWidth()));
|
|
description = "read File `from_path` to `to_path` or to stdout\nPath should be in format './' or './path' or 'path'";
|
|
usage = "read [OPTION]... <FROM_PATH> <TO_PATH>\nor\nread [OPTION]... <FROM_PATH>";
|
|
command_option_description->add_options()
|
|
("output", po::value<String>(), "set path to file to which we are read")
|
|
;
|
|
}
|
|
|
|
void processOptions(
|
|
Poco::Util::LayeredConfiguration & config,
|
|
po::variables_map & options) const override
|
|
{
|
|
if (options.count("output"))
|
|
config.setString("output", options["output"].as<String>());
|
|
}
|
|
|
|
void execute(
|
|
const std::vector<String> & command_arguments,
|
|
DB::ContextMutablePtr & global_context,
|
|
Poco::Util::LayeredConfiguration & config) override
|
|
{
|
|
if (command_arguments.size() != 1)
|
|
{
|
|
printHelpMessage();
|
|
throw DB::Exception("Bad Arguments", DB::ErrorCodes::BAD_ARGUMENTS);
|
|
}
|
|
|
|
String disk_name = config.getString("disk", "default");
|
|
|
|
String path = command_arguments[0];
|
|
|
|
DiskPtr disk = global_context->getDisk(disk_name);
|
|
|
|
String full_path = fullPathWithValidate(disk, path);
|
|
|
|
String path_output = config.getString("output", "");
|
|
|
|
if (!path_output.empty())
|
|
{
|
|
String full_path_output = fullPathWithValidate(disk, path_output);
|
|
|
|
auto in = disk->readFile(full_path);
|
|
auto out = disk->writeFile(full_path_output);
|
|
copyData(*in, *out);
|
|
out->finalize();
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
auto in = disk->readFile(full_path);
|
|
std::unique_ptr<WriteBufferFromFileBase> out = std::make_unique<WriteBufferFromFileDescriptor>(STDOUT_FILENO);
|
|
copyData(*in, *out);
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
std::unique_ptr <DB::ICommand> makeCommandRead()
|
|
{
|
|
return std::make_unique<DB::CommandRead>();
|
|
}
|