ClickHouse/programs/keeper/Keeper.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

78 lines
1.8 KiB
C++
Raw Normal View History

2021-05-12 10:39:07 +00:00
#pragma once
#include <Server/IServer.h>
2022-04-27 15:05:45 +00:00
#include <Daemon/BaseDaemon.h>
2021-05-12 10:39:07 +00:00
namespace Poco
{
namespace Net
{
class ServerSocket;
}
}
namespace DB
{
2022-11-09 15:06:25 +00:00
namespace ErrorCodes
{
extern const int LOGICAL_ERROR;
}
2021-05-17 09:00:31 +00:00
/// standalone clickhouse-keeper server (replacement for ZooKeeper). Uses the same
2021-05-17 08:58:42 +00:00
/// config as clickhouse-server. Serves requests on TCP ports with or without
/// SSL using ZooKeeper protocol.
class Keeper : public BaseDaemon, public IServer
2021-05-12 10:39:07 +00:00
{
public:
using ServerApplication::run;
Poco::Util::LayeredConfiguration & config() const override
2021-05-12 10:39:07 +00:00
{
return BaseDaemon::config();
}
Poco::Logger & logger() const override
2021-05-12 10:39:07 +00:00
{
return BaseDaemon::logger();
}
bool isCancelled() const override
2021-05-12 10:39:07 +00:00
{
return BaseDaemon::isCancelled();
}
/// Returns global application's context.
ContextMutablePtr context() const override
{
throw Exception(ErrorCodes::LOGICAL_ERROR, "Cannot fetch context for Keeper");
}
2021-05-12 10:39:07 +00:00
void defineOptions(Poco::Util::OptionSet & _options) override;
protected:
2021-05-12 13:04:34 +00:00
void logRevision() const override;
2022-04-08 07:18:18 +00:00
void handleCustomArguments(const std::string & arg, const std::string & value);
2021-05-12 10:39:07 +00:00
int run() override;
void initialize(Application & self) override;
void uninitialize() override;
int main(const std::vector<std::string> & args) override;
2021-05-12 13:04:34 +00:00
std::string getDefaultConfigFileName() const override;
2021-05-12 10:39:07 +00:00
2024-05-22 11:18:51 +00:00
bool allowTextLog() const override;
2021-05-12 10:39:07 +00:00
private:
Poco::Net::SocketAddress socketBindListen(Poco::Net::ServerSocket & socket, const std::string & host, UInt16 port, [[maybe_unused]] bool secure = false) const;
using CreateServerFunc = std::function<void(UInt16)>;
void createServer(const std::string & listen_host, const char * port_name, bool listen_try, CreateServerFunc && func) const;
};
}