2012-03-09 03:06:09 +00:00
|
|
|
#pragma once
|
|
|
|
|
2020-05-27 17:52:52 +00:00
|
|
|
#include <Server/IServer.h>
|
2017-08-09 11:57:09 +00:00
|
|
|
|
2016-02-09 17:06:50 +00:00
|
|
|
#include <daemon/BaseDaemon.h>
|
2012-03-09 03:06:09 +00:00
|
|
|
|
2016-07-30 01:08:00 +00:00
|
|
|
/** Server provides three interfaces:
|
|
|
|
* 1. HTTP - simple interface for any applications.
|
|
|
|
* 2. TCP - interface for native clickhouse-client and for server to server internal communications.
|
|
|
|
* More rich and efficient, but less compatible
|
|
|
|
* - data is transferred by columns;
|
|
|
|
* - data is transferred compressed;
|
|
|
|
* Allows to get more information in response.
|
|
|
|
* 3. Interserver HTTP - for replication.
|
2012-03-09 03:06:09 +00:00
|
|
|
*/
|
|
|
|
|
2020-11-11 13:07:06 +00:00
|
|
|
namespace Poco
|
|
|
|
{
|
|
|
|
namespace Net
|
|
|
|
{
|
|
|
|
class ServerSocket;
|
|
|
|
}
|
|
|
|
}
|
2012-03-09 03:06:09 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2017-08-09 11:57:09 +00:00
|
|
|
class Server : public BaseDaemon, public IServer
|
2012-03-09 03:06:09 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-02-02 13:17:55 +00:00
|
|
|
using ServerApplication::run;
|
|
|
|
|
2017-08-09 11:57:09 +00:00
|
|
|
Poco::Util::LayeredConfiguration & config() const override
|
|
|
|
{
|
|
|
|
return BaseDaemon::config();
|
|
|
|
}
|
|
|
|
|
|
|
|
Poco::Logger & logger() const override
|
|
|
|
{
|
|
|
|
return BaseDaemon::logger();
|
|
|
|
}
|
|
|
|
|
2021-04-10 23:33:54 +00:00
|
|
|
ContextPtr context() const override
|
2017-08-09 11:57:09 +00:00
|
|
|
{
|
2021-04-10 23:33:54 +00:00
|
|
|
return global_context;
|
2017-08-09 11:57:09 +00:00
|
|
|
}
|
2015-10-05 01:26:43 +00:00
|
|
|
|
2017-08-09 14:33:07 +00:00
|
|
|
bool isCancelled() const override
|
|
|
|
{
|
|
|
|
return BaseDaemon::isCancelled();
|
|
|
|
}
|
|
|
|
|
2019-02-02 13:17:55 +00:00
|
|
|
void defineOptions(Poco::Util::OptionSet & _options) override;
|
2021-02-19 12:51:26 +00:00
|
|
|
|
2014-07-21 11:21:09 +00:00
|
|
|
protected:
|
2019-02-02 13:17:55 +00:00
|
|
|
int run() override;
|
|
|
|
|
2018-02-08 19:12:37 +00:00
|
|
|
void initialize(Application & self) override;
|
2015-10-05 01:26:43 +00:00
|
|
|
|
2018-02-08 19:12:37 +00:00
|
|
|
void uninitialize() override;
|
2012-03-09 03:06:09 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
int main(const std::vector<std::string> & args) override;
|
2016-10-24 14:01:24 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
std::string getDefaultCorePath() const override;
|
2017-08-09 11:57:09 +00:00
|
|
|
|
|
|
|
private:
|
2021-04-10 23:33:54 +00:00
|
|
|
ContextPtr global_context;
|
2020-11-23 20:22:04 +00:00
|
|
|
Poco::Net::SocketAddress socketBindListen(Poco::Net::ServerSocket & socket, const std::string & host, UInt16 port, [[maybe_unused]] bool secure = false) const;
|
2020-11-11 13:07:06 +00:00
|
|
|
|
|
|
|
using CreateServerFunc = std::function<void(UInt16)>;
|
2020-11-23 20:22:04 +00:00
|
|
|
void createServer(const std::string & listen_host, const char * port_name, bool listen_try, CreateServerFunc && func) const;
|
2012-03-09 03:06:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|