mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
70d1adfe4b
* save format string for NetException * format exceptions * format exceptions 2 * format exceptions 3 * format exceptions 4 * format exceptions 5 * format exceptions 6 * fix * format exceptions 7 * format exceptions 8 * Update MergeTreeIndexGin.cpp * Update AggregateFunctionMap.cpp * Update AggregateFunctionMap.cpp * fix
81 lines
2.3 KiB
C++
81 lines
2.3 KiB
C++
#include "ICommand.h"
|
|
#include <Interpreters/Context.h>
|
|
|
|
#include <Common/TerminalSize.h>
|
|
#include <IO/ReadBufferFromFile.h>
|
|
#include <IO/WriteBufferFromFile.h>
|
|
#include <IO/copyData.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int BAD_ARGUMENTS;
|
|
}
|
|
|
|
class CommandWrite final : public ICommand
|
|
{
|
|
public:
|
|
CommandWrite()
|
|
{
|
|
command_name = "write";
|
|
command_option_description.emplace(createOptionsDescription("Allowed options", getTerminalWidth()));
|
|
description = "Write File `from_path` or stdin to `to_path`";
|
|
usage = "write [OPTION]... <FROM_PATH> <TO_PATH>\nor\nstdin | write [OPTION]... <TO_PATH>\nPath should be in format './' or './path' or 'path'";
|
|
command_option_description->add_options()
|
|
("input", po::value<String>(), "set path to file to which we are write")
|
|
;
|
|
}
|
|
|
|
void processOptions(
|
|
Poco::Util::LayeredConfiguration & config,
|
|
po::variables_map & options) const override
|
|
{
|
|
if (options.count("input"))
|
|
config.setString("input", options["input"].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(DB::ErrorCodes::BAD_ARGUMENTS, "Bad Arguments");
|
|
}
|
|
|
|
String disk_name = config.getString("disk", "default");
|
|
|
|
const String & path = command_arguments[0];
|
|
|
|
DiskPtr disk = global_context->getDisk(disk_name);
|
|
|
|
String relative_path = validatePathAndGetAsRelative(path);
|
|
|
|
String path_input = config.getString("input", "");
|
|
std::unique_ptr<ReadBufferFromFileBase> in;
|
|
if (path_input.empty())
|
|
{
|
|
in = std::make_unique<ReadBufferFromFileDescriptor>(STDIN_FILENO);
|
|
}
|
|
else
|
|
{
|
|
String relative_path_input = validatePathAndGetAsRelative(path_input);
|
|
in = disk->readFile(relative_path_input);
|
|
}
|
|
|
|
auto out = disk->writeFile(relative_path);
|
|
copyData(*in, *out);
|
|
out->finalize();
|
|
}
|
|
};
|
|
}
|
|
|
|
std::unique_ptr <DB::ICommand> makeCommandWrite()
|
|
{
|
|
return std::make_unique<DB::CommandWrite>();
|
|
}
|