12 #include <boost/asio.hpp>
26 using Tcp = boost::asio::ip::tcp;
36 std::string
CreateServerName(std::string_view server_name, std::uint16_t server_count) {
37 std::string final_server_name{server_name};
38 final_server_name.append(std::to_string(server_count));
39 return final_server_name;
43 template<
typename TlsVersion>
67 TlsAcceptorImpl(std::string_view acceptor_name, std::string_view local_ip_address,
68 std::uint16_t local_port_num, std::uint8_t maximum_connection,
69 TlsVersion tls_version, std::string_view certificate_path,
70 std::string_view private_key_path) noexcept
72 tls_context_{std::forward<TlsVersion>(tls_version), certificate_path, private_key_path},
74 acceptor_name_{acceptor_name},
75 acceptor_{io_context_,
76 Tcp::endpoint(TcpIpAddress::from_string(std::string{local_ip_address}.c_str()),
78 acceptor_.listen(maximum_connection);
88 std::optional<TlsServer> tls_server{};
90 Tcp::endpoint endpoint{};
94 if (ec.value() == boost::system::errc::success) {
96 TlsSocket{std::move(accepted_socket), tls_context_});
98 FILE_NAME, __LINE__, __func__, [&endpoint](std::stringstream &msg) {
99 msg <<
"Tls socket connection received from client "
100 <<
"<" << endpoint.address().to_string() <<
"," << endpoint.port() <<
">";
106 FILE_NAME, __LINE__, __func__, [ec](std::stringstream &msg) {
107 msg <<
"Tcp socket accept failed with error: " << ec.message();
145 template<
typename TlsVersion>
147 std::string_view local_ip_address,
148 std::uint16_t local_port_num, std::uint8_t maximum_connection,
149 TlsVersion tls_version, std::string_view certificate_path,
150 std::string_view private_key_path) noexcept
151 : tls_acceptor_impl_{std::make_unique<TlsAcceptorImpl>(
152 acceptor_name, local_ip_address, local_port_num, maximum_connection,
153 std::move(tls_version), certificate_path, private_key_path)} {}
155 template<
typename TlsVersion>
158 template<typename TlsVersion>
static auto GetLibBoostLogger() noexcept -> LibBoostLogger &
std::uint16_t server_count_
Keeps the count of server created.
boost::asio::io_context io_context_
Store the io context.
Acceptor acceptor_
Store the tcp acceptor.
std::optional< TlsServer > GetTlsServer() noexcept
Get a tls server ready to communicate.
boost::asio::ip::tcp::acceptor Acceptor
Type alias for tcp acceptor.
TlsContext tls_context_
Store the tls context.
std::string acceptor_name_
Store the name of the acceptor.
TlsAcceptorImpl(std::string_view acceptor_name, std::string_view local_ip_address, std::uint16_t local_port_num, std::uint8_t maximum_connection, TlsVersion tls_version, std::string_view certificate_path, std::string_view private_key_path) noexcept
Constructs an instance of Acceptor.
The acceptor to create new tcp servers.
std::optional< TlsServer > GetTlsServer() noexcept
Get a tls server ready to communicate.
~TlsAcceptor() noexcept
Destruct an instance of TlsAcceptor.
TlsAcceptor(std::string_view acceptor_name, std::string_view local_ip_address, std::uint16_t local_port_num, std::uint8_t maximum_connection, TlsVersion tls_version, std::string_view certificate_path, std::string_view private_key_path) noexcept
Constructs an instance of Acceptor.
Server that manages unsecured/ secured tcp connection.
Tls context class responsible for setting cipher suite and loading certificates.
Class used to create a tcp socket for handling transmission and reception of tcp message from driver.
Tcp::socket TcpSocket
Type alias for tcp socket.
boost::asio::ip::address TcpIpAddress
Type alias for tcp ip address.
boost::asio::ip::tcp Tcp
Type alias for tcp protocol.
std::string CreateServerName(std::string_view server_name, std::uint16_t server_count)
Function to create server name.
boost::system::error_code TcpErrorCodeType