8 #ifndef DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SRC_BOOST_SUPPORT_CONNECTION_TCP_TCP_CONNECTION_H_
9 #define DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SRC_BOOST_SUPPORT_CONNECTION_TCP_TCP_CONNECTION_H_
12 #include <condition_variable>
17 #include <string_view>
25 namespace connection {
40 template<ConnectionType Connection,
typename Socket>
48 template<
typename Socket>
77 explicit TcpConnection(std::string_view connection_name, Socket socket) noexcept
78 : socket_{std::move(socket)},
83 connection_name_{connection_name},
110 void SetReadHandler(
HandlerRead read_handler) { handler_read_ = std::move(read_handler); }
120 connection_name_, [
this]() {
121 std::unique_lock<std::mutex> lck(mutex_);
122 while (!exit_request_) {
124 cond_var_.wait(lck, [
this]() {
return exit_request_ || running_; });
126 if (!exit_request_.load() && running_) {
128 running_ = ReadMessage();
141 std::unique_lock<std::mutex> lck(mutex_);
142 exit_request_ =
true;
145 cond_var_.notify_all();
157 auto ConnectToHost(std::string_view host_ip_address, std::uint16_t host_port_num) noexcept
159 return socket_.Connect(host_ip_address, host_port_num)
160 .AndThen([
this]() noexcept {
162 std::lock_guard<std::mutex> lock{mutex_};
164 cond_var_.notify_all();
176 std::lock_guard<std::mutex> lock{mutex_};
179 socket_.Disconnect();
189 return socket_.Transmit(std::move(message))
191 .MapError([](
typename Socket::SocketError
const &) {
244 return socket_.Read()
246 if (handler_read_) { handler_read_(std::move(tcp_message)); }
258 template<
typename Socket>
287 explicit TcpConnection(std::string_view connection_name, Socket socket) noexcept
288 : socket_{std::move(socket)},
290 exit_request_{
false},
293 connection_name_{connection_name},
307 : socket_{std::move(other.socket_)},
308 handler_read_{std::move(other.handler_read_)},
309 exit_request_{other.exit_request_.load()},
310 running_{other.running_.load()},
311 thread_{std::move(other.thread_)} {}
317 socket_ = std::move(other.socket_);
318 handler_read_ = std::move(other.handler_read_);
319 exit_request_.store(other.exit_request_.load());
320 running_.store(other.running_.load());
321 thread_ = std::move(other.thread_);
336 void SetReadHandler(
HandlerRead read_handler) { handler_read_ = std::move(read_handler); }
344 std::unique_lock<std::mutex> lck(mutex_);
345 while (!exit_request_) {
347 cond_var_.wait(lck, [
this]() {
return exit_request_ || running_; });
349 if (!exit_request_ && running_) {
351 running_ = ReadMessage();
357 std::lock_guard<std::mutex> lock{mutex_};
359 cond_var_.notify_all();
369 std::unique_lock<std::mutex> lck(mutex_);
370 exit_request_ =
true;
373 cond_var_.notify_all();
384 return socket_.Transmit(std::move(message))
386 .MapError([](
typename Socket::SocketError
const &) {
439 return socket_.Read()
441 if (handler_read_) { handler_read_(std::move(tcp_message)); }
typename Socket::TcpMessage TcpMessage
Type alias for Tcp message.
utility::thread::Thread thread_
Store the thread.
typename Socket::TcpMessagePtr TcpMessagePtr
Type alias for Tcp message pointer.
void Initialize() noexcept
Initialize the client.
TcpConnection(std::string_view connection_name, Socket socket) noexcept
Constructs an instance of TcpConnection.
void DeInitialize() noexcept
De-initialize the client.
Socket socket_
Store socket used for reading and writing tcp message.
typename Socket::TcpMessageConstPtr TcpMessageConstPtr
Type alias for Tcp message const pointer.
~TcpConnection() noexcept=default
Destruct an instance of TcpConnection.
std::condition_variable cond_var_
Conditional variable to block the thread.
TcpConnection & operator=(TcpConnection &&other) &noexcept=default
core_type::Result< void > Transmit(TcpMessageConstPtr message) noexcept
Function to trigger transmission.
std::string connection_name_
Store the connection name.
TcpConnection & operator=(const TcpConnection &other) &noexcept=delete
auto ConnectToHost(std::string_view host_ip_address, std::uint16_t host_port_num) noexcept -> bool
Function to connect to remote ip address and port number.
std::function< void(TcpMessagePtr)> HandlerRead
Tcp function template used for reception.
std::atomic_bool running_
Flag to start the thread.
TcpConnection(const TcpConnection &other) noexcept=delete
Deleted copy assignment and copy constructor.
void DisconnectFromHost() noexcept
Function to Disconnect from host.
TcpConnection(TcpConnection &&other) noexcept=default
Move assignment and move constructor.
HandlerRead handler_read_
Store the handler.
std::mutex mutex_
mutex to lock critical section
std::atomic_bool exit_request_
Flag to terminate the thread.
auto ReadMessage() -> bool
Function to send the received message to stored handler.
auto ReadMessage() noexcept -> bool
Function to send the received message to stored handler.
TcpConnection(const TcpConnection &other) noexcept=delete
Deleted copy assignment and copy constructor.
TcpConnection(TcpConnection &&other) noexcept
Move assignment.
core_type::Result< void > Transmit(TcpMessageConstPtr message) noexcept
Function to trigger transmission.
utility::thread::Thread thread_
Store the thread.
std::string connection_name_
Store the connection name.
void Initialize() noexcept
Initialize the Server.
std::atomic_bool exit_request_
Flag to terminate the thread.
Socket socket_
Store socket used for reading and writing tcp message.
std::function< void(TcpMessagePtr)> HandlerRead
Tcp function template used for reception.
std::mutex mutex_
mutex to lock critical section
std::condition_variable cond_var_
Conditional variable to block the thread.
~TcpConnection() noexcept=default
Destruct an instance of TcpConnection.
typename Socket::TcpMessage TcpMessage
Type alias for Tcp message.
HandlerRead handler_read_
Store the handler.
void DeInitialize() noexcept
De-initialize the server.
TcpConnection & operator=(TcpConnection &&other) &noexcept
Move constructor.
std::atomic_bool running_
Flag to start the thread.
typename Socket::TcpMessageConstPtr TcpMessageConstPtr
Type alias for Tcp message const pointer.
typename Socket::TcpMessagePtr TcpMessagePtr
Type alias for Tcp message pointer.
TcpConnection(std::string_view connection_name, Socket socket) noexcept
Constructs an instance of TcpConnection.
TcpConnection & operator=(const TcpConnection &other) &noexcept=delete
Primary connection template to handle transmission and reception of tcp message from socket.
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
static Result FromValue(T &t) noexcept
Build a new Result from the specified value (given as lvalue)
ConnectionType
Type of connection Client/ Server.
auto MakeErrorCode(BoostSupportErrorDomain::Errc code, BoostSupportErrorDomain::SupportDataType data) noexcept -> core_type::ErrorCode
Create a new ErrorCode within DoipErrorDomain.
std::unique_ptr< TcpMessage > TcpMessagePtr
The unique pointer to TcpMessage.
std::unique_ptr< TcpMessage const > TcpMessageConstPtr
The unique pointer to const TcpMessage.