#include "KeeperClient.h" #include "Commands.h" #include #include #include #include #include #include #include namespace po = boost::program_options; namespace fs = std::filesystem; namespace DB { namespace ErrorCodes { extern const int BAD_ARGUMENTS; } String KeeperClient::executeFourLetterCommand(const String & command) { /// We need to create a new socket every time because ZooKeeper forcefully shuts down the connection after a four-letter-word command. 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; } void KeeperClient::askConfirmation(const String & prompt, std::function && callback) { std::cout << prompt << " Continue?\n"; need_confirmation = true; confirmation_callback = callback; } String KeeperClient::getAbsolutePath(const String & relative) const { 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; } void KeeperClient::loadCommands(std::vector && new_commands) { std::vector suggestions; for (const auto & command : new_commands) { String name = command->getName(); commands.insert({name, command}); suggestions.push_back(std::move(name)); } for (const auto & command : four_letter_word_commands) suggestions.push_back(command); suggest.addWords(std::move(suggestions)); } void KeeperClient::defineOptions(Poco::Util::OptionSet & options) { Poco::Util::Application::defineOptions(options); options.addOption( Poco::Util::Option("help", "", "show help and exit") .binding("help")); options.addOption( Poco::Util::Option("host", "h", "server hostname. default `localhost`") .argument("host") .binding("host")); options.addOption( Poco::Util::Option("port", "p", "server port. default `2181`") .argument("port") .binding("port")); options.addOption( Poco::Util::Option("query", "q", "will execute given query, then exit.") .argument("query") .binding("query")); options.addOption( Poco::Util::Option("connection-timeout", "", "set connection timeout in seconds. default 10s.") .argument("connection-timeout") .binding("connection-timeout")); options.addOption( Poco::Util::Option("session-timeout", "", "set session timeout in seconds. default 10s.") .argument("session-timeout") .binding("session-timeout")); options.addOption( Poco::Util::Option("operation-timeout", "", "set operation timeout in seconds. default 10s.") .argument("operation-timeout") .binding("operation-timeout")); options.addOption( Poco::Util::Option("history-file", "", "set path of history file. default `~/.keeper-client-history`") .argument("history-file") .binding("history-file")); options.addOption( Poco::Util::Option("log-level", "", "set log level") .argument("log-level") .binding("log-level")); } void KeeperClient::initialize(Poco::Util::Application & /* self */) { loadCommands({ std::make_shared(), std::make_shared(), std::make_shared(), std::make_shared(), std::make_shared(), std::make_shared(), std::make_shared(), std::make_shared(), std::make_shared(), }); 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; } } Poco::Logger::root().setLevel(config().getString("log-level", "error")); EventNotifier::init(); } void KeeperClient::executeQuery(const String & query) { std::vector queries; boost::algorithm::split(queries, query, boost::is_any_of(";")); for (const auto & query_text : queries) { if (!query_text.empty()) processQueryText(query_text); } } bool KeeperClient::processQueryText(const String & text) { if (exit_strings.find(text) != exit_strings.end()) return false; try { if (need_confirmation) { need_confirmation = false; if (text.size() == 1 && (text == "y" || text == "Y")) confirmation_callback(); return true; } 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) { std::cerr << message << "\n"; return true; } auto * query = res->as(); auto command = KeeperClient::commands.find(query->command); command->second->execute(query, this); } catch (Coordination::Exception & err) { std::cerr << err.message() << "\n"; } return true; } void KeeperClient::runInteractive() { LineReader::Patterns query_extenders = {"\\"}; LineReader::Patterns query_delimiters = {}; ReplxxLineReader lr(suggest, history_file, false, query_extenders, query_delimiters, {}); lr.enableBracketedPaste(); while (true) { String prompt; if (need_confirmation) prompt = "[y/n] "; else prompt = cwd.string() + " :) "; auto input = lr.readLine(prompt, ":-] "); if (input.empty()) break; if (!processQueryText(input)) break; } } int KeeperClient::main(const std::vector & /* args */) { auto host = config().getString("host", "localhost"); auto port = config().getString("port", "2181"); zk_args.hosts = {host + ":" + port}; 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(zk_args); if (config().has("query")) executeQuery(config().getString("query")); else runInteractive(); 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; } }