2023-03-10 02:23:57 +00:00
|
|
|
#include "KeeperClient.h"
|
2023-04-26 04:54:28 +00:00
|
|
|
#include "Commands.h"
|
2023-03-10 02:23:57 +00:00
|
|
|
#include <Client/ReplxxLineReader.h>
|
|
|
|
#include <Client/ClientBase.h>
|
2023-08-24 02:18:24 +00:00
|
|
|
#include <Common/Config/ConfigProcessor.h>
|
2023-03-10 02:23:57 +00:00
|
|
|
#include <Common/EventNotifier.h>
|
|
|
|
#include <Common/filesystemHelpers.h>
|
|
|
|
#include <Common/ZooKeeper/ZooKeeper.h>
|
2023-04-26 04:54:28 +00:00
|
|
|
#include <Parsers/parseQuery.h>
|
2023-04-27 00:39:33 +00:00
|
|
|
#include <Poco/Util/HelpFormatter.h>
|
2023-03-10 02:23:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2023-03-10 02:45:58 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int BAD_ARGUMENTS;
|
|
|
|
}
|
|
|
|
|
2023-03-11 04:12:16 +00:00
|
|
|
String KeeperClient::executeFourLetterCommand(const String & command)
|
|
|
|
{
|
2023-03-11 04:15:15 +00:00
|
|
|
/// We need to create a new socket every time because ZooKeeper forcefully shuts down the connection after a four-letter-word command.
|
2023-03-11 04:12:16 +00:00
|
|
|
Poco::Net::StreamSocket socket;
|
|
|
|
socket.connect(Poco::Net::SocketAddress{zk_args.hosts[0]}, zk_args.connection_timeout_ms * 1000);
|
|
|
|
|
|
|
|
socket.setReceiveTimeout(zk_args.operation_timeout_ms * 1000);
|
|
|
|
socket.setSendTimeout(zk_args.operation_timeout_ms * 1000);
|
|
|
|
socket.setNoDelay(true);
|
|
|
|
|
|
|
|
ReadBufferFromPocoSocket in(socket);
|
|
|
|
WriteBufferFromPocoSocket out(socket);
|
|
|
|
|
|
|
|
out.write(command.data(), command.size());
|
|
|
|
out.next();
|
|
|
|
|
|
|
|
String result;
|
|
|
|
readStringUntilEOF(result, in);
|
|
|
|
in.next();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-04-27 00:11:45 +00:00
|
|
|
std::vector<String> KeeperClient::getCompletions(const String & prefix) const
|
|
|
|
{
|
|
|
|
Tokens tokens(prefix.data(), prefix.data() + prefix.size(), 0, false);
|
|
|
|
IParser::Pos pos(tokens, 0);
|
|
|
|
|
|
|
|
if (pos->type != TokenType::BareWord)
|
|
|
|
return registered_commands_and_four_letter_words;
|
|
|
|
|
|
|
|
++pos;
|
|
|
|
if (pos->isEnd())
|
|
|
|
return registered_commands_and_four_letter_words;
|
|
|
|
|
|
|
|
ParserToken{TokenType::Whitespace}.ignore(pos);
|
|
|
|
|
|
|
|
std::vector<String> result;
|
|
|
|
String string_path;
|
|
|
|
Expected expected;
|
|
|
|
if (!parseKeeperPath(pos, expected, string_path))
|
|
|
|
string_path = cwd;
|
|
|
|
|
|
|
|
if (!pos->isEnd())
|
|
|
|
return result;
|
|
|
|
|
|
|
|
fs::path path = string_path;
|
|
|
|
String parent_path;
|
|
|
|
if (string_path.ends_with("/"))
|
|
|
|
parent_path = getAbsolutePath(string_path);
|
|
|
|
else
|
|
|
|
parent_path = getAbsolutePath(path.parent_path());
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
for (const auto & child : zookeeper->getChildren(parent_path))
|
|
|
|
result.push_back(child);
|
|
|
|
}
|
|
|
|
catch (Coordination::Exception &) {}
|
|
|
|
|
|
|
|
std::sort(result.begin(), result.end());
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-03-11 04:12:16 +00:00
|
|
|
void KeeperClient::askConfirmation(const String & prompt, std::function<void()> && callback)
|
|
|
|
{
|
|
|
|
std::cout << prompt << " Continue?\n";
|
|
|
|
need_confirmation = true;
|
|
|
|
confirmation_callback = callback;
|
|
|
|
}
|
|
|
|
|
2023-04-27 00:11:45 +00:00
|
|
|
fs::path KeeperClient::getAbsolutePath(const String & relative) const
|
2023-03-10 02:23:57 +00:00
|
|
|
{
|
|
|
|
String result;
|
|
|
|
if (relative.starts_with('/'))
|
|
|
|
result = fs::weakly_canonical(relative);
|
|
|
|
else
|
|
|
|
result = fs::weakly_canonical(cwd / relative);
|
|
|
|
|
|
|
|
if (result.ends_with('/') && result.size() > 1)
|
|
|
|
result.pop_back();
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-04-26 04:54:28 +00:00
|
|
|
void KeeperClient::loadCommands(std::vector<Command> && new_commands)
|
2023-03-10 02:23:57 +00:00
|
|
|
{
|
2023-04-26 04:54:28 +00:00
|
|
|
for (const auto & command : new_commands)
|
2023-03-10 02:45:58 +00:00
|
|
|
{
|
2023-04-26 04:54:28 +00:00
|
|
|
String name = command->getName();
|
|
|
|
commands.insert({name, command});
|
2023-04-27 00:11:45 +00:00
|
|
|
registered_commands_and_four_letter_words.push_back(std::move(name));
|
2023-03-10 02:23:57 +00:00
|
|
|
}
|
2023-03-14 19:32:48 +00:00
|
|
|
|
2023-03-14 22:30:23 +00:00
|
|
|
for (const auto & command : four_letter_word_commands)
|
2023-04-27 00:11:45 +00:00
|
|
|
registered_commands_and_four_letter_words.push_back(command);
|
2023-04-26 04:54:28 +00:00
|
|
|
|
2023-04-27 00:11:45 +00:00
|
|
|
std::sort(registered_commands_and_four_letter_words.begin(), registered_commands_and_four_letter_words.end());
|
2023-03-10 02:23:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void KeeperClient::defineOptions(Poco::Util::OptionSet & options)
|
|
|
|
{
|
|
|
|
Poco::Util::Application::defineOptions(options);
|
|
|
|
|
|
|
|
options.addOption(
|
2023-04-02 20:51:10 +00:00
|
|
|
Poco::Util::Option("help", "", "show help and exit")
|
2023-03-10 02:23:57 +00:00
|
|
|
.binding("help"));
|
|
|
|
|
2023-04-02 20:51:10 +00:00
|
|
|
options.addOption(
|
|
|
|
Poco::Util::Option("host", "h", "server hostname. default `localhost`")
|
2023-06-14 01:09:30 +00:00
|
|
|
.argument("<host>")
|
2023-04-02 20:51:10 +00:00
|
|
|
.binding("host"));
|
|
|
|
|
|
|
|
options.addOption(
|
2023-08-03 16:29:31 +00:00
|
|
|
Poco::Util::Option("port", "p", "server port. default `9181`")
|
2023-06-14 01:09:30 +00:00
|
|
|
.argument("<port>")
|
2023-04-02 20:51:10 +00:00
|
|
|
.binding("port"));
|
|
|
|
|
2023-03-14 19:32:48 +00:00
|
|
|
options.addOption(
|
|
|
|
Poco::Util::Option("query", "q", "will execute given query, then exit.")
|
2023-06-14 01:09:30 +00:00
|
|
|
.argument("<query>")
|
2023-03-14 19:32:48 +00:00
|
|
|
.binding("query"));
|
|
|
|
|
2023-03-10 02:23:57 +00:00
|
|
|
options.addOption(
|
|
|
|
Poco::Util::Option("connection-timeout", "", "set connection timeout in seconds. default 10s.")
|
2023-06-14 01:09:30 +00:00
|
|
|
.argument("<seconds>")
|
2023-03-10 02:23:57 +00:00
|
|
|
.binding("connection-timeout"));
|
|
|
|
|
|
|
|
options.addOption(
|
|
|
|
Poco::Util::Option("session-timeout", "", "set session timeout in seconds. default 10s.")
|
2023-06-14 01:09:30 +00:00
|
|
|
.argument("<seconds>")
|
2023-03-10 02:23:57 +00:00
|
|
|
.binding("session-timeout"));
|
|
|
|
|
|
|
|
options.addOption(
|
|
|
|
Poco::Util::Option("operation-timeout", "", "set operation timeout in seconds. default 10s.")
|
2023-06-14 01:09:30 +00:00
|
|
|
.argument("<seconds>")
|
2023-03-10 02:23:57 +00:00
|
|
|
.binding("operation-timeout"));
|
|
|
|
|
2023-08-24 02:18:24 +00:00
|
|
|
options.addOption(
|
|
|
|
Poco::Util::Option("config-file", "c", "if set, will try to get a connection string from clickhouse config. default `config.xml`")
|
|
|
|
.argument("<file>")
|
|
|
|
.binding("config-file"));
|
|
|
|
|
2023-03-10 02:23:57 +00:00
|
|
|
options.addOption(
|
|
|
|
Poco::Util::Option("history-file", "", "set path of history file. default `~/.keeper-client-history`")
|
2023-06-14 01:09:30 +00:00
|
|
|
.argument("<file>")
|
2023-03-10 02:23:57 +00:00
|
|
|
.binding("history-file"));
|
2023-03-14 21:50:09 +00:00
|
|
|
|
|
|
|
options.addOption(
|
|
|
|
Poco::Util::Option("log-level", "", "set log level")
|
2023-06-14 01:09:30 +00:00
|
|
|
.argument("<level>")
|
2023-03-14 21:50:09 +00:00
|
|
|
.binding("log-level"));
|
2023-03-10 02:23:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void KeeperClient::initialize(Poco::Util::Application & /* self */)
|
|
|
|
{
|
2023-04-27 00:11:45 +00:00
|
|
|
suggest.setCompletionsCallback(
|
|
|
|
[&](const String & prefix, size_t /* prefix_length */) { return getCompletions(prefix); });
|
|
|
|
|
2023-03-10 02:23:57 +00:00
|
|
|
loadCommands({
|
2023-04-26 04:54:28 +00:00
|
|
|
std::make_shared<LSCommand>(),
|
|
|
|
std::make_shared<CDCommand>(),
|
|
|
|
std::make_shared<SetCommand>(),
|
|
|
|
std::make_shared<CreateCommand>(),
|
2023-08-07 16:08:31 +00:00
|
|
|
std::make_shared<TouchCommand>(),
|
2023-04-26 04:54:28 +00:00
|
|
|
std::make_shared<GetCommand>(),
|
2023-06-17 03:24:10 +00:00
|
|
|
std::make_shared<GetStatCommand>(),
|
2023-07-26 05:57:16 +00:00
|
|
|
std::make_shared<FindSuperNodes>(),
|
2023-08-07 16:08:31 +00:00
|
|
|
std::make_shared<DeleteStaleBackups>(),
|
2023-06-21 03:41:48 +00:00
|
|
|
std::make_shared<FindBigFamily>(),
|
2023-04-26 04:54:28 +00:00
|
|
|
std::make_shared<RMCommand>(),
|
|
|
|
std::make_shared<RMRCommand>(),
|
|
|
|
std::make_shared<HelpCommand>(),
|
|
|
|
std::make_shared<FourLetterWordCommand>(),
|
2023-03-10 02:23:57 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
String home_path;
|
|
|
|
const char * home_path_cstr = getenv("HOME"); // NOLINT(concurrency-mt-unsafe)
|
|
|
|
if (home_path_cstr)
|
|
|
|
home_path = home_path_cstr;
|
|
|
|
|
|
|
|
if (config().has("history-file"))
|
|
|
|
history_file = config().getString("history-file");
|
|
|
|
else
|
|
|
|
history_file = home_path + "/.keeper-client-history";
|
|
|
|
|
|
|
|
if (!history_file.empty() && !fs::exists(history_file))
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
FS::createFile(history_file);
|
|
|
|
}
|
|
|
|
catch (const ErrnoException & e)
|
|
|
|
{
|
|
|
|
if (e.getErrno() != EEXIST)
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-24 02:18:24 +00:00
|
|
|
Poco::Logger::root().setLevel(config().getString("log-level", "information"));
|
2023-03-14 21:50:09 +00:00
|
|
|
|
2023-03-10 02:23:57 +00:00
|
|
|
EventNotifier::init();
|
|
|
|
}
|
|
|
|
|
2023-03-14 19:32:48 +00:00
|
|
|
void KeeperClient::executeQuery(const String & query)
|
|
|
|
{
|
2023-03-14 19:34:08 +00:00
|
|
|
std::vector<String> queries;
|
2023-03-14 19:32:48 +00:00
|
|
|
boost::algorithm::split(queries, query, boost::is_any_of(";"));
|
|
|
|
|
|
|
|
for (const auto & query_text : queries)
|
|
|
|
{
|
|
|
|
if (!query_text.empty())
|
|
|
|
processQueryText(query_text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-10 02:23:57 +00:00
|
|
|
bool KeeperClient::processQueryText(const String & text)
|
|
|
|
{
|
|
|
|
if (exit_strings.find(text) != exit_strings.end())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2023-03-11 04:12:16 +00:00
|
|
|
if (need_confirmation)
|
|
|
|
{
|
2023-03-12 16:54:42 +00:00
|
|
|
need_confirmation = false;
|
2023-04-26 04:54:28 +00:00
|
|
|
if (text.size() == 1 && (text == "y" || text == "Y"))
|
2023-03-11 04:12:16 +00:00
|
|
|
confirmation_callback();
|
2023-04-26 04:54:28 +00:00
|
|
|
return true;
|
2023-03-11 04:12:16 +00:00
|
|
|
}
|
2023-04-26 04:54:28 +00:00
|
|
|
|
|
|
|
KeeperParser parser;
|
|
|
|
String message;
|
|
|
|
const char * begin = text.data();
|
|
|
|
ASTPtr res = tryParseQuery(parser, begin, begin + text.size(), message, true, "", false, 0, 0, false);
|
|
|
|
|
|
|
|
if (!res)
|
2023-03-11 04:12:16 +00:00
|
|
|
{
|
2023-04-26 04:54:28 +00:00
|
|
|
std::cerr << message << "\n";
|
|
|
|
return true;
|
2023-03-11 04:12:16 +00:00
|
|
|
}
|
2023-04-26 04:54:28 +00:00
|
|
|
|
|
|
|
auto * query = res->as<ASTKeeperQuery>();
|
|
|
|
|
|
|
|
auto command = KeeperClient::commands.find(query->command);
|
|
|
|
command->second->execute(query, this);
|
2023-03-10 02:23:57 +00:00
|
|
|
}
|
|
|
|
catch (Coordination::Exception & err)
|
|
|
|
{
|
|
|
|
std::cerr << err.message() << "\n";
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void KeeperClient::runInteractive()
|
|
|
|
{
|
|
|
|
|
|
|
|
LineReader::Patterns query_extenders = {"\\"};
|
|
|
|
LineReader::Patterns query_delimiters = {};
|
2023-08-04 07:20:01 +00:00
|
|
|
char word_break_characters[] = " \t\v\f\a\b\r\n/";
|
|
|
|
|
|
|
|
ReplxxLineReader lr(
|
|
|
|
suggest,
|
|
|
|
history_file,
|
|
|
|
/* multiline= */ false,
|
|
|
|
query_extenders,
|
|
|
|
query_delimiters,
|
|
|
|
word_break_characters,
|
|
|
|
/* highlighter_= */ {});
|
2023-03-10 02:23:57 +00:00
|
|
|
lr.enableBracketedPaste();
|
|
|
|
|
|
|
|
while (true)
|
|
|
|
{
|
2023-03-11 04:12:16 +00:00
|
|
|
String prompt;
|
|
|
|
if (need_confirmation)
|
|
|
|
prompt = "[y/n] ";
|
|
|
|
else
|
|
|
|
prompt = cwd.string() + " :) ";
|
|
|
|
|
|
|
|
auto input = lr.readLine(prompt, ":-] ");
|
2023-03-10 02:23:57 +00:00
|
|
|
if (input.empty())
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (!processQueryText(input))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-02 20:51:10 +00:00
|
|
|
int KeeperClient::main(const std::vector<String> & /* args */)
|
2023-03-10 02:23:57 +00:00
|
|
|
{
|
2023-04-27 00:39:33 +00:00
|
|
|
if (config().hasOption("help"))
|
|
|
|
{
|
|
|
|
Poco::Util::HelpFormatter help_formatter(KeeperClient::options());
|
|
|
|
auto header_str = fmt::format("{} [OPTION]\n", commandName());
|
|
|
|
help_formatter.setHeader(header_str);
|
|
|
|
help_formatter.format(std::cout);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-08-24 02:18:24 +00:00
|
|
|
DB::ConfigProcessor config_processor(config().getString("config-file", "config.xml"));
|
|
|
|
|
|
|
|
/// This will handle a situation when clickhouse is running on the embedded config, but config.d folder is also present.
|
|
|
|
config_processor.registerEmbeddedConfig("config.xml", "<clickhouse/>");
|
|
|
|
auto clickhouse_config = config_processor.loadConfig();
|
|
|
|
|
|
|
|
String host;
|
|
|
|
String port;
|
|
|
|
String prefix = "zookeeper.node[0].";
|
|
|
|
|
|
|
|
if (!config().has("host") && !config().has("port") && clickhouse_config.configuration->has(prefix + "host"))
|
|
|
|
{
|
|
|
|
LOG_INFO(&Poco::Logger::get("KeeperClient"), "Found keeper node in the config.xml, will use it for connection");
|
|
|
|
if (clickhouse_config.configuration->has(prefix + "secure"))
|
|
|
|
host = "secure://";
|
|
|
|
|
|
|
|
host += clickhouse_config.configuration->getString(prefix + "host");
|
|
|
|
port = clickhouse_config.configuration->getString(prefix + "port");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
host = config().getString("host", "localhost");
|
|
|
|
port = config().getString("port", "9181");
|
|
|
|
}
|
|
|
|
|
2023-04-02 20:51:10 +00:00
|
|
|
zk_args.hosts = {host + ":" + port};
|
2023-03-10 02:23:57 +00:00
|
|
|
zk_args.connection_timeout_ms = config().getInt("connection-timeout", 10) * 1000;
|
|
|
|
zk_args.session_timeout_ms = config().getInt("session-timeout", 10) * 1000;
|
|
|
|
zk_args.operation_timeout_ms = config().getInt("operation-timeout", 10) * 1000;
|
|
|
|
zookeeper = std::make_unique<zkutil::ZooKeeper>(zk_args);
|
|
|
|
|
2023-03-14 19:32:48 +00:00
|
|
|
if (config().has("query"))
|
|
|
|
executeQuery(config().getString("query"));
|
|
|
|
else
|
|
|
|
runInteractive();
|
2023-03-10 02:23:57 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int mainEntryClickHouseKeeperClient(int argc, char ** argv)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
DB::KeeperClient client;
|
|
|
|
client.init(argc, argv);
|
|
|
|
return client.run();
|
|
|
|
}
|
|
|
|
catch (const DB::Exception & e)
|
|
|
|
{
|
|
|
|
std::cerr << DB::getExceptionMessage(e, false) << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
catch (const boost::program_options::error & e)
|
|
|
|
{
|
|
|
|
std::cerr << "Bad arguments: " << e.what() << std::endl;
|
|
|
|
return DB::ErrorCodes::BAD_ARGUMENTS;
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
std::cerr << DB::getCurrentExceptionMessage(true) << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|