Diag-Client-Lib
Public Types | Public Member Functions | Private Types | Private Attributes | List of all members
boost_support::server::tcp::TcpAcceptor::TcpAcceptorImpl Class Referencefinal

Public Types

using TcpSocket = socket::tcp::TcpSocket
 Type alias for tcp unsecured socket. More...
 

Public Member Functions

 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. More...
 
std::optional< TcpServerGetTcpServer () noexcept
 Get a tcp server ready to communicate. More...
 

Private Types

using Acceptor = boost::asio::ip::tcp::acceptor
 Type alias for tcp acceptor. More...
 

Private Attributes

boost::asio::io_context io_context_
 Store the io context. More...
 
std::uint16_t server_count_
 Keeps the count of server created. More...
 
std::string acceptor_name_
 Store the name of the acceptor. More...
 
Acceptor acceptor_
 Store the tcp acceptor. More...
 

Detailed Description

Definition at line 41 of file tcp_acceptor.cpp.

Member Typedef Documentation

◆ Acceptor

using boost_support::server::tcp::TcpAcceptor::TcpAcceptorImpl::Acceptor = boost::asio::ip::tcp::acceptor
private

Type alias for tcp acceptor.

Definition at line 106 of file tcp_acceptor.cpp.

◆ TcpSocket

Type alias for tcp unsecured socket.

Definition at line 46 of file tcp_acceptor.cpp.

Constructor & Destructor Documentation

◆ TcpAcceptorImpl()

boost_support::server::tcp::TcpAcceptor::TcpAcceptorImpl::TcpAcceptorImpl ( std::string_view  acceptor_name,
std::string_view  local_ip_address,
std::uint16_t  local_port_num,
std::uint8_t  maximum_connection 
)
inlinenoexcept

Constructs an instance of Acceptor.

Tcp connection shall be accepted on this ip address and port

Parameters
[in]local_ip_addressThe local ip address
[in]local_port_numThe local port number
[in]maximum_connectionThe maximum number of accepted connection

Definition at line 59 of file tcp_acceptor.cpp.

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  }
std::uint16_t server_count_
Keeps the count of server created.
std::string acceptor_name_
Store the name of the acceptor.
boost::asio::io_context io_context_
Store the io context.

Member Function Documentation

◆ GetTcpServer()

std::optional<TcpServer> boost_support::server::tcp::TcpAcceptor::TcpAcceptorImpl::GetTcpServer ( )
inlinenoexcept

Get a tcp server ready to communicate.

This blocks until new server is created

Returns
Tcp server object on success, else nothing

Definition at line 75 of file tcp_acceptor.cpp.

75  {
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  }
static auto GetLibBoostLogger() noexcept -> LibBoostLogger &
Definition: logger.h:20
socket::tcp::TcpSocket TcpSocket
Type alias for tcp unsecured socket.
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.

References acceptor_, acceptor_name_, boost_support::server::tcp::anonymous_namespace{tcp_acceptor.cpp}::CreateServerName(), FILE_NAME, boost_support::common::logger::LibBoostLogger::GetLibBoostLogger(), and server_count_.

Here is the call graph for this function:

Member Data Documentation

◆ acceptor_

Acceptor boost_support::server::tcp::TcpAcceptor::TcpAcceptorImpl::acceptor_
private

Store the tcp acceptor.

Definition at line 126 of file tcp_acceptor.cpp.

Referenced by GetTcpServer().

◆ acceptor_name_

std::string boost_support::server::tcp::TcpAcceptor::TcpAcceptorImpl::acceptor_name_
private

Store the name of the acceptor.

Definition at line 121 of file tcp_acceptor.cpp.

Referenced by GetTcpServer().

◆ io_context_

boost::asio::io_context boost_support::server::tcp::TcpAcceptor::TcpAcceptorImpl::io_context_
private

Store the io context.

Definition at line 111 of file tcp_acceptor.cpp.

◆ server_count_

std::uint16_t boost_support::server::tcp::TcpAcceptor::TcpAcceptorImpl::server_count_
private

Keeps the count of server created.

Definition at line 116 of file tcp_acceptor.cpp.

Referenced by GetTcpServer().


The documentation for this class was generated from the following file: