Diag-Client-Lib
tcp_acceptor.cpp
Go to the documentation of this file.
1 /* Diagnostic Client library
2  * Copyright (C) 2024 Avijit Dey
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  */
8 
9 // includes
11 
12 #include <boost/asio.hpp>
13 
16 
17 namespace boost_support {
18 namespace server {
19 namespace tcp {
20 namespace {
24 using Tcp = boost::asio::ip::tcp;
25 
29 using TcpIpAddress = boost::asio::ip::address;
30 
34 std::string CreateServerName(std::string_view server_name, std::uint16_t server_count) {
35  std::string final_server_name{server_name};
36  final_server_name.append(std::to_string(server_count));
37  return final_server_name;
38 }
39 } // namespace
40 
42  public:
47 
48  public:
59  TcpAcceptorImpl(std::string_view acceptor_name, std::string_view local_ip_address,
60  std::uint16_t local_port_num, std::uint8_t maximum_connection) noexcept
61  : io_context_{},
62  server_count_{0u},
63  acceptor_name_{acceptor_name},
65  Tcp::endpoint(TcpIpAddress::from_string(std::string{local_ip_address}.c_str()),
66  local_port_num)} {
67  acceptor_.listen(maximum_connection);
68  }
69 
75  std::optional<TcpServer> GetTcpServer() noexcept {
76  using TcpErrorCodeType = boost::system::error_code;
77  std::optional<TcpServer> tcp_server{};
78  TcpErrorCodeType ec{};
79  Tcp::endpoint endpoint{};
80 
81  // blocking accept
82  TcpSocket::Socket accepted_socket{acceptor_.accept(endpoint, ec)};
83  if (ec.value() == boost::system::errc::success) {
84  tcp_server.emplace(CreateServerName(acceptor_name_, server_count_),
85  TcpSocket{std::move(accepted_socket)});
87  FILE_NAME, __LINE__, __func__, [&endpoint](std::stringstream &msg) {
88  msg << "Tcp socket connection received from client "
89  << "<" << endpoint.address().to_string() << "," << endpoint.port() << ">";
90  });
91  // increment the server count
92  server_count_++;
93  } else {
95  FILE_NAME, __LINE__, __func__, [ec](std::stringstream &msg) {
96  msg << "Tcp socket accept failed with error: " << ec.message();
97  });
98  }
99  return tcp_server;
100  }
101 
102  private:
106  using Acceptor = boost::asio::ip::tcp::acceptor;
107 
111  boost::asio::io_context io_context_;
112 
116  std::uint16_t server_count_;
117 
121  std::string acceptor_name_;
122 
127 };
128 
129 TcpAcceptor::TcpAcceptor(std::string_view acceptor_name, std::string_view local_ip_address,
130  std::uint16_t local_port_num, std::uint8_t maximum_connection) noexcept
131  : tcp_acceptor_impl_{std::make_unique<TcpAcceptorImpl>(acceptor_name, local_ip_address,
132  local_port_num, maximum_connection)} {}
133 
134 TcpAcceptor::~TcpAcceptor() noexcept = default;
135 
136 std::optional<TcpServer> TcpAcceptor::GetTcpServer() noexcept {
137  return tcp_acceptor_impl_->GetTcpServer();
138 }
139 
140 } // namespace tcp
141 } // namespace server
142 } // namespace boost_support
static auto GetLibBoostLogger() noexcept -> LibBoostLogger &
Definition: logger.h:20
std::uint16_t server_count_
Keeps the count of server created.
std::optional< TcpServer > GetTcpServer() noexcept
Get a tcp server ready to communicate.
std::string acceptor_name_
Store the name of the acceptor.
boost::asio::ip::tcp::acceptor Acceptor
Type alias for tcp acceptor.
TcpAcceptorImpl(std::string_view acceptor_name, std::string_view local_ip_address, std::uint16_t local_port_num, std::uint8_t maximum_connection) noexcept
Constructs an instance of Acceptor.
boost::asio::io_context io_context_
Store the io context.
The acceptor to create new tcp servers.
Definition: tcp_acceptor.h:20
TcpAcceptor(std::string_view acceptor_name, std::string_view local_ip_address, std::uint16_t local_port_num, std::uint8_t maximum_connection) noexcept
Constructs an instance of Acceptor.
std::optional< TcpServer > GetTcpServer() noexcept
Get a tcp server ready to communicate.
~TcpAcceptor() noexcept
Destruct an instance of TcpAcceptor.
Server that manages unsecured/ secured tcp connection.
Definition: tcp_server.h:30
Class used to create a tcp socket for handling transmission and reception of tcp message from driver.
Definition: tcp_socket.h:24
Tcp::socket Socket
Type alias for tcp socket.
Definition: tcp_socket.h:59
#define FILE_NAME
Definition: file_path.h:14
std::string CreateServerName(std::string_view server_name, std::uint16_t server_count)
Function to create server name.
boost::asio::ip::address TcpIpAddress
Type alias for tcp ip address.
boost::asio::ip::tcp Tcp
Type alias for tcp protocol.